/* =============================================
   Basic and Font Styles
   ============================================= */
:root {
    --font-noto: 'Noto Serif JP', serif;/* Regular:400,SemiBold:600 */
    --font-freight: 'freight-neo-pro', sans-serif;/* Light:300,Book:400 */
    --text-color: #000;
    --background-color: #fff;
    --dark-background: #000;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-noto);
    color: var(--text-color);
    background: var(--background-color);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* スクロールロック用のクラス */
body.no-scroll {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.container {
    max-width: 2048px;
    margin: 0 auto;
    padding: 0 80px;
}
.container.small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.container.info-section{
    display: flex;
    justify-content: end;
    border: 1px solid #efefef;
    border-width: 1px 0 1px 0;
}

#about.container{
    padding-bottom: 180px;
}

#member.container{
    padding-bottom: 190px;
}

#space.container{
    padding-bottom: 190px;
}


/* =============================================
   Header & Navigation
   ============================================= */
.header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    background: transparent;
    z-index: 100;
    box-sizing: border-box;
    /* ヘッダー全体にブレンドモードを適用 */
    mix-blend-mode: difference;
    background-color: #000;
}

/* メニュー展開時はヘッダー全体のブレンドモードを解除 */
.header.is-menu-open {
    mix-blend-mode: normal;
}


.header-logo {
    font-family: var(--font-noto);
    width: 120px;
    z-index: 101;
    /* 白い文字色をロゴに継承させることで、differenceモードの基準色とする */
    color: #fff;
}

@media (max-width: 768px) {
.header.is-menu-open .header-logo img {
    filter: invert(93%) sepia(100%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
}
}

/* メニュー展開時はロゴの色を黒にする */
.header.is-menu-open .header-logo {
    color: var(--text-color);
}


.header-logo img {
    display: block;
}

.header-nav {
    display: flex;
    margin-top: -14px;
}

.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    font-size: 0.8rem;
    /* ナビゲーションテキストの色を白にする */
    color: #fff;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 150;
    padding-block: 0;
    padding-inline: 0;

}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 1px;
    /* ハンバーガーの線の色を白にする */
    background: #fff;
    margin: 3px 0;
    transition: all 0.4s;
}

/* =============================================
   Main Content Sections
   ============================================= */
/* Hero Section */
.hero {
    width: 100%;
    max-width: 2208px;
    margin: auto;
    padding: 0;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    padding: 0 10px;
}

.hero-text-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    z-index: 10;
    margin-bottom: 10px;
    padding-top: 151px;
    padding-left: 80px;
    padding-right: 80px;
}
.hero-text-wrap img {
    width: 100%;
}

.hero-title {
    font-family: var(--font-freight);
    letter-spacing: 0.12em;
    font-weight: 400;
    line-height: 1;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 10px;
    font-size: 4.46vw;
}
.hero-title span{
    display: inline-block;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
}


/* Common */
.sct_ttl {
    font-family: var(--font-freight);
    font-size: calc(44 / 16 * 1rem);
    font-weight: 300;
    margin-top: 120px;
    margin-bottom: 40px;
    line-height: 1.6;
}
.sct_sttl {
    font-size: calc(24 / 16 * 1rem);
    line-height: 1.73;
}
.sct_txt{
    font-size: calc(10 / 16 * 1rem);
}
.unit_ttl{
    font-size: calc(18 / 16 * 1rem);
    font-weight: 500;
    margin-bottom: 32px;
}
.unit_ttl_note{
    display: inline-block;
    color: #FF6C00;
    font-size: calc(16 / 16 * 1rem);
    margin-bottom: 24px;
}
.unit_txt{
    font-size: calc(16 / 16 * 1rem);
    line-height: 2.12;
}
.unit_txt b{
    font-weight: inherit;
    color: #FF6C00;
}

#about .sct_sttl {
    margin-bottom: 60px;
}

#member .sct_sttl {
    margin-bottom: 130px;
}

#space .sct_sttl {
    margin-bottom: 22px;
}
#space .sct_lead{
    margin-bottom: 43px;
}

.text_links{
    position: relative;
    color: #FF6C00;
    font-size: calc(16 / 16 * 1rem);
    transition: opacity 0.3s;
}
.text_links:before{
    position: absolute;
    content: "";
    bottom: -2px;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
}
.text_links:hover{
    opacity: 0.6;
}


/* About Section */
.about-title {
    font-size: calc(54 / 16 * 1rem);
}
.about-subtitle {
    font-size: calc(36 / 16 * 1rem);
}
.about-lead {
    max-width: 908px;
    font-size: calc(24 / 16 * 1rem);
    line-height: 2.25;
}
.about-content-ttl{
    font-size: calc(24 / 16 * 1rem);
    font-weight: 500;
}

/* Slider Section */
.slider-section {
    position: relative;
    padding: 80px 0 120px 0;
}

.slider-container {
    display: flex;
    gap: 12px;
    overflow-x: scroll;
    overflow-y: hidden;
    cursor: grab;
    -ms-overflow-style: none; /* IE, Edge */
    scrollbar-width: none; /* Firefox */
    scroll-snap-type: x mandatory;
    padding-left: 40px;
    scroll-padding-left: 40px;
    padding-right: calc(100vw - 20vw - 40px); /* 右側にスクロール領域を確保 */
    box-sizing: border-box;
}

.slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.slide {
    flex: 0 0 20vw; /* ビューポート幅基準に変更 */
    width: 20vw; /* ビューポート幅基準に変更 */
    scroll-snap-align: start;
    font-family: var(--font-freight);
}

.slide img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.slide p {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.slider-navigation {
    display: flex;
    gap: 20%;
    flex-wrap: wrap;
    border: 1px solid #000;
    border-width: 1px 0 0;
    justify-content: center;
    width: 20vw;
    padding: 13px;
    margin-left: 40px;
    margin-top: 40px;
    box-sizing: border-box;
}

.nav-item {
    background: none;
    border: none;
    padding: 5px 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: #888;
    position: relative;
    transition: color 0.3s;
    font-family: var(--font-freight);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.nav-item.is-current {
    color: var(--text-color);
}

.nav-item.is-current::after {
    transform: scaleX(1);
}

/* Section Divider */
.section-divider {
    text-align: center;
    padding: 120px 0 40px;
    font-family: var(--font-freight);
    font-size: calc(20 / 16 * 1rem);
}

/* FAQ Section */
.faq-section .faq-item {
    border-bottom: 1px solid #efefef;
}


.faq-ttl{
    margin: 64px 0 32px;
    font-family: var(--font-noto);
    font-size: calc(18 / 16 * 1rem);
}

.faq-question {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 30px;
    color: #000;
    font-family: var(--font-noto);
    font-size: calc(14 / 16 * 1rem);
    font-weight: 600;
    cursor: pointer;
}

.faq-item:has(.is-open), .faq-item:hover {
    background: #FAFAFA;
}

.faq-question span {
    font-family: var(--font-freight);
    font-size: calc(20 / 16 * 1rem);
    font-weight: 400;
}

.faq-item:has(.is-open) .faq-question span,
.faq-item:hover .faq-question span{
    color: #FF6C00;
}

.faq-question p {
    margin-left: 80px;
    transition: margin-left 0.4s;
}

.faq-item:has(.is-open) .faq-question p,
.faq-item:hover .faq-question p {
    margin-left: 90px;
}

.faq-question::after {
    content: "";

    position: absolute;

    display: block;
    width: 0;
    height: 0;
    right: 30px;
    border-style: solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 10px solid #797979;
    border-bottom: 0;

    margin-left: auto;
    transition: transform 0.4s;
}

.faq-question.is-open::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s, padding 0.4s;
    padding: 0 100px 0 140px;
    font-size: 0.9rem;
    line-height: 1.67;
    font-size: calc(14 / 16 * 1rem);
}

.faq-answer strong{
    display: block;
    margin-bottom: 10px;
    font-weight: 600; 
}

.faq-answer.is-open {
    max-height: 800px;
    padding:  16px 100px 64px 140px;
}


/* Info/Access & Links */
.info-section dl {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px 0;
    margin: 32px 0;
    font-size: calc(14 / 16 * 1rem);
}

.info-section dt {
    line-height: 1.48;
}

.info-section dd{
    line-height: 1.48;
}

.info-section dd span{
    display: inline-block;
}

.info-section dd a.map {
    display: inline-block;
    margin-left: 12px;
    font-size: calc(10 / 16 * 1rem);
}



.links-section {
    display: flex;
    justify-content: center;
    gap: 180px;
    padding: 0;
    margin: 160px 0 90px;
}
.links-section a{
    font-family: var(--font-freight);
    font-size: calc(20 / 16 * 1rem);
    font-weight: 400;
}


/* =============================================
   Contact & Footer
   ============================================= */
.contact-section {
    background: var(--dark-background);
    color: #fff;
}

.contact-title {
    font-family: var(--font-freight);
    font-size: calc(20 / 16 * 1rem);
    color: #fff;
    text-align: center;
    padding: 120px 0 40px;
}
.contact-txt {
    font-size: calc(14 / 16 * 1rem);
    color: #fff;
    margin-bottom: 12px;
}
.contact-txt-note {
    font-size: calc(10 / 16 * 1rem);
    line-height: 2;
    color: #fff;
}

.contact-form {
}
.form-row{
    display: flex;
    gap: 0 10px;
}
.form-col{
    display: flex;
    flex-direction: column;
    width: 50%;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-top: 17px;
}
.form-group.full-width {
    height: 100%;
}
.form-group label {
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
    background: #1A1A1A;
    border: none;
    color: #fff;
    padding: 6px;
    width: 100%;
    font-family: sans-serif !important;
    font-size: calc(12 / 16 * 1rem);
    font-family: inherit;
    box-sizing: border-box; 
}
.form-group textarea {
    height: calc(100% - 19px);
    resize: none;
}
.form-submit {
    position: relative;
    margin-top: 19px;
    text-align: right;
    
}
.send-button {
    background: none;
    border: 1px solid #808080;
    font-family: var(--font-noto);
    color: #fff;
    padding: 10px 40px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.send-button:hover {
    background: #fff;
    color: #000;
}
.wpcf7-spinner{
    position: absolute !important;
    bottom: -30px;
    right: 20px;
}
.wpcf7-not-valid-tip {
    font-size: calc(12 / 16 * 1rem) !important;
}
.wpcf7 form .wpcf7-response-output{
    font-size: calc(12 / 16 * 1rem) !important;
    margin: 2em 0 0 !important;
}

.footer {
    position: relative;
    background: var(--dark-background);
    color: #fff;
    text-align: center;
    padding: 80px 20px 24px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    font-family: var(--font-freight);
    font-size: calc(59 / 16 * 1rem);
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}
.footer-tagline span{
    display: inline-block;
}


.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.8rem;
}

.copyright {
    font-family: var(--font-freight);
    font-size: calc(14 / 16 * 1rem);
    position: absolute;
    right: 13px;
    bottom: 24px;
    margin: 0;
}


/* =============================================
   UnitSet
   ============================================= */
/* UnitSet*/
.UnitSet{
    display: flex;
    justify-content: space-between;
}
.UnitSet.end{
    align-items: end;
}
.UnitSet.full{
    flex-direction: column;
}
.UnitSet.full .unit{
    width: 100%;
}
.UnitSet.half .unit{
    width: 50%;
}
.UnitSet.harf.image{
    margin: 0 5px;
}
.UnitSet.harf.image .unit{
    padding: 0 5px;
}

.UnitSet.about-content{
    margin-top: 190px;
}
.UnitSet.about-content .unit{
    width: 705px !important; 
}

.UnitSet.link_area{
    margin-top: 100px;
}

.UnitSet.half.image{
    max-width: 2048px;
    margin: auto;
    padding: 10px;
    gap: 10px;
}

#member .UnitSet.half{
    gap: 120px;
}
#space .UnitSet.half{
    gap: 160px;
}
#space .UnitSet.half.inner{
    gap: 20px;
}




/* =============================================
   List
   ============================================= */
.list_star,
.list_deci,
.list_num{
    list-style: none;
}
.list_star li,
.list_deci li,
.list_num li{
    position: relative;   
}
.list_star li{
    margin-left: 1em;
    line-height: 2;
    font-size: calc(10 / 16 * 1rem);
}
.list_star.content li{
    margin-left: 1em;
    line-height: 2;
    font-size: calc(12 / 16 * 1rem);
}
.list_star li:before{
    position: absolute;
    content: "＊";
    display: inline-block;
    top: 0;
    left: -1em;
}


.list_deci li{
    margin-left: 1em;
}
.list_deci li:before{
    position: absolute;
    content: "・";
    display: inline-block;
    top: 0;
    left: -1em;
}
.list_num{
    counter-reset: listnum;
}
.list_num li{
    margin-left: 1.3em;
}
.list_num li:before{
    position: absolute;
    top: 0;
    left: -1.3em;
    counter-increment: listnum; /* counter-resetと同じ文字列 */
	content: counter(listnum) ".";
}



/* =============================================
   Lower
   ============================================= */

.lower main{
    margin-top: 173px;
}
.lower .page_ttl{
    font-size: calc(20 / 16 * 1rem);
    font-weight: 400;
}
.lower .page_ttl span{
    display: block;
    margin-bottom: 11px;
    font-size: calc(16 / 16 * 1rem);
}
.lower .page_copy {
    margin-top: 86px;
    font-size: calc(18 / 16 * 1rem);
    line-height: 1.73;
}
.lower .page_txt {
    margin-top: 120px;
    font-size: calc(12 / 16 * 1rem);
    line-height: 1.73;
}
.lower .page_txt_term {
    margin-bottom: 2em;
}


.list_bm{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 90px 160px;
    max-width: 1000px;
    margin: 240px auto 0;
}
.list_bm a:hover *{
    transition: color 0.3s;
}
.list_bm a:hover .bm_comcopy{
    color: #FF6C00;
}
.list_bm_item{
    text-align: center;
}
.bm_role{
    font-family: var(--font-freight);
    font-size: calc(12 / 16 * 1rem);
}
.bm_copy{
    font-family: var(--font-freight);
    font-size: calc(12 / 16 * 1rem);
}
.bm_comcopy{
    font-family: var(--font-freight);
    font-size: calc(20 / 16 * 1rem);
}

.list_bm_item:nth-of-type(3n-2) {
    transition-delay: 0s;
}
.list_bm_item:nth-of-type(3n-1) 
{
    transition-delay: .2s;
}
.list_bm_item:nth-of-type(3n) 
{
    transition-delay: .4s;
}
@media (max-width: 990px) {
    .list_bm{
        gap: 90px 0;
    }
    .list_bm_item{
        width: 50%;
    }
    .list_bm_item:nth-of-type(2n-1) {
        transition-delay: 0s !important;
    }
    .list_bm_item:nth-of-type(2n) 
    {
        transition-delay: .4s !important;
    }
}
@media (max-width: 562px) {
    .list_bm_item{
        width: 100%;
    }
    .list_bm_item:nth-of-type(n) {
        transition-delay: 0s !important; 
    }
}




/* =============================================
   Animation & Responsive
   ============================================= */
/* Fade-in Animation */
.fade-in-item,
.stagger-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-item.is-visible,
.stagger-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.curtain-item {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
  margin: auto;
  background: #000;
  transition: opacity 1.2s ease-out;
  opacity: 0;
}
.curtain-item.is-visible {
  opacity: 1;
}

.curtain-item img {
  width: 100%;
  height: auto;
  display: block;
}
.curtain-item:after,.curtain-item:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  height: 102%;
  transition: transform 1.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.curtain-item:before {
  width: 8%;
  left: 0%;
  transform-origin: left top;
}
.curtain-item:after {
  width: 8%;
  right: 0%;
  transform-origin: right top;
}
.curtain-item.is-visible:before,.curtain-item.is-visible:after {
  transform: scaleX(0);
}
@media screen and (max-width:640px){
  .curtain-item {
    width: 100%;
  }
}
.curtain-item.blk:after,.curtain-item.blk:before {
  background: #000;
}
.curtain-item.wht:after,.curtain-item.wht:before {
  background: #fff;
}

.hero-text-wrap{
    transition-delay: 0.3s;
}
.hero-image-wrapper{
    transition-delay: 0.6s;
}
.hero-image-wrapper .curtain-item:after,
.hero-image-wrapper .curtain-item:before{
    transition-delay: 0.6s;
}



/* Responsive Styles */
@media (max-width: 1024px) {
    .slider-container {
        padding-right: calc(100vw - 60vw - 40px);
    }
    .slide {
        flex-basis: 60vw;
        width: 60vw;
    }
}
@media (min-width: 769px) {
    .pc_hdn{
        display: none !important;
    }
}
@media (max-width: 768px) {
    .sp_hdn{
        display: none !important;
    }
}



@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header{
        padding: 7px 16px;
        background: transparent;
    }
    .header-logo{
        width: 60px;
    }
    .hero-text-wrap{
        padding: 104px 25px 25px;
    }
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        /* メニューが開いたときはブレンドモードを無効化 */
        mix-blend-mode: normal;
    }

    .header-nav.is-active {
        opacity: 1;
        pointer-events: auto;
    }

    .header-nav.is-active ul {
        /* メニューが開いたら文字色を黒に戻す */
        color: var(--text-color);
    }

    .header-nav ul {
        flex-direction: column;
        text-align: center;
        font-size: 1.2rem;
    }


    .hamburger-menu {
        display: flex;
        flex-direction: column;
        align-items: end;
        transition: align-items 0.4s
    }    

    .hamburger-menu span:nth-of-type(1){
        width: 48px;
    }
    .hamburger-menu span:nth-of-type(2){
        width: 35.5px;
    }
    .hamburger-menu span:nth-of-type(3){
        width: 23.5px;
    }


    /* Xの色が背景(白)と同化しないように黒にする */
    .hamburger-menu.is-active span {
       background: var(--text-color);
       width: 35.5px;
    }

    .hamburger-menu.is-active span:nth-of-type(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger-menu.is-active span:nth-of-type(2) {
        opacity: 0;
    }

    .hamburger-menu.is-active span:nth-of-type(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .footer{
        padding-bottom: 79px;
        padding-left: 0;
        padding-right: 0;
    }
    .footer-logo img{
        width: 184px;
    }
    .footer-tagline{
        margin-bottom: 101px;
        font-size: calc(32 / 16 * 1rem);
    }
    .copyright{
        right: 0;
        left: 0;
        bottom: 14px;
    }

    .slider-section{
        padding: 0 0 80px;
    }
    .slider-container {
        padding-right: calc(100vw - 88vw - 16px);
        padding-left: 16px;
        scroll-padding-left: 16px;
        gap: 16px;
    }
    .slide {
        flex-basis: 88vw;
        width: 88vw;
    }
    .slider-navigation{
        width: 88vw;
        padding: 20px;
        margin-top: 48PX;
        margin-right: calc(100vw - 88vw - 16px);
        margin-left: 16px;
        gap: 25%;/* reno */
    }


    .sct_ttl {
        margin: 67px 0 34px;
        font-size: calc(28 / 16 * 1rem);
    }
    .sct_ttl span {
        display: block;
    }
    .sct_sttl {
        font-size: calc(18 / 16 * 1rem);
    }
    .unit_ttl{
        margin-bottom: 24px;
        font-size: calc(16 / 16 * 1rem);
    }
    .unit_ttl_note{
        margin-bottom: 13px;
        font-size: calc(12 / 16 * 1rem);
    }
    .unit_txt{
        font-size: calc(13 / 16 * 1rem);
    }

    .text_links{
        font-size: calc(16 / 16 * 1rem);
    }

    .section-divider {
        padding: 133px 0 0;
    }
    #info.section-divider{
        padding-bottom: 32px;
    }

    .container.small{
        padding: 0 16px;
    }

    .links-section {
        display: flex;
        justify-content: center; /*reno*/
        gap: unset;
        padding: 0 16px;
        margin: 100px 0 64px;
    }


    .UnitSet:not(.link_area){
        flex-direction: column;
    }
    .UnitSet.half .unit{
        width: 100%;
    }
    .UnitSet.link_area {
        margin-top: 64px;
    }

    .hero-text-wrap{
        padding-top: 104px;
    }

    .about-title{
        font-size: calc(30 / 16 * 1rem);
    }
    #about .sct_sttl {
        margin-bottom: 96px;
    }
    .about-subtitle{
        font-size: calc(26 / 16 * 1rem);
    }
    .about-lead{
        font-size: calc(16 / 16 * 1rem);
    }

    #member.container {
        padding-bottom: 86px;
    }
    #member .sct_sttl {
        margin-bottom: 70px;
    }
    #member .UnitSet.half {
        gap: 64px;
    }

    #space.container {
        padding-bottom: 86px;
    }
    #space .UnitSet.half {
        gap: 64px;
    }

    #space .unit_ttl {
        margin-bottom: 32px;
    }
    #space .UnitSet.half.inner {
        gap: 0;
    }

    .faq-question {
        padding: 16px 0;
    }

    .faq-question::after {
        right: 0;
    }

    .question p, .faq-item:hover .faq-question p {
        margin-left: 20px;
    }

    .faq-question p {
        margin: 0 20px;
    }

    .faq-answer {
        padding: 0 26px 0 36px;
    }

    .faq-answer.is-open {
        padding: 16px 26px 64px 36px;
    }

    .UnitSet.about-content {
        margin-top: 157px;
        margin-left: 79px;
    }
    .about-content-ttl{
        margin-bottom: 56PX;
        font-size: calc(18 / 16 * 1rem);
        line-height: 2;
    }

    .UnitSet.about-content .unit {
        width: 100% !important;
    }

    .info-section dd a {
        margin-left: 0;
    }

    .contact-title {
        text-align: left;
    }

    .form-row{
        flex-direction: column;
        gap: 0;
    }

    .form-col{
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 967px) {
    .hero-title {
        font-size: 3.9vw;
    }
}
@media (min-width: 968px) and (max-width: 1167px) {
    .hero-title {
        font-size: 4.08vw;
    }
}


/* レスポンス切り替え時ブレンドモード対策 */
@media (max-width: 748px) {
    .header-nav {
        transition: opacity 0.4s;
    }
}

