/* CSS Document */
html {
  scroll-behavior: smooth;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	word-break: keep-all;
	line-break: strict;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-align: left;
  line-break: strict;
  word-break: normal;
  box-sizing: border-box;
  margin: 0;
  bottom: 0;
  color: var(--black);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

body.fixed{
  height: 100%;
  overflow: hidden;
}

a {
  display: block;
  width: 100%;
  transition: opacity 0.3s ease-out;
  color: inherit;
}

a:hover {
  opacity: 0.8;
}

.l-wrapper{
  padding-top: 80px;
}

@media screen and (max-width: 1023px) {
  .l-wrapper{
    padding-top: 60px;
  }
  
}

/* -----------------------------------------
contents
-----------------------------------------*/
/* contents_inner */

.contents_inner{
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:1024px) and ( max-width:1180px) {
  .contents_inner{
    width: 90%;
  }
}

@media screen and (min-width:768px) and ( max-width:1023px) {
  .contents_inner{
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .contents_inner{
    width: 87.2%;
  }
}

/* contents_area */

.contents_area{
  max-width: 1000px;
}

@media screen and (min-width:1024px) and ( max-width:1180px) {
  .contents_area{
    width: 100%;
  }
}

@media screen and (min-width:768px) and ( max-width:1023px) {
  .contents_area{
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .contents_area{
    width: 100%;
  }
}

/* -----------------------------------------
page Layout
-----------------------------------------*/
:root{
    --main: #C3E3EA;
    --blue01: #40849D;
    --blue02: #D5E7EB;
    --green01: #6098AD;
    /* --green02: #517D85; */
    --black: #333333;
    --brown: #636363;
    --gray01: #DDDDDD;
    --gray02: #F7F7F7;
    --gray03: #F0F0F0;
    --gray04: #BFBFBF;
    --white: #FFFFFF;
    --gold: #796A41;

    --f-noto: 'Noto Sans JP', sans-serif;
    --f-barlow: "Barlow", sans-serif;
    --f-jost: 'Jost', sans-serif;
}

/* slick初期対応 */
*{
  min-width: 0;
  min-height: 0;
}

.slick-slider{
  opacity: 0;
  transition: opacity .5s linear;
}
.slick-slider.slick-initialized{
  opacity: 1;
}

/* -----------------------------------------
　utility
------------------------------------------*/
.d-tab{
  display: none !important;
}

.d-tab-only{
  display: none !important;
}

@media screen and (max-width: 1023px) {
  .d-tab{
    display: block !important;
  }
  
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .d-tab-only{
    display: block !important;
  }
}

.d-pc {
    display: block !important;
}
.d-sp {
    display: none !important;
}
.d-pci {
    display: inline !important;
}
.d-spi {
    display: none !important;
}
@media screen and (max-width: 767px) {
    .d-pc {
        display: none !important;
    }
    .d-tab-only{
        display: none !important;
    }
    .d-sp {
        display: block !important;
    }
    .d-pci {
        display: none !important;
    }
    .d-spi {
        display: inline !important;
    }
}

.barlow{
  font-family: var(--f-barlow);
}

.jost{
  font-family: var(--f-jost);
}

/* -----------------------------------------
　common
------------------------------------------*/
/* header */
#l-header{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255,255,255,0.86); 
    z-index: 5;
}

#l-header h1,
#l-header .logo{
    width: 187px;
    height: 80px;
    aspect-ratio: 187 / 80;
}

#l-header h1 a,
#l-header .logo a{
    width: 100%;
    height: 100%;
}

#l-header > ul{
    display: flex;
    align-items: center;
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    gap: 45px;
    height: 100%;
}

#l-header > ul > li{
  display: flex;
  align-items: center;
  height: 100%;
}

#l-header > ul > li >a{
  display: flex;
  align-items: center;
  height: 100%;
}

#l-header > ul > li.business{
  position: relative;
}

#l-header > ul > .business .submenu{
  display: none;
}

#l-header > ul .business:hover .submenu,
#l-header > ul .business.active .submenu{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: absolute;
  top: 80px;
  left: 0;
  width: 380px;
  height: 60px;
  background-color: rgba(213, 231, 235, 0.3);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

#l-header > .contact{
  width: 80px;
  height: 80px;
  margin-left: 48px;
}

#l-header > .contact a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  background: var(--blue01);
  color: var(--white);
  width: 100%;
  height: 100%;
  font-size: 13px;
}

#l-header > .contact a img{
  width: 28px;
}

@media screen and (min-width: 1024px) {
  #l-header nav{
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  #l-header{
    width: 100%;
    height: 60px;
  }

  #l-header nav{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-left: 0;
    background: #C3E3EA;
    cursor: pointer;
    position: relative;
    z-index: 10;
  }

  #l-header nav.open{
    background: #C3E3EA;
  }

  #l-header h1,
  #l-header .logo{
      width: auto;
      height: 60px;
  }

  #l-header > ul{
      display: none;
  }

  #l-header > .contact{
      width: 60px;
      height: 60px;
      margin-left: auto;
  }

  #l-header > .contact a{
    font-size: 13px;
  }

  #l-header > .contact a img{
    width: 20px;
  }
}

@media screen and (max-width: 676px) {
  #l-header > .contact a{
    font-size: clamp(11px,2.925vw,13px);
  }
}

/* footer */
#l-footer{
  padding: 40px 0 0;
  position: relative;
}

#l-footer .contents_inner{
  position: relative;
}

#l-footer .pagetop a{
  position: absolute;
  right: 80px;
  top: -39px;
  width: 78px;
  height: 78px;
  background: url('../img/common/btn_pagetop.svg') no-repeat;
  background-size: 100% auto;
  transition: all .5s;
}


#l-footer .l-footer_inner{
  display: flex;
  justify-content: space-between;
}

#l-footer .l-footer_inner_main{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  
}

#l-footer .l-footer_inner_main > div > a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

#l-footer .l-footer_inner_main > div > a > p{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.42;
  text-align: center;
}

#l-footer .l-footer_inner_main > div > a > img{
  width: 29px;
  height: 29px;
}

#l-footer .l-footer_inner_navi {
  max-width: 380px;
  width: 36.2%;
  display: flex;
	flex-wrap: wrap;
	flex-direction: column;
  height: 80px;
  gap: 7px;
}

#l-footer .l-footer_inner_navi li a{
  display: block;
  font-size: 13px;
  padding-left: 10px;
  position: relative;
}

#l-footer .l-footer_inner_navi li a:before{
  content: '';
  width: 4px;
  height: 4px;
  border: 0;
  border-top: solid 1px var(--green01);
  border-right: solid 1px var(--green01);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -3px;
  transform: rotate(45deg);
}

#l-footer .copylight{
  display: flex;
  width: 99%;
  height: 45px;
  margin: 40px auto 0;
  border-top: 1px solid var(--gray01);
  justify-content: center;
  align-items: center;
}

#l-footer .copylight small{
  display: flex;
  color: var(--black);
  font-family: var(--f-jost);
  font-size: 13px;
}

@media screen and (min-width:768px) and ( max-width:1023px) {
  #l-footer .l-footer_inner_navi{
    width: 50%;
  }

  #l-footer .pagetop a{
    right: 5%;
  }

  #l-footer .l-footer_inner_main .logo_footer{
    width: 140px;
    height: 60px;
  }

  #l-footer .l-footer_inner_main > div > a > img{
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width:767px) {
  #l-footer{
    padding: 35px 0 0;
  }

  #l-footer .pagetop a{
    width: 60px;
    height: 60px;
    right: 5.75vw;
  }

  #l-footer .l-footer_inner{
    flex-direction: column;
  }

  #l-footer .l-footer_inner_main{
    justify-content: flex-start;
  }

  #l-footer .l-footer_inner_main p a{
    width: 28.8vw;
    height: auto;
    aspect-ratio: 108px 49px;
  }

  #l-footer .l-footer_inner_navi{
    margin-top: 40px;
    max-width: 100%;
    width: 100%;
  }

  #l-footer .copylight{
    width: 86.17%;
    height: 35px;
    margin: 20px auto 0;
  }

  #l-footer .copylight small{
    font-size: 2.66vw;
  }

}


/*=============================
.js-toggle_accordion
=============================*/
.js-toggle_accordion{
  display: flex;
  gap: 10px;
}

.js-toggle_accordion span{
  position: relative;
  background: var(--green01);
  width: 16px;
  height: 16px;
  border-radius: 100vh;
  margin-top: -2px;
}

.js-toggle_accordion span::before{
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 1px;
  margin-left: -3px;
  background: var(--white);
  transition: .2s;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.js-toggle_accordion span::after{
  position: absolute;
  content: "";
  top: 50%;
  left: calc(50% - 3px);
  width: 6px;
  height: 1px;
  background: var(--white);
  transition: .3s;
}

.js-toggle_accordion.active span::before{
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}




/*=============================
.btn-trigger
=============================*/
.btn-trigger {
    position: relative;
    width: 20px;
    height: 12px;
    margin-top: -22px;
    z-index: 10;
}

.btn-trigger:after{
    position: absolute;
    content: 'MENU';
    color: var(--white);
    font-family: var(--f-barlow);
    font-size: 13px;
    letter-spacing: 0.02em;
    top: 20px;
    left: -5px;
}
.btn-trigger.active:after{
  content: 'CLOSE';
  font-size: 13px;
  left: -8px;
}

@media screen and (max-width: 767px) {
  .btn-trigger {
      margin-top: -18px;
  }
  .btn-trigger:after{
    font-size: clamp(11px,2.925vw,13px);
  }
  .btn-trigger.active:after{
    font-size: clamp(11px,2.925vw,13px);
  }

}

.btn-trigger span {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 1px;
    background: var(--white);
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 6px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#js-toggle_menu span:nth-of-type(1) {
  -webkit-animation: btn-bar01 .75s forwards;
  animation: btn-bar01 .75s forwards;
}
@-webkit-keyframes btn-bar01 {
  0% {
    -webkit-transform: translateY(6px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn-bar01 {
  0% {
    transform: translateY(6px) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#js-toggle_menu span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
#js-toggle_menu span:nth-of-type(3) {
  -webkit-animation: btn-bar03 .75s forwards;
  animation: btn-bar03 .75s forwards;
}
@-webkit-keyframes btn-bar03 {
  0% {
    -webkit-transform: translateY(-6px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn-bar03 {
  0% {
    transform: translateY(-6px) rotate(-45deg);
  }
  50% {
    transform: translateY(-6px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#js-toggle_menu.active span:nth-of-type(1) {
  -webkit-animation: active-btn-bar01 .75s forwards;
  animation: active-btn-bar01 .75s forwards;
}
@-webkit-keyframes active-btn-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(6px) rotate(45deg);
  }
}
@keyframes active-btn-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(6px) rotate(0);
  }
  100% {
    transform: translateY(6px) rotate(45deg);
  }
}
#js-toggle_menu.active span:nth-of-type(2) {
  opacity: 0;
}
#js-toggle_menu.active span:nth-of-type(3) {
  -webkit-animation: active-btn-bar03 .75s forwards;
  animation: active-btn-bar03 .75s forwards;
}
@-webkit-keyframes active-btn-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-6px) rotate(-45deg);
  }
}
@keyframes active-btn-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6px) rotate(0);
  }
  100% {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/*=============================
#g-menu
=============================*/
#g-menu{
  display: none;
}
@media screen and (max-width: 1023px) {
  #g-menu{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: -375px;
    transition: all 0.75s;
    width: 375px;
    /* height: 100dvh; */
    background: rgba(255,255,255,0.95);
    z-index: 9;
    overflow-y: auto;
  }

  #g-menu_back{
    display: none;
  }

  #g-menu_back.open{
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 4;
  }

  #g-menu.open{
    right: 0;
  }

  #g-menu .g-menu_wrapper{
    position: relative;
    width: 100%;
    /* height: 100vh; */
  }

  #g-menu .g-menu_inner{
    width: 87%;
    margin: 95px auto auto;
    display: flex;
    flex-direction: column;
    /* height: calc(100vh - 120px); */
  }

  #g-menu .title_menu{
    font-size: 18px;
    line-height: 2.22;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
  }

  #g-menu .title_menu.mb-40{
    margin-bottom: 40px;
  }

  #g-menu ul{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0 0 30px;
    width: 100%;
  }

  /* #g-menu ul > li{
    width: 100%;
    font-size: 12px;
    
    box-sizing: border-box;
  } */

  #g-menu ul > li a,
  #g-menu ul > li button{
    display: flex;
    align-items: center;
    width: 100%;
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    line-height: 3.67;
    padding-left: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--gray01);
  }

  #g-menu ul li.business .toggle__body{
    display: none;
  }

  #g-menu ul li.business .toggle__body.open{
    display: block;
  }

  #g-menu .contact{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
  }

  #g-menu .contact a{
    display: block;
    width: 229px;
    height: auto;
  }

  

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #g-menu .g-menu_wrapper .logo{
    display: none;
  }

  #g-menu .g-menu_wrapper{
    position: relative;
    width: 100%;
    height: 100svh;
  }
}

@media screen and (max-width: 767px) {
  #g-menu{
    right: -100vw;
    width: 100%;
  }

  #g-menu .g-menu_wrapper{
    position: relative;
    width: 100%;
    height: 100%;
  }

  #g-menu .g-menu_wrapper .logo{
    position: absolute;
    top: 0;
    left: 0;
  }

  #g-menu ul > li a,
  #g-menu ul > li button{
    font-size: 4.266vw;
  }
}

/*=============================
共通ボタン
=============================*/

.link_btn{
  max-width: 260px;
  height: 60px;
  margin: auto;
}

.link_btn a{
  width: 100%;
  height: 100%;
  display: flex;
  background: #fff;
  border: 1px solid var(--green01);
  border-radius: 100vh;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  font-family: var(--f-zen);
  font-weight: 700;
  transition: 0.5s;
}

.link_btn a::after{
  position: absolute;
  content: '';
  background: url('../img/common/ico_more.svg') no-repeat;
  background-size: 100% auto;
  width: 20px;
  height: 16px;
  right: 10.77%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: 0.5s;
}

.link_btn a:hover{
  background: #F0F8F9;
  border: 1px solid #fff;
}

.link_btn a:hover::after{
  transform: rotate(90deg);
}

@media screen and (max-width: 767px) {
  .link_btn{
    max-width: 64%;
    height: 13.333vw;
  }

  .link_btn a{
    font-size: 3.733vw;
  }
  
  .link_btn a::after{
    width: 15px;
    height: 12px;
  }

}

.link_btn_small{
  max-width: 100%;
  height: 40px;
  margin: auto;
}

.link_btn_small a{
  width: 100%;
  height: 100%;
  display: flex;
  background: #fff;
  border: 1px solid var(--green02);
  border-radius: 100vh;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: var(--green02);
  font-family: var(--f-zen);
  font-size: 14px;
  font-weight: 700;
  transition: 0.5s;
}

.link_btn_small a span{
  content: '';
  background: url('../img/common/ico_more_small.svg') no-repeat;
  background-size: 100% auto;
  width: 15px;
  height: 12px;
  transition: 0.5s;
  margin: -1px 0 0 10px;
}

.link_btn_small a:hover{
  background: var(--green02);
  border: 1px solid var(--green02);
  color: var(--white);
}

.link_btn_small a:hover span{
  background: url('../img/common/ico_more_small_w.svg') no-repeat;
  background-size: 100% auto;
  transform: rotate(90deg);
}

@media screen and (max-width: 767px) {
  .link_btn_small a{
    font-size: 3.7333vw;
  }
}

/*=============================
下層ページ共通
=============================*/

@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/*=============================
404
=============================*/
#notfound .l-wrapper{
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

#notfound .l-notfound{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: -285px;
  width: 100%;
}

#notfound .l-notfound h1{
  color: var(--blue01);
  font-size: 82px;
  /* line-height: 2.07; */
}

#notfound .l-notfound h1 span{
  display: block;
  font-size: 20px;
  line-height: 2;
  text-align: center;
}

#notfound .l-notfound .btn_top{
  width: 228px;
  height: 60px;
  margin-top: 60px;
}

#notfound .l-notfound .btn_top a{
  border: 1px solid var(--gray04);
  border-radius: 4px;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
}

#notfound .l-notfound .btn_top a::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url('../img/common/ico_link.svg') no-repeat;
  background-size: 100% auto;
  width: 22px;
  height: 22px;
}

#notfound #l-footer{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

#notfound #js-pagetop{
  display: none;
}

@media (max-width: 767px) {
  #notfound{
    overflow: hidden;
  }
  
  #notfound .l-notfound{
    margin-top: -340px;
  }
  
  #notfound .l-notfound h1{
    font-size: 15.4667vw;
  }
  
  #notfound .l-notfound h1 span{
    font-size: 5.333vw;
  }
  
  #notfound .l-notfound .btn_top{
    width: 55.4667vw;
    height: 54px;
    margin-top: 50px;
  }
  
  #notfound .l-notfound .btn_top a{
    border: 1px solid var(--gray04);
    border-radius: 4px;
    padding: 18px 18px;
    font-size: 3.733vw;
  }
  
  #notfound .l-notfound .btn_top a::after{
    right: 18px;
  }
  
}