/* Main Styles */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;appearance:none}img{image-rendering:-webkit-optimize-contrast}a{color:inherit;text-decoration: none;}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;color-scheme:dark light;tab-size:2}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){line-height:1.5;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(button){all:unset}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(a){color:inherit;text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg,video){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em + 0.5rem);text-wrap:balance}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(:focus-visible){outline:3px solid CanvasText;box-shadow:0 0 0 5px Canvas;outline-offset:1px}:where(:focus-visible,:target){scroll-margin-block:8vh}:where(.visually-hidden:not(:focus-within,:active)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}


html, body {
    overflow-x: hidden;
}

body{
  font-family: Lato, 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  color: #6B6666;
  box-sizing: border-box;
  line-height: 1.35;
  /* overflow-x: hidden */
  max-width: 100vw;
}

p{ line-height: 1.75;}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.header__logo a {
    display: block;
    cursor: pointer;
    transition: opacity 0.3s;
}

.header__logo a:hover {
    opacity: 0.8;
}

.header__logo img {
    height: 38px;
    width: auto;
    margin-left: 40px;
}

.header__nav {
    display: flex;
    gap: 0;
    align-items: center;
    width: 160px;

    
}

.header__btn {
    background: #2fa9a3;
    color: #fff;
    padding: 12px 0;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    width: 80px;
    aspect-ratio: 1/1;
    box-sizing: border-box;
}

.header__btn::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 28px;
    background-image: url('../image/icon_shiryo.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.header__btn:hover {
    background: #338884;
}

.header__menu {
    background: #fff;
    border: none;
    cursor: pointer;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 80px;
    transition: 0.3s ease;
    aspect-ratio: 1/1;
    box-sizing: border-box;
    position: relative;
    z-index: 10000;
}

.header__menu:hover {
    background: #c9eceb
}

.header__menu-icon {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 28px;
}

.header__menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #2fa9a3;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* メニューが開いた時のアイコンアニメーション */
.header__menu.is-active .header__menu-icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.header__menu.is-active .header__menu-icon span:nth-child(2) {
    opacity: 0;
}

.header__menu.is-active .header__menu-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.header__menu-text {
    font-size: 12px;
    font-weight: bold;
    color: #2fa9a3;
    margin-top: 2px;
    letter-spacing: 0.05em;
}







/* Main Visual */
.main-visual {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* 背景画像コンテナ */
.mv__bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

/* 最初の背景を初期表示 */
.mv__bg01 {
    opacity: 1;
    z-index: 2;
}

/* グローバルナビゲーション */
.global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 100;
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
}

.global-nav.is-open {
    right: 0;
}

.global-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px 40px;
}

.global-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 600px;
}

.global-nav__item {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: 0;
    position: relative;
}

.global-nav__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #20adac, #f19ebc);
    transition: width 0.3s ease;
}

.global-nav__item:hover::before {
    width: 40px;
}

.global-nav.is-open .global-nav__item {
    opacity: 1;
    transform: translateX(0);
}

.global-nav.is-open .global-nav__item:nth-child(1) { transition-delay: 0.1s; }
.global-nav.is-open .global-nav__item:nth-child(2) { transition-delay: 0.15s; }
.global-nav.is-open .global-nav__item:nth-child(3) { transition-delay: 0.2s; }
.global-nav.is-open .global-nav__item:nth-child(4) { transition-delay: 0.25s; }
.global-nav.is-open .global-nav__item:nth-child(5) { transition-delay: 0.3s; }
.global-nav.is-open .global-nav__item:nth-child(6) { transition-delay: 0.35s; }
.global-nav.is-open .global-nav__item:nth-child(7) { transition-delay: 0.4s; }

.global-nav__item a {
    display: block;
    color: #333;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    padding: 20px 0 20px 60px;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.05em;
}

.global-nav__item:first-child a {
    border-top: 1px solid #e5e5e5;
}

.global-nav__item a::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    color: #20adac;
    font-size: 24px;
    transition: all 0.3s ease;
}

.global-nav__item a:hover {
    color: #20adac;
    padding-left: 80px;
    background: linear-gradient(90deg, rgba(32, 173, 172, 0.03), transparent);
}

.global-nav__item a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}


/* @media (max-width: 767px) {
    .global-nav__item a {
        font-size: 20px;
        padding: 12px 20px;
    }
    
    .global-nav__item {
        margin-bottom: 20px;
    }
} */

/* アクティブな背景を前面に */
.mv__bg.active {
    z-index: 3;
}

.mv__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
}

/* 背景アニメーション */
.mv__bg.active {
    z-index: 3;
    animation: bgZoomFadeIn 4s ease-out forwards;
}

@keyframes bgZoomFadeIn {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.mv__bg.active img {
    animation: bgZoom 4s ease-out forwards;
}

@keyframes bgZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* テキストコンテナ */
.mv__text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    text-align: center;
}

.mv__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    max-width: 60%;
}

.mv__text img {
    width: 100vw;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

/* テキストアニメーション */
.mv__text.active {
    animation: textFadeInOut 4s ease-out forwards;
}

@keyframes textFadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    70% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%);
    }
}

/* ループアニメーション用（3枚目が終わったら1枚目に戻る） */
.mv__bg.loop-active,
.mv__text.loop-active {
    animation: none;
    opacity: 1;
}

.mv__bg.loop-active img {
    animation: none;
    transform: scale(1);
}

.mv__text.loop-active {
    transform: translate(-50%, -50%);
}


/* スライドカウンター */
.mv__counter {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    color: #fff;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.mv__counter-current {
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    padding-right: 20px;
}

.mv__counter-total {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    opacity: 0.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    position: relative;
    margin-top: 11px;
    padding-left: 20px;
}

.mv__counter-total::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: calc(100% + 5px);
    width: 60px;
    height: 1px;
    background: #fff;
    transform: translateX(-50%) rotate(-45deg);
    transform-origin: center;
    opacity: 0.8;
}

/* 固定CVボタン */
.cv-fixed {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

.cv-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cv-item {
    margin: 0;
    padding: 0;
}

.cv-link {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 120px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

}

.cv-linkA{
    background-image: linear-gradient(90deg, rgba(0, 175, 187, 1) 10%, rgba(0, 190, 128, 1) 90%);
    font-size: 15px;
    color: #FFF;
    font-weight: bold;
    gap:3px;
}

.cv-linkB{
    background: linear-gradient(90deg, #EE86A5 0%, #E2755F 100%);
}

.cv-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(100, 100, 100, 0.18);

}

.cv-linkA:hover{
background-image: linear-gradient(90deg, rgba(0, 175, 187, 1) 10%, rgb(12, 212, 146) 90%);
}

.cv-linkB:hover{
    background: linear-gradient(90deg, #fd759e 0%, #f06c51 100%);;
}

.cv-linkA img {
    display: block;
    width: 50px;
    height: auto;
    aspect-ratio: 1/1;
    margin-top: -8px;
}

.cv-linkB img{
    width: 80%;
    margin-top: 5px;
}


@media (max-width: 768px) {
    .header {
        padding: 0;
        height: 16vw
    }

    .header__logo img {
        width: 50vw;
        height: auto;
        margin-left:5vw; 
    }

    .header__nav{width: auto;}

    .header__btn ,.header__menu{
            font-size: 3vw;
            padding: 0;
            width: 16vw;
    }


    .mv__text-container {
        top: 56%;
        left: 52%;
    }

    /* MVテキストを横幅80%に */
    .mv__text {
        max-width: 80%;
        width: 80%;
    }
    
    .mv__text img {
        width: 100%;
        max-width: 100%;
    }
    
    /* スライドカウンターを下部中央に */
    .mv__counter {
        top: auto;
        bottom: 5vw;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .mv__counter-current {
        font-size: 6vw;
        padding-right: 4vw;
    }

    .mv__counter-total {
        font-size: 3vw;
        margin-top: 2.2vw;
        padding-left: 4vw;
    }

    .mv__counter-total::before {
        width: 12vw;
        bottom: calc(100% + 1vw);
    }

    .main-visual {
        height: 70vh;
    }

    .header__btn::before {
        width: 7vw;
        height: 6vw;
    }

    .header__menu-icon {
        gap: 2vw;
        width: 7vw;
    }

    /* コンテンツ幅をスマホ用に調整 */
    .l-container {
        padding: 0 5vw
    }

    /* グローバルナビゲーション - スマホ版 */
    .global-nav__inner {
        padding: 20vw 5vw 10vw;
    }

    .global-nav__list {
        max-width: 100%;
    }

    .global-nav__item a {
        font-size: 5.3vw;
        padding: 4vw 0 4vw 10vw;
    }

    .global-nav__item::before {
        width: 5vw;
        left: 2vw;
        background: #20adac;
    }

    .global-nav__item:hover::before {
        width: 8vw;
    }

    .global-nav__item a::after {
        font-size: 5.3vw;
        right: 4vw;
    }

    .global-nav__item a:hover {
        padding-left: 17vw;
    }

    .cv-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 3vw;
    width: 94vw;
    justify-content: space-between;
    }

    .cv-link{
        display: block;
        transition: opacity 0.3s ease, transform 0.3s ease;
        width: auto;
        aspect-ratio: initial;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        flex-direction: row;
        align-items: center;
        height:13vw
        
    }

.cv-fixed {
    position: fixed;
    bottom: 3vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    right: initial;
}

.cv-item{flex: 1;}

.cv-linkB img {
    width: 20vw;
    margin-top: 5px;
}

.cv-linkA img {
    display: block;
    width: 6vw;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-top: -1vw;
}


}
/*------------------------------------
SP/PC切り替え

------------------------------------*/

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.PC-CSS { display: inline-block !important; }
.SP-CSS { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width:599px) {
.PC-CSS { display: none !important; }
.SP-CSS { display: inline-block !important;}
.SP-none{ display: none !important; }
}

/*-------------------------------------

メインコンテンツエリア

--------------------------------------*/

/* コンテンツ幅制御 */
.l-container {
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

h2{ font-size: 2.5rem;
    color: #2FBAB5;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
.l-container {
    max-width:100%;
    padding:0 5vw;
}

h2{ font-size: 9vw;
    margin-bottom: 7vw;
}

}

.font-mincho{
    font-weight: 600;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
}
.font-green{color: #2FBAB5;}
.font-red{color: #ED7861;}
.font-maru{
    font-family: "Zen Maru Gothic", sans-serif;
}

/*-------------
concept
--------------*/

.concept__title{
    font-size: 3.5rem;
    margin-bottom: 0.5em;
    line-height: 1.4;
}

.concept__text{
    margin-bottom: 1em;
    line-height: 1.75;
}

@media (max-width: 768px) {
.concept__title{
    font-size: 8.5vw;
    margin-bottom: 0.5em;
}

.concept__text{
    font-size: 4.3vw;
    margin-bottom: 1em;
}
}

/* Banners (slick) */
.banners {
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.banners .slick-list {
    overflow: visible !important;
    padding: 20px 0 !important; /* 影の分のスペースを確保 */
}

.banners__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banners__item {
    padding: 0 10px;
}

.banners__link {
    display: block;
    transition: 0.3s ease, transform 0.3s ease;
}

.banners__link:hover {
    transform: translateY(-5px);
}

.banners__img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    border-radius: 8px;
}

.bg-circle{
    background-image: url(../image/bg01.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0 0;
    position: relative;
}

.bg-circle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-image: url('../image/bg-circle.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    aspect-ratio: 16 / 9;
    z-index: 0;
    pointer-events: none;
}

/* スマホ版 */
@media (max-width: 768px) {
    .banners {
        padding: 10vw 0 0;
    }

    .banners .slick-list {
        padding: 4vw 0 !important; /* SP版も影の分のスペースを確保 */
    }

    .banners__item {
        padding: 0;
        margin: 0 3vw;
    }

    .banners__link:hover {
        opacity: 1;
    }

    .bg-circle{
        padding: 15vw 0 0;
    }

    .banners > .l-container{
        padding:0;
    }
}

/*-------------
NEWS
--------------*/

.news{
    margin: 5rem 0;
}

.news__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news__item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.news__link {
    display: contents;
    transition: color 0.3s ease;
}

.news__item:hover .news__date,
.news__item:hover .news__text {
    color: #2FBAB5;
}

.news__date {
    color: #999;
    transition: color 0.3s ease;
}

.news__text {
    color: #6B6666;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .news {
        margin: 15vw 0 10vw;
    }

    .news__item {
        grid-template-columns: 1fr; /* 縦並びに変更 */
        gap: 2vw;
        padding: 4vw 0;
    }

    .news__date {
        font-size: 3.5vw;
    }

    .news__text {
        font-size: 4.3vw;
    }
}

/*-------------
mynavi-banners
--------------*/

.mynavi-banners {
    margin: 5rem 0;
}

.mynavi-banners__list {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mynavi-banners__item {
    flex: 0 0 auto;
    width: 280px;
}

.mynavi-banners__link {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mynavi-banners__link:hover {
    opacity: 0.8;
    transform: translateY(-5px);
}

.mynavi-banners__img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .mynavi-banners {
        margin: 10vw 0;
    }

    .mynavi-banners__list {
        gap: 4vw;
    }

    .mynavi-banners__item {
        width: 48%;
    }
}


/*-------------
about
--------------*/
.about{
    background-image: url(../image/LP_Backimage.jpg);
    background-size: cover;
    padding: 9rem 0;
    position: relative;
    overflow: hidden;

}

.about::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: url('../image/bg-parts01.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 0;
}

.about::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: -3%;
    width: 400px;
    height: 400px;
    background-image: url('../image/bg-parts01.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    transform: scale(-1, -1);
    z-index: 0;
}

.title01 {
    line-height: 1.2;
    position: relative;
    padding-left: 50px;
}

.title01::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    /* transform: translateY(-50%); */
    width: 40px;
    height: 40px;
    background-image: url('../image/icon_title.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

h2 .subtitle{
    font-weight: normal;
    display: block;
    font-size: 1.3rem;
}

/* title02 - Interview section title (inherits from title01) */
.title02 {
    line-height: 1.2;
    position: relative;
    padding-left: 50px;
}

.title02::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    width: 40px;
    height: 40px;
    background-image: url('../image/icon_title.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 768px) {
    .about{
        padding: 20vw 0;
    }

    .about::before{
        width: 50vw;
        height: 50vw;
    }

    .about::after{
        width: 40vw;
        height: 40vw;
        left: -10%;
    }

    .title01{
        padding-left: 12vw;
    }

    .title01::before{
        width: 8vw;
        height: 8vw;
    }

    .title02{
        padding-left: 12vw;
    }

    .title02::before{
        width: 8vw;
        height: 8vw;
    }

    h2 .subtitle{
        font-size: 4.3vw;
    }
}

.about__intro{
    display: flex;
    gap: 40px;
    position: relative;
}

.about__intro-content{
    flex: 0 0 60%;
    z-index: 1;
}

.about__intro-image{
    flex: 1;
    position: relative;
    min-width: 530px;
}

.about__intro-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__intro-text p{
    margin-bottom: 1em;
}

.about__intro-service{
    padding:20px 30px 30px;
    box-sizing: border-box;
    box-shadow: 0px 0px 5px 0px #00000009;
    margin-top: 30px;
    background-color: #FFF;
    border-radius: 21px;
}

.about__intro-service-title{
    display: flex;
    align-items: end;
    margin-bottom: 1rem;
}

.about__intro-service-title img{
    width: 200px;
    margin-right:10px;
}


@media (max-width: 768px) {
    .about__intro{
        flex-direction: column-reverse;
        gap: 8vw;
    }

    .about__intro-content{
        flex: 1;
    }

    .about__intro-image{
        flex: 1;
        min-width: 100%;
    }

    .about__intro-text p{
        font-size: 4.3vw;
        margin-bottom: 1em;
    }

    .about__intro-service{
        padding: 5vw 6vw 6vw;
        margin-top: 6vw;
        border-radius: 4vw;
    }

    .about__intro-service-title{
        flex-direction: inherit;
        align-items: end;
        gap: 1vw;
        margin-bottom: 3vw;
        font-size: 3.8vw;
    }

    .about__intro-service-title span{
        display: inline-block;
        margin-bottom: -1vw;
    }

    .about__intro-service-title img{
        width: 38vw;
        margin-right: 0;
    }

    .about__intro-service-text{
        font-size: 4.3vw;
    }
}

.about__group{
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
}

.about__group-content{
    flex: 0 0 55%;
}

.about__group-title{
    font-size: 1.5rem;
    color: #2FBAB5;
    margin-bottom: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    position: relative;
    padding-bottom: 1rem;
}

.about__group-title::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 1px;
    background-color: #a8a8a8cb;
}

.about__group-text{
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about__group-notes{
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.about__group-image{
    flex: 1;
}

.about__group-image img{
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .about__group{
        flex-direction: column;
        gap: 8vw;
        margin-top: 15vw;
        align-items: center;
    }

    .about__group-content{
        flex: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about__group-title{
        font-size: 6vw;
        margin-bottom: 7vw;
        padding-bottom: 6vw;
        text-align: center;
    }

    .about__group-title::after{
        width: 40%;

    }

    .about__group-text{
        font-size: 4.3vw;
        margin-bottom: 4vw;
    }

    .about__group-notes{
        font-size: 3vw;
        margin-top: 2vw;
    }

    .about__group-image{
        flex: 1;
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }

     .about__group-image img{
        width: 100%;
        text-align: center;
     }

    .about__group-title::after{
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 1px;
        background-color: #a8a8a8cb;
    }

}


.about__vision{
    padding:50px;
    background: #FFF;
    border-radius: 30px;
    border: 3px solid #2FBAB5;
    position: relative;
    z-index: 1;
    margin: 70px 0 0;
}

.about__vision-title{
    font-size: 1.5rem;
    color: #2FBAB5;
    margin-bottom: 1.5rem;
}

.about__vision-text > p{
    margin-bottom: 0.3em;
    font-size: 90%;
    letter-spacing: -0.03em;
}

.about__vision-content{
    display: flex;
    gap: 40px;
    align-items: center;
}

.about__vision-text{
    flex: 1;
}

.about__vision-image{
    flex: 0 0 45%;
}

.about__vision-image img{
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .about__vision {
        padding: 7vw;
        border-radius: 4vw;
        border-width: 0.7vw;
        margin: 15vw 0 0;
    }

    .about__vision-title{
        font-size: 5.5vw;
        margin-bottom: 5vw;
    }

    .about__vision-text > p{
        font-size: 4.3vw;
        margin-bottom: 0.4em;
        letter-spacing: 0;
    }

    .about__vision-content{
        flex-direction: column-reverse;
        gap: 6vw;
    }

    .about__vision-text{
        flex: 1;
    }

    .about__vision-image{
        flex: 1;
        width: 100%;
    }
}

/*-------------
enjoy-eating
--------------*/

.enjoy-eating{
    position: relative;
    padding: 10rem 0;
    background-image: url(../image/bg-ee.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.enjoy-eating .l-container{
    position: relative;
    z-index: 1;
}

.enjoy-eating__intro{
    display: flex;
    margin-top: 8rem;
    position: relative;
}

.enjoy-eating__bg{
    position: absolute;
    top: -335px;
    right: -360px;
    width: auto;
    height: auto;
    z-index: -1;
}

.enjoy-eating__bg img{
    width: 920px;
    height: auto;
    max-width: none;
}

.enjoy-eating__intro-title img{
    width: 700px;

}

.enjoy-eating__intro-badge{
    margin-left: 30px;
}
.enjoy-eating__intro-badge img{
    width: 110px;
}

.enjoy-eating__intro-main-title{
    font-size: 55px;
    color:#6B6666;
    padding: 60px 0 40px 0;
    display: block;
    border-bottom:  5px #6B6666 dotted;
}


.enjoy-eating__content{
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 2rem;
}

.enjoy-eating__text{
    flex: 0 0 45%;
}

.enjoy-eating__process{
    flex: 1;
}

.enjoy-eating__process-list{
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.enjoy-eating__process-item{
    flex: 1;
    position: relative;
}

.enjoy-eating__process-item::after{
    content: '';
    position: absolute;
    top: 34%;
    right: -14%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 0 13px 15px;
    border-color: transparent transparent transparent #f09072;
    z-index: 1;
}

.enjoy-eating__process-item:last-child::after{
    display: none;
}

.enjoy-eating__process-card{
    text-align: center;
}

.enjoy-eating__process-image{
    margin-bottom: 15px;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.enjoy-eating__process-image img{
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.enjoy-eating__process-title{
    font-size: 14px;
    color: #6B6666;
    font-weight: bold;
}

/*------------------------追加要件------------------------*/

.enjoy-eating__intro-logo-wrapper{
    display: flex;
    gap:30px;
    align-items: center;
}

.enjoy-eating__intro-logo-wrapper img{
    width: 360px;
    height: auto;
}

.enjoy-eating__intro-logo-wrapper img:last-child{
    width: 400px;
    height: auto;
}

.enjoy-eating__intro-text-wrapper{
    font-size: 62px;
    color: #6B6666;
    padding: 76px 0 30px 0;
    display: inline-block;
    border-bottom: 5px #6B6666 dotted;
}



@media (max-width: 768px) {
    .enjoy-eating {
        padding: 12vw 0 60vw;
    }

    .enjoy-eating__intro {
        margin-top: 2vw;
        gap: 2vw;
        align-items: flex-start;
    }

    .enjoy-eating__intro-title {
        flex: 1;
    }

    .enjoy-eating__intro-title img {
        width: 100%;
    }

    .enjoy-eating__intro-main-title {
        font-size: 5.5vw;
        padding: 3vw 0 2vw 0;
        border-bottom: 1vw #6B6666 dotted;
    }

    .enjoy-eating__intro-badge {
        margin-left: 0;
        flex: 0 0 auto;
    }

    .enjoy-eating__intro-badge img {
        width: 12vw;
    }

    .enjoy-eating__bg {
        top: -39vw;
        right: -17vw;
    }

    .enjoy-eating__bg img {
        width: 70vw;
        opacity: 0.85;
    }

    .enjoy-eating__content {
        flex-direction: column;
        gap: 4vw;
        margin-top: 1vw;
    }

    .enjoy-eating__text {
        flex: 1;
        font-size: 4.3vw;
        /* text-align: center; */
        width: 100%;
    }

    .enjoy-eating__process {
        flex: 1;
    }

    .enjoy-eating__process-list {
        gap: 1vw;
    }

    .enjoy-eating__process-item::after {
        right: -1.5vw;
        border-width: 2vw 0 2vw 3vw;
    }

    .enjoy-eating__process-title {
        font-size: 3.5vw;   
    }

    .enjoy-eating .title01{
        font-size: 7vw;
        margin-bottom: 10vw;
        padding-left: 10vw;
        /* color:#6B6666; */
    }

    .enjoy-eating .subtitle{
        font-size: 4.3vw;
        margin-left: 1vw;

    }

    .enjoy-eating .title01::before {
        width: 7vw;
        height: 7vw;
        
    }

    .ls--013{letter-spacing: -0.13em;}

    .enjoy-eating__process-image img {
        width: 80%;
        height: 80%;
        object-fit: contain;
    }

/*------------------------追加要件------------------------*/

.enjoy-eating__intro-logo-wrapper{
    display: flex;
    gap:2vw;
    align-items: flex-start;
    flex-direction: column;
    justify-content: left;
}

.enjoy-eating__intro-logo-wrapper img{
    width: 60vw;
    height: auto;
}

.enjoy-eating__intro-logo-wrapper img:first-child{
    margin-left: 10vw;
    margin-left: 4vw;
    width: 57vw;
}

.enjoy-eating__intro-logo-wrapper img:last-child{
    width: 62vw;
}

.enjoy-eating__intro-badge img {
    width: 25vw;
}

.enjoy-eating__intro-text-wrapper{
    font-size: 8vw;
    color:#413836;
    padding: 0 0 4vw 3vw;
    display: inline-block; 
    border-bottom: none;
    line-height: 1.5;
    margin-top: -2vw;
}

.enjoy-eating__intro-text-wrapper span{
    border-bottom: 2px #413836 dotted;
    display: inline-block;
}


}

/*-------------
enjoy-eating__training
--------------*/

.enjoy-eating__training {
    position: relative;
    margin-top: 80px;
    min-height: 500px;
}

.enjoy-eating__training-image {
    position: absolute;
    top: -5%;
    left: -18%;
    width: 70%;
    z-index: 0;
}

.enjoy-eating__training-image img {
    width: 200%;
    height: auto;
    display: block;
}

.enjoy-eating__training-content {
    position: relative;
    margin-left: auto;
    width: 45%;
    z-index: 1;
}

.enjoy-eating__training-title {
    color: #A6652C;
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-size: 120%;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.enjoy-eating__training-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 2px;
    background-color: #A6652C;
}

.enjoy-eating__training-text {
    line-height: 1.75;
    margin-bottom: 1rem;
}

.enjoy-eating__training-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.enjoy-eating__training-item {
    position: relative;
    padding: 15px;
    line-height: 1.2;
    background-color: #FFF;
    box-shadow: 0px 0px 4px 0px #00000040;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
    font-weight: bold;
    font-size: 120%;
}

.enjoy-eating__training-item:nth-child(1) {
    color: #3F727F;
}

.enjoy-eating__training-item:nth-child(2) {
    color: #B86C29;
}

.enjoy-eating__training-item:nth-child(3) {
    color: #A61F24;
}


.enjoy-eating__training-label {
    display: block;
    font-size: 0.75em;
    color: inherit;
    font-weight: normal;
    margin-bottom: 0.3em;
}

@media (max-width: 768px) {
    .enjoy-eating__training {
        margin-top: 15vw;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .enjoy-eating__training-image {
        position: absolute;
        width: 120%;
        left: 50%;
        top: auto;
        margin-bottom: 0;
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(-50%);
        bottom:-70vw;
    }

    .enjoy-eating__training-image img {
        width: 100%;
        margin: 0 auto;
    }

    .enjoy-eating__training-content {
        width: 100%;
        margin-left: 0;
        order: 1;
        margin-bottom: 6vw;
    }

    .enjoy-eating__training-title {
        font-size: 6vw;
        margin-bottom: 4vw;
        padding-bottom: 3vw;
    }

    .enjoy-eating__training-title::after {
        width: 60%;
        height: 0.5vw;
    }

    .enjoy-eating__training-text {
        font-size: 4.3vw;
        margin-bottom: 6vw;
    }

    .enjoy-eating__training-list {
        gap: 3vw;
    }

    .enjoy-eating__training-item {
        padding: 4vw 4vw 4vw 7vw;
        min-height: 18vw;
        font-size: 4.3vw;
    }

    .enjoy-eating__training-label {
        font-size: 3.5vw;
        margin-bottom: 1vw;
    }
}

/* ===============================================
   インタビューセクション - interview__item
   =============================================== */

.interview{
    background-color: #FFF;
    position: relative;
}

.slick-dotted.slick-slider {
    max-width: 800px;
    width: 60%;
    margin: 20rem auto 0;
}

.interview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/bg-interview-long.jpg);
    background-position: center center;
    background-size: cover;
    opacity: 0.9;
    z-index: 0;
}

.interview > .l-container{
    max-width: 100%;
    padding: 4rem 0 6rem;
    opacity: hidden;
    position: relative;
    z-index: 1;
}
.interview .title02{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


/* .interview .title02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    text-align: center;
    margin-bottom: 3rem;
}

.interview .title02::before {
    position: static;
    margin-bottom: 20px;
    transform: none;
} */


.interview__item {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 30px;
    padding: 36px 60px 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin: 0 20px;
    /* height: 320px !important; */
}

.interview__item-header {
    display: flex;
    gap: 30px;
    flex: 1;
}

.interview__item-image {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 500px;
    background-color: #DFF5FF;
    overflow: hidden;
    position: relative;
}

.interview__item-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
}

.interview__item-header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.interview__item-header-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.interview__item-header-number {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: auto;
    min-height: 56px;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
    color: #46b8a2;
    position: relative;
}

.interview__item-header-number::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image: url('../image/icon__voice.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: -10px;
    margin-left: 5px;
}

.interview__item-header-number .voice-label {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.interview__item-header-number .voice-number {
    font-size: 180%;
    line-height: 1;
}

.interview__item-header-title {
    font-size: 24px;
    font-weight: bold;
    color: #46b8a2;
    line-height: 1.4;
    margin: 0;
}

.interview__item-header-meta {
    font-size: 14px;
    color: #46b8a2;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.interview__item-text {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Interview Slider */
.interview__list {
    list-style: none;
    margin: 0;
    position: relative;
}

/* Interview Slider Arrows */
.interview__list .slick-prev,
.interview__list .slick-next {
    width: 60px;
    height: 60px;
    background-color: #FFF;
    border-radius: 50%;
    z-index: 100;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1 !important;
}

.interview__list .slick-prev:hover,
.interview__list .slick-next:hover,
.interview__list .slick-prev:focus,
.interview__list .slick-next:focus,
.interview__list .slick-prev:active,
.interview__list .slick-next:active {
    background-color: rgb(167, 228, 226);
    opacity: 1 !important;
    outline: none;
}

.interview__list .slick-prev {
    left: 0%;
}

.interview__list .slick-next {
    right: 0%;
}

.interview__list .slick-prev:before,
.interview__list .slick-next:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-top: 5px solid #2FBAB5;
    border-right: 5px solid #2FBAB5;
    position: absolute;
    top: 50%;
    left: 50%;
}

.interview__list .slick-prev:before {
    transform: translate(-30%, -50%) rotate(-135deg);
}

.interview__list .slick-next:before {
    transform: translate(-70%, -50%) rotate(45deg);
}

/* Interview Slider Dots */
.interview__list .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    gap: 10px;
}

.interview__list .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0;
}

.interview__list .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
}

.interview__list .slick-dots li button:before {
    width: 12px;
    height: 12px;
    font-size: 12px;
    line-height: 12px;
    color: #D0D0D0;
    opacity: 1;
}

.interview__list .slick-dots li.slick-active button:before {
    color: #2FBAB5;
    opacity: 1;
}

@media (max-width: 768px) {

    .interview{overflow: hidden;
    background-color: #e8f5f5;}

    .slick-dotted.slick-slider {
        margin-bottom: 0;
        max-width: 90vw;
        width: 90%;
        margin: 45vw auto 0;
        padding-bottom: 4vw;
        margin-bottom: 0!important;
    }

    .interview::before {
        background-position: center top;
        background-size: contain;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        background-image: url(../image/bg-interview-sp.png);
        background-repeat: no-repeat;
    }

    .interview > .l-container {
       padding: 8vw 0 3vw;
    }

    .interview .title02 {
        margin-bottom: 8vw;
        font-size: 9vw;
    }

    .interview .title02::before {
        width: 8vw;
        height: 8vw;
        margin-bottom: 4vw;
    }

    .interview .subtitle {
        font-size: 4.3vw;
    }

    .interview__item {
        padding: 6vw 5vw;
        border-radius: 4vw;
        margin: 0 3vw;
        height: auto!important;
    }

    .interview__item-header {
        flex-direction: column;
        gap: 5vw;
        align-items: center;
    }

    .interview__item-image {
        width: 25vw;
        height: 25vw;
    }

    .interview__item-header-info {
        width: 100%;
    }

    .interview__item-header-title-wrapper {
        gap: 3vw;
        margin-bottom: 3vw;
        align-items: normal;        
    }

    .interview__item-header-number {
        width: auto;
        min-height: 12vw;
        padding: 0 2vw 0 0;
        font-size: 3vw;
        gap: 1.5vw;
    }

    .interview__item-header-number::before {
        width: 8vw;
        height: 8vw;
        margin-bottom: -2vw;
    }

    .interview__item-header-number .voice-label {
        display: flex;
        align-items: baseline;
        gap: 1px;
    }

    .interview__item-header-number .voice-number {
        font-size: 150%;
        line-height: 1;
    }

    .interview__item-header-title {
        font-size: 4.5vw;
    }

    .interview__item-header-meta {
        font-size: 3.5vw;
        margin-bottom: 1vw;
        line-height: 1.4;
    }

    .interview__item-text {
        font-size: 4.3vw;
    }

    .interview__list .slick-prev {
        left: -2vw;
        width: 40px;
        height: 40px;
        background-color: #eeeeee;
    }

    .interview__list .slick-next {
        right: -2vw;
        width: 40px;
        height: 40px;
        background-color: #eeeeee;
    }

    .interview__list .slick-prev:before,
    .interview__list .slick-next:before {
        width: 14px;
        height: 14px;
        border-width: 3px;
    }

    .interview__list .slick-dots {
        bottom: -8vw;
        display: none !important;
    }
}

/*-------------
recruit
--------------*/

.recruit__cta {
    display: none; /* PC版では非表示 */
    margin: 2rem auto 0;
    padding: 16px 60px;
    background-color: #FFF;
    color: #2FBAB5;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border: #2fa9a3 2px solid;
    position: relative;
    padding-right: 60px;
}

.recruit__cta::after {
    content: '→';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.recruit__cta.is-open {
    background-color: #2fa9a3;
    color: #fff;
}

.recruit__cta.is-open::after {
    content: '↓';
}

.recruit__cta:hover {
    opacity: 0.8;
}


/* ===============================================
   リクルート　セクション - recruit
   =============================================== */

.recruit{
    background: linear-gradient(-19.4deg, rgba(250, 248, 196, 0.3) 10.19%, rgba(179, 222, 223, 0.3) 93.09%);
    padding: 8rem 0 0;
}

.recruit__intro{
    display: flex;
    gap:30px
}

.recruit__intro-image{
    border-radius: 30px;
    overflow: hidden;
    width: 70vw;
}

.recruit__table-content {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.recruit__table-content th,
.recruit__table-content td {
    padding: 20px 30px;
    border-bottom: 1px solid #b5d6d3;
    text-align: left;
    line-height: 1.8; 
}

.recruit__table-content th {
    color: #35908f;
    font-weight: bold;
    width: 180px;
    vertical-align: top;
}

.recruit__table-content td {
    color: #6B6666;
}

.recruit__table-content tr:last-child th,
.recruit__table-content tr:last-child td {
    border-bottom: none;
}

.recruit__table {
    display: block; /* PC版では常に表示 */
}

.recruit__table h3{
    text-align: center;
    margin: 5rem 0 1rem;
    font-size: 2.6rem;
    line-height: 1.25;
    color: #35908f;
}

.recruit__table h3 span{
    font-size: 1rem;
    display: block;
    font-weight: normal;
    color: #69b9b7;
}

.recruit__image01{
    aspect-ratio: 12 / 3;
    overflow: hidden;
    border-radius: 40px;
    background-image: url(../image/recruit-img02.jpg);
    background-size: cover;
}

.recruit__image01 img{
    width: 100%;
}

@media (max-width: 768px) {
    .recruit {
        padding: 5vw 0 0;
    }

    .recruit__intro {
        flex-direction: column;
        gap: 6vw;
    }

    .recruit__intro-image {
        border-radius: 4vw;
        width: 100%;
    }

    .recruit__intro-content .title01 {
        padding-left: 12vw;
        font-size: 9vw;
    }

    .recruit__intro-content .title01::before {
        width: 8vw;
        height: 8vw;
    }

    .recruit__intro-content .subtitle {
        font-size: 4.3vw;
    }

    .recruit__intro-text {
        font-size: 4.3vw;
    }

    .recruit__cta {
        display: block; /* SP版では表示 */
        width: 80%;
        font-size: 4.5vw;
        padding: 4vw 12vw 4vw 8vw;
        margin: 6vw auto;
        box-sizing: border-box;
    }

    .recruit__cta::after {


        right: 6vw;
        font-size: 5vw;
    }

    .recruit__table {
        display: none; /* SP版では非表示（アコーディオン動作） */
    }

    .recruit__table h3 {
        font-size: 5.5vw;
        margin: 10vw 0 5vw;
    }

    .recruit__table h3 span {
        font-size: 3.5vw;
    }

    .recruit__image01 {
        border-radius: 4vw;
        margin-bottom: 6vw;
        aspect-ratio: 6 / 2;
        background-position: center;
        background-size: cover;
    }
    .recruit__image01 img {
        width: 100%;
        height: 100%;
    }

    .recruit__table-content th,
    .recruit__table-content td {
        display: block;
        width: 100%;
        padding: 1vw;
    }

    .recruit__table-content th {
        border-bottom: none;
        padding-bottom: 0;
        font-size: 4vw;
        border-bottom: none;
    }

    .recruit__table-content td {
        padding-top: 0;
        font-size: 4.3vw;
        border-bottom: none;
    }

    .recruit__table-content tr {
        display: block;
        border-bottom: 1px solid #b5d6d3;
        padding: 3vw 0;
    }

    .recruit__table-content tr:last-child {
        border-bottom: none;
    }

    .recruit__table-content {margin-top: 2vw; margin-bottom: 5vw;}

}

/* ===============================================
   　セクション - recruit
   =============================================== */

.support{
    background-color: #FFF;
    border-radius: 50px 50px 0 0;
    margin-top: 5rem;
    padding:70px;
    position: relative;
    overflow: hidden;
}

.support::after {
    content: '';
    position: absolute;
    right: 172px;
    bottom: -16px;
    width: 250px;
    height: 250px;
    background-image: url(../image/support-img01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.support__content{
    background: #FDF8E599;
    border-radius: 30px;
    box-sizing: border-box;
    padding: 42px 50px 50px 50px;
}


.support__title{
    color: #2FBAB5;
    font-size:1.6rem;
}

.support__main{
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-top: 20px;
}

.support__highlight {
    flex: 6;
    position: relative;
}

.support__conditions {
    flex: 4;
    padding-left:30px;
    border-left:1px solid #d6d5c3;
}

.support__highlight-title{
    font-size: 120%;
    line-height: 1;
    margin-bottom: 5px;
    text-align: center;
}
.support__highlight-title span{
    color: #2FBAB5;
    font-size: 180%;
}

.support__highlight-link{
    position: absolute;
    bottom: 0;
    right: 0;
    padding:10px 60px 10px 30px;
    background-color: #FFF;
    color: #2FBAB5;
    border-radius: 500px;
    border: 1px solid #2FBAB5;
    transition: all 0.3s ease;
    text-decoration: none;
}

.support__highlight-link:hover {
    background-color: #effffe;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 186, 181, 0.3);
}

.support__highlight-link::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../image/icon-pdf.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: filter 0.3s ease;
}

.support__conditions-title{
    background-color: #2FBAB5;
    color: #FFF;
    font-size: 80%;
    border-radius: 5px;
    padding:2px 20px;
    display: inline-block;
    font-weight: bold;
}

.support__conditions-list{
    margin-top: 0.5em;
}

.support__conditions-item {
    position: relative;
    padding-left: 20px;
    list-style: none;
    margin-bottom: 0.2em;
}

.support__conditions-item::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #84cac8;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.6em;
}

.support__additional{
    background-color: #2fa9a3;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 80px auto 0;
    width: 80%;
    border-radius: 500px;
    padding:20px 0 20px 90px;
}

@media (max-width: 768px) {
    .support {
        padding: 9vw 7vw;
        border-radius: 6vw 6vw 0 0;
        margin-top: 10vw;
    }

    .support::after {
        right: -6vw;
        bottom: -13vw;
        width: 46vw;
        height: 45vw;
    }

    .support .title01 {
        padding-left: 12vw;
        font-size: 9vw;
        margin-bottom: 7vw;
    }

    .support .title01::before {
        width: 8vw;
        height: 8vw;
    }

    .support .subtitle {
        font-size: 4.3vw;
    }

    .support__content {
        padding: 6vw 5vw 7vw 5vw;
        border-radius: 4vw;
    }

    .support__title {
        font-size: 6.3vw;
        margin-bottom: 0;
        text-align: center;
    }

    .support__main {
        flex-direction: column;
        gap: 6vw;
        margin-top: 2vw;
    }

    .support__highlight {
        flex: 1;
        padding-bottom: 15vw;
    }

    .support__conditions {
        flex: 1;
        padding-left: 0;
        border-left: none;
        padding-top: 0;
        border-top: none;
    }

    .support__highlight-title {
        font-size: 4.5vw;
        line-height: 1.4;
        /* text-align: center; */
    }

    .support__highlight-title span {
        font-size: 150%;
    }

    .support__highlight-text {
        font-size: 3.8vw;
        margin-top: 2vw;
    }

    .support__highlight-link {
        position: absolute;
        display: inline-block;
        padding: 3vw 0;
        font-size: 4vw;
        margin-top: 4vw;
        width: 100%;
        text-align: center;
    }

    .support__highlight-link::after {
        right: 4vw;
        width: 6vw;
        height: 6vw;
    }

    .support__conditions-title {
        font-size: 3.5vw;
        padding: 1vw 4vw;
    }

    .support__conditions-text {
        font-size: 3.8vw;
        margin-top: 2vw;
    }

    .support__conditions-list {
        margin-top: 3vw;
    }

    .support__conditions-item {
        font-size: 4vw;
        padding-left: 5vw;
        margin-bottom: 1.5vw;
    }

    .support__conditions-item::before {
        width: 2vw;
        height: 2vw;
        top: 0.5em;
    }

    .support__additional {
        font-size: 4.5vw;
        margin: 6vw auto 0;
        width: 100%;
        padding: 5vw 8vw;
        text-align: left;
        border-radius: 18vw;
        line-height: 1.5;
    }
}

/* ===============================================
   　セクション - flow
   =============================================== */

   .flow{
     padding:5rem 0;
     background-image: url(../image/LP_Backimage_2.jpg);
     background-size: cover;
   }

   .flow__list{
    display: flex;
    gap: 30px;
    justify-content: space-between;
   }

   .flow__item{
    background-color: #FFF;
    padding:20px 0;
    border: 1px solid #ecebda;
    flex:1;
    border-radius: 8px;
    position: relative;
   }

   .flow__item::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 25px;
    height: 25px;
    border-top: 3px solid #78c9d4;
    border-right: 3px solid #78c9d4;
    z-index: 1;
   }

   .flow__item:last-child::after {
    display: none;
   }

    .flow__step{
        display: block;
        color: #f5c244;
        font-weight: 600;
        font-size: 1.5rem;
        text-align: center;
    }

    .flow__step-number{
        font-size: 130%;
    }

    .flow__text_wrap{
        height: 3em;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 120%;
        line-height: 1.2;
    }

@media (max-width: 768px) {
    .flow {
        padding: 15vw 0;
    }

    .flow .title01 {
        padding-left: 12vw;
        font-size: 9vw;
        margin-bottom: 7vw;
    }

    .flow .title01::before {
        width: 8vw;
        height: 8vw;
    }

    .flow .subtitle {
        font-size: 4.3vw;
    }

    .flow__list {
        flex-direction: column;
        gap: 6vw;
    }

    .flow__item {
        padding: 3vw 3vw;
        border-radius: 2vw;
        display: flex;
        justify-content: left;
        align-items: center
    }

    .flow__item::after {
        right: 50%;
        top: auto;
        bottom: -4.5vw;
        transform: translateX(50%) rotate(135deg);
        width: 4vw;
        height: 4vw;
        border-width: 0.7vw;
    }

    .flow__step {
        font-size: 5vw;
        margin-right: 3vw;
    }

    .flow__step-number {
        font-size: 130%;
    }

    .flow__text_wrap {
        font-size: 4.5vw;
        height: auto;
        min-height: 10vw;
        padding: 2vw 0;
    }
}

/* ===============================================
   　セクション - visit
   =============================================== */

.visit{
    display: flex;
    gap:60px;
    margin: 3rem 0;
}

.visit__image{
    width: 300px;
    display: block;
    position: relative;
    flex:1;
}

.visit__image-inner{
    background-color: green;
    width: 367px;
    aspect-ratio: 1 / 1;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 50%;
    background-image: url(../image/flow-img01.jpg);
    background-position: 71%;
    background-size: 150%;
}

.visit__image-inner::before {
    content: '';
    position: absolute;
    left: -20%;
    bottom: -20%;
    width: 200px;
    height: 200px;
    background-color: #c0e0a0;
    opacity: 0.5;
    border-radius: 50%;
}

.visit__content{
    flex:2;
}

.visit__title{
    color: #2FBAB5;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.visit__details{
    border: solid 1px #eeede8;
    border-radius: 15px;
    background-color: #FFF;
    padding: 20px 25px;
    position: relative;
    margin-top: 20px;
}

.visit__details-title{
    color: #f5c244;
    margin-bottom: 10px;
    font-size: 110%;
}

.visit__details-item{
    line-height: 1.35;
    margin-bottom: 0.3em;
}

.visit__details-list__notes{
    font-size:80%;
}

.visit__cta{
    position: absolute;
    aspect-ratio: 1/1;
    background-color: #f7b25b;
    width: 130px;
    border-radius: 50%;
    right: 20px;
    bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: 600;
    line-height: 1.2;
    font-size: 130%;
    transition: all 0.3s ease;
}

.visit__cta:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 6px 16px rgba(247, 178, 91, 0.4);
    background-color: #f5a23d;
}

.entry__main{
    background: linear-gradient(243.36deg, #ED7861 23.91%, #EE86A5 78.24%);
    border-radius: 20px;
    width: 900px;
    box-sizing: border-box;
    margin: 0 auto;
    color: #FFF;
    position: relative;
    transition: background 0.3s ease;
}

.entry__main:hover {
    background: linear-gradient(243.36deg, #FFA85C 23.91%, #FF7235 78.24%);
}

.entry__main::after {
    content: '';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background-image: url('../image/icon__entry-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.entry__main:hover::after {
    transform: translateY(-50%) translateX(10px);
}

.entry-banner{
    display: block;
    width: 100%;
    height: 100%;
    padding: 70px 50px 50px;
}

.entry_wrap{
    display: flex;
    align-items: flex-end;
}

.entry__sub{
    margin: 0 0 15px 20px;
    font-size: 1.8rem;
    font-weight: bold;
}

.entry__note{
    margin-top: 10px;
    display: block;
}

@media (max-width: 768px) {
    .visit {
        flex-direction: column-reverse;
        gap: 8vw;
        margin: 10vw 0;
    }

    .visit__image {
        width: 100%;
        order: 2;
        display: flex;
        justify-content: center;
    }

    .visit__image-inner {
        position: static;
        width: 100%;
        border-radius: 3vw;
        aspect-ratio: 16 / 9;
        background-position: center;
        background-size: cover;
    }

    .visit__image-inner::before {
        left: -15%;
        bottom: -15%;
        width: 30vw;
        height: 30vw;
    }

    .visit__content {
        flex: 1;
        order: 1;
    }

    .visit__title {
        font-size: 6.8vw;
        margin-bottom: 4vw;
        text-align: center;
    }

    .visit__text {
        font-size: 4.3vw;
    }

    .visit__details {
        padding: 7vw 8vw;
        margin-top: 4vw;
        border-radius: 3vw;
    }

    .visit__details-title {
        font-size: 6vw;
        margin-bottom: 3vw;
    }

    .visit__details-item {
        font-size: 4.3vw;
        margin-bottom: 2vw;
    }

    .visit__details-list__notes {
        font-size: 3.5vw;
    }

    .visit__cta {
        margin-top: 5vw;
        width: 100%;
        height: auto;
        right: 0;
        bottom: 0;
        font-size: 5vw;
        border-radius: 3vw;
        position: relative;
        aspect-ratio: inherit;
        padding: 5vw 0;
    }

    .visit__cta::after {
        content: '';
        position: absolute;
        right: 5vw;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        width: 4vw;
        height: 4vw;
        border-top: 1vw solid #FFF;
        border-right: 1vw solid #FFF;
    }

    .visit__cta:hover {
        transform: scale(1);
        box-shadow: none;
    }

    .entry__main {
        width: 100%;
        border-radius: 4vw;
    }

    .entry__main::after {
        right: 6vw;
        width: 9vw;
        height: 9vw;
    }

    .entry__main:hover::after {
        transform: translateY(-50%) translateX(0);
    }

    .entry-banner {
        padding: 7vw 6vw 5vw;
    }

    .entry_wrap {
        flex-direction: row;
        align-items: center;
        gap: 2vw;

    }

    .entry_wrap img{
        width: 30vw;
    }

    .entry__sub {
        margin: 1vw 0 0 0;
        font-size: 4.5vw;
        white-space: nowrap;
    }

    .entry__note {
        margin-top: 2vw;
        font-size: 3.5vw;
    }
}

/* ===============================================
   　セクション - facility
   =============================================== */

.facility{
    background-color: #2FBAB5;
    padding: 6rem 0 2rem;
}

.facility .title01{
    color: #FFF;
}

.facility__intro{
    display: flex;
    gap:30px;
    margin-bottom: 4rem;
    align-items: end;
    flex:1
}

.facility__stats{
    flex:1;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.facility__stats-item01{
    color: #FFF;
    font-weight: bold;
    position: relative;
    padding: 0 34px;
    width: 240px;
    box-sizing: border-box;
    margin: 20px;
}

.facility__stats-item01::before,
.facility__stats-item01::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 3px;
    height: 80px;
    background-color: #FFF;
}

.facility__stats-item01::before {
    left: 0;
    transform: translateY(-50%) rotate(-20deg);
    transform-origin: center;
}

.facility__stats-item01::after {
    right: 0;
    transform: translateY(-50%) rotate(20deg);
    transform-origin: center;
}

.facility__stats-label{
    display: block;
    line-height: 1;
}

.facility__stats-number-wrap{
    display: flex;
    align-items: end;
}

.facility__stats-number{
    color: #efee7c;
    font-size: 400%;
    line-height: 1;
}

.facility__stats-unit{
    margin:0 0 6px 6px;
    line-height: 1.2;
}

.facility__map{
    width: 300px;
    aspect-ratio: 1/1;
}

.facility__stats-item02{
    width: 250px;
    aspect-ratio: 1/1;
    background-color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.facility__stats-item02-wrap{
    width: 96%;
    aspect-ratio: 1/1;
    background-color: #FFF;
    border-radius: 50%;
    border: 2px solid #2FBAB5;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.facility__stats-text{ font-weight: bold;line-height: 1;}
.facility__stats-number-inline{font-size: 3rem;}
.facility__stats-note{font-size:2rem;font-weight: bold;}

.facility__stats-date{
    position: absolute;
    display: block;
    bottom:30px;
    font-size: 1rem;
}

.facility__content{
    background-color: #FFF;
    border-radius: 30px;
    width: 80%;
    padding:50px;
    position: relative;
    aspect-ratio: 5/4;
}



.facility__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 20px 15px;
    width: 60%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.facility__item{
    border:#2FBAB5 1px solid;
    padding:0.2em 1em;
    text-align: center;
    color: #2FBAB5;
    font-size: 1rem;
}

.facility__map{
    position: absolute;
    bottom:40px;
    right:40px;
    width: 60%;
    aspect-ratio: 1/1;
}

.facility__map img{width: 100%;}

/* Mobile styles for .facility */
@media (max-width: 767px) {
    .facility{
        padding: 12vw 0 5.3vw;
    }
    
    
    .facility__intro{
        flex-direction: column;
        gap: 5.3vw;
        margin-bottom: 5.3vw;
        align-items: center;
        position: relative;
    }
    
    .facility__stats{
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        gap: 2.6vw;
        margin-top: -18vw;
        align-items: end;
    }
    
    .facility__stats-item01{
        width: 42vw;
        padding: 0 5.3vw;
        margin: 0 0 3vw 0;
        position: absolute;
        bottom: 3vw;
        z-index: 1;
        right: 5vw;
        color: #2fa9a3;
        font-weight: 500;
    }
    
    .facility__stats-item01::before,
    .facility__stats-item01::after {
        height: 15vw;
        background-color: #2fa9a3;
        width: 1px;
    }

    .facility__stats-item01::after {
    right: 3vw;
    transform: translateY(-50%) rotate(20deg);
    transform-origin: center;
    
}
    
    .facility__stats-label{
        font-size: 4.2vw;
    }
    
    .facility__stats-number{
        font-size: 11vw;
        color: #ec799f;
    }
    
    .facility__stats-unit{
        font-size: 4.2vw;
        margin: 0 0 1vw 1vw;
    }
    
    .facility__stats-item02{
        width: 45%;
        aspect-ratio: 1 / 1;
        position: absolute;
        bottom: 59vw;
        z-index: 1;
        left: 5vw;
        background-color: #f4f8e7;
    }

    .facility__stats-item02-wrap{
        background-color: #f4f8e7;
        border: 0;
    }
    
    .facility__stats-text{
        font-size: 4.2vw;
    }
    
    .facility__stats-number-inline{
        font-size: 10vw;
        color: #ea5547;
    }
    
    .facility__stats-note{
        font-size:5.5vw;
    }
    
    .facility__stats-date{
        bottom: 6vw;
        font-size: 3.5vw;
    }
    
    .facility__content{
        width: 100%;
        padding: 8vw 5.3vw 20vw;
        border-radius: 5.3vw;
        aspect-ratio: auto;
        margin-top: 16vw;
    }
    
    .facility__list{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 2.6vw;
        width: 100%;
        margin-bottom: 5.3vw;
    }
    
    .facility__item{
        font-size: 4.2vw;
        padding: 0.5em 0.6em;
        text-align: center;
    }
    
    .facility__map{
        position: static;
        bottom: auto;
        right: auto;
        width: 100%;
        aspect-ratio: auto;
        margin-top: 0;
    }
}

/* ===============================================
   　フッター - footer
   =============================================== */

.footer{
    background-color: #6B6B6B;
    color: #FFF;
    padding: 60px 0 20px;
    overflow: hidden;
    position: relative;
}

.footer .l-container{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer__left{
    margin-bottom: 40px;
    width: 300px;
}

.footer__right{

}

.footer__logo{
    width: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.footer__logo img{
    width: 100%;
    filter: brightness(0) invert(1);
}

.footer__logo span{
    display: block;
    margin-top: 0.8em;
    padding:0.2em 1.5em;
    background-color: #FFF;
    color: #6B6B6B;
    border-radius: 500px;
    font-size: 90%;
    font-weight: bold;
}

.footer__nav{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__nav-item a{
    color: #FFF;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
}

.footer__nav-item a::after{
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #b8b8b8;
    font-weight: bold;
    transition: width 0.3s ease;
}

.footer__nav-item a:hover::after{
    width: 100%;
}

.footer__recruit-btn{
    background-color: #FFF;
    color: #333;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
    width: fit-content;
}

.footer__recruit-btn:hover{
    opacity: 0.8;
}

.footer__right{
    flex-shrink: 0;
    text-align: right;
    position: relative;
}

.footer__entry-btn{
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #FFF;
    text-decoration: none;
    padding: 18px 50px 18px 30px;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    background: linear-gradient(243.36deg, #ED7861 23.91%, #EE86A5 78.24%);
    margin-bottom: 20px;
}

.footer__entry-btn:hover{
    transform: translateY(-2px);
    background: linear-gradient(243.36deg, #FFA85C 23.91%, #FF7235 78.24%);
}

.footer__entry-btn::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../image/icon__entry-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}


.footer__entry-btn:hover::after {
    transform: translateY(-50%) translateX(5px);
}

.footer__entry-label{
    font-size: 1.8rem;
    font-style: italic;
    font-weight: bold;
    line-height: 1;
    display: block;
    width: 3em;
}

.footer__entry-label img{width: 100%;}

.footer__entry-text{
    font-size: 0.9rem;
    line-height: 1;
}

.footer__contact{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer__contact-info{
    line-height: 1.8;
    font-size: 0.9rem;
    padding: 20px 0;
}

.footer__contact-title{
   
}

.footer__contact-address,
.footer__contact-tel,
.footer__contact-mail{

}

.footer__contact-mail a{
    color: #FFF;
    text-decoration: underline;
}

.footer__contact-mail a:hover{
    opacity: 0.7;
}

.footer__social{
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer__social-link{
    display: flex;
    width: 60px;
    height: 60px;
    transition: opacity 0.3s, transform 0.3s;
    background-color: rgb(53, 53, 53);
    border-radius: 15px;
    overflow: hidden;
    background-color: #FFF;
    justify-content: center;
    align-items: center;
}

.footer__social-link:hover{
    transform: translateY(-2px);
}

.footer__social-icon{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__social-icon-insta{
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.footer__bottom{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 15px;
}

.footer__links{
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.footer__links-wrap{
    display: flex;
    justify-content: right;
    gap: 20px;
}

.footer__link{
    color: #FFF;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
}

.footer__link::after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #b8b8b8;
    transition: width 0.3s ease;
}

.footer__link:hover::after{
    width: 100%;
}

.footer__copyright{
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer__right-bottom{
    position: absolute;
    bottom:10px;
    right: 0;
}

/* Mobile styles for footer */
@media (max-width: 767px) {
    .footer{
        padding: 40px 0 20vw;
    }

.footer .l-container {
    display: flex;
    justify-content: space-between;
    gap: 0;
    flex-direction: column;
}
    
    .footer__main{
        flex-direction: inherit;
        gap: 5vw;
        margin-bottom: 3vw;
    }
    
.footer__left {
    margin-bottom: 40px;
    width: 100%;}

    .footer__logo{
        margin-top: -2vw;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
    
.footer__logo img {
    width: 50vw;
    filter: brightness(0) invert(1);
}
    .footer__nav{
        flex-direction: row;
        gap: 8px;
        flex:1;
        display: block;
    }
    
    .footer__nav-item a{
        font-size: 4vw;
        padding-left: 6vw;
        position: relative;
    }
    
    .footer__nav-item a::before{
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3.5vw;
        height: 3.5vw;
        background-image: url(../image/footer_arrow.svg);
        background-size: 90%;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .footer__recruit-btn{
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .footer__right{
        width: 100%;
        text-align: left;
    }
    
    .footer__entry-btn{
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
    
    .footer__entry-label{
        font-size: 1.5rem;
    }
    
    .footer__entry-text{
         font-size: 4.2vw;
    }
    
    .footer__contact{
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
    
    .footer__contact-info{
         font-size: 4.2vw;
    }
    
    .footer__contact-title{
         font-size: 4.2vw;
    }
    
    .footer__contact-address,
    .footer__contact-tel,
    .footer__contact-mail{
        font-size: 4.2vw;
    }

    .footer__contact-tel{
        margin: 4vw 0 0;
    }
    
    .footer__social{
        gap: 12px;
    }
    
    .footer__social-link{
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }
    
    .footer__bottom{
        flex-direction: column;
        align-items: normal;
        gap: 12px;
    }
    
    .footer__links{
        flex-direction: column;
        gap: 8px;
    }
    
    .footer__link{
        font-size: 4.3vw;
    }
    
    .footer__copyright{
        margin-top: 3vw;
        font-size: 0.75rem;
        width: 100%;
    }

    .footer__nav-item{
        width: 100%;
        border-bottom: 1px solid #868686;
        padding:2vw;
    }

    .footer__nav-item:first-child{
        border-top: 1px solid #868686;
    }

    .footer__logo span{
        font-size: 4vw;
        margin-left: 3vw;
    }

    .footer__right-bottom {
        position: relative;
        bottom: initial;
        right: inherit;
        margin-top: 6vw;

    }

}



/* ===============================================
   　セクション - news-article
   =============================================== */

.news-article{
    margin: 6rem 0;
}

.news-header_image{
    aspect-ratio: 16 / 9;
    margin: 0 0 2rem 0;
    border-radius: 30px;
    overflow: hidden;
}

.news-header_image img{
    height: 100%;
}

.news-header__article-title{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color:#20adac;
    padding-bottom:1rem;
    border-bottom: 1px solid #dadada;
}

.news-content__inner{
    margin-bottom: 2em;
}

.news-content__inner p{
    margin-bottom: 0.8em;
}

.news-article-images {
    display: grid;
    gap: 2vw;
}

.news-content__inner a{
    text-decoration: underline;
    color: #20adac;
}

.news-article-images.images-2 {
    grid-template-columns: repeat(2, 1fr);
}
.news-article-images.images-3 {
    grid-template-columns: repeat(3, 1fr);
}
.news-article-images.images-4 {
    grid-template-columns: repeat(2, 1fr);
}
.news-article-images.images-5,
.news-article-images.images-6 {
    grid-template-columns: repeat(3, 1fr);
}

.news-article-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.news-back{
    position: relative;
    margin: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-back a{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    padding:1em 3em;
    background-color: #20adac;
    border-radius: 500px;
    transition:  0.3s ease;
}

.news-back a:hover {
    background-color: #1e9a99;
    transform: translateY(-5px);
}

@media (max-width: 767px) {
.news-article {
    margin: 20vw 0;
}

.news-header_image {
    aspect-ratio: 16 / 9;
    margin: 0 0 5vw 0;
    border-radius: 3vw;
    overflow: hidden;
}

.news-header__article-title {
    font-size: 6vw;
}

.news-article-images img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.news-article-images.images-2 {
    grid-template-columns: repeat(1, 1fr);
}
.news-article-images.images-3 {
    grid-template-columns: repeat(2, 1fr);
}
.news-article-images.images-4 {
    grid-template-columns: repeat(2, 1fr);
}
.news-article-images.images-5,
.news-article-images.images-6 {
    grid-template-columns: repeat(4, 1fr);
}

.news-back {
    position: relative;
    margin: 10vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


}

/* ========================================
   Scroll Animation Styles
   ======================================== */

/* Animation class that does not interfere with existing styles */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dedicated animation class for subtitle - completely independent */
.fade-up-text {
    display: block !important;
    opacity: 0 !important;
    transform: matrix(1, 0, 0, 1, 0, 25) !important;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s !important, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s !important;
}

.scroll-fade-up.is-visible .fade-up-text {
    opacity: 1 !important;
    transform: matrix(1, 0, 0, 1, 0, 0) !important;
}

/* Multiple selectors for extra specificity */
h2.scroll-fade-up .subtitle.fade-up-text,
.title01.scroll-fade-up .subtitle.fade-up-text,
span.subtitle.fade-up-text {
    opacity: 0 !important;
    transform: matrix(1, 0, 0, 1, 0, 25) !important;
}

h2.scroll-fade-up.is-visible .subtitle.fade-up-text,
.title01.scroll-fade-up.is-visible .subtitle.fade-up-text,
.scroll-fade-up.is-visible span.subtitle.fade-up-text {
    opacity: 1 !important;
    transform: matrix(1, 0, 0, 1, 0, 0) !important;
}

/* ========================================
   Title02 Scroll Animation (for Interview section)
   ======================================== */

/* Title02 animation - handles position absolute with translateX */
.interview .title02 {
    opacity: 0;
    transform: translateX(-50%) translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.interview .title02.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Subtitle animation for title02 */
.interview .title02 .subtitle {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.interview .title02.is-visible .subtitle {
    opacity: 1;
    transform: translateY(0);
}