/************************************
 * 
 * ↓TOPページ
 * 
 ************************************/

/* ===================================
   FVセクション
=================================== */
.fv {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../img/fv.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(126deg, rgb(205 6 6 / 100%) 0%, rgb(186 6 6 / 100%) 20%, rgb(186 6 6 / 0%) 40%, rgb(186 6 6 / 0%) 70%, rgb(205 6 6) 100%);
    z-index: 1;
    mix-blend-mode: hard-light;
}

/* FV左側コンテンツ全体 */
.fv-left-content {
    position: absolute;
    top: 80px;
    left: 80px;
    bottom:80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

/* キャッチコピー */


.fv-catchcopy {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
}


.fv-sitename {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.5vw, 38px);
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: clamp(10px, 2vh, 50px);
}

/* FV内ナビゲーション */


.fv-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: clamp(10px, 2.5vh, 20px);
}


.fv-nav a {
    font-size: clamp(14px, 1vw, 17px);
    font-weight: 400;
    letter-spacing: 0.05em;
    font-family: var(--font-serif);
    text-shadow: 1px 1px 3px #4b0000;
}

/* FV内SNS */

.fv-sns svg {
    width: 35px;
    height: 35px;
    fill: var(--color-white);
}


/* ===================================
   劇場紹介セクション
=================================== */
.intro {
    position: relative;
    padding: 100px 0 0;
    overflow: hidden;
}

.intro .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.intro-text {
    flex: 0 0 auto;
}

.intro-title {
    font-family: var(--font-serif);
    font-size: clamp(35px, 5vw, 70px);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: left;
    line-height: 1.3;
}

.intro-subtitle {
    font-size: clamp(20px, 2.5vw, 34px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-align: right;
    margin-left: auto;
    font-family: 'fot-matisse-pron';
    margin-top: 10px;
}

/* 特徴画像（3枚横並び） */
.intro-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.intro-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* ===================================
   特徴セクション
=================================== */
.features {
    padding: 50px 0px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
}

.feature-image {
    margin-bottom: 20px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-title {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.feature-text {
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
}

/* ===================================
   メッセージセクション
=================================== */
.message {
    padding: 100px 0 150px;
    text-align: center;
    position: relative;
}

.message-title {
    font-size: clamp(25px,3.5vw,36px);
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.message-text {
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 1.8;
    margin: 0 auto;
    letter-spacing: 0.1em;
    font-family: var(--font-serif);
}
.message-text span {
    margin-bottom: 20px;
    display: block;
}

.message-last-txt{
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.5;
    margin-top: 35px;
}

/* 背景グラデ */
.message::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(123deg, rgb(13 13 13 / 0%) 0%, rgb(229 0 0 / 0%) 80%, rgb(229 0 0 / 90%) 120%);
    z-index: 0;
    pointer-events: none;
}
/* ===================================
   CTAセクション
=================================== */
.cta {
    /* background-color: var(--color-black); */
    text-align: center;
}

.cta-container {
    position: relative;
}

.cta-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    padding: 20px 40px;
    background: var(--gradient-red);
    font-size: 18px;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: transform 0.3s ease;
    font-family: var(--font-sans);
}

.cta-button:hover {
    opacity: 1;
}

img.cta-arrow {
    display: inline-block;
    margin-bottom: 3px;
    width: 20px;
    height: auto;
    object-fit: contain;
    margin-left: 50px;
    transition: transform 0.3s ease;
}

.cta-button:hover img.cta-arrow{
    transform: translateX(10px);
}

/* スライダー */
.slider {
    width: 100%;
}

.slider-item img {
    width: 100%;
    /* height: 300px; */
    object-fit: cover;
}


/* ===================================
   レスポンシブ（タブレット以下）
=================================== */

/* PC調整 */
/* レスポンシブ */
@media (max-width: 1360px) {
    .fv-nav ul {
        gap: 10px;
    }

    .fv-left-content {
        top: 40px;
        left: 50px;
        bottom:40px;
    }
}


/* タブレット以下 */
@media (max-width: 1024px) {

    .fv-overlay {
        background: linear-gradient(126deg, rgb(205 6 6 / 100%) 0%, rgb(186 6 6 / 100%) 30%, rgb(186 6 6 / 0%) 50%, rgb(186 6 6 / 0%) 70%, rgb(205 6 6) 100%);
    }
    
    .fv-catchcopy {
        font-size: 80px;
    }
    .fv-sitename {
        font-size: 40px;
    }
    .fv-nav a {
        font-size: 18px;
    }
    .feature-image img {
        height: 200px;
    }
    .feature-title {
        line-height: 1.5;
    }
    .header-nav {
        padding: 20% 5%;
    }
    .header-nav ul {
        flex-direction: column;
        gap: 50px;
    }

    /* .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    } */
    
    .slider-item {
        flex: 0 0 calc(50% - 10px);
    }
    

}

/* スマホ */
@media (max-width: 767px) {

    .fv-overlay {
        background: linear-gradient(126deg, rgb(205 6 6 / 100%) 0%, rgb(186 6 6 / 100%) 30%, rgb(186 6 6 / 0%) 50%, rgb(186 6 6 / 0%) 70%, rgb(205 6 6) 100%);
    }
    .fv-content {
        text-shadow: 1px 1px 3px #4b0000;
    }
    

    .fv {
        padding-left: 5%;
    }
    
    .fv-catchcopy {
        font-size: 40px;
    }
    
    .fv-sitename {
        font-size: 20px;
    }
    
    .fv-nav {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .header-nav ul {
        flex-direction: column;
        gap: 30px;
    }

    .fv-left-content {
        top: 30px;
        left: 30px;
        bottom: 40px;
    }

    .fv-sns svg {
        width: 30px;
        height: 30px;
    }
    
    .header-nav {
        padding: 50px 5%;
    }

    .header-nav a {
        font-size: 16px;
    }

    h1.header-logo {
        line-height: 1;
        margin-top: -10px;
    }
    .intro-title {
        font-size: 33px;
        text-align: center;
        width: 100%;
    }
    p.intro-subtitle {
        font-size: 18px;
        text-align: center;
        width: 100%;
        line-height: 1.5;
        margin-top: 0px;
    }
    /* .d_none_sp{
        display: none;
    } */

    .intro .container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-direction: column;
    }

    .features {
        padding: 30px 0px;
    }
    .feature-text {
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
        padding: 0 5px;
    }

    .message-title {
        margin-bottom: 30px;
    }
    .message-last-txt {
        margin-top: 30px;
    }

    .slider-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    .slider-item {
        flex: 0 0 calc(100% - 10px);
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .cta-button {
        padding: 15px 20px;
        width: 65%;
    }
    img.cta-arrow {
        display: inline-block;
        margin-bottom: 2px;
        margin-left: 10px;
    }

    .footer::before{
        display: none;
    }
    .footer-copyright {
        padding: 15px 0;
    }

    .under-page {
        padding: 120px 0 100px;
    }

    .message {
        padding: 100px 0 130px;
    }
}

/************************************
 * 
 * ↑TOPページ
 * 
 ************************************/



/************************************
 * 
 * ↓公演予定ページ
 * 
 ************************************/

 .schedule-section .container {
    max-width: 1000px;
}

.schedule-title {
    margin-bottom: 50px;
}

.schedule-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.inline-link {
    font-family: var(--font-sans);
    text-decoration: underline;
}

.inline-link:hover {
    opacity: 0.7;
}

.schedule-calendar {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.schedule-calendar iframe {
    border-radius: 8px;
    width: 100%;
}

@media (max-width: 767px) {
    .schedule-intro {
        font-size: 14px;
    }
    .schedule-title {
        margin-bottom: 30px;
    }
    .schedule-intro {
        margin-bottom: 20px;
    }
    .schedule-calendar iframe {
        height: 300px;
    }

    /* .schedule-calendar {
        padding: 10px;
    }
    
    .schedule-calendar iframe {
        height: 500px !important;
    } */
}

/************************************
 * 
 * ↑公演予定ページ
 * 
 ************************************/

 /************************************
 * 
 * ↓施設予約ページ
 * 
 ************************************/

.reservation-section .container {
    max-width: 900px;
}

.reservation-title {
    margin-bottom: 50px;
}

.reservation-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.reservation-form {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
}

.reservation-form iframe {
    border-radius: 8px;
    width: 100%;
}

/* レスポンシブ */
@media (max-width: 767px) {
    .reservation-intro {
        font-size: 14px;
    }
    .reservation-title {
        margin-bottom: 30px;
    }

    .reservation-intro {
        margin-bottom: 20px;
    }

    .reservation-form {
        padding: 5px;
    }
    
    
    .reservation-form iframe {
        height: 500px !important;
    }
}

/************************************
 * 
 * ↑施設予約ページ
 * 
 ************************************/



/************************************
 * 
 * ↓料金・設備ページ
 * 
 ************************************/

.facility-section .container {
    max-width: 1000px;
}

.facility-title {
    margin-bottom: 80px;
}

.facility-section.under-page {
    padding: 180px 0 0 0;
}

/* セクション共通 */
.price-section,
.equipment-section,
.details-section,
.color-section,
.other-section,
.dressing-section,
.layout-section {
    margin-bottom: 100px;
    position: relative;
}

.facility-section .section-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.5vw, 25px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

/* 料金表 */
.price-table-wrapper {
    max-width: 900px;
    margin: 0 auto 30px;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.price-table thead th {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.2vw, 22px);
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 25px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
   border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}


.price-table tbody td {
    padding: 35px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    vertical-align: middle;
    position: relative;
}

.price-table tbody td:before {
    content: "";
    position: absolute;
    width: 90%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    bottom: 0%;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
}

.price-table thead th:last-child,.price-table tbody td:last-child{
    border-right: none;
}



.price-time {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.price-amount {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 500;
}

.price-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}


/* オプション・補足テーブル */
.facility-option-table {
    max-width: 900px;
    margin: 70px auto 0;
}



.facility-option-table table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

.facility-option-table th,
.facility-option-table td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.facility-option-table th {
    font-family: var(--font-sans);
    width: 40%;
    font-weight: 400;
}

.facility-option-table td {
    font-family: var(--font-sans);
    width: 60%;
}





/* 設備グリッド */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.equipment-section,.other-section,.layout-section {
    background: rgb(13 13 13 / 90%);
    padding: 100px 0;
}

.equipment-item {
    text-align: center;
}

.equipment-image {
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.equipment-desc {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

/* 設備詳細リスト */
/* .details-section .section-subtitle {
    margin-bottom: 20px;
} */

.details-txt {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

.details-list {
    max-width: 700px;
    margin: 0 auto 30px;
}
.download-button i {
    padding-left: 5px;
}
.detail-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.detail-label {
    font-weight: 500;
    font-size: 16px;
}

.detail-value {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-sans);
}

.reservation-button-wrapper {
    text-align: center;
    margin-bottom: 70px;
}

.reservation-button {
    display: inline-block;
    padding: 15px 50px;
    background: var(--gradient-red);
    color: var(--color-white);
    font-size: 16px;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: 0.3s;
    font-family: var(--font-sans);
}

.reservation-button:hover {
    transform: translateY(-2px);
}

/* カラー照明 */
.color-images {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    justify-items: center !important;
}
.color-images img:nth-child(1) { grid-column: 1 / 3; }
.color-images img:nth-child(2) { grid-column: 3 / 5; }
.color-images img:nth-child(3) { grid-column: 5 / 7; }
.color-images img:nth-child(4) { grid-column: 2 / 4; } /* センター */
.color-images img:nth-child(5) { grid-column: 4 / 6; } /* センター */

.color-images img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* その他備品リスト */
.other-list {
    max-width: 700px;
    margin: 0 auto 100px;
}

.other-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.other-label {
    font-size: 16px;
}

.other-value {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* その他備品画像 */
.other-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.other-images img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* 楽屋 */
.dressing-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 100px;
    align-items: center;
}

.dressing-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.dressing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dressing-text .section-subtitle {
    text-align: left;
    margin-bottom: 20px;
}

.dressing-text {
    font-size: 16px;
    line-height: 1.8;
    margin-top: -20px;
}

/* 基本レイアウト */
.layout-section {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.layout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.layout-text {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.layout-image {
    width: 100%;
}

.layout-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}



/* レスポンシブ */
@media (max-width: 1024px) {

    .equipment-image {
        width: 100%;
        height: 150px;
    }

    .dressing-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .layout-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

}

@media (max-width: 767px) {


    .price-section, .equipment-section, .details-section, .color-section, .other-section, .dressing-section, .layout-section {
        margin-bottom: 70px;
    }

    .equipment-section, .other-section, .layout-section {
        padding: 70px 0;
    }

    .layout-section {
        margin-bottom: 0;
    }

    .price-table thead th {
        font-size: 14px;
        padding: 10px 10px;
    }
    
    .price-table tbody td {
        padding: 20px 10px;
    }
    
    .price-time {
        font-size: 12px;
    }
    .price-note {
        text-align: center;
        font-size: 12px;
        line-height: 1.5;
    }
    .price-table-wrapper {
        margin: 0 auto 15px;
    }


    .facility-option-table {
        margin: 40px auto 0;
    }
    
    .facility-option-title {
        margin-bottom: 20px;
    }
    
    .facility-option-table th,
    .facility-option-table td {
        display: block;
        width: 100%;
        padding: 15px 0px;
    }
    
    .facility-option-table th {
        padding: 0px;
        border-bottom: none;
        font-weight: 500;
    }
    
    .facility-option-table td {
        padding-top: 5px;
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.5;
    }

    .facility-option-table tr:last-child td {
        margin-bottom: 0;
    }

    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;

    }

    .equipment-name {
        font-size: 18px;
    }
    .equipment-image {
        margin-bottom: 10px;
    }

    .details-txt {
        text-align: center;
        font-size: 13px;
        letter-spacing: 0;
    }
    .detail-value {
        font-size: 14px;
    }
    .details-list {
        margin: 0 auto 40px;
    }
    .reservation-button {
        display: inline-block;
        padding: 15px 40px;
        font-size: 14px;
    }

    .color-images {
        grid-template-columns: 1fr;
    }
    .color-images img {
        height: 200px;
        grid-column: auto !important;
    }

    .other-value {
        font-size: 14px;
    }
    .other-list {
        margin: 0 auto 50px;
    }
    
    .other-images {
        grid-template-columns: repeat(3, 1fr);
    }
    .other-images img {
        width: 100%;
        height: 200px;
    }
    
    .facility-section.under-page {
        padding: 120px 0 0 0;
    }

    .facility-title {
        margin-bottom: 50px;
    }

    .facility-section .section-subtitle {
        margin-bottom: 20px;
    }

    .dressing-image {
        height: 230px;
    }
    
    .detail-item,
    .other-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .dressing-content {
        grid-template-columns: 1fr;
    }
    
    .other-images {
        grid-template-columns: 1fr;
    }
    
    .layout-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .layout-text {
        text-align: center;
    }
    
    .layout-section {
        padding: 70px 0 100px;
    }
}

/************************************
 * 
 * ↑料金・設備ページ
 * 
 ************************************/


/************************************
 * 
 * ↓アクセスページ
 * 
 ************************************/

/* style.cssのアクセスページ部分 */
.access-section {
    min-height: calc(100vh - 210px); /* ヘッダー+フッター分 */
}

.access-title {
    margin-bottom: 70px;
}

.access-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.access-map {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 0;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.access-address {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.address-postal {
    font-size: 16px;
    letter-spacing: 0.1em;
    font-family: var(--font-serif);
    margin-bottom: 5px;
}

.address-text {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.access-routes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.route-item {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2vw, 20px);
}

.route-detail p{
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.route-name {
    font-weight: 500;
}


/* アクセスページ専用フッター */
.access-footer .footer-container {
    display: block;
    padding: 70px 0;
}

.access-footer .footer-info{
    text-align: center;
}

.access-footer.footer::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(229 0 0 / 60%) 0%, #0d0d0d 40%);
    left: 0%;
    top: 0%;
    transform: translate(-50%, 0%);
    z-index: -1;
    pointer-events: none;
}


/* レスポンシブ */
@media (max-width: 767px) {

    .access-section {
        min-height: auto;
    }
    .access-title {
        margin-bottom: 30px;
    }
    .access-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .access-address {
        padding-bottom: 20px;
    }
    .access-info {
        gap: 20px;
    }
    .access-routes {
        gap: 15px;
    }
    .address-postal {
        font-size: 14px;
        letter-spacing: 0.1em;
        font-family: var(--font-serif);
        margin-bottom: 3px;
    }
    
    .access-map {
        height: 300px;
    }

    .access-footer .footer-container {
        padding: 30px 0;
    }
}

/************************************
 * 
 * ↑アクセスページ
 * 
 ************************************/

 
/************************************
 * 
 * ↓お問い合わせページ
 * 
 ************************************/


.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 60px;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.required {
    color: var(--color-red);
    margin-left: 5px;
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-white);
    color: var(--color-white);
    font-size: 16px;
    padding: 10px 0;
    font-family: var(--font-sans);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-submit {
    text-align: center;
}

.submit-button {
    background: var(--gradient-red);
    color: var(--color-white);
    border: none;
    padding: 15px 60px;
    font-size: 16px;
    letter-spacing: 0.1em;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    opacity:0.7;
}

/* レスポンシブ */
@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-title {
        margin-bottom: 50px;
    }

    .submit-button {
        font-size: 14px;
    }
    .form-group.full-width {
        margin-bottom: 50px;
    }
}
/************************************
 * 
 * ↑お問い合わせページ
 * 
 ************************************/


/************************************
 * 
 * ↓利用規約ページ
 * 
 ************************************/


 
.terms-section .container {
    max-width: 800px;
}

.terms-title {
    margin-bottom: 50px;
}

.terms-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-item {
    margin-bottom: 50px;
}

.terms-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-item p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.terms-item ol {
    list-style: decimal;
    padding-left: 1.5em;
    margin-bottom: 15px;
}

.terms-item ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-top: 10px;
}

.terms-item li {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.terms-item strong {
    font-weight: 500;
    color: var(--color-white);
}

/* レスポンシブ */
@media (max-width: 767px) {

    .terms-title {
        margin-bottom: 30px;
    }
    .terms-intro {
        text-align: center;
        margin-bottom: 50px;
        font-size: 14px;
        line-height: 1.8;
        letter-spacing: 0.05em;
    }
    .terms-item p {
        font-size: 14px;
    }
    .terms-item li {
        font-size: 14px;
    }

    .terms-content {
        padding: 0 5px;
    }

    .terms-item ol {
        padding-left: 1.2em;
    }
    .terms-item ul {
        padding-left: 1.2em;
    }
    .terms-item:last-child{
        margin-bottom: 0;
    }
}

/************************************
 * 
 * ↑利用規約ページ
 * 
 ************************************/


/************************************
 * 
 * ↓送信完了ページ
 * 
 ************************************/


.thanks-title {
    margin-bottom: 50px;
}
.thanks-section{
    text-align: center;
}

.thanks-message {
    margin-bottom: 50px;
}

.thanks-text {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.thanks-subtext {
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-button-wrapper {
    margin-top: 50px;
}

.thanks-button {
    display: inline-block;
    padding: 15px 50px;
    background: var(--gradient-red);
    color: var(--color-white);
    font-size: 16px;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: 0.3s;
    font-family: var(--font-sans);
}

.thanks-button:hover {
    transform: translateY(-2px);
}

/* レスポンシブ */
.sp-only {
    display: none;
}

@media (max-width: 1024px) {
    .thanks-section.under-page {
        min-height: calc(100vh - 560px);
    }
}

@media (max-width: 767px) {

    .thanks-section.under-page {
        min-height: auto;
    }
    .sp-only {
        display: inline;
    }
    .thanks-text {
        margin-bottom: 20px;
    }
    .thanks-title {
        margin-bottom: 30px;
    }
    .thanks-button {
        font-size: 14px;
    }
}

/************************************
 * 
 * ↑送信完了ページ
 * 
 ************************************/




 @media (max-width: 360px) {
    .terms-intro {
        font-size: 13px;
    }
 }