@charset "utf-8";
/* CSS Document */

html {
    scroll-behavior: smooth;
}

.lp-content {
    position: relative;
}

/* FV用背景&CTAボタンの固定配置 -- ここから -- */
#header {
    position: relative;
    margin-top: 0px;
    /* 必要であればheader上部の余白を調整 */
}

.cta-area-01 {
    position: relative;
}

.cta-flex-01 {
    position: absolute;
    top: 32%;
    left: 0%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 99%;
    margin: 0 auto;
}

.cta-btn img {
    transition: transform 0.5s;
}

.cta-btn img:hover {
    transform: scale(0.9, 0.9);
}

@media screen and (max-width:768px) {
    .btn {
        width: 100%;
        bottom: 2%;
    }
}

* {
    box-sizing: border-box;
    font-size: 16px;
}

/* FV用背景&CTAボタンの固定配置 -- ここまで -- */

/*大きさの計算*/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*iOSフォーム要素の初期化*/
input,
button,
textarea,
select {
    -webkit-appearance: none;
    appearance: none;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    font-family: 'Zen Old Mincho', serif;
    /*スマホ横向き時のフォントサイズ*/
    text-size-adjust: 100%;
    /*スマホ横向き時のフォントサイズ*/
    -webkit-font-feature-settings: 'palt';
    /*文字詰め*/
    font-feature-settings: 'palt';
    /*文字詰め*/
    background: #151515;
}

body * {
    box-sizing: inherit;
    /* box-sizingの値は継承されないので明示的に設定 */
}

/*画像の調整*/
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    width: 100%;
}

a:hover {
    opacity: 0.8;
}

.reserve-btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    max-width: 100%;
    z-index: 999;
}



.accordion__item {
    transition: all 0.2s ease-out;
    cursor: pointer;
    padding-bottom: 20px;
    background: #000;
    will-change: transform;
}

.accordion__item img {
    transition: opacity 0.15s ease-out;
    will-change: opacity;
}

/* 画像が読み込まれる前の状態 */
.accordion__item:not(.images-loaded) {
    pointer-events: none;
    opacity: 0.8;
}

.accordion__item.images-loaded {
    opacity: 1;
    pointer-events: auto;
}

.section14 {
    padding-bottom: 20px;
    background: #fff;
}

.section15 .accordion {
    background: #fff;
}

.section15 .accordion__item {
    background: #fff;
}


.accordion {
    background: #000;
    padding: 0 20px;
}

/*****LPコーディングここから*****/


/*コンテンツ*/
.lp-content {
    max-width: 600px;
    width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

/*全体コンテンツ*/
.lp-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;

}

.lp-content--left {
    position: fixed;
    left: 0;
    top: 0;
    width: calc((100% - 600px) / 2);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.lp-content--right {
    position: fixed;
    right: 0;
    top: 0;
    width: calc((100% - 600px) / 2);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}

.lp-content--right p {
    font-size: 13px;
    line-height: 1.75;
}

@media screen and (min-width: 1100px) {
    .lp-content--left {
        display: flex;
    }

    .lp-content--right {
        display: flex;
    }
}

.lp-content--left a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-content--left-logo {
    width: 50%;
    max-width: 150px;
}

.lp-content--left-logo img {
    width: 100%;
    height: auto;
}

.lp-content--right-qr {
    width: 50%;
    max-width: 200px;
}

.lp-content--right-qr img {
    width: 100%;
    height: auto;
}


/***フッター***/
.footer-section {
    background: #f7f7f7;
    padding: 2rem;
}


.logo {
    width: 30%;
    margin: 0 auto;
}



@media screen and (max-width:768px) {
    .logo {
        width: 30%;
    }

    .footer-section {
        padding: 1rem;
    }

}



.section02,
.section11 {
    position: relative;
}

.section02-btn {
    width: 80%;
    gap: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -70%);
}

.section11-btn {
    width: 80%;
    gap: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.section23 {
    padding-top: 20px;
    padding-bottom: 100px;
    background: #1D7ABA;
}

@media screen and (max-width: 600px) {
    .section23 {
        padding-bottom: 72px;
    }
}

.map-section {
    position: relative;
    padding-bottom: 20px;
    background: #000;
}

.gmap {
    width: 100%;
    height: 280px;
    padding: 20px 60px;
}

@media screen and (max-width: 600px) {
    .gmap {
        padding: 20px 40px;
    }
}

.gmap-iframe {
    width: 100%;
    height: 100%;
}

/* 目次スタイリング */
.table-of-contents {
    padding: 20px;
    max-width: 400px;
    width: 100%;
}

.toc-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #1D7ABA;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 20px;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-link {
    display: block;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.4;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.toc-link:hover {
    background-color: #1D7ABA;
    color: #fff;
    transform: translateX(5px);
}

/* レスポンシブ対応 */
@media screen and (max-width: 1100px) {
    .table-of-contents {
        display: none;
    }
}