@charset "UTF-8";
/*----------------------------
* setting
*----------------------------*/
html { font-size: 62.5%; }
body.no-scroll {
  overflow: hidden;
}
body{
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2;
  font-weight: 600;
  color:#242424;
  background-image: url(../images/body_bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #f2f2f2;
  background-size: contain;
  font-size: 1.6rem;
}

.gutters{
  max-width: 1200px;
  width:100%;
  margin: 0 auto;
}


@media screen and (max-width:767px) {
  body{
    font-size: 1.4rem;
  }
}
section{
  padding:5% 0;
}

.pc-only{display: block !important;}
.sp-only{display: none !important;}
@media screen and (max-width:820px) {
  .pc-only{display: none !important;}
  .sp-only{display: block !important;}
}



h2{
  font-family: "Noto Sans Cherokee", sans-serif;
  color: #bdc3c6;
  font-size:  clamp(56px, 5.8333vw, 112px);
  text-align: left;
  font-weight: 600;
  line-height: 1.4;
}



h3{
  text-align: left;
  background-color:#ddd;
  font-weight: 500;
  padding: 4px 0;
  padding-left: 20px;
  margin-bottom: 20px;
}

a{
  color: #000;
  text-decoration: none;
}
/*color *************************************************/
.white{color:#fff !important;}
.black{color:#111 !important;}
.pink{color:#f14889 !important;}
.yellow{color:#d09a00 !important;}
.green{color:#4ea544 !important;}
.blue{color:#00a0ea !important;}
.red{color:#de3427 !important;}

/*Header *************************************************/
header{
  padding:  max(2.0833vw, 30px);
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
header .HeaderWrap{
  display: flex;
  justify-content:space-between;
  align-items: center;
}
header .logo img{
  width: clamp(100px, 9.8958vw, 190px);
}
@media screen and (min-width:1025px) {
  header .Gnavi ul{
    display: flex;
    gap: 60px;
  }
}


@media screen and (max-width:1024px) {
  header .Gnavi .Pcnavi{
    display: none;
  }
}

header .Gnavi ul li{
  font-family: "Noto Sans Cherokee", sans-serif;
  font-weight: 600;
  font-size: 2rem;
}
header .Gnavi ul li a.active {
  border-bottom: 2px solid #333;
  padding-bottom: 4px;
}

/*hamburger *************************************************/

/* overlay-styles.css */
.hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width:1025px) {
  .hamburger-overlay {
    display: none;
  }
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #333;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color:#f2f2f2;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #333;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #333;
}

/*main *************************************************/

main{
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
}
  @media screen and (max-width:1024px) {
    main{}
  }

section .contain{
  max-width: 1130px;
  margin:0 auto;
}
  @media screen and (max-width:1024px) {
    section .contain{
      max-width: 90%;
    }
  }

section#ct001 .contain img{
  width: min(100%, 1130px);;
}

section#ct002 .contain{
  background-image: url(../images/top_about_bg.png);
  background-position: center bottom;
  background-size: contain;
  background-repeat:no-repeat;
}
  @media screen and (max-width:820px) {
    section#ct002 .contain{
      background: none;
    } 
  }

.SubTtl{
  font-size:  clamp(20px, 1.7187vw, 33px);
  font-weight: 600;
}
  @media screen and (max-width:820px) {
    .SubTtl{margin-top: 20px;}
  }

.Read{
  font-size:  clamp(16px, 1.0416vw, 20px);
  line-height: 2.4;
}
  @media screen and (max-width:820px) {
    .Spimg{margin-top: 20px;}
    .Spimg img{width: 100%;}
  }

  section#ct003 .TopServiceWrap{
    margin-top: 40px;
  }
  section#ct003 .TopServiceWrap .Box{
    display: flex;
    gap: 40px;
    margin-bottom: 100px;
  }
    @media screen and (max-width:820px) {
    section#ct003 .TopServiceWrap .Box{
    display: block;
    
  }
  }

  section#ct003 .TopServiceWrap .Box .Ttl{
   font-size:clamp(22px, 1.507vw, 30px);
   line-height: 1.6;
   margin-bottom: 40px;
  }
  @media screen and (max-width:820px) {
    section#ct003 .TopServiceWrap .Box .Ttl{
      margin-top: 40px;
    }
  }
  section#ct003 .TopServiceWrap .Box .Ttl span{
   color: #bf2b2b;
  }
   section#ct003 .TopServiceWrap .Box .Text p{
    font-size: clamp(15px, 0.8333vw, 16px) ;
    line-height: 2.2;
  }
  section#ct003 .TopServiceWrap .Box img{
   width: 100%;
  }
  section#ct003 .TopServiceWrap .Box > div:first-child {
  flex: 0 0 35%; 
}

section#ct003 .TopServiceWrap .Box > div:last-child {
  flex: 1;
}


section#ct004 .contain{
  background-image: url(../images/top_outline_bg.png);
  background-position: center bottom;
  background-size: contain;
  background-repeat:no-repeat;
}
  @media screen and (max-width:820px) {
    section#ct004 .contain{
      background: none;
    } 
  }

section#ct004 .TopOutlineWrap{
  display: flex;
  
}

  @media screen and (max-width:1024px) {
    section#ct004 .TopOutlineWrap{
      display: block;
    }
  }


section#ct004 .TopOutlineWrap div{
  flex: 0 0 50%; 
}
section#ct004 .TopOutlineWrap div ul{
  padding: 6px 0;
  border-top: solid 1px #ddd; 
  display: flex;
  gap: 20px;
}



section#ct004 .TopOutlineWrap div ul li{
  padding: 6px 0;
}
section#ct004 .TopOutlineWrap div ul li span{
  color: #8f9a9e;
}
section#ct004 .TopOutlineWrap div ul li:first-child{
  flex: 0 0 20%; 
}
 @media screen and (max-width:820px) {
    section#ct004 .TopOutlineWrap div ul li:first-child{
     flex: 0 0 30%; 
    }
  }
section#ct004 .TopOutlineWrap div ul li:last-child {
  flex: 1;
}
/*footer *************************************************/

footer{
  max-width: 1440px;
  width: 100%;
  margin:  0 auto;
  font-size: 14px;
  font-weight: 400;
  color: #111;
  text-align: center;
  padding: 10px;


}

@media screen and (max-width:769px) {
  footer{
    /*margin-bottom: 64px;*/
  }
}

/*pagetop *************************************************/

#pageTop {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 15000;
}
#pageTop i {
  padding-top: 6px
}
#pageTop a {
  display: block;
  z-index: 999;
  padding: 10px 0 0 0px;
  border-radius: 30px;
  width: 52px;
  height: 52px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.imgRight{
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  .imgRight{
    margin-top: 0;
  }
}


.mgt0{margin-top: 0 !important;}
.mgt20{margin-top: 20px !important;}
.mgt40{margin-top: 40px !important;}
.mgt60{margin-top: 60px !important;}
.mgt80{margin-top: 80px !important;}
@media screen and (max-width:767px) {
  .mgt40{margin-top: 20px !important;}
}
.mb0{margin-bottom: 0 !important;}

