@charset "UTF-8";
@import "root.css";

/* ===============================
    共通スタイル
=============================== */
html {
    font-size: 100%;
}

body {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: var(--regular);
    font-size: var(--rem14);
    letter-spacing: 0.1rem;
    color: var(--color-black);
    position: relative;
}

section {
    padding: 120px 0;
}

a {
    display: block;
    text-decoration: none;
    width: fit-content;
    color: inherit;
}

a:hover {
    opacity: var(--hover-opacity-6);
}

ul{
    padding-left: 0;
    margin: 0;
}

li{
    list-style: none;
}

.inner {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.sp_ver {
    display: none;
}

.col__gradation {
    background: var(--bg-gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}

.tx__en {
    font-family: "Italiana", sans-serif;
    font-weight: var(--regular);
    font-size: clamp(var(--rem19),var(--vw20),var(--rem25));
}

.tx__align-center {
    text-align: center;
}

.tx__align-left {
    text-align: left;
}

.tx__align-right {
    text-align: right;
}

.section-title {
    margin-bottom: 65px;
}

.section-title .tx__en {
    margin: 0 auto 8px;
}

.section-title h2.section-title__ja {
    font-size: clamp(var(--rem22),var(--vw23),var(--rem30));
    font-family: "Shippori Antique", sans-serif;
    font-weight: var(--regular);
    text-align: center;
    line-height: 50px;
}

.button .button__link {
    color: var(--color-white);
    background: var(--bg-gradient-button);
    border-radius: 50px;
    margin: 0 auto;
}

h3 {
    font-weight: var(--medium);
}

@media (max-width: 767px) {
    body {
        letter-spacing: 0.05rem;
    }

    section {
        padding: 70px 0;
    }

    .inner {
        width: 90%;
    }

    .pc_ver {
        display: none;
    }

    .sp_ver {
        display: block;
    }

    .section-title {
        margin-bottom: 55px;
    }

    .section-title h2.section-title__ja {
        line-height: 40px;
    }
}

@media (max-width: 467px) {
    .inner {
        width: min(90%, 335px);
    }
}



/* ===============================
    header
=============================== */
header {
    width: 100%;
    height: 93px;
    background-color: #083A70E0;
    position: fixed;
    top: 0;
    z-index: 100;
}

header .header__inner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

header .header__inner .header__title {
    height: 100%;
}

header .header__inner .header__title .header__logo {
    width: clamp(115px, 30vw, 326px);
    height: 100%;
}

header .header__inner .button {
    position: absolute;
    right: 125px;
}

header .header__inner .button .button__link {
    font-size: var(--rem15);
    padding: 7px 30px;
    right: 100px;
}

/* ハンバーガーメニューボタン */
header .header__inner .hamburger-menu {
    position: fixed;
    top: 35px;
    right: 42px;
    width: 50px;
    height: 23px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

header .header__inner .hamburger-menu .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease-in-out;
}

header .header__inner .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

header .header__inner .hamburger-menu.active .hamburger-line:nth-child(2) {
    transform: rotate(-45deg) translate(7px, -7px);
}

header .header__inner .header__slide-menu {
    position: fixed;
    top: 93px;
    right: -375px;
    width: 375px;
    height: calc(100vh - 93px);
    background-color: var(--color-headerblue);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    color: var(--color-white);
    padding: 60px 30px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header .header__inner .header__slide-menu.active {
    right: 0;
}

header .header__inner .header__slide-menu .header__menu-list .header__menu-listitem .header__menu-listitem__link {
    font-size: clamp(var(--rem14),var(--vw15),var(--rem17));
    margin-bottom: 35px;
}

header .header__inner .header__slide-menu .header__info {
    border-top: 1px solid var(--color-white);
    padding-top: 30px;
}

header .header__inner .header__slide-menu .header__info .header__info__tel {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

header .header__inner .header__slide-menu .header__info .header__info__text,
header .header__inner .header__slide-menu .header__info .header__info__opening-hours {
    font-size: var(--rem15);
    margin-bottom: 15px;
}

header .header__inner .header__slide-menu .header__info .header__info__tel .header__info__teltext {
    font-size: var(--rem30);
    font-weight: var(--medium);
}

header .header__inner .header__slide-menu .header__info .header__info__telnote {
    font-size: var(--rem12);
    margin-bottom: 20px;
}

.header--hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.header--visible {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    header {
        height: 58px;
    }

    header .header__inner .button .button__link {
        font-size: var(--rem21);
        padding: 20px 100px;
    }

    header .header__inner .hamburger-menu {
        width: 30px;
        top: 18px;
        right: 15px;
        gap: 10px;
    }

    header .header__inner .hamburger-menu .hamburger-line {
        height: 1px;
    }

    header .header__inner .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    header .header__inner .hamburger-menu.active .hamburger-line:nth-child(2) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    header .header__inner .header__slide-menu {
        top: 58px;
        width: 100%;
        right: -100%;
        height: calc(100vh - 28px);
        display: block;
    }

    header .header__inner .header__slide-menu .header__menu-list {
        margin-bottom: 50px;
    }

    header .header__inner .header__slide-menu .header__info {
        margin-bottom: 50px;
    }

    header .header__inner .button {
        position: static;
    }
}


/* ===============================
    bottom-fixed-buttons
=============================== */
@media (max-width: 767px) {
    .bottom-fixed-buttons {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        justify-content: center;
        transition: transform 0.3s ease;
        z-index: 9999;
    }
    
    .bottom-fixed-buttons .bottom-fixed-buttons__contact,
    .bottom-fixed-buttons .bottom-fixed-buttons__top {
        padding: 15px;
        text-align: center;
        font-size: 14px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border: none;
        color: var(--color-white);
    }
    
    .bottom-fixed-buttons .bottom-fixed-buttons__contact {
        background: var(--bg-gradient-button);
        flex-basis: 80%;
        font-size: var(--rem21);
    }
    
    .bottom-fixed-buttons .bottom-fixed-buttons__top {
        background: var(--color-headerblue);
        flex-basis: 20%;
    }

    .bottom-fixed-buttons .bottom-fixed-buttons__top .dli-chevron-up {
        display: inline-block;
        vertical-align: middle;
        line-height: 1;
        width: 1em;
        height: 1em;
        border: 0.1em solid currentColor;
        border-left: 0;
        border-bottom: 0;
        box-sizing: border-box;
        transform: translateY(25%) rotate(-45deg);
    }

    .bottom-fixed-buttons.hide {
        transform: translateY(100%);
    }
}


/* ===============================
    hero
=============================== */
section.hero {
    padding: 0;
}

.hero__slider__item {
    transform-origin: bottom center;
}

.hero .hero__container .hero__slider {
    margin-inline: auto;
    overflow: hidden;
}

.hero .hero__container .hero__slider .hero__slider__item .hero__slider__image {
    width: 100%;
}

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.06);
    }
}

.add-animation {
    animation: zoomUp 10s linear 0s normal both;
}


/* ===============================
    intro
=============================== */
.intro .intro__container {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding-left: 18vw;
}

.intro .intro__container .intro__textbox .section-title {
    margin-bottom: clamp(38px, 5vw, 65px);
}

.intro .intro__container .intro__textbox .section-title h2.section-title__ja {
    text-align-last: left;
    font-size: min(2vw, 30px);
    line-height: min(3vw, 46px);
}

.intro .intro__container .intro__textbox .intro__text {
    margin-bottom: 1.5rem;
    line-height: min(2vw, 26px);
    font-size: min(1.2vw, 14px);
}

.intro .intro__container .intro__slider {
    display: flex;
    gap: 5px;
    height: clamp(550px, 50vw, 847px);
    overflow: hidden;
}

.intro .intro__container .intro__slider .intro__slider__wrapper {
    display: grid;
    width: min(23vw, 433px);
}

.intro .intro__container .intro__slider .intro__slider__wrapper .intro__slider__box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.intro .intro__container .intro__slider .intro__slider__wrapper .intro__slider__box .intro__slider__list {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    list-style: none;
}

.intro .intro__container .intro__slider .intro__slider__wrapper .intro__slider__box.intro__slider__up .intro__slider__list {
    flex-direction: column;
    animation: slideShowUp 80s infinite linear;
}

.intro .intro__container .intro__slider .intro__slider__wrapper .intro__slider__box.intro__slider__down .intro__slider__list {
    flex-direction: column-reverse;
    animation: slideShowDown 80s infinite linear;
}

.intro .intro__container .intro__slider .intro__slider__wrapper .intro__slider__box .intro__slider__list .intro__slider__item {
    margin-bottom: 5px;
    width: 100%;
}

.intro .intro__container .intro__slider .intro__slider__wrapper .intro__slider__box .intro__slider__list .intro__slider__item.item__flex {
    display: flex;
    gap: 5px;
}

.intro .intro__container .intro__slider .intro__slider__wrapper .intro__slider__box .intro__slider__list .intro__slider__item .intro-slider__image {
    width: 100%;
}

.intro .intro__container .intro__slider .intro__slider__wrapper .intro__slider__box .intro__slider__list .intro__slider__item.item__flex .intro-slider__image {
    width: 50%;
}

@keyframes slideShowUp {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes slideShowDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

@media (max-width: 767px) {
    section.intro {
        padding-bottom: 0;
    }

    .intro .intro__container {
        display: block;
        padding: 0;
    }

    .intro .intro__container .intro__textbox {
        padding: 0 40px;
        margin-bottom: 70px;
    }

    .intro .intro__container .intro__textbox .section-title h2.section-title__ja {
        font-size: clamp(var(--rem20),var(--vw21),var(--rem30));
        line-height: 40px;
    }

    .intro .intro__container .intro__textbox .intro__text {
        font-size: var(--rem14);
        line-height: 26px;
    }

    .intro .intro__container .intro__slider {
        height: max(80vw, 352px);
    }

    .intro .intro__container .intro__slider .intro__slider__wrapper {
        width: 50vw;
    }
}


/* ===============================
    OwnersVoice
=============================== */
section.OwnersVoice {
    background: url("/cb-shirahama/lp/f05/assets/image/bg_OwnersVoice.png") no-repeat center / cover;
}

.OwnersVoice .OwnersVoice__slider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 150px;
    width: 100%;
}

.OwnersVoice .OwnersVoice__slider .prev-arrow,
.OwnersVoice .OwnersVoice__slider .next-arrow {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
}

.OwnersVoice .OwnersVoice__slider .prev-arrow {
    transform: rotate(180deg);
}

.OwnersVoice .OwnersVoice__slider .prev-arrow::before,
.OwnersVoice .OwnersVoice__slider .next-arrow::before{
    position:absolute;
    content: "";
    width:41px;
    height:41px;
    border-right: 2px solid var(--color-blue);
    border-top: 2px solid var(--color-blue);
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}

.OwnersVoice .OwnersVoice__slider .slick-list {
    width: 100%;
}

.OwnersVoice .OwnersVoice__slider .OwnersVoice__item {
    max-width: 326px;
    margin: 0 25px;
}

.OwnersVoice .OwnersVoice__slider .OwnersVoice__item .OwnersVoice__item__imagebox {
    margin-bottom: 15px;
}

.OwnersVoice .OwnersVoice__slider .OwnersVoice__item .OwnersVoice__item__imagebox .image-note {
    font-size: var(--rem10);
}

.OwnersVoice .OwnersVoice__slider .OwnersVoice__item .OwnersVoice__item__title {
    font-size: clamp(var(--rem16),var(--vw17),var(--rem20));
    color: var(--color-blue);
    margin-bottom: 25px;
}

.OwnersVoice .OwnersVoice__slider .OwnersVoice__item .OwnersVoice__item__Ownername {
    font-size: clamp(var(--rem13),var(--vw14),var(--rem17));
    font-weight: var(--medium);
    margin-bottom: 15px;
}

.OwnersVoice .OwnersVoice__container .OwnersVoice__extext .OwnersVoice__extext__phrase {
    font-size: clamp(var(--rem20),var(--vw21),var(--rem30));
    font-family: "Shippori Antique", sans-serif;
    text-align: center;
    margin: 0 auto 2rem;
}

.OwnersVoice .OwnersVoice__container .OwnersVoice__extext .button .button__link {
    padding: 25px 115px;
    font-size: clamp(var(--rem20),var(--vw21),var(--rem23));
}

@media (max-width: 1200px) {
    .OwnersVoice .OwnersVoice__slider .slick-list {
        width: min(100%, 725px);
    }
}

@media (max-width: 767px) {
    .OwnersVoice .OwnersVoice__slider {
        margin-bottom: 82px;
    }

    .OwnersVoice .OwnersVoice__slider .prev-arrow,
    .OwnersVoice .OwnersVoice__slider .next-arrow {
        width: 20px;
    }

    .OwnersVoice .OwnersVoice__slider .prev-arrow::before,
    .OwnersVoice .OwnersVoice__slider .next-arrow::before{
        width: 25px;
        height: 25px;
    }

    .OwnersVoice .OwnersVoice__slider .slick-list {
        width: min(100%, 326px);
    }

    .OwnersVoice .OwnersVoice__slider .OwnersVoice__item {
        width: 260px;
        margin: 0;
    }

    .OwnersVoice .OwnersVoice__container .OwnersVoice__extext .button .button__link {
        padding: 20px 98px;
    }
}


/* ===============================
    CondominiumSystem
=============================== */
section.CondominiumSystem {
    padding-bottom: 0;
    background-color: #FAF6EE;
}

.CondominiumSystem .CondominiumSystem__container .section-title {
    position: relative;
    width: fit-content;
    margin: 0 auto 65px;
    padding: 10px 90px;
    background: #fdf6ee;
    text-align: center;
}

.CondominiumSystem .CondominiumSystem__container .section-title::before,
.CondominiumSystem .CondominiumSystem__container .section-title::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
}

.CondominiumSystem .CondominiumSystem__container .section-title::before {
    top: 0;
    left: 0;
    background: var(--bg-gradient-main);
    mask: linear-gradient(90deg, #000 0 100%) top/100% 1px no-repeat,
        linear-gradient(0deg, #000 0 100%) left/1px 100% no-repeat;
    -webkit-mask: linear-gradient(90deg, #000 0 100%) top/100% 1px no-repeat,
                linear-gradient(0deg, #000 0 100%) left/1px 100% no-repeat;
    mask-composite: add;
    -webkit-mask-composite: source-over;
}

.CondominiumSystem .CondominiumSystem__container .section-title::after {
    bottom: 0;
    right: 0;
    background: var(--bg-gradient-main);
    mask: linear-gradient(90deg, #000 0 100%) bottom/100% 1px no-repeat,
        linear-gradient(0deg, #000 0 100%) right/1px 100% no-repeat;
    -webkit-mask: linear-gradient(90deg, #000 0 100%) bottom/100% 1px no-repeat,
                linear-gradient(0deg, #000 0 100%) right/1px 100% no-repeat;
    mask-composite: add;
    -webkit-mask-composite: source-over;
}

.CondominiumSystem .CondominiumSystem__container .section-title .decoration::before,
.CondominiumSystem .CondominiumSystem__container .section-title .decoration::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
}

.CondominiumSystem .CondominiumSystem__container .section-title .decoration {
    position: absolute;
    inset: 0;
}

.CondominiumSystem .CondominiumSystem__container .section-title .decoration::before {
    top: 0;
    right: 0;
    background: var(--bg-gradient-main);
    mask: linear-gradient(90deg, #000 0 100%) top/100% 1px no-repeat, 
        linear-gradient(0deg, #000 0 100%) right/1px 100% no-repeat;
    -webkit-mask: linear-gradient(90deg, #000 0 100%) top/100% 1px no-repeat,
                linear-gradient(0deg, #000 0 100%) right/1px 100% no-repeat;
    mask-composite: add;
    -webkit-mask-composite: source-over;
}

.CondominiumSystem .CondominiumSystem__container .section-title .decoration::after {
    bottom: 0;
    left: 0;
    background: var(--bg-gradient-main);
    mask: linear-gradient(90deg, #000 0 100%) bottom/100% 1px no-repeat,
        linear-gradient(0deg, #000 0 100%) left/1px 100% no-repeat;
    -webkit-mask: linear-gradient(90deg, #000 0 100%) bottom/100% 1px no-repeat,
                linear-gradient(0deg, #000 0 100%) left/1px 100% no-repeat;
    mask-composite: add;
    -webkit-mask-composite: source-over;
}

.CondominiumSystem .CondominiumSystem__container .section-title .section-title__large {
    font-size: clamp(var(--rem26),var(--vw27),var(--rem40));
    line-height: 65px;
}

@media (max-width: 767px) {
    .CondominiumSystem .CondominiumSystem__container .section-title {
        padding: 10px 15px;
    }

    .CondominiumSystem .CondominiumSystem__container .section-title .section-title__large {
        letter-spacing: 0;
    }

    .CondominiumSystem .CondominiumSystem__container .CondominiumSystem__imagebox .CondominiumSystem__image {
        margin: 0 auto;
    }
}

@media (max-width: 467px) {
    .CondominiumSystem .CondominiumSystem__container .section-title {
        width: 100%;
        padding: 10px 5px;
    }
}


/* ===============================
    ForYourLifestyle
=============================== */
section.ForYourLifestyle {
    background-color: #FAF6EE;
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 54px;
    margin-bottom: 105px;
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc((100% - 54px) / 2);
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item .ForYourLifestyle__textbox-flex {
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
    
    position: relative;
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item .ForYourLifestyle__textbox-flex::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item.investment .ForYourLifestyle__textbox-flex::before {
    border: 4px solid var(--color-investment);
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item.resort .ForYourLifestyle__textbox-flex::before {
    border: 4px solid var(--color-resort);
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item.telework .ForYourLifestyle__textbox-flex::before {
    border: 4px solid var(--color-telework);
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item.oldage .ForYourLifestyle__textbox-flex::before {
    border: 4px solid var(--color-oldage);
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item .ForYourLifestyle__textbox {
    padding: 10px 0;
    margin-left: 18px;
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item .ForYourLifestyle__textbox .ForYourLifestyle__item__title {
    font-size: var(--rem20);
    margin-bottom: 18px;
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item.investment .ForYourLifestyle__textbox .ForYourLifestyle__item__title {
    color: var(--color-investment);
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item.resort .ForYourLifestyle__textbox .ForYourLifestyle__item__title {
    color: var(--color-resort);
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item.telework .ForYourLifestyle__textbox .ForYourLifestyle__item__title {
    color: var(--color-telework);
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item.oldage .ForYourLifestyle__textbox .ForYourLifestyle__item__title {
    color: var(--color-oldage);
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item .ForYourLifestyle__textbox .ForYourLifestyle__item__text {
    font-size: var(--rem16);
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item .ForYourLifestyle__imagebox {
    width: min(100%, 272px);
}

.ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__table .ForYourLifestyle__table__title {
    font-size: clamp(var(--rem20),var(--vw21),var(--rem25));
    margin: 0 auto 35px;
    font-family: "Shippori Antique", sans-serif;
}

@media (max-width: 1200px) {
    .ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list {
        gap: 20px;
    }

    .ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item .ForYourLifestyle__textbox-flex {
        flex-basis: 60%;
    }

    .ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item .ForYourLifestyle__imagebox {
        flex-basis: 40%;
    }

    .ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 1000px) {
    .ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list {
        display: block;
        padding: 0 20px;
    }

    .ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item {
        width: min(100%, 610px);
        margin: 0 auto 40px;
    }
}

@media (max-width: 767px) {
    .ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__table .ForYourLifestyle__table__title {
        margin: 0 auto 20px;
    }

    .ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__table {
        padding: 0 20px;
    }

    .ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__table .ForYourLifestyle__tablebox .ForYourLifestyle__table__image {
        margin: 0 auto;
    }
}

@media (max-width: 680px) {
    .ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item {
        display: block;
    }

    .ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item .ForYourLifestyle__textbox-flex {
        margin-bottom: 10px;
    }

    .ForYourLifestyle .ForYourLifestyle__container .ForYourLifestyle__list .ForYourLifestyle__item .ForYourLifestyle__imagebox {
        width: min(100%, 350px);
    }
}


/* ===============================
    contact-button
=============================== */
section.contact-button {
    background: url("/cb-shirahama/lp/f05/assets/image/bg_contact-button.png") no-repeat center / cover;
}

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

.contact-button .contact-button__container .section-title h2.section-title__ja,
.contact-button .contact-button__container .contact-button__button .contact-button__container__link {
    margin: 0 auto;
}


/* ===============================
    Q&A
=============================== */
.FAQ .FAQ__container .FAQ__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 55px;
    margin-bottom: 120px;
}

.FAQ .FAQ__container .FAQ__list .FAQ__item {
    width: calc((100% - 160px) / 3);
}

.FAQ .FAQ__container .FAQ__list .FAQ__item .FAQ__item__question {
    border-bottom: 1px solid var(--color-gray);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.FAQ .FAQ__container .FAQ__list .FAQ__item .FAQ__item__question .FAQ__item__question__number {
    font-size: var(--rem30);
    margin-bottom: 5px;
}

.FAQ .FAQ__container .FAQ__list .FAQ__item .FAQ__item__question .FAQ__item__question__text {
    color: var(--color-blue);
    font-size: clamp(var(--rem13),var(--vw14),var(--rem17));
    letter-spacing: 0;
    font-weight: var(--medium);
}

.FAQ .FAQ__container .FAQ__list .FAQ__item .FAQ__item__answer .FAQ__item__question__emphasis {
    color: var(--color-red);
    font-size: clamp(var(--rem15),var(--vw16),var(--rem18));
    margin-bottom: 15px;
    font-weight: var(--medium);
}

.FAQ .FAQ__container .condominium-structure .condominium-structure__title {
    font-size: var(--rem20);
}

.FAQ .FAQ__container .condominium-structure .condominium-structure__title::after {
    content: "";
    display: block;
    width: 187px;
    height: 18px;
    background: url('/cb-shirahama/lp/f05/assets/image/condominium-structure_titledecoration.png') no-repeat center / cover;
    margin: 10px auto 30px;
}

.FAQ .FAQ__container .condominium-structure .condominium-structure__video {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 16 / 9;
    margin: 0 auto;
}

.FAQ .FAQ__container .condominium-structure .condominium-structure__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px) {
    .FAQ .FAQ__container .FAQ__list .FAQ__item {
        width: calc((100% - 80px) / 2);
    }
}

@media (max-width: 767px) {
    .FAQ .FAQ__container .FAQ__list {
        display: block;
        margin-bottom: 80px;
    }

    .FAQ .FAQ__container .FAQ__list .FAQ__item {
        width: 100%;
        margin-bottom: 35px;
    }

    .FAQ .FAQ__container .FAQ__list .FAQ__item .FAQ__item__question {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .FAQ .FAQ__container .FAQ__list .FAQ__item .FAQ__item__answer .FAQ__item__question__emphasis {
        margin-bottom: 10px;
    }
}


/* ===============================
    access
=============================== */
section.access {
    padding: 0;
}

.access .access__container {
    display: flex;
    align-items: center;
    background-color: #F9F9F9;
}

.access .access__container .access__mapbox {
    width: 50%;
    height: 395px;
    margin-right: min(3.8vw, 57px);
}

.access .access__container .access__mapbox .access__image {
    object-fit: cover;
    height: 100%;
}

.access .access__container .access__textbox {
    font-size: clamp(var(--rem12),var(--vw13),var(--rem18));
    padding-right: 10px;
}

.access .access__container .access__textbox .access__textbox__titlebox {
    border-bottom: 1px solid var(--color-black);
    padding-bottom: 30px;
    margin-bottom: 35px;
    width: clamp(456px, 40vw, 543px);
}

.access .access__container .access__textbox .access__textbox__titlebox .access__textbox__title {
    font-family: "Shippori Antique", sans-serif;
    font-size: clamp(var(--rem18),var(--vw19),var(--rem32));
    margin-bottom: 5px;
    font-weight: var(--medium);
}

.access .access__container .access__textbox .access__textbox__titlebox .access__textbox__subtitle {
    font-size: clamp(var(--rem14),var(--vw15),var(--rem25));
}

.access .access__container .access__textbox .access__info .access__info__address {
    margin-bottom: 10px;
} 

.access .access__container .access__textbox .access__info__tell .access__info__tell__number {
    font-size: clamp(var(--rem22),var(--vw23),var(--rem30));
    font-weight: var(--medium);
}

@media (max-width: 767px) {
    .access .access__container {
        display: block;
        padding-bottom: 30px;
    }

    .access .access__container .access__mapbox {
        width: 100%;
        height: 273px;
    }

    .access .access__container .access__mapbox .access__image {
        object-fit: cover;
    }

    .access .access__container .access__textbox {
        width: 90%;
        margin: 30px auto 0;
        padding-right: 0;
    }

    .access .access__container .access__textbox .access__textbox__titlebox {
        width: 100%;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .access .access__container .access__textbox .access__info .access__info__address {
        margin-bottom: 5px;
    }
}


/* ===============================
    footer
=============================== */
footer {
    background: url("/cb-shirahama/lp/f05/assets/image/bg_footer.png") no-repeat center / cover;
}

footer .footer__container {
    padding: 60px 0 10px;
}

footer .footer__container .footer__info {
    margin-bottom: 45px;
}

footer .footer__container .footer__info .footer__info__item {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}

footer .footer__container .footer__info .footer__info__item .footer__info__logo {
    width: 302px;
}

footer .footer__container .footer__info .footer__info__item .footer__info__tell .footer__info__tell__text {
    font-size: clamp(var(--rem10),var(--vw11),var(--rem16));
    margin: 0 0 -0.8rem;
} 

footer .footer__container .footer__info .footer__info__item .footer__info__tell .footer__info__tell__number {
    color: var(--color-blue);
    font-size: clamp(var(--rem27),var(--vw28),var(--rem40));
    font-weight: var(--medium);
}

footer .footer__container .footer__info .footer__info__item .footer__info__tell .footer__info__tell__number a {
    color: var(--color-blue);
}

footer .footer__container .footer__info .footer__info__company {
    font-size: var(--rem16);
    font-weight: var(--medium);
    margin-bottom: 10px;
}

footer .footer__container .footer__info .footer__info__address {
    font-size: var(--rem13);
    margin-bottom: 10px;
    letter-spacing: 0.05rem;
}

footer .footer__container .footer__info .footer__info_tellnote {
    font-size: clamp(var(--rem11),var(--vw12),var(--rem14));
    margin-bottom: 10px;
}

footer .footer__container .footer__info .footer__info__opening-hours {
    font-size: clamp(var(--rem13),var(--vw14),var(--rem16));
    letter-spacing: 0.05rem;
}

footer .footer__container .footer__copyright {
    font-size: var(--rem10);
}

@media (max-width: 767px) {
    footer .footer__container {
        padding: 30px 0 20px;
    }

    footer .footer__container .footer__info .footer__info__item {
        display: block;
    }

    footer .footer__container .footer__info .footer__info__item .footer__info__logo {
        width: 184px;
        margin: 0 auto 20px;
    }

    footer .footer__container .footer__info .footer__info__item .footer__info__tell {
        margin: 0 auto;
        width: fit-content;
    }

    footer .footer__container .footer__info .footer__info__item .footer__info__tell p {
        width: fit-content;
    }

    footer .footer__container .footer__info .footer__info__item .footer__info__tell .footer__info__tell__text {
        margin-bottom: -0.5rem;
    }

    footer .footer__container .footer__info {
        margin-bottom: 35px;
    }
}


/* ===============================
    20260305 FV動画に変更用
=============================== */
.hero__movie{
    width:100%;
    max-width:100%;
}
.hero__movie video{
    width:100%;
    max-width:100%;
}

.hero__movie video.sp{
    display:none;
}
@media (max-width: 767px) {
    .hero__movie video.pc{
        display:none;
    }
    .hero__movie video.sp{
        display:block;
    }
    .hero__movie video{
        width:100%;
    }
}