@charset "utf-8";

:root {
  /* color */
  --primary-color: #7f5b9f;  /* メインカラー（例：青） */
  --secondary-color: #CEB0D3; /* サブカラー（例：グレー） */
  --background-color: #ffffff; /* 背景色 */
  --text-color: #4f3467; /* 文字色 */

  /* font-size */
  --font-size-h1: clamp(28px, 5vw, 38px);
  --font-size-h2: clamp(19px, 4vw, 26px);
  --font-size-h3: clamp(18px, 3vw, 24px);
  --font-size-base: clamp(14px, 3vw, 16px);
  --font-size-small: clamp(10px, 3vw, 13px);
  --font-size-large: clamp(28px, 5vw, 38px);

  /* 余白 */
  --spacing-xs: clamp(4px, 1vw, 8px);   /* 極小の余白 */
  --spacing-sm: clamp(8px, 2vw, 16px);  /* 小さい余白 */
  --spacing-md: clamp(16px, 3vw, 24px); /* 中くらいの余白 */
  --spacing-lg: clamp(24px, 4vw, 32px); /* 大きい余白 */
  --spacing-xl: clamp(32px, 5vw, 48px); /* 特大の余白 */
}
/* ========================
    common
=========================== */
main{
  overflow: hidden;
}

body{
  font-size: 17px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-color);
  height: 100%;
  overflow-x: hidden;
}

.wrap{
  max-width: 1600px;
  margin: auto;
}

.inner{
  width: 90%;
  max-width: 1200px !important;
  margin: auto;
}

img{
  width: 100%;
  height: auto;
}

.overall-section p {
  margin-bottom: var(--spacing-sm);
}

.c-container{
  max-width: none;
}

.section-header{
  font-size: 63px;
}

.section-header__title{
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: var(--text-color);
  line-height: 1.04;
  font-size: 1em;
}

.section-header__subtitle{
  font-size: calc((17 / 63) * 1em);
  line-height: 1.88;
  margin-top: calc((14 / 17) * 1em);
}

.btn-block,
.btn,
.smf-button-control{
  width: 90%;
  max-width: 224.8px;
  margin: auto;
}

.btn-block .smb-btn-wrapper.is-style-ghost .smb-btn,
.btn__link,
.smf-action .smf-button-control__control{
  font-size: var(--font-size-base);
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: calc((15 / 14) * 1em) 5px;
  min-width: max-content;
  transition: 0.4s ease;
  display: block;
  text-align: center;
  border-radius: 0.1em;
  width: 100%;
}

.single-box .btn__link,
.thanks .btn__link,
.smf-action .smf-button-control__control{
  background-image: none;
  background-color: transparent;
  border-color: #aeaecc;
  color: var(--text-color);
}

.single-box .btn__link{
  margin-top: calc((60 / 14) * 1em);
}

.btn-block .smb-btn-wrapper.is-style-ghost .smb-btn:hover,
.btn__link:hover{
  background-color: var(--primary-color);
}

.single-box .btn__link:hover,
.thanks .btn__link:hover,
.smf-action .smf-button-control__control:hover{
  background-color: var(--text-color);
  color: #ffffff;
}

.lead{
  font-size: 34px;
  line-height: 1.67;
  color: var(--text-color);
}

.section-header + .lead{
  margin-top: calc((45 / 34) * 1em);
}

.lead .sme-font-size{
  vertical-align: super;
}

.lead + .text{
  margin-top: calc((22 / 17) * 1em);
}

.bg--gray{
  background-color: #f6f6f6;
}

.no-found__text{
  margin: calc((50 / 18) * 1em) 0 calc((100 / 18) * 1em);
  font-size: 18px;
}

.overall-section{
  padding-top: 120px;
  padding-bottom: 120px;
}

.pc{
display: block;
}

.sp{
display: none;
}

@media screen and (max-width: 1024px){
  body{
      font-size: 16px;
  }

  .no-found__text{
  font-size: 20px;
  }

  .section-header{
      font-size: 53px;
  }
.section-header__title{
      font-size: 0.9em;
}

  .lead {
      font-size: 28px;
  }
}

@media screen and (max-width: 782px){
  body{
      font-size: 15px;
  }

  body.home::before{
      height: 100vh;
  background: url('../img/top/bg-sp.jpg') no-repeat;
  background-position: center;
  background-size: cover;
  }
.inner{
  width: 87%;
}

  .no-found__text{
      font-size: 18px;
  } 
  
  .section-header{
      font-size: 43px;
  }
.section-header__title{
      font-size: 0.85em;
}

  .section-header__subtitle {
      font-size: 13px;
      line-height: 1.68;
    margin-top: calc((14 / 17) * 0.5em);
  }

  .lead {
      font-size: 18px;
      line-height: 1.47;
  }
.text{
      font-size: 0.95em;
}

  .section-header + .lead{
      margin-top: 18px;
  }

  .btn-block .smb-btn-wrapper.is-style-ghost .smb-btn,
  .btn__link,
  .smf-action .smf-button-control__control{
      font-size: 13px;
  }

  .overall-section{
      padding-top: 80px;
      padding-bottom: 80px;
  }

.pc{
display: none;
}

.sp{
display: block;
}
}

/* ========================
  header
=========================== */
.header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: 0.4s ease;
  margin-top: 0;
}

.header.js-active{
  background-color: #ffffff;
}

.header__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px calc((56 / 1600) * 100vw) 0px calc((56 / 1600) * 100vw);
  background-color: var(--primary-color);
}

.header-logo{
  max-width: 260px;
  width: 100%;
	padding: 0;
}

.header-logo__link{
  display: block;
  transition: 0.4s ease;
}

.header-logo__link:hover{
  opacity: 0.8;
}

.header-logo img{
    max-height: 85px;
    width: auto;
  display: block;
  margin: auto;
}

.header-menu__list{
  display: flex;
  align-items: center;
}

.header-menu__list li{
  line-height: 1;
}

.header-menu__list li:not(.lang-item):nth-child(n + 2){
  margin-left: calc((28 / 1600) * 100vw);
}

.header-menu__list .lang-item{
  border-left: 1px solid #afafaf;
}

.header-menu__list .lang-item.lang-item-first{
  margin-left: calc((22 / 1600) * 100vw);
  border-left: none;
}

.header-menu__list a{
  font-size: 14px;
  color: var(--background-color);
  transition: 0.4s ease;
}

.header-menu__list li:not(.lang-item) a{
  position: relative;
  transition: 0.4s ease;
}

.header-menu__list li:not(.lang-item) a::after{
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.4s ease;
}

.header-menu__list li:not(.lang-item) a:hover::after{
  width: 100%;
}

.header-menu__list .lang-item a{
  color: #afafaf;
  padding: 0 calc((16 / 1600) * 100vw);
}

.header-menu__list .lang-item a:hover{
  color: var(--primary-color);
}

.header-menu__list .current-lang a{
  color: var(--primary-color);
  font-weight: 700;
}
.header-lang{
display: none;
/* 	display: flex; */
}
.header-lang li{
list-style:none;
}
.header-lang .lang-item{
  border-left: 1px solid #afafaf;
    line-height: 1;
}
.header-lang .lang-item.lang-item-first{
    margin-left: calc((22 / 1600) * 100vw);
  border-left: none;
}
.header-lang li a{
  color: #afafaf;
  padding: 0 calc((16 / 1600) * 100vw);
  font-size: 14px;
}
  .header-lang .current-lang a {
  color: var(--primary-color);
  font-weight: 700;
}
.hamburger-menu{
  display: none;
  position: fixed;
  top: 12px;
  right: 12px;
  width: 37px;
  height: 37px;
  z-index: 100;
  padding: 7px 5px;
  background-color: var(--primary-color);
}

.hamburger__line{
  width: 60%;
  height: 2px;
  background-color: #ffffff;
  transition: 0.4s ease;
  position: absolute;
  display: inline-block;
}

.hamburger__line--top {
  top: calc(50% + 7px);
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease,
          top 0.2s 0.3s ease; 
}

.hamburger__line--middle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.1s 0.2s ease;
}

.hamburger__line--bottom {
  top: calc(50% - 7px);
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease,
          top 0.2s 0.3s ease;
}

.js-close .hamburger__line--top {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: top 0.2s 0.3s ease,
          transform 0.2s 0.6s ease;
}

.js-close .hamburger__line--middle {
  opacity: 0;
  transition: opacity 0.1s 0.6s ease;
}

.js-close .hamburger__line--bottom {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: top 0.2s 0.3s ease,
          transform 0.2s 0.6s ease;
}

@media screen and (max-width: 1024px){

  .header-logo{
      width: 150px;
  }
}

@media screen and (max-width: 782px){
  .header {
      position: absolute;
  }

  .header__info{
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #ffffff;
      z-index: 20;
      display: none;
  }

  .header-menu__list{
      position: absolute;
      top: 40%;
      left: 0;
      transform: translateY(-50%);
      display: block;
      width: 100%;
      text-align: center;
  }

  .header-menu__list li{
      margin-top: 35px;
  }

  .header-menu__list .lang-item{
      display: none;
  }

  .header-menu__list li:not(.lang-item):nth-child(n + 2),
  .header-menu__list .lang-item.lang-item-first{
      margin-left: 0;
  }

  .header-menu__list li:first-child{
      margin-top: 0;
  }

  .header-menu__list a{
    color: var(--text-color);
  }

  .hamburger-menu{
      display: block;
  }

  .header-logo{
      width: 110px;
  }

  .header-logo__link {
      padding: 0 0 0 5px;
  }

  .header-logo img {
      width: 60px;
  }
.header-lang{
  display: flex;
      position: fixed;
  top: 22px;
  right: 65px;
}
}

/* ========================
  mainvisual
=========================== */
.mainvisual{
  position: relative;
  background-color: #ffffff;
}

.mainvisual-text__wrap{
  position: absolute;
  top: calc((250 / 1600) * 100vw);
  left: 58%;
  transform: translateX(-50%);
  width: 90%;
  color: var(--text-color);
  font-size: min(60px, calc((50 / 800) * 100vw));
}

.mainvisual-text{
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  filter: drop-shadow(2px 2px 4px #ffffff);
}

.mainvisual-text--size-sm{
  font-size: calc((17 / 50) * 1em);
  line-height: 1.88;
  margin-top: calc((14 / 1600) * 100vw);
  filter: drop-shadow(2px 2px 4px #ffffff);
}

@media screen and (max-width: 782px){
  .mainvisual-text__wrap{
      font-size: 35px;
  top: 27%;
  transform: translateX(-56%);
  }

  .mainvisual-text--size-sm{
      font-size: 13px;
      line-height: 1.6;
     margin-top: calc((20 / 1600) * 100vw);
  }

  .mainvisual .wp-block-image{
      height: 500px;
  }

  .mainvisual .wp-block-image img{
      height: 100%;
      object-fit: cover;
  }
.mainvisual-text{
      line-height: 1.3;
}
}

/* ========================
  下層　mainvisual
=========================== */
.under-mainvisual{
  position: relative;
  z-index: 0;
}

.under-mainvisual__bg{
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.under-mainvisual__text{
  font-size: 34px;
  color: var(--text-color);
  line-height: 1.67;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-49%);
  width: 100%;
  padding: 0 15px;
  text-align: center;
  z-index: 1;
}

.under-mainvisual__box{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 49%);
  font-size: 30px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: calc((200 / 30) * 1em);
  min-width: max-content;
  padding: 10px;
  height: calc((200 / 30) * 1em);
  z-index: 1;
  background-color: var(--primary-color);
}

.under-mainvisual__title{
  font-size: 1em;
  font-weight: 300;
  line-height: 1.33;
}

.under-mainvisual__subtitle{
  font-size: calc((15 / 30) * 1em);
}

@media screen and (max-width: 1024px){
  .under-mainvisual__text{
      font-size: 28px;
  }

  .under-mainvisual__box{
      font-size: 25px;
  }
}

@media screen and (max-width: 782px){
  .under-mainvisual__bg{
      height: 350px;
  }

  .under-mainvisual__text{
      font-size: 22px;
      line-height: 1.47;
  }

  .under-mainvisual__box{
      font-size: 20px;
  }
.under-mainvisual__subtitle{
      font-size: calc((18 / 30) * 1em);
}
}


/* ========================
  footer
=========================== */
.footer{
    padding: 50px 0 35px;
    background-color: var(--secondary-color);
}
.footer .inner{
  display: flex;
  justify-content: space-between;
  align-items: anchor-center;
}
.footer__content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo{
  width: 20%;
}
.footer__info{
  width: 74%;
}
.footer__company-name{
  font-weight: 600;
}
.footer__menu-list{
  display: flex;
  justify-content: flex-end;
}
.footer__address{
  font-size: var(--font-size-small);
  line-height: 1.5;
}

.footer__menu-list li{
    margin-left: 55px;
    position: relative;
}

.footer__menu-list li::before{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -27px;
    transform: translateY(-50%);
}

.footer__menu-list li:first-child{
    margin-left: 0;
}

.footer__menu-list li:first-child::before{
    display: none;
}

.footer__menu-list a{
    display: block;
    width: 100%;
    height: 100%;
    font-size: var(--font-size-small);
    font-weight: 400;
    transition: 0.4s ease;
    border-bottom: 1px solid;
    font-weight: 600;

}

.footer__menu-list a:hover{
    opacity: 0.7;
}

.copyright{
    text-align: right;
    font-size: var(--font-size-small);
    margin-top: 15px;
    line-height: 1.4;
}

.copyright small{
    font-size: 1em;
}

@media screen and (max-width: 1024px){
  .footer__content,
  .footer .inner{
    flex-wrap: wrap;
  }
  .footer__logo{
    width: 30%;
  }
  .footer__info{
    width: 100%;
  }
  .footer__menu-list{
    justify-content: flex-start;
  }
  .copyright{
    text-align: left;
  }
  .footer__copyright-wrap{
    margin-top: 1.5em;
  }
}

@media screen and (max-width: 782px){
    .footer{
        padding: 35px 0;
    }

    .footer__menu-list li{
        margin-left: 30px;
    }

    .footer__menu-list li::before {
        left: -15px;
    }

    .footer__copyright-wrap{
      margin-top: 1em;
    }
}


/* ========================
  contact
=========================== */
.contact .smf-form--simple-table .smf-item{
  align-items: center;
}
.contact .smf-form--simple-table .smf-item.required .smf-item__label, 
.contact .smf-form--simple-table .smf-item.any .smf-item__label{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.contact .smf-item__label__text{
  font-weight: 600;
}
.contact .smf-form--simple-table .smf-item.required .smf-item__label::after, 
.contact .smf-form--simple-table .smf-item.any .smf-item__label::after{
  font-size: 0.8125rem;
  white-space: nowrap;
  line-height: 1;
  font-weight: 600;
  margin-left: auto;
  display: inline-block;
  padding: 4px 0.6em;
  transform: translateY(25%);
  border-radius: 1em;
}
.contact .smf-form--simple-table .smf-item.required .smf-item__label::after{
  content: "必須";
  color: var(--background-color);
  background: var(--primary-color);
}
.contact .smf-form--simple-table .smf-item.any .smf-item__label::after{
  content: "任意";
  color: var(--text-color);
  background: #f5dbfa;
}
.contact .smf-form .smf-item .smf-text-control__control{
  width: 100%;
}
.contact .smf-button-control__control{
  background: var(--primary-color);
  color: var(--background-color);
  margin: auto;
}
.contact .smf-action{
  max-width: 300px;
  margin: 4em auto 0;
}
.contact .scroll-box{
  display: block !important;
  max-height: 200px;
  overflow-y: auto;
  padding: 1.5em !important;
  border: 1px solid #ccc;
  background: #f9f9f9;
}
.contact .smf-form .smf-checkbox-control{
  align-items: center;
}
@media screen and (max-width: 782px){
  .contact .smf-form--simple-table .smf-item.required .smf-item__label::after, 
  .contact .smf-form--simple-table .smf-item.any .smf-item__label::after{
      margin-left: 0.5em;
      margin-right: auto;
  }
}


/* ========================
  pagination
=========================== */
.paginate_links{
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.page-numbers{
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((66 / 16) * 1em);
  height: calc((66 / 16) * 1em);
  transition: 0.4s ease;
  border-left: 1px solid #D6D6D6;
}

.page-numbers:first-child{
  border-left: none;
}

.page-numbers:hover,
.page-numbers.current{
  background-color: var(--primary-color);
  color: #ffffff;
}

@media screen and (max-width: 782px){
  .page-numbers{
      font-size: 12px;
  }
}

/* ========================
  single
=========================== */
.single .overall-section{
  padding-bottom: 120px;
}

.single-box{
  background-color: #ffffff;
  max-width: 900px;
  margin: 70px auto 0;
  padding: 60px calc((60 / 1100) * 100%);
}

.single-box__cat{
  min-width: max-content;
  font-size: 12px;
  width: calc((92 / 12) * 1em);
  text-align: center;
  display: inline-block;
}

.single-box__cat a{
  color: #ffffff;
  padding: calc((9 / 12) * 1em) calc((5 / 12) * 1em);
  border-radius: 15px;
  background-color: var(--primary-color);
  display: block;
  line-height: 1;
}

.single-box__header-title{
  font-size: 26px;
  font-weight: 700;
  margin-top: calc((15 / 26) * 1em);
}

.single-box__date{
  font-size: 14px;
  color: #969696;
  line-height: calc(32 / 14);
  margin-top: calc((12 / 14) * 1em);
}

.single-box__thumb{
  margin-top: 40px;
}

.single-box__body{
margin-top: 30px;   
}

.single-box__body p{
  font-size: 17px;
  line-height: 1.88;
}

.single-box__body p + p{
  margin-top: 20px;
}

@media screen and (max-width: 1024px){
  .single-box__header-title{
      font-size: 23px;
  }

  .single-box__body p{
      font-size: 16px;
  }
}

@media screen and (max-width: 782px){
  .single .overall-section{
      padding-bottom: 90px;
  }

  .single-box__header-title{
      font-size: 20px;
  }

  .single-box__body p{
      font-size: 15px;
      line-height: 1.68;
  }

  .single-box {
      margin-top: 40px;
      padding: 30px 25px 50px;
  }

  .single-box__body{
      margin-top: 20px;
  }
.single-box__cat{
    width: calc((92 / 12) * 0.8em);
}
.single-box__cat a{
      padding: calc((9 / 12) * 0.8em) calc((5 / 12) * 0.8em);
}
.single-box .btn__link{
      margin-top: calc((60 / 14) * 0.8em);
}
}

/* ========================
  block
=========================== */

h2.wp-block-heading{
  font-size: var(--font-size-h2);
}
.main-visual-cover{
  width: 100vw;
  height: 100vh;

}
.smb-section__inner .c-container{
  padding: 0;
}
.has-large-font-size,
.smb-section__title{
  font-size: var(--font-size-h1);
}
.has-large-font-size{
  letter-spacing: 0.05em;
}
.smb-section__lede{
  font-size: var(--font-size-h2);
}

.smb-section__header>*+.smb-section__lede-wrapper{
  margin-top: var(--spacing-sm);
}
.smb-section__contents-wrapper>*+*{
  margin-top: var(--spacing-xl);
}
.underline-text{
  text-decoration: underline;
  text-decoration-color: var(--primary-color);
  text-decoration-thickness: 10px;
  text-underline-offset: 3px;
}

.wp-block-cover__inner-container .has-large-font-size{
  font-size: var(--font-size-h1) !important;
  line-height: 1.8;
}

/* 情報 */
.custom-info-box .smb-information__item{
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--secondary-color);
  position: relative;
}

.custom-info-box .c-row:first-of-type > .c-row__col:first-of-type {
  font-weight: 600;
}
.custom-info-box .c-row:first-of-type > .c-row__col:first-of-type::before{
  content: '';
  display: inline-block;
  background-color: #4f3467;
  width: 20%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -1px;
}

@media screen and (max-width: 782px){
  .custom-info-box .c-row:first-of-type > .c-row__col:first-of-type::before{
    display: none;
  }
  .custom-info-box .c-row:first-of-type > .c-row__col:first-of-type{
    margin-bottom: 0;
  }
}
