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

.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%;
    /*スマホ横向き時のフォントサイズ*/
    text-size-adjust: 100%;
    /*スマホ横向き時のフォントサイズ*/
    -webkit-font-feature-settings: 'palt';
    /*文字詰め*/
    font-feature-settings: 'palt';
    /*文字詰め*/
}

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;
    background: #CF5E7F;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 768px;
    max-width: 100%;
    z-index: 999;
}

.reserve-btn-img {
    cursor: pointer;
}

.reserve-btn-img:hover {
    opacity: .8;
}

/* 電話ナビ */
.nav-area {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, .96);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.nav-area.active {
    display: block;
}

.nav-area ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 10px;
    padding: 0;
}

.nav-area ul li {
    list-style: none;
    color: #333;
    list-style: none;
}

.nav-area-title {
    font-weight: bold;
    margin-bottom: 20px;
}

.nav-area ul li a {
    text-align: center;
    width: 280px;
    max-width: 280px;
    display: block;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    padding: 13px 20px;
    border: 1px solid #333;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.close-btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 1px;
    background: #333;
    transform-origin: center;
}

.close-btn span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}


/*****LPコーディングここから*****/
/*全体コンテンツ*/
.lp-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #f7f7f7;
}

.lp-content--left {
    position: fixed;
    left: 0;
    top: 0;
    width: calc((100% - 768px) / 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% - 768px) / 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: 200px;
}

.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;
}

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

.section19 {
    position: relative;
    height: auto;
}

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


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


.map {
    background-color: #FFF;
    padding: 10px 24px 10px 24px;
    ;
}

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

    .footer-section {
        padding: 1rem;
    }

    .carousel div {
        width: 80%;
    }
}

.section10 {
    position: relative;
    height: auto;
}

.swiper-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80%;
}

.swiper {
    height: 100%;
    width: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.swiper-pagination-bullet-active {
    background: #CF5E7F !important;
}

/* 電話非表示（後で無効化） */
.btn-temp {
    position: relative;
    pointer-events: none;
    cursor: not-allowed;
}
.btn-temp img {
    opacity: .3;
}
.btn-temp::before {
    content: "開院準備中";
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    z-index: 1;
    letter-spacing: .05em;
}

@media screen and (min-width:768px) {
    .btn-temp::before {
        font-size: 40px;
    }
}