@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333333;
  --white-color: #ffffff;
  --gray-color: #f1f0e4;
  --gray-color02: #515561;
  --back-color: #dee6ef;
  --back-color02: #cecbcc;
  --primary-color: #1f3555;
  --list-color:#5a7a9a;
  --accent-color: #82d6ee;
}
:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 700px;
  --content-width: 920px;
  --content-width-lg: 1080px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-menu: 150;
    --z-index-header: 200;
}

/* ---------- base ---------- */

body {
  color: var(--black-color);
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}

html{
  width: 100%;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u_md-dn{
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l_container-sm,
.l_container,
.l_container-lg {
  padding: 0 40px;
}
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

@media screen and (min-width: 768px) {
  .l_container-sm {
  max-width: calc(var(--content-width-sm) + 80px);
}
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

@media screen and (min-width: 768px) {
  l_container {
  max-width: calc(var(--content-width) + 80px);
}
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

@media screen and (min-width: 768px) {
  .l_container-lg {
  max-width: calc(var(--content-width-lg) + 80px);
}
}

.l_contents {
  padding: 32px 0;
}

@media screen and (min-width: 768px) {
  .l_contents {
  padding: 80px 0;
}
}

.l_main{
  margin-top: 40px;
}

.l_mian__top{
  background: var(--back-color);
  z-index: 1;
}

.l_main__about{
  width: 100%;
  overflow-x: hidden;
}

.l_main__404 {
  height: calc(100vh - 65px);
  position: relative;
}


/* ----------opening animation---------- */

#opening-video {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
}
#opening-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -----足跡カーソル追跡アニメーション -----*/


.footprint {
    width: 30px;
    height: 30px;
    background: url('../img/paw-print.png') no-repeat center/contain;
    position: absolute; /* 必須 */
    top: 10px;
    left: 10px;
}



/* ----------header---------- */


.l_header {
  margin: 16px 16px;
  padding: 0 24px;
  height: 60px;
  width: calc(100vw - 32px);
  border-radius: 4px;
  background:#aaaaaa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: var(--z-index-header);
  transition: background-color 0.5s ease;
  box-shadow: 4px 4px 4px var(--gray-color02);
}

@media screen and (min-width: 768px) {
  .l_header{
    margin: 0 16px;
    top: 16px;
    border-radius: 8px;
  }
}

.l_header-nav_logo{
  width: 100px;
  height: 35px;
}

@media screen and (min-width: 768px) {
  .l_header-nav_logo{
  margin-left: 65px;
}
  .l_header-nav_logo:hover{
  transform: scale(1.2);
  transition: 0.3s;
}
}

.l_header-logo_link{
  display: block;
  height: 100%;
}

.l_header-nav_logo-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  z-index: var(--z-index-header);
}

@media screen and (min-width: 768px) {
  .l_header-nav {
    position: static;
    background:transparent;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: inherit;
  }
}

.l_header-nav_list {
  position: absolute;
  top: 45%;
  left: 70%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .l_header-nav_list {
    display: flex;
    gap: 24px;
    position: static;
    transform: none;
    height: 50px;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    gap: 32px;
  }
}

.l_header-nav_item {
  font-size: 24px;
  font-weight: bold;
  color: var(--white-color);
  transition: 0.3s;
}

.l_header-nav_item:hover{
  color: var(--list-color);
  transform: scale(1.2);
}

@media screen and (min-width: 768px) {
  .l_header-nav_item {
    font-size: 16px;
    color: var(--white-color);
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item{
    font-size: 20px;
  }
}

.l_header-nav_item:not(:first-child) {
  margin-top: 16px;
}


@media screen and (min-width: 768px) {
  .l_header-nav_item:not(:first-child) {
    margin-top: 0;
  }
}

.l_header-nav_link{
  padding-bottom: 5px;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.40);
}

.l_header-nav_link::before{
  background: var(--white-color);
  content: '';
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .5s;
}

.l_header-nav_link:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media screen and (min-width: 768px) {
  .l_header-nav_link{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.l_header_insta-wrapper{
  width: 70px;
  height: 70px;
  position: absolute;
  top: 75%;
  left: 50%;
}

@media screen and (min-width: 768px) {
  .l_header_insta-wrapper{
  width: 40px;
  height: 40px;
  top: 13%;
  left: 24px;
}
.l_header_insta-wrapper:hover{
  transform: scale(1.2);
  transition: 0.3s;
}
}

.l_header_insta-link{
  width: 100%;
  height: 100%;
}

.l_header_insta-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------footer---------- */

.l_footer{
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gray-color);
}

@media screen and (min-width: 768px) {
.l_footer{
  display: block;
}
}

@media screen and (min-width: 768px) {
  .l_footer_container{
    display: flex;
    gap: 40px;
  }
}

.l_footer_logo{
  width: 70%;
  height: 150px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l_footer_logo{
    width: 50%;
    height: 200px;
  }
}

.l_footer_logo-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l_footer_text{
  margin-top: 24px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l_footer_text{
    text-align-last: left;
  }
}

.l_footer_company-name{
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.l_footer_e-mail{
  font-size: 14px;
  font-weight: bold;
}

.l_footer_copy-right{
  display: block;
  margin-top: 24px;
}


/* ---------- module ---------- */

.m_hamburger {
  width: 36px;
  height: 32px;
  position: relative;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 768px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 6px;
  position: absolute;
  background: var(--primary-color);
  left: 50%;
  transition: 0.3s;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.m_cta_btn-link{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .m_cta_btn-link{
    font-size: 24px;
  }
}

.m_cta_btn-link::after{
  content: "";
  margin-left: 8px;
  display: inline-block;
  width: 17px;
  height: 15px;
  background-image: url(../img/cta_mail_icon.png);
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .m_cta_btn-link::after{
    width: 32px;
    height: 30px;
    margin-left: 16px;
  }
}


.m_section_title{
  text-align: center;
}

@media screen and (min-width: 768px) {
  .m_section_title{
  text-align: end;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
}

.m_section_title_main{
  border-bottom: 2px dotted var(--black-color);
  display: inline-block;
  font-weight: bold;
  padding: 8px;
  position: relative;
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .m_section_title_main{
    text-align: center;
    border-bottom:none;
    font-size: 20px;
    line-height: 28px;
  }
  .m_section_title_main::after{
    content: "";
    width: 700%;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: -600%;
  }
}

.m_section_title_sub{
  font-weight: bold;
  padding: 8px;
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .m_section_title_sub{
    font-size: 36px;
    line-height: 36px;
  }
}

.m_more_btn-wrapper{
  width: 100px;
  height: 34px;
  margin-left: auto;
  margin-top: 24px;
  border-bottom: 2px solid var(--black-color);
  position: relative;
  transition: 0.8s ease;
}

.m_more_btn-wrapper::after{
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid ;
  border-color: var(--black-color) var(--black-color) transparent transparent;
  position: absolute;
  bottom: -5px;
  right: 0;
  transform: rotate(45deg);
}

.m_more_btn-link{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 4px 4px 4px var(--gray-color02);
}

.m_more_btn-wrapper::before {
  content: "";
  width: 90%;
  height: 10px;
  position: absolute;
  top: 100%;
  left: 5%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  z-index: -1;
  opacity: 0;
  transition: .8s;
}

.m_more_btn-wrapper:hover {
  transform: translateY(-10px);
}

.m_more_btn-wrapper:hover::before {
  transform: translateY(7px);
  opacity: 1;
}

.m_contact{
  background: var(--white-color);
}

@media screen and (min-width: 768px) {
  .m_contact{
    padding-bottom: 40px;
  }
}

.m_contact_cta-wrapper{
  max-width: var(--content-width);
  margin: 0 auto;
  height: 380px;
}

@media screen and (min-width: 1080px) {
  .m_contact_cta-wrapper{
    display: flex;
    gap: 40px;
  }
}
.m_contact_cta-box{
  margin-top: 40px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .m_contact_cta-box{
    width: 80%;
    margin: 0 auto;
    position: static;
    transform: none;
    margin: 64px auto;
  }
}
@media screen and (min-width: 1080px) {
  .m_contact_cta-box{
    margin: 64px 0;
  }
}

.m_contact_head{
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .m_contact_head{
    font-size: 32px;
    text-align: left;
  }
}

.m_contact_txt{
  text-align: center;
  line-height: 32px;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .m_contact_txt{
  width: 550px;
  text-align: left;
  font-size: 20px;
  line-height: 48px;
  margin-top: 16px;
}
}


.m_cta_btn-wrapper{
  width: 170px;
  height: 50px;
  margin: 24px auto 0;
  border-radius: 4px;
  background: var(--accent-color);
  box-shadow: 2px 2px 4px #aaaaaa;
  transition: 0.8s ease;
}

@media screen and (min-width: 768px) {
  .m_cta_btn-wrapper{
  width: 283px;
  height: 61px;
  margin: 64px auto 0;
  border-radius: 8px;
}}

@media screen and (min-width: 1080px) {
  .m_cta_btn-wrapper{
  width: 283px;
  height: 61px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: 100px;
}
}

.m_cta_btn-wrapper::before {
  content: "";
  width: 90%;
  height: 10px;
  position: absolute;
  top: 100%;
  left: 5%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  z-index: -1;
  opacity: 0;
  transition: .8s;
}

.m_cta_btn-wrapper:hover {
  transform: translateY(-10px);
  background: var(--list-color);
}

.m_cta_btn-wrapper:hover .m_cta_btn-link{
  color: var(--white-color);
}

.m_cta_btn-wrapper:hover::before {
  transform: translateY(7px);
  opacity: 1;
}

/* ----------- top logo  ------------- */

.top_logo{
display: none;
}

@media screen and (min-width: 768px) {
  .top_logo{
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.top_logo_link{
  width: 300px;
  height: 100%;
}

.top_logo_img{
  width: 300px;
  height: 100%;
}

/* ----------- top kv  ------------- */

.top_kv {
  height:100vh;
  width: 100vw; 
  background-size: cover;
  overflow-x: hidden;
  position: relative;
}

.video-background {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1; /* 背景として後ろに回す */
}

.video-background .content {
  position: relative;
  z-index: 1; /* コンテンツを前面に */
  color: white;
  text-align: center;
  padding: 2rem;
}

.kv-pc, .kv-sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .kv-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .kv-sp {
    display: block;
  }
}


@media screen and (min-width: 768px) {
  .top_kv{
    height: 100vh;
    background-position: center ;
  }
}


.top_kv_box {
  padding: 20px 20px;
  width: 100%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: var(--z-index-default);
}

@media screen and (min-width: 768px) {
  .top_kv_box{
    margin: 0 auto;
    top: 50%;
    left: 60%;
  }
}

.top_kv_copy {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  color: var(--gray-color);
  text-shadow:
    3px 3px 0 #000,
    -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}


@media screen and (min-width: 768px) {
  .top_kv_copy {
    font-size: 36px;
    text-align: left;
  }
}

@media screen and (min-width: 1200px) {
  .top_kv_copy {
    font-size: 40px;
  }
}

.top_kv_sub-copy {
  margin-top: 24px;
  text-align: center;
  color: var(--white-color);
  font-weight: bold;
    text-shadow:
    -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

@media screen and (min-width: 768px) {
  .top_kv_sub-copy {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    margin-top: 24px;
  }
}

.top_cta_btn-wrapper{
  width: 170px;
  height: 50px;
  margin: 24px auto 0;
  /* border: 3px solid var(--black-color); */
  box-shadow: 2px 2px 8px #000;
  border-radius: 4px;
  background: var(--accent-color);
  transition: background 0.5s;
}

@media screen and (min-width: 768px) {
  .top_cta_btn-wrapper{
    width: 283px;
    height: 61px;
    margin: 32px auto 0 0;
    border-radius: 8px;
  }
}

.top_cta_btn-wrapper:hover {
  background: var(--list-color);
}

.top_cta_btn-wrapper:hover .m_cta_btn-link{
  color: var(--white-color);
}

.parapara {
  width: 150px;
  height: 150px;
  margin: 1em auto;
  overflow: hidden;
  background: url(../img/rib.png);
  animation: para 0.6s steps(4, end) infinite, moveLeft 5s linear infinite;
  position: absolute;
  left: 100%;
  transform: translateY(-50%);
  opacity: 1;
}

@keyframes para {
  100% { background-position: -600px; }
}

@keyframes moveLeft {
  0% {
    left: 100%;  /* 画面の右端からスタート */
    opacity: 1;
  }
  70% {
    opacity: 1;  /* 途中までは完全に見える */
  }
  100% {
    left: -250px;  /* 画面の左外へ消える */
    opacity: 0;
  }
}

/* --------top swiper------ */

.top_swiper{
  background: var(--list-color);
  padding: 24px 0;
}


.top_swiper_list-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top_swiper_list {
  background: transparent;
}

@media screen and (min-width: 768px) {
  .top_swiper_list{
    margin-top: 24px;
  }
}
.top_swiper_item {
  width: 140px !important;
  height: 110px !important; 
  box-shadow: 4px 4px 8px var(--black-color);
  margin: 16px 0;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .top_swiper_item{
    border-radius: 8px;
  }
}

.top_swiper_item:hover{
  transform: translateY(-15px) scale(1.1);
  transition: 0.5s;
}

@media screen and (min-width: 768px) {
  .top_swiper_item {
    width: 230px !important;
    height: 200px !important;
  }
}

.top_swiper-inner {
  margin: 0 auto;
  max-width: var(--content-width-sm);
}

@media screen and (min-width: 768px) {
  .top_swiper-inner{
    border-radius: 8px;
  }
}

.top_swiper_img-wrapper {
  width: 140px;
  height: 110px;
  border-radius: 4px;

}

@media screen and (min-width: 768px) {
  .top_swiper_img-wrapper {
  width: 230px;
  height: 200px;
  border-radius: 8px;
}
}

.top_swiper_img{
  width: 140px;
  height: 110px;
  object-fit: cover;
  /* border: 1px solid var(--black-color); */
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .top_swiper_img{
  width: 230px;
  height: 200px;
  border-radius: 8px;
}
}

/* ----------top about---------- */

.top_about{
  background: var(--white-color);
}

.top_about_box{
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .top_about_box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
  }
}

.top_about_img-wrapper{
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
.top_about_img-wrapper{
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
}
@media screen and (min-width: 1080px) {
  .top_about_img-wrapper{
    margin: 0;}
}

.top_about_img{
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.top_about_content{
  margin-top: 24px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top_about_content{
    width: 450px;
    margin-top: 0;
  }
}

.top_about_head{
  font-style: roboto;
  font-size: 20px;
  font-weight: bold;
  border-radius: 4px;
  border: 1px solid #000;
  box-shadow: 2px 2px 8px #aaaaaa;
}

@media screen and (min-width: 768px) {
  .top_about_head{
    padding: 8px;
    font-size: 28px;
  }
}

.top_about_head__color{
  color: var(--list-color);
}



.top_about_txt{
  margin-top: 24px;
  font-size: 14px;
  line-height: 48px;
}

@media screen and (min-width: 768px) {
  .top_about_txt{
    font-size: 16px;
  }
}

/* --------top service---------- */

.top_service{
  height: 100%;
  background: var(--back-color02);
}

.top_service_content-wrapper{
  margin-top: 120px;
  width: 100%;
}

.top_service_content-list{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .top_service_content-list{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px 48px;
  }
}

.top_service_content{
  width: 100%;
  max-width: 500px;
}


@media screen and (min-width: 1080px) {
  .top_service_content{
  width: calc((100% - 48px) / 2);
}
}


@media screen and (min-width: 850px) {
  .top_service_content:not(:first-child){
  margin-top: 0px;
}
}

.top_service_item-box{
  width: 100%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .top_service_item-box{
    width: 100%;
  }
}

.top_service_item-head{
  width: 180px;
  height: 50px;
  border-radius: 4px;
  background: var(--list-color);
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 2px 2px 4px var(--gray-color02);
  z-index: var(--z-index-menu);
}

@media screen and (min-width: 768px) {
  .top_service_item-head{
      border-radius: 8px;
  }
}

.top_service_item-title{
  font-weight: bold;
}

.top_service_item-body{
  width: 100%;
  height: 250px;
  border: 2px solid transparent;
  border-radius: 4px;
  box-shadow: 2px 2px 8px var(--gray-color02);
  position: relative;
  background: var(--white-color);
}

@media screen and (min-width: 768px) {
  .top_service_item-body{
    border-radius: 8px;
  }
}

.top_service_item-list{
  margin: 42px auto 0;
  width: 190px;
}

.top_service_item:not(:first-child){
  margin-top: 8px;
}

.top_service_item-name{
  font-weight: bold;
  line-height: 32px;
  letter-spacing: 0.2em;
}

.top_service_item-etc{
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-weight: bold;
  line-height: 32px;
  letter-spacing: 0.2em;
}



/* -------- top works ---------- */

.top_works{
  background: var(--white-color);
}

.top_works_content-wrapper{
  margin: 40px 0 60px;
}

/* -------top flow--------- */

.top_flow{
  height: 100%;
  background: var(--back-color);
}

.top_flow_desc{
  text-align: center;
  margin-top: 24px;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .top_flow_desc{
    font-size:  20px;
  }
}

.top_flow_content-wrapper{
  margin-top: 48px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .top_flow_content-wrapper{
    display: flex;
    justify-content: center;
    gap: 80px;
  }
}

@media screen and (min-width: 1080px) {
  .top_flow_content-wrapper{
  display: block;
  width: calc(250px * 3 + 60px *2);
  margin-left: auto;
  margin-right: auto;
  }
}

.top_flow_item-list__2{
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .top_flow_item-list__2{
  margin-top: 0px;
}
}

@media screen and (min-width: 1080px) {
  .top_flow_item-list{
    width: 100%;
    display: flex;
    gap: 60px;
  }
  .top_flow_item-list__2{
    margin-top: 80px;
    flex-direction: row-reverse;
  }
}

.top_flow_item{
  width: 311px;
  height: 200px;
  position: relative;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
.top_flow_item{  
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: top;
}
}

.top_flow_item:not(:first-child){
  margin-top: 50px;
}

@media screen and (min-width: 1080px) {
  .top_flow_item:not(:first-child){
  margin-top: 0px;
}
}

.top_flow_item-circle{
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background:transparent;
}

.top_flow_item-circle::before{
  content: "";
  width: 190px;
  height: 190px;
  position: absolute;
  top: 0%;
  left: 0%;
  border-radius: 50%;
  background: var(--white-color);
  opacity: 0.5;
}

@media screen and (min-width: 1080px) {
  .top_flow_item-circle::before{
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}


.top_flow_item-circle::after{
  content: "";
  width: 45px;
  height: 30px;
  position: absolute;
  bottom: -35px;
  left: 30%;
  transform: translateX(-50%) rotate(90deg);
  background: url(../img/arrow.png);
  background-size: cover;
  background-position-y: center;
}

@media screen and (min-width: 768px) {
  .top_flow_item-circle__3::after{
    background-image: url(../img/arrow5.png);
    width: 287px;
    height: 28px;
    background-size: contain;
    bottom: auto;
    left: auto;
    top: -89%;
    right: -63%;
    transform: rotate(-76deg);
  }
}

@media screen and (min-width: 1080px) {
  .top_flow_item-circle__1::after{
    transform: none;
    width: 60px;
    height: 45px;
    top: 40%;
    bottom: auto;
    right: -25%;
    left: auto;
  }

  .top_flow_item-circle__3::after{
    background: url(../img/arrow.png);
    background-position: center;
    background-size: cover;
    width: 60px;
    height: 45px;
    top: auto;
    right: auto;
    left: 40%;
    bottom: -60px;
    transform: rotate(90deg);
  }

  .top_flow_item-circle__4::after{
    transform: rotate(180deg);
    width: 60px;
    height: 45px;
    top: 40%;
    bottom: auto;
    left: -25%;
  }
}

.top_flow_item-circle__last::after{
  display: none;
}

.top_flow_circle-filter{
  position: absolute;
  top: 40%;
  left: 31%;
  transform: translate(-50%,-50%);
}

@media screen and (min-width: 1080px) {
  .top_flow_circle-filter{
    width: 141px;
    top: -3%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.top_flow_item-title{
  margin: 32px auto 0;
  font-weight: bold;
  text-align: center;
}

.top_flow_item-img-wrapper{
  margin: 8px auto 0;
  width: 100px;
  height: 75px;
}

.top_flow_item-img{
  width: 100%;
  height: 100%;
}

.top_flow_item-box{
  width: 140px;
  height: 100%;
	outline: solid 1px var(--white-color);  
	outline-offset: 3px;  
  border-radius: 8px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: var(--z-index-menu);
  background: var(--white-color);
  padding: 10px;
}

@media screen and (min-width: 1080px) {
  .top_flow_item-box{
    width: 250px;
    height: 100px;
    top: auto;
    right: auto;
    left: 0;
    bottom: 0%;
  }
}

.top_flow_item-text{
  line-height: 24px;
  letter-spacing: normal;
}


/* --------page about--------- */


.about_concept_copy{
  margin-top: 24px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
  color: var(--primary-color);
  text-shadow:2px 2px 4px var(--gray-color02)
}

@media screen and (min-width: 768px) {
  .about_concept_copy{
    margin-top: 0px;
    font-size: 48px;
  }
}

.about_concept_desc{
  margin-top: 16px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .about_concept_desc{
  font-size: 20px;
  margin-top: 32px;
}
}

.about_concept_df-box{
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .about_concept_df-box{
  max-width: var(--content-width);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 0;
}
}

.about_concept_copy-img-wrapper{
  width: 130px;
  height: 130px;
  position: absolute;
  top: 50%;
  right: 0;
}

@media screen and (min-width: 768px) {
  .about_concept_copy-img-wrapper{
  position: static;
}
}

@media screen and (min-width: 1080px) {
  .about_concept_copy-img-wrapper{
    width: 150px;
    height: 150px;
  }
}

.about_concept_copy-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about_concept_item-wrapper{
  max-width: 450px;
  margin: 70px auto 0;
}

@media screen and (min-width: 768px) {
  .about_concept_item-wrapper{
  max-width: var(--content-width);
  margin: 20px auto 0;
  }
}

@media screen and (min-width: 1080px) {
  .about_concept_item-wrapper{
    display: flex;
    gap: 20px;
    max-width: calc( var(--content-width-lg) + 32px);
    margin: 40px auto 0;
  }
}

.about_concept_item{
  padding: 16px;
  width: 100%;
  background: var(--back-color);
  border-radius: 8px;
  box-shadow: 4px 4px 8px var(--back-color02);
}

@media screen and (min-width: 768px) {
  .about_concept_item{
    margin-top: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .about_concept_item{
    margin-top: 0;
  }
}

.about_concept_item:not(:first-child){
  margin-top: 30px;
}

@media screen and (min-width: 1080px) {
  .about_concept_item:not(:first-child){
    margin-top: 0;
  }
}

.about_concept_item-heading{
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  color: var(--white-color);
    text-shadow:
    3px 3px 0 var(--black-color),
    -1px -1px 0 var(--black-color),  
    1px -1px 0 var(--black-color),
    -1px 1px 0 var(--black-color),
    1px 1px 0 var(--black-color);
}

@media screen and (min-width: 768px) {
  .about_concept_item-heading{
    font-size: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .about_concept_item-heading{
    font-size: 20px;
  }
}

.about_concept_item-img-wrapper{
  width: 100px;
  height: 100px;
  margin: 20px auto 0;
}

@media screen and (min-width: 768px) {
  .about_concept_item-img-wrapper{
    width: 130px;
    height: 130px;
  }
}

.about_concept_item-img{
  width: auto;
  height: 100%;
  object-fit: cover;
}

.about_concept_item-text{
  font-size: 14px;
  line-height: 24px;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .about_concept_item-text{
    margin-top: 16px;
    font-size: 20px;
    line-height: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .about_concept_item-text{
    font-size: 16px;
    line-height: 28px;
  }
}

.about_company_content-wrapper{
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .about_company_content-wrapper{
    margin-top: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .about_company_content-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }
}

.about_company_img-wrapper{
  width: 100%;
  object-fit: cover;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .about_company_img-wrapper{
    width: 340px;
    height: 240px;
    margin: 0 0;
  }

  .about_company_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.about_company_table-wrapper{
  padding: 16px;
  border: 1px solid var(--black-color);
  border-radius: 8px;
  box-shadow: 4px 4px 8px var(--gray-color02);
  background: var(--gray-color);
  max-width: 540px;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .about_company_table-wrapper{
    width: 500px;
    padding: 24px;
    margin: 0 0;
  }
}
.about_company_table{
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.about_company_heading{
  padding: 16px 0 8px 8px;
  font-weight: bold;
  border-bottom: 2px solid var(--gray-color02);
}

.about_company_data{
  padding: 16px 8px 8px 8px;
  border-bottom: 2px solid var(--gray-color02);
}



/* -----------page service----------- */


.service_website_sp-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 40px auto 0;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .service_website_sp-wrapper{
    gap: 40px;
    margin: 0 auto;
    max-width: var(--content-width-sm);
  }
}

@media screen and (min-width: 1080px) {
  .service_website_sp-wrapper{
    margin: 0 0;
  }
}

@media screen and (min-width: 1080px) {
  .service_website_pc-wrapper{
    display:flex;
    justify-content: center;
    gap: 40px;
    margin: 0 0;
  }
}

.service_website_circle{
  width: 150px;
  height: 150px;
  border: 1px solid var(--black-color);
  border-radius: 50%;
  box-shadow: 2px 2px 4px var(--gray-color02);
  background: var(--primary-color);
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .service_website_circle{
    width: 250px;
    height: 250px;
    flex-shrink: 0;
  }
}

.top_website_title{
  margin-top: 16px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .top_website_title{
    font-size: 32px;
    margin-top: 40px;
    line-height: 36px;
  }
}

.service_website_price{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .service_website_price{
    font-size: 32px;
    margin-top: 24px;
  }
}

.service_website_price_tax{
  text-align: center;
  line-height: 16px;
}

@media screen and (min-width: 768px) {
  .service_website_price_tax{
    font-size: 20px;
    font-weight: bold;
  }
}

.service_website_copy{
  font-weight: bold;
  width:fit-content;
  margin: 0 auto;
  background: linear-gradient(transparent 60%, #44d8f2 40%);
}

@media screen and (min-width: 768px) {
  .service_website_copy{
    font-size: 20px;
  }
}

.service_website_copy-pc{
  display: none;
}

@media screen and (min-width: 768px) {
  .service_website_copy-pc{
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .service_website_copy-pc{
  display: block;
  white-space: nowrap;
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}
}

.service_website_txt-sp{
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .service_website_txt-sp{
  display: none;
}
}

.service_website_page-wrapper{
  width: 210px;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .service_website_page-wrapper{
    margin: 0 0;
  }
}

.service_website_toppage{
  width: 210px;
  height: 245px;
  border: 3px solid var(--black-color);
  border-radius: 0 8px 0 0;
  margin: 24px auto 0; 
  box-shadow: 4px 4px 8px var(--gray-color02);
}

@media screen and (min-width: 1080px) {
  .service_website_toppage{
    margin: 0 0;
  }
}

.service_website_toppage__2{
  margin: 0 0;
  width: 140px;
  height: 180px;
  position: relative;
}

.service_website_toppage__2::before{
  content: "";
  width: 25px;
  height: 4px;
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  background: var(--black-color);
}

.service_website_toppage__2::after{
  content: "";
  width: 25px;
  height: 4px;
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%) rotate(90deg);
  background: var(--black-color);
}

.service_website_toppage-txt{
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-top: 24px;
}

.service_website_toppage-txt__2{
  font-size: 16px;
  margin-top: 16px;
}

.service_website_toppage-list{
  margin-left: 40px;
  margin-top: 24px;
}

.service_website_toppage-list__2{
  margin-top: 16px;
  font-size: 14px;
  margin-left: 0;
}

.service_website_content-wrapper{
  width: 100%;
  max-width: 400px;
  border: 2px solid var(--black-color);
  border-radius: 8px;
  margin: 32px auto 0;
}

@media screen and (min-width: 768px) {
  .service_website_content-wrapper{
    max-width: var(--content-width);
  }
}

.service_website_pc-wrapper:not(:first-child){
  margin-top: 64px;
}

.service_website_page-wrapper__2{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
  max-width: 400px;
  gap: 60px;
  min-width: 345px;
}

@media screen and (min-width: 768px) {
  .service_website_page-wrapper__2{
    margin: 40px auto;
  }
}

@media screen and (min-width: 1080px) {
  .service_website_page-wrapper__2{
    margin: 0 0;
  }
}

.service_website_content-title{
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--back-color);
  border-radius: 6px 6px 0 0;
  height: 50px;
}

.service_website_content-list{
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 16px;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  service_website_content-list{
    padding: 20px;
    gap: 32px;
  }
}

.service_website_content-item{
  white-space: nowrap
}

@media screen and (min-width: 768px) {
  .service_website_content-item{
    font-size: 20px;
  }
}

.service_website_under-wrapper{
  width: 140px;
  height: 180px;
  position: relative;
}

.service_website_under{
  width: 100px;
  height: 120px;
  border: 3px solid var(--black-color);
  border-radius: 0 8px 0 0;
  box-shadow: 4px 4px 8px var(--gray-color02);
  background: var(--white-color);
}

.service_website_under__1{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -30;
}

.service_website_under__2{
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: -20;
}

.service_website_under__3{
  position: absolute;
  top: 60px;
  left: 40px;
  z-index: -10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service_website_under-txt{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .service_website_content{
    padding: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .service_website_content{
    padding: 20px;
  }
}
.service_website_content-txt{
  text-align: center;
  line-height: 40px;
}

.m_service_table-heading{
  position: relative;
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .m_service_table-heading{
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: var(--content-width-sm);
    margin: 64px auto 0;
  }
}

@media screen and (min-width: 1080px) {
  .m_service_table-heading{
    max-width: var(--content-width);
  }
}

.m_service_table-title{
  width: 150px;
  height: 70px;
  border: 1px solid var(--black-color);
  border-radius: 35px;
  background: var(--primary-color);
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 22px;
  position: absolute;
  bottom: -50%;
  left: 16px;
  box-shadow: 2px 2px 4px var(--gray-color02);
}

@media screen and (min-width: 768px) {
  .m_service_table-title{
    position: static;
    width: 200px;
    height: 100px;
    border-radius: 50px;
    font-size: 24px;
    line-height: 48px;
    flex-shrink: 0;
  }
}

.m_service_table-desc{
  margin-top: 24px;
  font-weight: bold;
  width: 100%;
  height: 120px;
  padding: 16px;
}

@media screen and (min-width: 768px) {
  .m_service_table-desc{
    font-size: 20px;
    line-height: 30px;
    height: auto;
    margin-top: 0;
  }
}

.m_service_table-wrapper{
  max-width: 500px;
  margin: 32px auto 0;
  padding: 40px 16px 16px;
  border: 1px solid var(--gray-color02);
  border-radius: 0 8px 0 0;
  background: var(--gray-color);
  box-shadow: 4px 4px 8px var(--gray-color02);
}

@media screen and (min-width: 768px) {
  .m_service_table-wrapper{
    border-radius: 0 16px 0 0;
    max-width: var(--content-width-sm);
    margin: 40px auto 0;
    padding: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .m_service_table-wrapper{
    max-width: var(--content-width);
  }
}


.m_service_table-item+.m_service_table-item{
  margin-top: 24px;
}

.m_service_table-item-name{
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .m_service_table-item-name{
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .m_service_table-item-box{
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 160px;
  }
}

.m_service_table-item-txt{
  margin-left: 40px;
}

@media screen and (min-width: 1080px) {
  .m_service_table-item-txt{
    width: 50%;
    position: relative;
  }

  .m_service_table-item-txt::after{
    content: "";
    width: 25%;
    height: 3px;
    position: absolute;
    top: 50%;
    right: -140px;
    border-bottom: 4px dotted var(--gray-color02);
  }
}

.m_service_table-item-price{
  text-align: right;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .m_service_table-item-price{
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .m_service_table-item-price{
    font-size: 18px;
  }
}




/* --------page works-------- */

.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: 20px;
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  background: var(--back-color02);
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.5s;
}

.tab-btn:hover{
  transform: scale(1.1);
  box-shadow: 2px 2px 4px var(--gray-color02),
  -2px -2px 4px var(--gray-color02),
  2px -2px 4px var(--gray-color02),
  -2px 2px 4px var(--gray-color02);
}


.tab-btn.active {
  background: var(--primary-color);
  color: var(--gray-color);
}

.tab-btn.active:hover{
  transform: none;
  box-shadow: none;
  cursor: default;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.m_works_category_wrapper{
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .m_works_category_wrapper{
    max-width: var(--content-width-sm);
  }
}

@media screen and (min-width: 1080px) {
  .m_works_category_wrapper{
    max-width: var(--content-width-lg);
  }
}
.m_works_category-title{
  max-width: 80%;
  height: 60px;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  background: var(--primary-color);
  color: var(--white-color);
	text-shadow: 2px 2px 8px var(--primary-color);    
  font-family: Arial;
  text-shadow: 2px 2px 4px var(--white-color);
}


@media screen and (min-width: 768px) {
  .m_works_category-title{
    max-width: 70%;
    height: 80px;
    font-size: 32px;
  }
}

.m_works_category-item-list{
  padding-bottom: 40px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}


@media screen and (min-width: 768px) {
  .m_works_category-item-list{
    padding-bottom: 64px;
    margin: 64px auto 0;
    max-width: 700px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 64px 64px;
  }
}

.m_works_category_item{
  width: 280px;
  height: 260px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .m_works_category_item{
    width: 300px;
    height: 270px;
  }
}

.m_works_category_item + .m_works_category_item{
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .m_works_category_item + .m_works_category_item{
  margin-top: 0;
}
}

.m_works_category_item:nth-child(2n){
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .m_works_category_item:nth-child(2n){
  margin-left: 0;
}
}

.m_works_item_thamb-wrapper{
  width: 100%;
  height: 100%;
  border: 2px solid var(--black-color);
  border-radius: 0 8px 0 0;
}

.m_works_item_thamb-wrapper:hover .m_works_item_thamb{
  transform: scale(1.1);
  transition: transform 0.5s;
}

@media screen and (min-width: 768px) {
  .m_works_item_thamb-wrapper{
    border-radius: 0 16px 0 0;
  }
}

.m_works_item_thamb{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 6px 0 0;
  border: 2px solid var(--black-color);  
}

@media screen and (min-width: 768px) {
  .m_works_item_thamb{
    border-radius: 0 13px 0 0;
    border: 2px solid var(--black-color);  
  }
}

.m_works_item-headeing{
  position: absolute;
  width: 245px;
  height: 50px;
  border: 2px solid var(--black-color);
  border-radius: 0 8px 0 0;
  background: var(--list-color);
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .m_works_item-headeing{
    width: 265px;
    height: 55px;
    bottom: -35px;
  }
}

.m_works_item-title,
.m_works_item_cat-name{
  font-size: 14px;
  text-align: center;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .m_works_item-title{
    font-size: 16px;
    white-space: nowrap;
    font-weight: bold;
  }
}



/* Pagination */

.works_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 40px auto;
  width: 100%;
  height: 40px;
}

@media screen and (min-width: 768px) {
  .works_pagination{
    gap: 24px;
    margin: 64px auto;
    height: 60px;
  }
}
.works_pagination_item{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--back-color02);
  font-weight: bold;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .works_pagination_item{
    width: 60px;
    height: 60px;
  }
}
.works_pagination_item__current{
  background: var(--primary-color);
  color: var(--white-color);
  cursor: default;
}

.works_pagination_item__between{
  cursor: default;
}

@media screen and (min-width: 768px) {
  .works_pagination_item__between{
    font-size: 24px;
  }
}

.works_pagination_item__between,
.works_pagination_item__arrows{
  background: transparent;
  width: 20px;
  border-radius: 0;
}

.works_pagination_item__arrows{
  width: 30px;
  height: 30px;
  border: 15px solid;
  border-color: transparent transparent transparent var(--gray-color02);
  transition: transform 0.5s, border-color 0.5s;
}

.works_pagination a:hover {
  background: var(--list-color);
  color: var(--white-color);
  transform: scale(1.2);
  transition: transform 0.5s, background 0.5s;
}

.works_pagination_item__arrows:hover{
  background: white !important; 
  border-color: transparent transparent transparent var(--list-color) !important; /* ボーダーの色を変える */
  transform: scale(1.5);
  transition: transform 0.5s, border-color 0.5s; 
}



/* ----------page works single---------- */

.works-single_item_title{
max-width: 80%;
  height: 60px;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  background: var(--list-color);
  color: var(--white-color);
	text-shadow: 2px 2px 12px var(--white-color),
  -2px -2px 12px var(--white-color);
  box-shadow: 2px 2px 8px var(--gray-color02);
}

@media screen and (min-width: 1080px) {
  .works-single_item-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
}

.works-single_item{
  width: 280px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .works-single_item{
    width: 400px;
    height: 380px;
  }
}

@media screen and (min-width: 1080px) {
  .works-single_item{
    margin: 0 0;
  }
}

.works-single_item_contents{
  max-width: 400px;
  margin: 40px auto 0;
  background: var(--gray-color);
  padding: 8px;
}

@media screen and (min-width: 768px) {
  .works-single_item_contents{
  max-width: 450px;
  width: 450px;
  padding: 16px;
}
}

@media screen and (min-width: 1080px) {
  .works-single_item_contents{
    margin: 0 0;
  }
}

.works-single_item_th{
  padding: 8px;
  white-space: nowrap;
  font-weight: bold;
  border-bottom: 2px solid var(--gray-color02);
}

.works-single_item_td{
  padding: 8px;
  border-bottom: 2px solid var(--gray-color02);
}

.works-single_item_icon-wrapper{
  height: 55px;
  width: auto;
}

.works-single_item_icon{
  width: 80%;
  height: 100%;
  object-fit:cover;
}

.works-single_btn-wrapper{
  margin: 40px 0 0 auto ;
  width: 180px;
  height: 50px;
  position: relative;
  border-bottom: 2px solid var(--black-color);
  position: relative;
  transition: 0.8s ease;
}

@media screen and (min-width: 768px) {
  .works-single_btn-wrapper{
    width: 250px;
    height: 60px;
  }
}

.works-single_btn-wrapper::after{
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid ;
  border-color:transparent transparent var(--black-color) var(--black-color);
  position: absolute;
  bottom: -5px;
  left: 0;
  transform: rotate(45deg);
}

.works-single_btn-link{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}



.works-single_btn-wrapper::before {
  content: "";
  width: 90%;
  height: 10px;
  position: absolute;
  top: 100%;
  left: 5%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  z-index: -1;
  opacity: 0;
  transition: .8s;
}

.works-single_btn-wrapper:hover {
  transform: translateY(-10px);
}

.works-single_btn-wrapper:hover::before {
  transform: translateY(7px);
  opacity: 1;
}

.single_post{
  margin: 40px 34px 0 auto;
  max-width: 80%;
}

@media screen and (min-width: 1080px) {
  .single_post{
    margin-top: 144px;
  }
}

.single_post_title{
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .single_post_title{
    font-size: 20px;
  }
}

.single_post_date{
  margin-top: 8px;
  font-size: 12px;
  font-weight: bold;
  color: var(--gray-color02);
}

.sigle_post_text{
  margin-top: 45px;
  letter-spacing: 10%;
}

@media screen and (min-width: 1080px) {
  .sigle_post_text{
    font-size: 20px;
    margin-top: 40px;
  }
}

.single_post_btn-wrapper{
  margin:56px 36px 72px auto;
  width: 137px;
  height: 30px;
  border-radius: 15px;
  border: 1px solid var(--primary-color);
  background: var(--white-color);
  transition: 0.5s ease;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .single_post_btn-wrapper{
    width: 240px;
    height: 56px;
    border-radius: 28px;
  }
}

.single_post_btn-wrapper::before {
  content: "";
  width: 90%;
  height: 10px;
  position: absolute;
  top: 100%;
  left: 5%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  z-index: -1;
  opacity: 0;
  transition: .8s;
}

.single_post_btn-wrapper:hover {
  transform: translateY(-10px);

}

.single_post_btn-wrapper:hover::before {
  transform: translateY(7px);
  opacity: 1;
}



/* ---------- page contact --------- */




.contact_form{
  max-width: var(--content-width-sm);
  margin: 40px auto;
}

@media screen and (min-width: 756px) {
  .contact_form{
    margin-top: 56px;
  }
}

.contact_form_list{
  width: 100%;
}

.contact_form_heading {
  padding: 0 8px;
  width: 100%;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .contact_form_heading{
    padding: 8px 16px;
    font-size: 20px;
  }
}

.contact_form_required{
  font-weight: bold;
  width: 55px;
  height: 28px;
  font-size: 14px;
  border-radius: 14px;
  background-color: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .contact_form_required{
    width: 64px;
    height: 36px;
    border-radius: 18px;
    font-size: 16px;
  }
}

.contact_form_heading:not(:first-child){
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .contact_form_heading:not(:first-child){
  margin-top: 28px;
}
}

.contact_form_detail{
  width: 100%;
  height: 50px;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .contact_form_detail{
    height: 60px;
  }
}

.contact_form_input {
  padding: 8px;
  width: 100%;
  height: 100%;
  background: var(--back-color02);
  border-radius: 0 8px 0 0;
}

@media screen and (min-width: 768px) {
  .contact_form_input{
    border-radius: 0 16px 0 0;
  }
}

.contact_form_detail__radio{
  width: 100%;
  padding: 8px 16px 0;
}

@media screen and (min-width: 768px) {
  .contact_form_radio-list{
    display: flex;
    justify-content: start;
    align-items: center;
  }
}

.contact_form_radio-item + .contact_form_radio-item{
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .contact_form_radio-item + .contact_form_radio-item{
  margin-top: 0px;
  margin-left: 28px;
}
}

.contact_form_radio {
  appearance: radio;
}

.contact_form_label {
  padding-left: 8px;
}

@media screen and (min-width: 768px) {
  .contact_form_label {
  padding-left: 0;
}
}

.contact_form_detail__taxtarea{
  width: 100%;
  height: auto;
  margin-top: 8px;
}

.contact_form_textarea {
  width: 100%;
  height: 160px;
  background: var(--back-color02);
  padding: 8px;
  resize: none;
  border-radius: 0 8px 0 0;
}

@media screen and (min-width: 768px) {
  .contact_form_textarea{
    height: 200px;
    border-radius: 0 16px 0 0;
  }
}

.checkbox_container {
  font-size: 14px;
  margin-top: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px var(--gray-color02);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .checkbox_container {
    margin-top: 48px;
    font-size: 18px;
  }
}

.contact_form_privacy-checkbox {
  appearance: checkbox;
  height: 15px;
  width: 15px;
  background: var(--white-color);
  vertical-align: middle;
  margin-right: 16px;
}

@media screen and (min-width: 768px) {
  .contact_form_privacy-checkbox{
    width: 20px;
    height: 20px;
  }
}

.contact_form_privacy {
  text-decoration: underline;
}

.contact_form_btn-wrapper {
  margin: 32px auto;
  width: 170px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px var(--primary-color);
  border-radius: 0 8px 0 0;
  background: var(--white-color);
  transition: color 0.5s ease;
  position: relative;
  transition: 0.5s ease;
  cursor: pointer;
}

.contact_form_btn-wrapper::before {
  content: "";
  width: 90%;
  height: 10px;
  position: absolute;
  top: 100%;
  left: 5%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  z-index: -1;
  opacity: 0;
  transition: 0.8s ease;
}

.contact_form_btn-wrapper:hover {
  transform: translateY(-10px);
  background-color: var(--list-color);
  color: var(--white-color);
  border-radius: 0 16px 0 0;
}

.contact_form_btn-wrapper:hover::before {
  transform: translateY(7px);
  opacity: 1;
}

@media screen and (min-width: 1080px) {
  .contact_form_btn-wrapper {
    margin-top: 56px;
    width: 240px;
    height: 56px;
    border-radius: 0 16px 0 0;
  }
}

.contact_form_submit {
  font-size: 16px;
  font-weight: bold;
  background: transparent;
}

.wpcf7-spinner{
  position: absolute;
}

.contact_faq {
  background: var(--back-color);
}

.contact_faq_wrapper {
  padding-top: 24px;
  max-width: var(--content-width-sm);
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .contact_faq_wrapper{
    padding-top: 40px;
  }
}

.contact_faq_button {
  background: var(--white-color);
  width: 100%;
  box-shadow: 4px 4px 8px var(--black-color);
  border: 2px solid var(--black-color);
  border-radius: 0px 8px 0px 0px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .contact_faq_button {
    padding: 32px 24px 32px 48px;
    border-radius: 0 16px 0 0;
  }
}

.contact_faq_button:not(:first-child) {
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .contact_faq_button:not(:first-child) {
  margin-top: 24px;
}

}
.contact_faq_content {
  display: flex;
}

.contact_faq_content__a {
  padding-top: 16px;
}

@media screen and (min-width: 768px) {
  .contact_faq_content__a {
  padding-top: 24px;
}
}

.contact_faq_icon {
  font-family: roboto;
  font-size: 16px;
  font-weight: bold;
  padding-right: 16px;
}

@media screen and (min-width: 768px) {
  .contact_faq_icon {
  font-size: 20px;
  padding-right: 24px;
}
}

.contact_faq_icon__q {
  color: var(--list-color);
}

.contact_faq_icon__a {
  color: #e46868;
}

.contact_faq_txt {
  font-size: 14px;
  text-align: left;
  margin-right: 24px;
  line-height: 28px;
}

@media screen and (min-width: 768px) {
  .contact_faq_txt {
    font-size: 16px;
    line-height: 35px;
  }
}

.contact_faq_mark {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.contact_faq_mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 100%;
  background: var(--list-color);
}

.contact_faq_mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 4px;
  background: var(--list-color);
}



/* ---------- privacy_page --------- */

.privacy_contents{
  max-width: 900px;
  margin: 20px auto;
}

.privacy_heading{
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}

.privacy_heading:not(:first-child){
  margin-top: 24px;
}

.privacy_desc{
  margin-top: 8px;
  padding-left: 24px;
}

.privacy_company{
  margin: 45px auto 0;
  text-align: center;
  max-width: 450px;
  border: 1px solid var(--black-color);
  border-radius: 0px 8px 0 0;
  padding: 16px 0;
}

.privacy_company_name{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.privacy_company__p{
  text-align: center;
  margin-top: 24px;
}


/* ---------- 404_page --------- */

.notfound_content{
  max-width: var(--content-width-lg);
  margin: 0 auto;
}

.notfound_content_box{
  width: 80%;
  height: auto;
  margin: 0 auto;
  max-width: 400px;
}

@media screen and (min-width: 768px) {
  .notfound_content_img-wrapper{
    display: none;
  }
}

.notfound_content_img{
  width: 100%;
}

.notfound_content_title-box{
  text-align: center;
}

.notfound_content_title{
  text-align: center;
  font-size: 36px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .notfound_content_title{
    font-size: 80px;
  }
}

.notfound_content_title_sub{
  font-size: 18px;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .notfound_content_title_sub{
    font-size: 32px;
  }
}

.notfound_content_text{
  text-align: center;
  margin: 24px 0;
}

/* ----------js---------- */

.js_copy,
.js_sub-copy,
.js_cta-btn {
  opacity: 1;
}

.js_body.is-active {
  overflow: hidden;
}

.js_opening.is-active {
  visibility: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media screen and (min-width: 768px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
  background: var(--back-color02);
  background-size: cover;
  background-position: 75% 25% ;
}

.js_hamburger.is-active{
  background-color: transparent;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
  background-color: var(--list-color);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
  background-color: var(--primary-color);
}

.js_header.is-active {
  background-color: transparent;
}


.swiper-wrapper{
  transition-timing-function: linear;
}


.js_faq_mark.is-open::before {
  opacity: 0;
}

.js_faq-a {
  height: 0;
  opacity: 0;
}