/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.sp{
    display: none;
}
body {
    font-family: 'Zen Old Mincho', serif;
    line-height: 1.6;
}
.area{
    font-size: 24px;
    color: white;
}
/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 15px 0;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo-img {
    width: 150px;
    height: auto;
}

/* ヘッダーのLINEボタン */
.header__line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(90deg, #FFE098 0%, #FFC02C 100%);
    color: #744E23;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 24px;
    font-weight: 600;
    min-width: 250px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(116, 78, 35, 0.2);
    border: 2px solid #744E23;
}

.header__line-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(116, 78, 35, 0.3);
    background: linear-gradient(135deg, #FFF2B8 0%, #FFD04D 100%);
}

.header__line-btn:active {
    transform: translateY(0);
}

.header__line-icon {
    width: 20px;
    height: 20px;
}

.header__line-text {
    flex: 1;
    text-align: center;
}

.header__arrow-icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

/* スマホ用ハンバーガーメニュー */
.header__hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: 2px solid #744E23;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    transition: all 0.3s ease;
}

.header__hamburger:hover {
    background: rgba(116, 78, 35, 0.1);
}

.header__hamburger-line {
    width: 16px;
    height: 2px;
    background: #744E23;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* FVセクション */
.fv {
    position: relative;
    min-height: 100vh;
    background: url('img/fv-back.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fv__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
}

/* 左カラム */
.fv__left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    z-index: 2;
    position: relative;
    align-items: center;
}

/* 店舗情報 */
.fv__locations {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    margin-bottom: 0;
    display: none; /* レスポンシブで非表示にするため */
}

/* キャッチコピー */
.fv__catch {
    text-align: center;
    animation: slideInLeft 1s ease-out;
}

.fv__catch img {
    width: 100%;
    min-width: 600px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
}

/* メイン画像 (絶対配置) */
.fv__image {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: auto;
    z-index: 1;
    animation: slideInRight 1s ease-out;
}

.fv__image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
}

/* LINEボタン */
.fv__line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFE098 0%, #FFC02C 100%);
    color: #744E23;
    text-decoration: none;
    padding: 24px 32px;
    border-radius: 50px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 24px;
    font-weight: 600;
    width: 100%;
    max-width: 450px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    border: 3px solid #744E23;
}

.fv__line-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 78, 35, 0.4);
    background: linear-gradient(135deg, #FFF2B8 0%, #FFD04D 100%);
}

.fv__line-btn:active {
    transform: translateY(0);
}

.fv__line-icon {
    width: 32px;
    height: 32px;
}

.fv__line-text {
    flex: 1;
    text-align: center;
}

.fv__arrow-icon {
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

/* アニメーション */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .area{
        display: none;
    }
    .header {
        padding: 10px 0;
    }
    
    .header__container {
        padding: 0 15px;
    }
    
    .header__logo-img {
        width: 120px;
    }
    
    .header__line-btn {
        font-size: 14px;
        padding: 16px;
        min-width: 200px;
        gap: 6px;
    }
    
    .header__line-icon {
        width: 18px;
        height: 18px;
    }
    
    .header__arrow-icon {
        width: 14px;
        height: 14px;
    }

    .fv__container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        gap: 30px;
        justify-content: end;
        padding-bottom: 40px;

    }
    
    .fv__left {
        width: 100%;
        gap: 20px;
        text-align: center;
        z-index: 2;
    }
    
    .fv__catch img {
        width: 85%;
        
    }
    
    .fv__image {
        height: 65vh;
        width: 100%;
        right: 0;
        left: 0;
        bottom: unset;
        top: -120px;
    }
    
    .fv__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        content: url('img/fv-image-sp.webp');
    }
    
    .fv__locations {
        font-size: 20px;
        text-align: center;
    }
    
    .fv__catch {
        text-align: center;
    }
    
    .fv__line-btn {
        font-size: 32px;
        padding: 20px 32px;
        gap: 10px;
        max-width: unset;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .fv {
        background: url('img/fv-back-sp.webp') center/cover no-repeat;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .header__container {
        padding: 0 10px;
        justify-content: space-between;
    }
    
    .header__logo-img {
        width: 100px;
    }

    .fv__container {
        gap: 0px;
        padding: 0px;
        padding-bottom: 50px;
        justify-content: end;

    }
    
    .fv__left {
        gap: 0px;
    }
    
    .fv__catch img {
        min-width: 300px;
        content: url('img/fv-catch-sp.webp');
        width: 90%;
    }
    
    .fv__image {
        position: absolute;
        top: -25px;
        right: 0;
        left: 0;
        height: 60vh;
        width: 100%;
        z-index: 1;
    }
    
    .fv__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        content: url('img/fv-image-sp.webp');
    }
    
    .fv__line-btn {
        font-size: 18px;
        padding: 16px 20px;
        width: 90%;
    }
}





/* CTAセクション */
.cta {
    position: relative;
    
    background: url('img/cta-back.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 4px solid #744E23;
 }
 
 .cta__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
 }
 
 /* ヘッダー画像（上部固定） */
 .cta__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
 }
 
 .cta__header img {
    width: 100%;
    height: auto;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
 }
 
 /* キャスト画像（下部固定） */
 .cta__cast {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
 }
 
 .cta__cast img {
    width: 100%;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
    margin-bottom: -10px;
 }
 
 /* 三つの特徴 */
 .cta__merit {
    text-align: center;
    padding-top: 300px;
    margin-bottom: 100px;
 }
 
 .cta__merit img {
    width: 1080px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
 }
 
 /* コピー画像 */
 .cta__copy {
    text-align: center;
    margin-top: 20px;
 }
 
 .cta__copy img {
    width: 100%;
    height: auto;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
 }
 
 /* CTAのLINEボタン */
 .cta__line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFE098 0%, #FFC02C 100%);
    color: #744E23;
    text-decoration: none;
    padding: 32px 80px;
    border-radius: 100px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 32px;
    font-weight: 600;
    
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(116, 78, 35, 0.3);
    border: 3px solid #744E23;
    margin-top: 20px;
 }
 
 .cta__line-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 78, 35, 0.4);
    background: linear-gradient(135deg, #FFF2B8 0%, #FFD04D 100%);
 }
 
 .cta__line-btn:active {
    transform: translateY(0);
 }
 
 .cta__line-icon {
    width: 32px;
    height: 32px;
 }
 
 .cta__line-text {
    flex: 1;
    text-align: center;
 }
 
 .cta__arrow-icon {
    width: 32px;
    height: 32px;
    opacity: 0.8;
 }
 
 /* レスポンシブ対応 */
 @media (max-width: 1024px) {
    .cta {
        background: url('img/cta-back-sp.webp') center/cover no-repeat;
    }
    
    .cta__container {
        padding: 0;
        gap: 30px;
        position: absolute;
        bottom: 10%;
    }
    
    .cta__header img {
        width: 100%;
        content: url('img/cta-head-sp.webp');
    }
    
    .cta__cast {
        left: 0;
        right: 0;
        position: unset;
        padding-top: 40%;
        width: 100%;
    }
    
    .cta__cast img {
        width: 100%;
        height: auto;
        max-height: none;
        content: url('img/cta-cast-sp.webp');
    }
    
    .cta__merit {
        padding-top: 27%;
    }
    
    .cta__merit img {
        display: none;
    }
    
    .cta__copy img {
        width: 100%;
        content: url('img/cta-copy-sp.webp');
    }
    
    .cta__line-btn {
        font-size: 32px;
        padding: 24px 40px;
        gap: 10px;
        max-width: unset;
    }
    
    .cta__line-icon,
    .cta__arrow-icon {
        width: 24px;
        height: 24px;
    }
 }
 
 @media (max-width: 480px) {
    .cta {
        background: url('img/cta-back-sp.webp') center/cover no-repeat;
        display: flex;
                flex-direction: column;
                justify-content: flex-end;
    }
    
    .cta__container {
        padding: 0;
        gap: 0;
    }
    
    .cta__cast {
        left: 0;
        right: 0;
       
    }
    
    .cta__cast img {
        width: 100%;
        height: auto;
        max-height: none;
        content: url('img/cta-cast-sp.webp');
    }
    
    .cta__merit {
        padding-top: 20%;
    }
    
    .cta__merit img {
        content: url('img/cta-merit-sp.webp');
    }
    
    .cta__copy img {
        width: 100%;
        content: url('img/cta-copy-sp.webp');
    }
    
    .cta__header img {
        content: url('img/cta-head-sp.webp');
    }
    
    .cta__line-btn {
        font-size: 20px;
        padding: 16px 20px;
    }
 }


 /* ABOUTセクション */
.about {
    position: relative;
    background: url('img/repeat-back2.webp') repeat;
    padding: 80px 0;
    overflow: hidden;
    border-top: 3px solid #563B1B;
}

.about__container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
}

/* 四隅の装飾 */
.about__decoration {
    position: absolute;
    z-index: 1;
}

.about__decoration--tl {
    top: 24px;
    left: 24px;
}

.about__decoration--tr {
    top: 24px;
    right: 24px;
}

.about__decoration--bl {
    bottom: 24px;
    left: 24px;
}

.about__decoration--br {
    bottom: 24px;
    right: 24px;
}

.about__decoration--tl img,
.about__decoration--tr img {
    width: 315px;
    height: auto;
}

.about__decoration--bl img,
.about__decoration--br img {
    width: 225px;
    height: auto;
}

/* 左右の女の子画像 */
.about__girl {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.about__girl--left {
    left: -50px;
}

.about__girl--right {
    right: -50px;
}

.about__girl img {
    width: 400px;
    height: auto;
    
}

/* ヘッダー部分 */
.about__header {
    margin-bottom: 60px;
}

.about__head-treat {
    margin-bottom: 20px;
}

.about__head-treat img {
    width: 260px;
    height: auto;
}

.about__title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 48px;
    font-weight: 700;
    color: #744E23;
    margin-bottom: 10px;
    line-height: 1.3;
}

.about__title-highlight {
    color: #C12E29;
}

.about__subtitle {
    font-family: 'Zen Old Mincho', serif;
    font-size: 18px;
    font-weight: 500;
    color: #744E23;
    letter-spacing: 0.2em;
}

/* コンテンツ部分 */
.about__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about__description {
    padding: 0;
}

.about__description-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: #563B1B;
    text-align: center;
}

.about__description-text--sp {
    display: none;
}

/* ABOUTのLINEボタン */
.about__line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFE098 0%, #FFC02C 100%);
    color: #744E23;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 24px;
    font-weight: 600;
    max-width: 400px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(116, 78, 35, 0.3);
    border: 2px solid #744E23;
}

.about__line-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 78, 35, 0.4);
    background: linear-gradient(135deg, #FFF2B8 0%, #FFD04D 100%);
}

.about__line-btn:active {
    transform: translateY(0);
}

.about__line-icon {
    width: 32px;
    height: 32px;
}

.about__line-text {
    flex: 1;
    text-align: center;
}

.about__arrow-icon {
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .about {
        padding: 60px 0;
    }
    
    .about__container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .about__decoration--tl img,
    .about__decoration--tr img {
        width: 200px;
    }
    
    .about__decoration--bl img,
    .about__decoration--br img {
        width: 150px;
    }
    
    .about__girl img {
        width: 250px;
    }
    
    .about__header {
        margin-top: 100px;
    }
    
    .about__head-treat img {
        width: 180px;
    }
    
    .about__title {
        font-size: 36px;
    }
    
    .about__subtitle {
        font-size: 16px;
    }
    
    .about__description {
        padding: 0;
        margin: 0 10px;
    }
    
    .about__description-text {
        font-size: 16px;
    }
    
    .about__line-btn {
        font-size: 20px;
        padding: 14px 24px;
        gap: 10px;
    }
    
    .about__line-icon,
    .about__arrow-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .sp{
        display: block;
    }
    .about__girl img {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .about__girl--left {
        left: -40px;
    }
    .about__girl--right {
        right: -40px;
    }
    .about__decoration--tl {
        top: 12px;
        left: 12px;
    }
    
    .about__decoration--tr {
        top: 12px;
        right: 12px;
    }
    
    .about__decoration--bl {
        bottom: 12px;
        left: 12px;
    }
    
    .about__decoration--br {
        bottom: 12px;
        right: 12px;
    }
    .about__decoration--tl img,
    .about__decoration--tr img {
        width: 120px;
        content: url('img/Treat-lefthead-sp.svg');
    }
    
    .about__decoration--tr img {
        content: url('img/Treat-righthead-sp.svg');
    }
    
    .about__decoration--bl img,
    .about__decoration--br img {
        width: 120px;
        content: url('img/Treat-leftbottom-sp.svg');
    }
    
    .about__decoration--br img {
        content: url('img/Treat-rightbottom-sp.svg');
    }
    
    .about__girl img {
        width: 120px;
    }
    
    .about__header {
        margin-top: 10px;
        margin-bottom: 40px;
    }
    
    .about__head-treat img {
        width: 40%;
    }
    
    .about__title {
        font-size: 28px;
    }
    
    .about__description {
        padding: 0;
        margin: 0 5px;
    }
    
    .about__description-text {
        display: none;
    }
    
    .about__description-text--sp {
        display: block;
        font-family: 'Zen Maru Gothic', sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.8;
        color: #563B1B;
        text-align: center;
    }
    
    .about__line-btn {
        font-size: 20px;
        padding: 16px 20px;
    }
}

/* 魅力セクション */
.features {
    position: relative;
    min-height: 100vh;
    background: url('img/repeat-back1.webp') repeat;
    padding: 80px 0;
    overflow-x: hidden; /* 横スクロールを防ぐ */
    border-top: #563B1B 3px solid;
}

.features__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* 背景装飾 */
.features__decoration {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}

.features__decoration--top {
    top: 0;
}

.features__decoration--bottom {
    bottom: 0;
}

.features__decoration img {
    width: 100%;
    height: auto;
    margin-bottom: -5px;
}

/* セクションヘッダー */
.features__header {
    text-align: center;
    margin-bottom: 0px;
}

.features__header img {
    width: 100%;
    max-width: 850px;
    height: auto;
}

/* 魅力アイテム */
.features__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

/* 偶数アイテムの反転 */
.features__item--even {
    flex-direction: row-reverse;
}

/* あしらい装飾 */
.features__treat {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.features__treat img {
    width: 450px;
    height: auto;
}

/* 奇数のあしらい（左側） */
.features__item--odd .features__treat {
    left: -100px;
}

/* 偶数のあしらい（右側） */
.features__item--even .features__treat {
    right: -100px;
}

/* コンテンツ部分 */
.features__content {
    flex: 1;
    position: relative;
    z-index: 2; /* 画像より下 */
}

.features__text-area {
    position: relative;
}

.features__title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 30px;
    margin-left: 20%;
    text-align: left; /* 左寄せ統一 */
}

/* 偶数時のタイトルも左寄せ */
.features__item--even .features__title {
    margin-left: 20%;
    margin-right: 0;
    text-align: left;
}

.features__title--highlight {
    color: #EDC66C;
}

/* 線と提灯のコンテナ */
.features__line-container {
    position: relative;
    margin: 30px 0;
    height: 20px;
}

.features__line {
    position: absolute;
    left: -9999px;
    right: 0;
    top: 50%;
    height: 3px;
    background: #EDC66C;
    transform: translateY(-50%);
}

/* 偶数時の線 */
.features__item--even .features__line {
    left: 0;
    right: -100vw; /* 画面幅分だけ右に伸ばす */
    width: 100vw;
}

.features__chochin {
    position: absolute;
    left: 0;
    top: 50%;
}

/* 偶数時の提灯 */
.features__item--even .features__chochin {
    left: auto;
    right: 0;
}

.features__chochin img {
    width: 120px;
    height: auto;
}

/* 提灯の個別スタイル */
/* 奇数番（1,3,5）はtyoutin1.svg */
.features__item--odd .features__chochin img {
    content: url('img/tyoutin1.svg');
}

/* 偶数番（2,4）はtyoutin2.svg */
.features__item--even .features__chochin img {
    content: url('img/tyoutin2.svg');
    width: 100px;
}

.features__item--even .features__chochin {
    top: 0%;
}

.features__description {
    margin-top: 30px;
    margin-left: 20%;
}

/* 偶数時の説明文も左寄せ */
.features__item--even .features__description {
    margin-left: 20%;
    margin-right: 0;
    text-align: left;
}

.features__description p {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    color: #fff;
    text-align: left; /* 左寄せ統一 */
}

.features__description-text--sp {
    display: none;
}

/* 画像部分 */
.features__image {
    flex: 0 0 450px;
    margin-left: -60px; /* マイナスマージンを強化 */
    z-index: 3; /* 最上位に */
    position: relative; /* z-indexを有効にする */
}

/* 偶数時の画像 */
.features__item--even .features__image {
    margin-left: 0;
    margin-right: -60px; /* マイナスマージンを強化 */
}

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

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .features__item,
    .features__item--even {
        flex-direction: column;
        text-align: center;
        gap: 0; /* gap削除 */
    }
    
    /* あしらいを画像の下に配置 */
    .features__treat {
        position: absolute;
        top: auto;
        bottom: -50px;
        transform: none;
        z-index: 1;
        width: 400px; /* 400px */
        height: 400px; /* 400px */
    }
    
    .features__treat img {
        width: 400px; /* 400px */
        height: auto;
    }
    
    /* 奇数: 右下 */
    .features__item--odd .features__treat {
        right: 20px;
        left: auto;
    }
    
    /* 偶数: 左下 */
    .features__item--even .features__treat {
        left: 20px;
        right: auto;
    }
    
    /* 画像コンテナを相対配置に */
    .features__image,
    .features__item--even .features__image {
        position: relative;
        order: 1;
        flex: none;
        width: 70%; /* 70%サイズ */
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .features__line {
        display: none;
    }
    
    .features__chochin {
        display: none;
    }
    
    /* 線コンテナを非表示 */
    .features__line-container {
        display: none;
    }
    
    .features__content {
        order: 2;
    }
    
    .features__title,
    .features__item--even .features__title {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }
    
    .features__description,
    .features__item--even .features__description {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .features__item{
        margin-bottom: 40px;
    }
    .features {
        padding: 60px 0;
    }
    
    .features__container {
        padding: 0 16px;
    }
    
    .features__header {
        margin-bottom: 40px;
    }
    
    .features__header img {
        max-width: 100%;
        content: url('img/features-head-sp.webp'); /* SP版に変更 */
    }
    
    .features__title {
        font-size: 36px;
    }
    
    .features__description p {
        font-size: 16px;
        text-align: left; /* 左寄せ強制 */
    }
    
    .features__description-text {
        display: block;
    }
    
    .features__description-text--sp {
        display: none;
    }
    
    /* 768px以下でSP画像と配置変更 */
    .features__image,
    .features__item--even .features__image {
        width: 70%;
        max-width: none;
        margin: 0;
    }
    
    /* 奇数: 左端にピタッと */
    .features__item--odd .features__image {
        
    }
    
    /* 偶数: 右側に30px余白 */
    .features__item--even .features__image {
        
    }
    
    
    
    .features__treat img {
        width: 400px; /* 400px */
    }
    
    .features__treat {
        width: 400px; /* 400px */
        height: 400px; /* 400px */
        bottom: auto;
        top: 50%;
        right: -30%;
        transform: translateY(-50%);
    }
    
    /* 偶数: 左右逆 */
    .features__item--even .features__treat {
        left: -30%;
        right: auto;
    }
}

@media (max-width: 480px) {
    .features__title {
        font-size: 28px;
    }
    
    .features__description p {
        font-size: 16px;
        text-align: left; /* 左寄せ強制 */
    }
    
    .features__description-text {
        display: none; /* デスクトップ用テキストを非表示 */
    }
    
    .features__description-text--sp {
        display: block; /* スマホ用テキストを表示 */
        font-family: 'Zen Maru Gothic', sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 2;
        color: #fff;
        text-align: left;
    }
    
    .features__treat img {
        width: 400px; /* 400px維持 */
    }
    
    .features__treat {
        width: 400px;
        height: 400px;
        top: 50%;
        right: -30%;
        transform: translateY(-50%);
    }
    
    /* 偶数: 左右逆 */
    .features__item--even .features__treat {
        left: -30%;
        right: auto;
    }
}





/* スケジュールセクション */
.schedule {
    position: relative;
    background: url('img/repeat-back2.webp') repeat;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    border-top: 3px solid #563B1B;
}

.schedule__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* セクションヘッダー */
.schedule__header {
    text-align: center;
    margin-bottom: 80px;
}

.schedule__header img {
    width: 100%;
    max-width: 850px;
    height: auto;
}

/* メインコンテンツ */
.schedule__content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    margin-left: 100px;
}

/* 左カラム（時計画像） */
.schedule__time {
    flex: 0 0 135px; /* 400px → 135px */
}

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

/* 右カラム（説明文） */
.schedule__description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* 右カラム（説明文） */
.schedule__description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 560px; /* 幅制限追加 */
}

.schedule__item {
    /* margin-bottom削除 */
}

.schedule__header-row {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 16px;
}

.schedule__time-label {
    font-family: 'EB Garamond', serif; /* フォント変更 */
    font-size: 24px;
    font-weight: 500;
    color: #563B1B;
    flex-shrink: 0;
}

.schedule__item-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 700;
    color: #B33A36;
    margin: 0; /* margin-bottom削除 */
}

.schedule__divider {
    width: 100%;
    height: 1px;
    border-bottom: 2px dotted #563B1B;
    margin-bottom: 16px;
}

.schedule__item-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    color: #563B1B;
    text-align: left; /* 左寄せ追加 */
}

/* 区切り線 */
.section-divider {
    width: 90%;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.section-divider img {
    width: 100%;
    height: auto;
}

/* 女の子画像（絶対配置） */
.schedule__girl {
    position: absolute;
    right: 0;
    top: 59%;
    transform: translateY(-50%);
    z-index: 3; /* z-index: 1 → 3 */
}

.schedule__girl img {
    width: 350px;
    height: auto;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .schedule__content {
        display: flex
    ;
        gap: 10px;
        align-items: flex-start;
        position: relative;
        z-index: 2;
    }
    .schedule__girl{
        top: 60%;
    }
    .schedule__girl img {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .schedule {
        padding: 60px 0;
    }
    
    .schedule__container {
        padding: 0;
    }
    
    .schedule__header {
        margin-bottom: 30px;
    }
    
    .schedule__header img {
        max-width: 100%;
        content: url('img/schedule-head-sp.webp');
    }
    
    .schedule__content {
        gap: 0px;
        margin-bottom: -100px;
        margin-left: 0px;
    }
    
    .schedule__description {
        gap: 40px;
        width: 70%;
    }
    
    .schedule__header-row {
        gap: 15px;
        margin-bottom: 12px;
    }
    
    .schedule__time-label {
        font-size: 20px;
    }
    
    .schedule__item-title {
        font-size: 28px;
    }
    
    .schedule__item-text {
        font-size: 16px;
    }
    
    .schedule__time {
        max-width: 120px; /* 300px → 120px */
    }
    .schedule__girl{
        position: unset;
        transform: unset;
        text-align: center;
    }
    .schedule__girl img {
        content: url('img/schedule-sp.webp');
        width: 90%;
        margin: 0 auto;
        margin
    }
    .schedule__time img {
        width: 65%;
        height: auto;
        content: url('img/time-sp.webp');
    }
}

@media (max-width: 480px) {
    .schedule__content {
        margin-bottom: -40px;
        width: 95%;
        gap: 10px;
    }
    .schedule__header-row {
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .schedule__time-label {
        font-size: 18px;
       
    }
    
    .schedule__item-title {
        font-size: 24px;
    }
    
    .schedule__item-text {
        font-size: 16px;
        
    }
    .schedule__description {
        gap: 27px;
        
    }
    .schedule__time {
        max-width: 100px; /* 250px → 100px */
    }
    
    .schedule__girl img {
        
    }
    .schedule__time img {
        width: 90%;
        height: auto;
        content: url(img/time-sp.webp);
    }
}






/* 先輩の声セクション */
.voice {
    position: relative;
    background: url('img/repeat-back2.webp') repeat;
    padding: 80px 0;
    overflow: hidden;
}

.voice__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* セクションヘッダー */
.voice__header {
    text-align: center;
    margin-bottom: 80px;
}

.voice__header img {
    width: 100%;
    max-width: 850px;
    height: auto;
}

/* Swiperコンテナ */
.voice__swiper-container {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.voice__swiper {
    position: relative;
    overflow: visible;
}

.voice__slide {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF7EF 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* 四隅の装飾 */
.voice__decoration {
    position: absolute;
    z-index: 1;
}

.voice__decoration--tl {
    top: 12px;
    left: 12px;
}

.voice__decoration--tr {
    top: 12px;
    right: 12px;
}

.voice__decoration--bl {
    bottom: 12px;
    left: 12px;
}

.voice__decoration--br {
    bottom: 12px;
    right: 12px;
}

.voice__decoration img {
    width: 95px;
    height: 95px;
}

/* コンテンツ部分 */
.voice__content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    width: 95%;
}

/* 女の子画像 */
.voice__image {
    flex: 0 0 200px;
    text-align: center;
}

.voice__image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #744E23;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 12px;
}

/* テキスト部分 */
.voice__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.voice__title {
    font-family: 'Zen Maru Gothic', sans-serif; /* 丸ゴシックに変更 */
    font-size: 24px;
    font-weight: 700;
    color: #744E23; /* 茶色に変更 */
    line-height: 1.4;
    margin-bottom: 12px;
}

.voice__divider {
    width: 100%;
    height: 1px;
    background-color: #744E23;
    margin-bottom: 16px;
}

.voice__description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    color: #744E23;
}

.voice__info {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #744E23;
    text-align: center;
}

/* ナビゲーションボタン */
.voice__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.voice__nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.voice__nav--prev {
    left: -55px;
}

.voice__nav--next {
    right: -55px;
}

.voice__nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .voice__nav--prev {
        left: -80px;
    }
    
    .voice__nav--next {
        right: -80px;
    }
    
    .voice__nav {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    /* コンテンツ部分 */
.voice__content {
    
    width: 100%;
}
    .voice {
        padding: 60px 0;
    }
    
    .voice__container {
        padding: 0 15px;
    }
    
    .voice__header {
        margin-bottom: 30px;
    }
    
    .voice__header img {
        max-width: 100%;
        content: url('img/voice-head-sp.webp');
    }
    
    .voice__slide {
        padding: 30px 20px;
    }
    
    .voice__content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .voice__image {
        flex: none;
        align-self: center;
    }
    
    .voice__image img {
        width: 150px;
        height: 150px;
    }
    
    .voice__decoration img {
        width: 60px;
        height: 60px;
    }
    
    .voice__title {
        font-size: 20px;
    }
    
    .voice__description {
        font-size: 14px;
    }
    
    .voice__info {
        text-align: center;
    }
    
    .voice__nav {
        width: 60px;
        height: 60px;
    }
    
    .voice__nav--prev {
        left: -30px;
    }
    
    .voice__nav--next {
        right: -30px;
    }
}

@media (max-width: 480px) {
    .voice__slide {
        padding: 32px;
    }
    
    .voice__image img {
        width: 120px;
        height: 120px;
    }
    
    .voice__decoration img {
        width: 40px;
        height: 40px;
    }
    
    .voice__title {
        font-size: 18px;
    }
    
    .voice__description {
        font-size: 13px;
        text-align: left;
    }
    
    .voice__nav {
        width: 50px;
        height: 50px;
    }
    
    .voice__nav--prev {
        left: -20px;
    }
    
    .voice__nav--next {
        right: -20px;
    }
}

/* 応募の流れセクション */
.flow {
    position: relative;
    min-height: 100vh;
    background: url('img/repeat-back1.webp') repeat;
    padding: 80px 0;
    overflow-x: hidden;
    border-top: 3px solid #563B1B;
}

.flow__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* 背景装飾 */
.flow__decoration {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}

.flow__decoration--top {
    top: 0;
}

.flow__decoration--bottom {
    bottom: 0;
}

.flow__decoration img {
    width: 100%;
    height: auto;
    margin-bottom: -5px;
}

/* セクションヘッダー */
.flow__header {
    text-align: center;
    margin-bottom: 80px;
}

.flow__header img {
    width: 100%;
    max-width: 850px;
    height: auto;
}

/* あしらい装飾（絶対配置） */
.flow__treat {
    position: absolute;
    z-index: 1;
}

.flow__treat--tl {
    top: 400px; /* 200px → 400px */
    left: -50px;
}

.flow__treat--tr {
    top: 300px;
    right: -80px;
}

.flow__treat--bl {
    bottom: 400px;
    left: -100px;
}

.flow__treat img {
    width: 450px;
    height: auto;
}

/* 提灯装飾（絶対配置） */
.flow__chochin {
    position: absolute;
    z-index: 1;
}

.flow__chochin--tl {
    top: 300px; /* 150px → 300px */
    left: 100px;
}

.flow__chochin--left {
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}

.flow__chochin--br {
    bottom: 850px;
    right: 100px;
}

.flow__chochin img {
    width: 100px;
    height: auto;
}

.flow__chochin--tl img {
    width: 100px;
}

.flow__chochin--left img {
    width: 120px;
}

.flow__chochin--br img {
    width: 120px;
}

/* 女の子画像（絶対配置） */
.flow__girl {
    position: absolute;
    z-index: 3;
}

.flow__girl--step3 {
    top: 500px; /* 150px → 250px */
    right: 0px; /* 80px → 40px */
}

.flow__girl img {
    width: 360px; /* 200px → 360px */
    height: auto;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
}

/* メインコンテンツ */
.flow__content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center; /* 中央揃え追加 */
    position: relative;
    z-index: 2;
}

/* 左カラム（フロー画像） */
.flow__image {
    flex: 0 0 225px;
}

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

/* 右カラム（ステップ説明） */
.flow__steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 140px; /* 150px → 140px */
    max-width: 350px;
    margin-top: 40px; /* 追加 */
}

.flow__step {
    /* margin-bottom削除 */
}

.flow__step-number {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.flow__step-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 40px; /* 32px → 40px */
    font-weight: 700;
    margin: 0;
}

/* ステップタイトルの色 */
.flow__step--1 .flow__step-title,
.flow__step--2 .flow__step-title,
.flow__step--3 .flow__step-title {
    color: #fff;
}

.flow__step--4 .flow__step-title {
    color: #EDC66C;
}

/* ステップ番号の色 */
.flow__step--4 .flow__step-number {
    color: #EDC66C; /* STEP4番号も金色 */
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .flow__chochin--br {
        bottom: 1000px;
        right: 50px;
    }
    .flow__content {
        
        gap: 40px;
        text-align: center;
    }
    
    .flow__image {
        flex: none;
        max-width: 200px;
    }
    
    .flow__steps {
        text-align: left;
    }
    .flow__treat--bl {
        bottom: 1000px;
        left: -200px;
    }
    .flow__girl--step3 {
        top: 450px;
        right: 40px;
    }
    .flow__girl img {
        width: 300px;
    }
    /* 装飾要素を非表示 */
    .flow__treat,
    .flow__chochin,
    .flow__girl {
        display: ;
    }
    
    .flow__step-number {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .flow__step-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .flow__girl img {
        width: 100%;
        content: url('img/flow-girl-sp.webp'); /* SP版に変更 */
    }
    .flow {
        padding: 60px 0;
    }
    
    .flow__container {
        padding: 0 15px;
    }
    
    .flow__header {
        margin-bottom: 30px;
    }
    
    .flow__header img {
        max-width: 100%;
        content: url('img/flow-head-sp.webp'); /* SP版に変更 */
    }
    
    .flow__content {
        gap: 30px;
    }
    
    .flow__steps {
        gap: 130px;
        max-width: 250px;
    }
    .flow__girl--step3 {
        top: 600px;
        right: 20px;
        position: unset;
    }
    .flow__step-number {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .flow__step-title {
        font-size: 24px;
    }
    
    .flow__image {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .flow__treat--tl {
        top: unset;
        bottom: 400px;
        left: unset;
        right: -100px;
    }
    .flow__chochin--br {
        display: none;
    }
    .flow__chochin--tl {
        top: 500px;
        right: -20px;
        left: unset;
    }
    .flow__chochin--left{
        top: 400px;
        right: 10px;
        left: unset;
    }
    .flow__chochin--tl img {
        width: 50px;
    }
    .flow__chochin--br img{
        width: 60px;
    }
    .flow__chochin--left img {
        width: 60px;
    }

    .flow__content {
        gap: 10px;
    }
    
    .flow__image {
        flex: 0 0 120px; /* 150px → 120px */
    }
    
    .flow__steps {
        max-width: 240px; /* 280px → 240px */
        gap: 64px; /* 100px → 80px */
        margin-top: 15px; /* 20px → 15px */
    }
    
    .flow__step-number {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .flow__step-title {
        font-size: 24px;
    }
    .flow__girl--step3 {
        top: 600px;
        right: 20px;
        position: unset;
    }
}




/* 区切り線 */
.flow__divider {
    width: 90%;
    margin: 60px auto 0;
    text-align: center;
}

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

/* 面接ポイント */
.flow__interview {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.flow__interview-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.flow__interview-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.flow__interview-point img {
    width: 100%;
    height: auto;
}

.flow__interview-text {
    font-family: 'Zen Old Mincho', serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    margin-top: 16px;
}

.flow__interview-note {
    font-size: 14px;
    font-weight: 500;
    
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .flow__interview-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 500px;
    }
    
    .flow__interview-title {
        font-size: 32px;
    }
    
    .flow__interview-text {
        font-size: 16px;
        margin-top: 12px;
    }
}

@media (max-width: 768px) {
    .flow__interview-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .flow__interview-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        
    }
    
    .flow__interview-text {
        font-size: 24px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .flow__interview-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .flow__interview-points {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 250px;
    }
    
    .flow__interview-text {
        font-size: 20px;
        margin-top: 12px;
    }
    
    .flow__interview-note {
        font-size: 14px;
    }
    
    .flow__divider {
        margin: 40px auto 0;
    }
    
    .flow__interview {
        margin-top: 40px;
    }
}


/* セカンドCTAセクション */
.cta-second {
    position: relative;
    background: url('img/cta-back2.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top: 4px solid #744E23;
}

.cta-second__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* ヘッダー画像（上部固定） */
.cta-second__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
}

.cta-second__header img {
    width: 100%;
    height: auto;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
}

/* キャスト画像（下部固定） */
.cta-second__cast {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.cta-second__cast img {
    width: 100%;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
    margin-bottom: -10px;
}

/* 三つの特徴 */
.cta-second__merit {
    text-align: center;
    padding-top: 300px;
}

.cta-second__merit img {
    width: 1080px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
}

/* コピー画像 */
.cta-second__copy {
    text-align: center;
    margin-top: 160px;
}

.cta-second__copy img {
    width: 90%;
    height: auto;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
}

/* セカンドCTAのLINEボタン */
.cta-second__line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFE098 0%, #FFC02C 100%);
    color: #744E23;
    text-decoration: none;
    padding: 32px 80px;
    border-radius: 100px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 32px;
    font-weight: 600;
    
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(116, 78, 35, 0.3);
    border: 3px solid #744E23;
    margin-top: 20px;
}

.cta-second__line-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 78, 35, 0.4);
    background: linear-gradient(135deg, #FFF2B8 0%, #FFD04D 100%);
}

.cta-second__line-btn:active {
    transform: translateY(0);
}

.cta-second__line-icon {
    width: 32px;
    height: 32px;
}

.cta-second__line-text {
    flex: 1;
    text-align: center;
}

.cta-second__arrow-icon {
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .cta-second {
        background: url('img/cta-back2-sp.webp') center/cover no-repeat;
    }
    
    .cta-second__container {
        padding: 0;
        gap: 30px;
        position: absolute;
        bottom: 10%;
    }
    
    .cta-second__header img {
        width: 100%;
        content: url('img/cta-head2-sp.webp');
    }
    
    .cta-second__cast {
        left: 0;
        right: 0;
        position: unset;
        padding-top: 40%;
        width: 100%;
    }
    
    .cta-second__cast img {
        width: 100%;
        height: auto;
        max-height: none;
        content: url('img/cta-cast2-sp.webp');
    }
    
    .cta-second__merit {
        display: none;
    }
    
    .cta-second__merit img {
        display: none;
    }
    
    .cta-second__copy img {
        width: 80%;
        content: url('img/cta-copy2-sp.webp');
    }
    
    .cta-second__line-btn {
        font-size: 32px;
        padding: 24px 40px;
        gap: 10px;
        max-width: unset;
    }
    
    .cta-second__line-icon,
    .cta-second__arrow-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .cta-second {
        background: url('img/cta-back2-sp.webp') center/cover no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .cta-second__container {
        padding: 0;
        gap: 0;
        bottom: 3%;
    }
    
    .cta-second__cast {
        left: 0;
        right: 0;
    }
    
    .cta-second__cast img {
        width: 100%;
        height: auto;
        max-height: none;
        content: url('img/cta-cast2-sp.webp');
    }
    
    .cta-second__merit {
        padding-top: 20%;
    }
    
    .cta-second__merit img {
        display: block;
        content: url('img/cta-merit2-sp.webp');
    }
    
    .cta-second__copy img {
        width: 80%;
        content: url('img/cta-copy2-sp.webp');
    }
    
    .cta-second__header img {
        content: url('img/cta-head2-sp.webp');
    }
    
    .cta-second__line-btn {
        font-size: 20px;
        padding: 14px 20px;
    }
}
/* FAQセクション */
.faq {
    position: relative;
    background: url('img/repeat-back2.webp') repeat;
    padding: 80px 0;
    overflow: hidden;
    border-top: 3px solid #563B1B;
}

.faq__container {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* セクションヘッダー */
.faq__header {
    text-align: center;
    margin-bottom: 80px;
}

.faq__header img {
    width: 100%;
    max-width: 850px;
    height: auto;
}

/* FAQ項目 */
.faq__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq__item {
    
}

/* 質問部分 */
.faq__question {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.faq__q {
    font-family: 'EB Garamond', serif;
    font-size: 40px;
    font-weight: 500;
    color: #744E23;
    flex-shrink: 0;
}

.faq__question-text {
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 700;
    color: #744E23;
    line-height: 1.4;
    margin: 0;
}

/* 回答部分 */
.faq__answer {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-top: 2px dotted #744E23;
    padding-top: 20px;
}

.faq__a {
    font-family: 'EB Garamond', serif;
    font-size: 40px;
    font-weight: 500;
    color: #B33A36;
    flex-shrink: 0;
}

.faq__answer-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #744E23;
    line-height: 1.8;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq__container {
        padding: 0 15px;
    }
    
    .faq__header {
        margin-bottom: 30px;
    }
    
    .faq__header img {
        max-width: 100%;
        content: url('img/faq-head-sp.webp');
    }
    
    .faq__content {
        gap: 30px;
    }
    
    .faq__q,
    .faq__a {
        font-size: 32px;
    }
    
    .faq__question-text {
        font-size: 24px;
    }
    
    .faq__answer-text {
        font-size: 16px;
    }
    
    .faq__question,
    .faq__answer {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .faq__question{
        margin-bottom: 10px;
    }
    .faq__answer{
        padding-top: 10px;
    }
    .faq__q,
    .faq__a {
        font-size: 28px;
    }
    
    .faq__question-text {
        font-size: 20px;
    }
    
    .faq__answer-text {
        font-size: 14px;
    }
    
    .faq__question,
    .faq__answer {
        gap: 12px;
    }
}

/* 給与形態セクション */
.salary {
    position: relative;
    min-height: 100vh;
    background: url('img/repeat-back1.webp') repeat;
    padding: 80px 0;
    overflow-x: hidden;
    border-top: 3px solid #563B1B;
}

.salary__container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* 背景装飾 */
.salary__decoration {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}

.salary__decoration--top {
    top: 0;
}

.salary__decoration--bottom {
    bottom: 0;
}

.salary__decoration img {
    width: 100%;
    height: auto;
    margin-bottom: -5px;
}

/* セクションヘッダー */
.salary__header {
    text-align: center;
    margin-bottom: 60px;
}

.salary__header img {
    width: 100%;
    max-width: 850px;
    height: auto;
}

/* アコーディオンメニュー */
.salary__accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.salary__item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.salary__trigger {
    width: 100%;
    padding: 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.salary__trigger:hover {
    background: rgba(116, 78, 35, 0.05);
}



.salary__title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 28px;
    font-weight: 700;
    color: #744E23;
}

.salary__arrow {
    width: 20px;
    height: 20px;
    background: url('img/Vector.svg') no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.salary__trigger.active .salary__arrow {
    transform: rotate(180deg);
}

.salary__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.salary__content.active {
    max-height: 500px;
}

/* テーブルスタイル */
.salary__table {
    width: 100%;
    border-collapse: collapse;
}

.salary__table-header {
    background: #B33A36;
    color: white;
    padding: 15px;
    font-family: 'Zen Old Mincho', serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border: 1px solid #B33A36;
}

.salary__table-cell {
    padding: 15px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #744E23;
    text-align: center;
    border: 1px solid #ddd;
    background: white;
}

/* ボーナスセクション */
.salary__bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.salary__bonus-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 20px;
    font-weight: 700;
    color: #B33A36;
    margin-bottom: 15px;
    text-align: center;
}

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

.salary__bonus-list li {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #744E23;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .salary {
        padding: 60px 0;
    }
    
    .salary__container {
        padding: 0 15px;
    }
    
    .salary__header {
        margin-bottom: 40px;
    }
    
    .salary__header img {
        content: url('img/salary-head-sp.webp');
    }
    
    .salary__trigger {
        padding: 20px;
    }
    
    .salary__title {
        font-size: 20px;
    }
    
    .salary__bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .salary__table-header,
    .salary__table-cell {
        padding: 10px 5px;
        font-size: 14px;
    }
    
    .salary__item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .salary__trigger {
        padding: 15px;
    }
    
    .salary__title {
        font-size: 18px;
    }
    
    .salary__table-header,
    .salary__table-cell {
        padding: 12px;
        font-size: 12px;
        text-align: left;
    }
    
    .salary__bonus-list li {
        font-size: 12px;
    }
    
    .salary__item {
        padding: 12px;
    }
}

/* 店舗情報セクション */
.store {
    position: relative;
    background: url('img/repeat-back2.webp') repeat;
    padding: 80px 0;
    overflow: hidden;
    border-top: 3px solid #563B1B;
}

.store__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* セクションヘッダー */
.store__header {
    text-align: center;
    margin-bottom: 60px;
}

.store__header img {
    width: 100%;
    max-width: 850px;
    height: auto;
}

/* 店舗コンテンツ */
.store__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* 店舗アイテム */
.store__item {
    display: flex;
    flex-direction: column;
}

/* Google Map */
.store__map {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.store__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.store__info {
    flex: 1;
}

.store__name {
    font-family: 'Zen Old Mincho', serif;
    font-size: 28px;
    font-weight: 700;
    color: #744E23;
    margin-bottom: 10px;
    text-align: left;
}

.store__divider {
    width: 100%;
    height: 2px;
    background: #744E23;
    margin-bottom: 15px;
}

.store__address {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #744E23;
    line-height: 1.6;
    margin-bottom: 8px;
}

.store__map-link {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    margin-bottom: 8px;
}

.store__map-link a {
    color: #B33A36;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.store__map-link a:hover {
    color: #744E23;
}

.store__hours {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #B33A36;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 600;
}

/* 装飾画像 */
.store__decoration {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .store {
        padding: 60px 0;
    }
    
    .store__container {
        padding: 0 15px;
    }
    
    .store__header {
        margin-bottom: 40px;
    }
    
    .store__header img {
        content: url('img/store-head-sp.webp');
    }
    
    .store__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .store__name {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .store__divider {
        margin-bottom: 12px;
    }
    
    .store__address {
        font-size: 14px;
    }
    
    .store__map-link {
        font-size: 13px;
    }
    
    .store__hours {
        font-size: 14px;
    }
    
    .store__map {
        height: 250px;
        margin-bottom: 15px;
    }
    
    .store__decoration {
        /* orderを削除して自然な順序にする */
        margin-top: 20px;
    }
    
    .store__decoration img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .store__name {
        font-size: 20px;
    }
    
    .store__address {
        font-size: 13px;
    }
    
    .store__map-link {
        font-size: 12px;
    }
    
    .store__hours {
        font-size: 13px;
    }
    
    .store__decoration img {
        max-width: unset;
    }
}
/* 会社概要セクション */
.company {
    position: relative;
    min-height: 100vh;
    background: url('img/repeat-back1.webp') repeat;
    padding: 80px 0;
    overflow-x: hidden;
    border-top: 3px solid #563B1B;
}

.company__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* 背景装飾 */
.company__decoration {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}

.company__decoration--top {
    top: 0;
}

.company__decoration--bottom {
    bottom: 0;
}

.company__decoration img {
    width: 100%;
    height: auto;
    margin-bottom: -5px;
}

/* セクションヘッダー */
.company__header {
    text-align: center;
    margin-bottom: 80px;
}

.company__header img {
    width: 100%;
    max-width: 850px;
    height: auto;
}

/* 会社概要コンテンツ */
.company__content {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF7EF 100%);
    border-radius: 12px;
    padding: 80px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

/* 四隅の装飾 */
.company__treat {
    position: absolute;
    z-index: 1;
}

.company__treat--tl {
    top: 12px;
    left: 12px;
}

.company__treat--tr {
    top: 12px;
    right: 12px;
}

.company__treat--bl {
    bottom: 12px;
    left: 12px;
}

.company__treat--br {
    bottom: 12px;
    right: 12px;
}

.company__treat img {
    width: 95px;
    height: 95px;
}

/* 会社情報 */
.company__info {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

/* デスクトップレイアウト */
.company__item {
    display: flex;
    border-bottom: 1px solid #D8C8B6;
    padding: 48px 0 16px 0;
}

.company__item:first-child {
    padding-top: 0;
}

.company__label {
    font-family: 'Zen Old Mincho', serif;
    font-size: 24px;
    font-weight: 500;
    color: #744E23;
    width: 150px;
    flex-shrink: 0;
    padding-right: 20px;
}

.company__value {
    font-family: 'Zen Old Mincho', serif;
    font-size: 24px;
    font-weight: 500;
    color: #744E23;
    line-height: 1.8;
    flex: 1;
    padding-left: 20px;
}

/* 店舗名の色 */
.company__store-name {
    color: #94806A;
    font-size: 20px;
}

/* 区切り線（デスクトップでは非表示） */
.company__divider {
    display: none;
}

/* 会社ロゴ画像 */
.company__logos {
    text-align: center;
    position: relative;
    z-index: 2;
}

.company__logos img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .company {
        padding: 60px 0;
    }
    
    .company__container {
        padding: 0 15px;
    }
    
    .company__header {
        margin-bottom: 30px;
    }
    
    .company__header img {
        content: url('img/company-head-sp.webp');
    }
    
    .company__content {
        padding: 60px 40px;
        width: 95%;
    }
    
    .company__treat img {
        width: 60px;
        height: 60px;
    }
    
    .company__info {
        margin-bottom: 30px;
    }
    
    /* スマホでは縦レイアウトに変更 */
    .company__item {
        display: block;
        border-bottom: none;
        padding: 32px 0 0 0;
    }
    
    .company__item:first-child {
        padding-top: 0;
    }
    
    .company__label {
        font-size: 20px;
        width: 100%;
        padding: 0 0 16px 0;
    }
    
    .company__value {
        font-size: 18px;
        padding: 0 0 20px 0;
    }
    
    /* 区切り線を表示 */
    .company__divider {
        display: block;
        width: 100%;
        height: 1px;
        background: #D8C8B6;
        margin: 0;
    }
    
    .company__store-name {
        font-size: 16px;
    }
    
    .company__logos img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .company__content {
        padding: 40px 20px;
        width: 98%;
    }
    
    .company__treat img {
        width: 40px;
        height: 40px;
    }
    
    .company__info {
        margin-bottom: 20px;
    }
    
    .company__item {
        padding: 24px 0 0 0;
    }
    
    .company__label {
        font-size: 18px;
        padding: 0 0 12px 0;
    }
    
    .company__value {
        font-size: 16px;
        padding: 0 0 16px 0;
    }
    
    .company__store-name {
        font-size: 14px;
    }
}
/* フッター */
.footer {
    position: relative;
    background: #B33A36;
    padding: 40px 0;
    text-align: center;
}

.footer__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__copyright {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.5;
}

/* スクロールトップボタン */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 110px;
    height: 110px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.scroll-top:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.scroll-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer__container {
        padding: 0 15px;
    }
    
    .footer__copyright {
        font-size: 14px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0;
    }
    
    .footer__copyright {
        font-size: 12px;
    }
    
    .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 70px;
        height: 70px;
    }
}

/* 店舗選択モーダル */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: flex-end;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.modal-show {
    opacity: 1;
}

.modal-content {
    background: url('img/repeat-back2.webp') repeat;
    width: 100%;
    max-width: 450px;
    height: 100%;
    padding: 80px 30px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    position: relative;
    border-left: 4px solid #744E23;
}

.modal-overlay.modal-show .modal-content {
    transform: translateX(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none;
    border: 2px solid #744E23;
    border-radius: 50%;
    color: #744E23;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #744E23;
    color: #FFE098;
    transform: rotate(90deg);
}

.modal-stores {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFE098 0%, #FFC02C 100%);
    color: #744E23;
    text-decoration: none;
    padding: 20px 24px;
    border-radius: 50px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(116, 78, 35, 0.2);
    border: 2px solid #744E23;
}

.modal-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 78, 35, 0.3);
    background: linear-gradient(135deg, #FFF2B8 0%, #FFD04D 100%);
}

.modal-store-btn:active {
    transform: translateY(0);
}

.modal-store-icon {
    width: 24px;
    height: 24px;
}

.modal-store-text {
    flex: 1;
    text-align: center;
    font-size: 16px;
}

.modal-store-arrow {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

/* モーダルのレスポンシブ対応 */
@media (max-width: 768px) {
    .modal-content {
        max-width: 90%;
        padding: 70px 20px 20px 20px;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        right: 20px;
        top: 15px;
    }
    
    .modal-store-btn {
        font-size: 16px;
        padding: 24px 32px;
        gap: 16px;
    }
    
    .modal-store-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 95%;
        padding: 65px 15px 15px 15px;
    }
    
    .modal-stores {
        gap: 20px;
    }
    
    .modal-store-btn {
        font-size: 14px;
        padding: 16px 20px;
    }
    
    .modal-store-text {
        font-size: 16px;
    }
    
    .modal-store-icon {
        width: 20px;
        height: 20px;
    }
    
    .modal-store-arrow {
        width: 16px;
        height: 16px;
    }
}