@charset 'UTF-8';
@import url(../css/root.css);
/* ----------------------------------------------

基本設定

------------------------------------------------*/
*
{
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;

    box-sizing: border-box;

    color: var(--mainblack);
}

p
{
    font-weight: normal;

    text-align: justify;
}

img
{
    width: 100%;
    max-width: 100%;
    height: auto;

    vertical-align: bottom;
}

a
{
    text-decoration: none;

    color: black;
}

picture
{
    display: block;
}

.en,
.en *
{
    font-family: 'Josefin Sans', sans-serif;
}

/*見切れ画像の処理*/
.cut_off
{
    display: flex;
    overflow: hidden;

    align-items: center;
    justify-content: center;
}
.cut_off.cover img
{
    max-width: unset;
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}
.cut_off.contain img
{
    max-width: unset;
    height: 100%;

    -o-object-fit: contain;

       object-fit: contain;
}

/*1行テキストの処理*/
span.br
{
    font-weight: normal;

    display: block;
}
span.br.mb
{
    margin-bottom: 1.25em;
}

/*hoverするとボーダーが出る*/
.hov_border
{
    /*hoverするとボーダーが消える*/
}
.hov_border a:not(:has(.txt))
{
    position: relative;
}
.hov_border a:not(:has(.txt))::after
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    content: '';
    transition: transform .5s cubic-bezier(.8, 0, .2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;

    background: var(--blue01);
}
.hov_border a .txt
{
    position: relative;
}
.hov_border a .txt::after
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    content: '';
    transition: transform .5s cubic-bezier(.8, 0, .2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;

    background: var(--blue01);
}
.hov_border a:hover:not(:has(.txt))::after
{
    transform: scale(1, 1);
}
.hov_border a:hover .txt::after
{
    transform: scale(1, 1);
    transform-origin: left top;
}
.hov_border.no_border a:not(:has(.txt))::after
{
    transform: scale(1, 1);
    transform-origin: left top !important;
}
.hov_border.no_border a .txt::after
{
    transform: scale(1, 1);
    transform-origin: left top !important;
}
.hov_border.no_border a:hover:not(:has(.txt))::after
{
    transform: scale(0, 1);
    transform-origin: right top !important;
}
.hov_border.no_border a:hover .txt::after
{
    transform: scale(0, 1);
    transform-origin: right top !important;
}
.hov_border.white a .txt::after
{
    background: var(--white);
}
.hov_border.blue a .txt::after
{
    background: var(--mainblue);
}

.mgn-l-btm
{
    margin-bottom: var(--m130);
}

.mgn-m-btm
{
    margin-bottom: var(--m100);
}

.mgn-s-btm
{
    margin-bottom: var(--m60);
}

.mgn-m-top
{
    margin-top: var(--m130);
}

.mgn-m-top
{
    margin-top: var(--m100);
}

.mgn-s-top
{
    margin-top: var(--m60);
}

.pdn-l-btm
{
    padding-bottom: var(--m130);
}

.pdn-m-btm
{
    padding-bottom: var(--m100);
}

.pdn-s-btm
{
    padding-bottom: var(--m60);
}

.pdn-l-top
{
    padding-top: var(--m130);
}

.pdn-m-top
{
    padding-top: var(--m100);
}

.pdn-s-top
{
    padding-top: var(--m60);
}

.l-container
{
    position: relative;
    z-index: 1;

    overflow: hidden;

    margin: 0;
    padding: 0;
}
.l-container::before
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: inline-block;

    width: 100%;

    content: '';

    background: url(../images/common/bg_top.png) top center/cover no-repeat;

    aspect-ratio: 1920/434;
}

.l-contents
{
    position: relative;
    z-index: 1;
}

h1.none
{
    display: none !important;
}

.wrapper
{
    width: 90%;
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
}

/*ボタン設定*/
.c-button__link
{
    position: relative;
    z-index: 1;

    display: flex;

    padding: 8px var(--m16);

    transition: all .5s;

    border-radius: 100vw;

    align-items: center;
    justify-content: space-between;
    grid-gap: var(--m8_12);
}
.c-button__row
{
    display: flex;
    flex-direction: column;

    align-items: center;
}
.c-button__image
{
    display: inline-block;
}
.c-button__image.mail
{
    width: var(--fs20_24);

    background: url(../images/common/icon_mail_w.svg) center/100% no-repeat;

    aspect-ratio: 24/26;
}
.c-button__en
{
    font-size: var(--fs20_40);
    line-height: 1;

    color: var(--white);
}
.c-button__en:not(.small)
{
    margin-top: .15em;
}
.c-button__en.small
{
    font-size: var(--fs14_17);
    font-weight: 300;
}
.c-button__jp
{
    font-size: var(--fs18_24);
    font-weight: 500;

    color: var(--white);
}
.c-button__arrow
{
    position: relative;

    width: var(--fs24_40);

    border-radius: 100%;
    background-color: var(--white);

    aspect-ratio: 1/1;
}
.c-button__arrow::after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 26.3%;

    content: '';
    transform: translate(-50%, -50%);

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    aspect-ratio: 10/15;
}
.c-button:not(:has(.c-button__row)) .c-button__en
{
    width: calc(100% - var(--m8_12) - var(--fs24_40));

    text-align: center;
}
.c-button.pink .c-button__link
{
    background-color: var(--pink01);
}
.c-button.pink .c-button__arrow::after
{
    background-image: url(../images/common/icon_arrow_r.svg);
}
.c-button.blue .c-button__link
{
    background-color: var(--blue01);
}
.c-button.blue .c-button__arrow::after
{
    background-image: url(../images/common/icon_arrow_b.svg);
}

/*電話番号*/
.c-telBt__link
{
    position: relative;
    z-index: 1;

    display: flex;

    padding: var(--m16) var(--m16);

    transition: all .5s;

    background: url(../images/common/bg_white.jpg) center top/100% repeat;

    align-items: center;
    justify-content: center;
    grid-gap: 0 var(--m30);
}
.c-telBt__link::after
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;

    display: inline-block;

    width: 13.9%;
    height: 100%;

    content: '';
    transition: all .5s;

    background-color: var(--white);

    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.c-telBt__image
{
    width: var(--fs28_40);

    background: url(../images/common/icon_tel.svg) center/100% no-repeat;

    aspect-ratio: 41/42;
}
.c-telBt__text
{
    font-size: var(--fs30_65);
    font-weight: 500;
    line-height: 1;
}

/*タイトル設定*/
.c-title
{
    display: flex;
    flex-direction: column;

    align-items: flex-start;
    grid-gap: 5px;
}
.c-title__image
{
    display: inline-block;

    width: var(--fs26_36);
    margin-bottom: 5px;

    background-image: url(../images/common/icon_hat.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;

    aspect-ratio: 37/35;
}
.c-title__en
{
    font-size: var(--fs36_60);
    font-weight: 600;
    line-height: 1;

    color: var(--blue01);
    text-shadow: 2px 2px 0 var(--white), -2px -2px 0 var(--white), -2px 2px 0 var(--white), 2px -2px 0 var(--white), 0 2px 0 var(--white), 0 -2px 0 var(--white), -2px 0 0 var(--white), 2px 0 0 var(--white);
}
.c-title__en .emp
{
    font-weight: 600;
    line-height: 1;

    color: var(--pink01);
}
.c-title__jp
{
    font-size: var(--fs18_36);
    font-weight: 500;
    line-height: 1;

    color: var(--blue01);
    text-shadow: 2px 2px 0 var(--white), -2px -2px 0 var(--white), -2px 2px 0 var(--white), 2px -2px 0 var(--white), 0 2px 0 var(--white), 0 -2px 0 var(--white), -2px 0 0 var(--white), 2px 0 0 var(--white);
}
.c-title__jp .emp
{
    font-weight: 500;
    line-height: 1;

    color: var(--pink01);
}
.c-title__jp.border
{
    display: flex;

    align-items: center;
}
.c-title__jp.border::before
{
    display: inline-block;

    width: var(--m50);
    height: 3px;
    margin-right: 8px;

    content: '';

    border-radius: 50vw;
    background-color: var(--blue01);
}
.c-title.center
{
    align-items: center;
}
.c-title.center .c-title__en
{
    position: relative;
    z-index: 1;

    padding-bottom: .15em;
}
.c-title.center .c-title__en::after
{
    position: absolute;
    bottom: 0;
    left: 50%;

    display: inline-block;

    width: 48px;
    height: 3px;

    content: '';
    transform: translateX(-50%);

    border-radius: 10vw;
    background-color: var(--blue01);
}
.c-title.flex
{
    flex-direction: row;

    align-items: center;
    grid-gap: var(--m16);
}

/*gsapの機能*/
.l-container .rect
{
    position: relative;

    overflow: hidden;
}
.l-container .rect .curtain
{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: var(--maincol);
}

/*ヘッダー*/
.l-header
{
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    width: 100%;
}
.l-header__inner
{
    display: flex;

    width: 90%;
    max-width: 1720px;
    margin: 0 auto;
    padding: var(--m30) 0;

    transition: all .5s;

    justify-content: space-between;
    align-items: center;
}
.l-header__logo
{
    width: 16.8%;
    max-width: 280px;

    transition: all .5s;
}
.l-header__right-area
{
    display: flex;

    justify-content: flex-end;
    align-items: center;
    grid-gap: 0 min(1.5625vw, 30px);
}
.l-header__menu
{
    display: flex;

    padding-top: var(--m8_12);
    padding-bottom: var(--m8_12);

    align-items: center;
    grid-gap: 0 min(1.5625vw, 30px);
}
.l-header__cv-list
{
    display: flex;

    align-items: center;
    grid-gap: 0 10px;
}
.l-header .c-button__link
{
    border: 4px solid var(--white);
}

.c-modal
{
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;

    display: flex;

    width: 100%;
    min-width: unset;
    height: 100vh;
    height: 100dvh;
}
.c-modal__bg
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: inline-block;

    width: 100%;
    height: 100%;

    content: '';
    transition: background-color .5s;
    transform: translateX(0);

    background-color: rgba(0, 0, 0, .65);
}
.c-modal__inner
{
    position: relative;

    display: flex;
    overflow: scroll;
    flex-direction: column;

    width: 100%;
    max-width: 450px;
    margin-left: auto;

    transition: transform .8s;

    background: url(../images/common/bg_blue.jpg) top left/cover no-repeat;
}
.c-modal__inner.close
{
    transform: translateX(150%);
}
.c-modal__logo
{
    width: 90%;
    max-width: 300px;
    margin: 0 auto var(--m50);
}
.c-modal__menu
{
    width: 90%;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto var(--m50);
}
.c-modal__menu .c-menu
{
    max-width: -moz-fit-content;
    max-width: fit-content;
}
.c-modal__menu .c-menu__link
{
    padding: var(--m16) 0;

    justify-content: flex-start;
}
.c-modal__menu .c-menu__row
{
    flex-direction: row;

    align-items: baseline;
    grid-gap: .5rem;
}
.c-modal__menu .c-menu__text
{
    font-size: var(--fs18_20);
    font-weight: 500;
}
.c-modal__menu .c-menu__en
{
    font-size: var(--fs20_26);
    font-weight: 500;
}
.c-modal__contact-menu
{
    display: flex;

    align-items: center;
    justify-content: center;
    grid-gap: var(--m16);
}
.c-modal.open
{
    opacity: 1;
}
.c-modal.open .bg
{
    background-color: rgba(0, 0, 0, .8);
}
.c-modal.nav_none
{
    transform: translateX(150%);

    opacity: 0;
}

/*ハンバーガーメニュー*/
.c-hamburger
{
    position: relative;
    z-index: 10001;

    display: flex;

    width: var(--m45_65);

    cursor: pointer;

    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}
.c-hamburger::before
{
    position: absolute;
    top: 0;
    left: 0;

    display: inline-block;

    width: 100%;

    content: '';

    border: 4px solid var(--white);
    border-radius: 100vw;
    background-color: var(--blue01);

    aspect-ratio: 1/1;
}
.c-hamburger__inner
{
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    transition: all .5s;

    align-items: center;
    justify-content: center;
    grid-gap: 5px;
}
.c-hamburger__inner::before,
.c-hamburger__inner::after
{
    right: 0;

    display: block;

    width: 50%;
    height: 2px;

    content: '';
    transition: all .5s;
    transform-origin: center;

    background-color: var(--white);
}
.c-hamburger__inner.open
{
    grid-gap: 0;
}
.c-hamburger__inner.open .c-hamburger__bar
{
    display: none;
}
.c-hamburger__inner.open.rotate::before
{
    transform: translateY(50%) rotate(45deg);
}
.c-hamburger__inner.open.rotate::after
{
    transform: translateY(-50%) rotate(-45deg);
}
.c-hamburger__bar
{
    display: block;

    width: 50%;
    height: 2px;

    transform-origin: center;

    background-color: var(--white);
}
.c-hamburger__text
{
    font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    font-size: var(--fs14_18);

    display: block;

    color: var(--white);
}

/*フッター*/
.l-footer
{
    background-color: var(--blue01);
}
.l-footer__inner
{
    display: flex;

    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    grid-gap: var(--m50) 0;
}
.l-footer__address-area
{
    display: flex;

    width: 49.5%;

    flex-wrap: wrap;
    align-items: center;
    grid-gap: var(--m30) var(--m40);
}
.l-footer__logo
{
    width: 100%;
    max-width: 280px;
}
.l-footer__address
{
    font-size: var(--fs14_16);

    color: var(--white);
}
.l-footer__tel-link
{
    font-size: var(--fs14_16);

    color: var(--white);
}
.l-footer__menu-area
{
    width: 49.5%;
}
.l-footer__menu
{
    display: flex;

    width: 100%;
    margin-bottom: 16px;

    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: var(--m32);
}
.l-footer .c-menu__link::before
{
    background: url(../images/common/icon_hat_w.svg) center/100% no-repeat;
}
.l-footer .c-menu__text
{
    color: var(--white);
}
.l-footer .c-menu__en
{
    color: var(--white);
}
.l-footer__cv-list
{
    display: flex;

    justify-content: flex-end;
    align-items: center;
    grid-gap: var(--m16);
}
.l-footer .c-button__link
{
    border: 4px solid var(--white);
}
.l-footer__copy
{
    position: relative;
    z-index: 1;

    width: 100%;

    background-color: var(--black02);
}
.l-footer__copy small
{
    font-size: 14px;

    color: var(--white);
}

/*c-return*/
.c-return
{
    position: fixed;
    z-index: 300;

    width: var(--fs42_60);
    margin-left: auto;

    transition: all .5s;

    aspect-ratio: 1/1;
}
.c-return a
{
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    transition: all .5s;

    background-color: var(--blue01);

    align-items: center;
    justify-content: center;
    grid-gap: 5px;
}
.c-return__image
{
    display: inline-block;

    width: 40%;

    background-image: url(../images/common/icon_hat_w.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;

    aspect-ratio: 37/35;
}
.c-return__text
{
    font-size: var(--fs14_16);
    line-height: 1;

    color: #fff;
}
.c-return.return_hide
{
    z-index: -10;

    transform: translateY(110%);

    opacity: 0;
}
.c-return.return_fixed
{
    right: 0;
    bottom: 0;

    transform: translateY(0%);

    opacity: 1;
}

/*パンくず*/
.c-breadcrumb
{
    margin-bottom: var(--m60);
}
.c-breadcrumb__inner
{
    display: flex;

    flex-wrap: wrap;
    align-items: center;
    grid-gap: .5rem;
}
.c-breadcrumb__list
{
    font-size: var(--fs12_16);
    font-weight: 500;

    display: flex;

    align-items: center;
}
.c-breadcrumb__list *
{
    font-size: var(--fs12_16);
    font-weight: 500;
}
.c-breadcrumb__list a
{
    font-weight: 500;

    color: var(--blue01);
}
.c-breadcrumb__list:not(:last-of-type)::after
{
    font-size: var(--fs12_16);

    display: inline-block;

    margin-left: .5rem;

    content: '>';
}

.c-radioCheck
{
    position: relative;

    display: flex;

    width: calc(50% - .5rem);
    padding: var(--m8px);

    transition: all .5s;

    border: 1px solid var(--gray02);
    border-radius: 5px;

    grid-gap: .5rem;
    align-items: center;
}
.c-radioCheck:has(.inp_rdo:checked, .inp_chk:checked)
{
    background-color: var(--maincol_opa);
}
.c-radioCheck .inp_rdo,
.c-radioCheck .inp_chk
{
    display: none;
}
.c-radioCheck .rdo,
.c-radioCheck .chk
{
    position: relative;
}
.c-radioCheck .rdo::before,
.c-radioCheck .chk::before
{
    position: relative;

    display: flex;

    width: 20px;
    height: 20px;

    content: '';

    border: 2px solid var(--gray02);
    border-radius: 5px;
    background-color: var(--white);
}
.c-radioCheck .chk::after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 130%;

    content: '';
    transition: opacity .5s;
    transform: translate(-30%, -60%);

    opacity: 0;
    background: url(../images/common/check_only.svg) center/100% no-repeat;

    aspect-ratio: 181/135;
}
.c-radioCheck .rdo::before
{
    border-radius: 100%;
}
.c-radioCheck .rdo::after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 10px;
    height: 10px;

    content: '';
    transition: background-color .5s;
    transition: all .5s;
    transform: translate(-50%, -50%);

    opacity: 0;
    border-radius: 100%;
    background-color: var(--maincol);
}
.c-radioCheck .inp_rdo:checked + .rdo::after,
.c-radioCheck .inp_rdo:checked + .chk::after,
.c-radioCheck .inp_chk:checked + .rdo::after,
.c-radioCheck .inp_chk:checked + .chk::after
{
    opacity: 1;
}

.c-inputCheck .inp_rdo,
.c-inputCheck .inp_chk,
.c-inputCheck .rdo_inp_round
{
    display: none;
}
.c-inputCheck .inp_rdo:checked + .rdo .check::before,
.c-inputCheck .inp_rdo:checked + .chk .check::before,
.c-inputCheck .inp_rdo:checked + .rdo_round .check::before,
.c-inputCheck .inp_rdo:checked + .rdo .check::after,
.c-inputCheck .inp_rdo:checked + .chk .check::after,
.c-inputCheck .inp_rdo:checked + .rdo_round .check::after,
.c-inputCheck .inp_chk:checked + .rdo .check::before,
.c-inputCheck .inp_chk:checked + .chk .check::before,
.c-inputCheck .inp_chk:checked + .rdo_round .check::before,
.c-inputCheck .inp_chk:checked + .rdo .check::after,
.c-inputCheck .inp_chk:checked + .chk .check::after,
.c-inputCheck .inp_chk:checked + .rdo_round .check::after,
.c-inputCheck .rdo_inp_round:checked + .rdo .check::before,
.c-inputCheck .rdo_inp_round:checked + .chk .check::before,
.c-inputCheck .rdo_inp_round:checked + .rdo_round .check::before,
.c-inputCheck .rdo_inp_round:checked + .rdo .check::after,
.c-inputCheck .rdo_inp_round:checked + .chk .check::after,
.c-inputCheck .rdo_inp_round:checked + .rdo_round .check::after
{
    opacity: 1;
}
.c-inputCheck .rdo,
.c-inputCheck .chk
{
    position: relative;

    display: flex;

    grid-gap: .5rem;
    align-items: center;
}
.c-inputCheck .rdo .check,
.c-inputCheck .chk .check
{
    position: relative;

    display: flex;

    width: 20px;
    height: 20px;

    content: '';

    border: 2px solid #c9caca;
    border-radius: 5px;
    background-color: var(--white);
}
.c-inputCheck .chk .check::before
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 130%;

    content: '';
    transition: opacity .5s;
    transform: translate(-30%, -60%);

    opacity: 0;
    background: url(../images/common/check_only.svg) center/100% no-repeat;

    aspect-ratio: 181/135;
}
.c-inputCheck .rdo .check
{
    border-radius: 100%;
}
.c-inputCheck .rdo .check::before
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 10px;
    height: 10px;

    content: '';
    transition: background-color .5s;
    transition: all .5s;
    transform: translate(-50%, -50%);

    opacity: 0;
    border-radius: 100%;
    background-color: var(--maincol);
}

/*swiper設定*/
#contents .swiper-pagination
{
    font-size: var(--fs18_28);
    line-height: 1;

    position: static;

    display: flex;

    width: -moz-fit-content;

    width: fit-content;

    align-items: baseline;
    grid-gap: .25em;
}
#contents .swiper-pagination .swiper-pagination-current
{
    font-size: var(--fs22_36);
    font-weight: 500;

    color: var(--pink01);
}
#contents .swiper-pagination .swiper-pagination-total
{
    font-weight: 500;

    color: var(--blue01);
}
#contents .scroll-hint-icon-wrap
{
    z-index: 10;
}

/*下層ページ*/
.p-pageHeader
{
    position: relative;
    z-index: 1;

    padding-top: var(--m45_140);
    padding-bottom: var(--m45_120);

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.p-pageHeader__title
{
    display: flex;
    flex-direction: column;

    width: -moz-fit-content;

    width: fit-content;
    margin: 0 auto;

    align-items: center;
    justify-content: center;
}
.p-pageHeader__title::after
{
    display: inline-block;

    width: 40%;
    height: 1px;

    content: '';

    background-color: var(--white);

    order: 2;
}
.p-pageHeader__title--en
{
    font-size: var(--fs40_100);
    font-weight: 600;
    line-height: 1;

    color: var(--white);

    order: 1;
}
.p-pageHeader__title--jp
{
    font-size: var(--fs22_40);
    font-weight: 600;

    color: var(--white);

    order: 3;
}
.p-pageHeader::after
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;

    display: inline-block;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .25;
    background-color: var(--black02);
}
.p-pageHeader.access
{
    background-image: url(../images/access/topImage.jpg);
    background-position: bottom center;
}
.p-pageHeader.location
{
    background-image: url(../images/location/topImage.jpg);
}
.p-pageHeader.plan
{
    background-image: url(../images/plan/topImage.jpg);
    background-position: bottom 25% center;
}
.p-pageHeader.plot
{
    background-image: url(../images/common/rendering05.jpg);
}
.p-pageHeader.map
{
    background-image: url(../images/common/rendering02.jpg);
    background-position: bottom 25% center;
}
.p-pageHeader.property
{
    background-image: url(../images/common/rendering01.jpg);
    background-position: bottom 25% center;
}

/*linghtbox用画像アイコン*/
.zoomIcon
{
    position: relative;

    display: flex;
    overflow: hidden;

    width: 100%;
    height: 100%;

    border: 1px solid var(--gray01);
    border-radius: var(--m10px);
}
.zoomIcon::before
{
    position: absolute;
    z-index: 100;
    right: 0;
    bottom: 0;

    display: inline-block;

    width: 10%;
    max-width: 40px;

    content: '';

    border-top-left-radius: var(--m10px);
    background: url(../images/common/icon_zoom.svg) center/65% no-repeat, linear-gradient(to bottom, var(--maincol), var(--maincol));

    aspect-ratio: 1/1;
}

/*ページネーション*/
.c-pagenation
{
    display: flex;

    flex-wrap: wrap;
    justify-content: center;
    grid-gap: var(--m16) .5rem;
}
.c-pagenation *
{
    font-size: var(--fs14_18);
    font-weight: 600;
}
.c-pagenation li
{
    border: 1px solid var(--blue01);
    border-radius: 5px;
}
.c-pagenation li.prev a,
.c-pagenation li.next a
{
    width: 4em;
    min-height: 2em;

    aspect-ratio: unset;
}
.c-pagenation li span
{
    display: flex;

    width: 2em;
    height: 100%;

    color: var(--white);
    background-color: var(--blue01);

    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}
.c-pagenation li a
{
    display: flex;

    width: 2em;
    height: 100%;

    transition: all .5s;

    aspect-ratio: 1/1;
    align-items: center;
    justify-content: center;
}

/*プラポ*/
.p-privacy
{
    border-top: 1px solid var(--mainblack);
    border-bottom: 1px solid var(--mainblack);
}
.p-privacy__inner
{
    padding-right: 2.5%;
    padding-left: 2.5%;

    border-right: 1px solid var(--mainblack);
    border-left: 1px solid var(--mainblack);
}
.p-privacy .tit
{
    font-size: var(--fs18_26);
    font-weight: 700;

    position: relative;

    display: flex;

    margin-bottom: var(--m20);

    grid-gap: var(--m16);
}
.p-privacy .tit::before
{
    display: inline-block;

    width: 10px;

    content: '';

    background-color: var(--maincol);
}
.p-privacy p,
.p-privacy ul
{
    font-size: var(--fs14_16);

    margin-bottom: var(--m32);
}
.p-privacy p li,
.p-privacy ul li
{
    font-size: var(--sf14_16);
}

/*エラーページ*/
.p-error
{
    position: relative;
    z-index: 1;

    text-align: center;
}
.p-error__image
{
    width: 100%;
    max-width: 800px;
    margin: 0 auto var(--m50);
}
.p-error__title
{
    font-size: var(--fs24_32);
    font-weight: 600;

    margin-bottom: var(--m30);

    color: var(--red01);
}
.p-error__catch
{
    font-size: var(--fs18_23);
    font-weight: 600;

    margin-bottom: var(--m25);
}
.p-error__text__inner
{
    margin-bottom: var(--m40);
}
.p-error__text__line
{
    font-size: var(--fs14_16);

    display: block;
}
.p-error__text__line a
{
    font-weight: 600;

    text-decoration: underline;

    color: var(--maincol);
}

/* ----------------------------------------------
独自設定
------------------------------------------------*/
/*snsボタン*/
.c-sns-bt
{
    width: var(--m45_65);

    aspect-ratio: 1/1;
}
.c-sns-bt__link
{
    display: flex;

    width: 100%;
    height: 100%;

    transition: all .5s;

    border: 4px solid var(--white);
    border-radius: 100%;

    align-items: center;
    justify-content: center;
}
.c-sns-bt img
{
    width: 40%;
}
.c-sns-bt.x .c-sns-bt__link
{
    background-color: var(--blue01);
}
.c-sns-bt.insta .c-sns-bt__link
{
    background-color: var(--yellow01);
}
.c-sns-bt.insta img
{
    width: 60%;
}
.c-sns-bt.mail .c-sns-bt__link
{
    background-color: var(--pink01);
}
.c-sns-bt.mail img
{
    width: 60%;
}

/*メニュー設定*/
.c-menu__link
{
    display: flex;

    align-items: center;
    justify-content: center;
    grid-gap: 5px;
}
.c-menu__link::before
{
    display: inline-block;

    width: var(--fs22_30);

    content: '';

    background: url(../images/common/icon_hat.svg) center/100% no-repeat;

    aspect-ratio: 1/1;
}
.c-menu__row
{
    display: flex;
    flex-direction: column;

    align-items: center;
}
.c-menu__text
{
    font-size: var(--fs16_18);

    color: var(--blue01);
}
.c-menu__en
{
    font-size: 14px;
    font-weight: 300;

    color: var(--pink01);
}

/*リストボックス*/
.c-list-box-link
{
    display: block;
    height: 100%;
    padding: var(--m8_20);

    border: 4px solid var(--white);
    border-radius: var(--m16);
    background: url(../images/common/pick_bg01.png) center/100% 100% no-repeat, var(--pink01);
}
.c-list-box-image
{
    overflow: hidden;

    margin-bottom: var(--m16);

    border-radius: var(--m16);

    aspect-ratio: 485/297;
}
.c-list-box-category
{
    font-size: var(--fs14_16);
    line-height: 1;

    display: inline-block;

    margin-bottom: var(--m16);
    padding: .25em 1.5em;

    border-radius: 100vw;
    background-color: var(--yellow01);
}
.c-list-box-text
{
    font-size: var(--fs14_18);

    color: var(--white);
}
.c-list-box:nth-of-type(even) .c-list-box-link
{
    background: url(../images/common/pick_bg02.png) center/100% 100% no-repeat, var(--blue01);
}

/*ポップアップ*/
.c-pop-box
{
    position: fixed;
    z-index: -1;

    display: flex;

    width: 100vw;
    height: 100vh;

    transition: opacity .5s;
    transform: translateX(120%);

    opacity: 0;

    inset: 0;
    align-items: center;
    justify-content: center;
}
.c-pop-box.is-open
{
    z-index: 9999;

    transform: translateX(0%);

    opacity: 1;
}
.c-pop-box.is-open .c-pop-box__overlay
{
    opacity: 1;
}
.c-pop-box.is-open .c-pop-box__inner
{
    opacity: 1;
}
.c-pop-box__overlay
{
    position: absolute;

    transition: all .5s;

    opacity: 0;
    background: rgba(0, 0, 0, .6);

    inset: 0;
}
.c-pop-box__inner
{
    position: relative;

    overflow: hidden;

    width: calc(100% - 32px);
    max-width: 720px;
    margin: 40px auto;
    padding-top: var(--m16);

    transition: all .5s;

    opacity: 0;
    border-radius: 16px;
    background: #fff;
}
.c-pop-box__close
{
    font-size: var(--fs16_20);
    font-weight: 500;

    position: absolute;
    top: 8px;
    right: 8px;

    display: flex;

    width: max(28px, 5%);

    cursor: pointer;

    color: #fff;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, .6);

    aspect-ratio: 1/1;
    align-items: center;
    justify-content: center;
}
.c-pop-box__image
{
    overflow: hidden;

    margin-bottom: var(--m20);

    aspect-ratio: 3/2;
}
.c-pop-box__image img
{
    height: 100%;

    -o-object-fit: contain;

       object-fit: contain;
}
.c-pop-box__body
{
    padding: var(--m16);

    background-color: var(--blue02);
}
.c-pop-box__category
{
    font-size: var(--fs14_16);
    line-height: 1;

    display: inline-block;

    margin-bottom: var(--m16);
    padding: .25em 1.5em;

    border-radius: 100vw;
    background-color: var(--yellow01);
}
.c-pop-box__text
{
    font-size: var(--fs14_18);
}

html.is-pop-open,
html.is-pop-open body
{
    overflow: hidden;
}

/* ----------------------------------------------
画面幅調整
------------------------------------------------*/
@media all and (min-width: 621px)
{
    .sp_only
    {
        display: none !important;
    }
    a[href^='tel:']
    {
        pointer-events: none;
    }
}
@media all and (min-width: 769px)
{
    .tab_under
    {
        display: none !important;
    }
    .l-container a img
    {
        transition: all .3s;
    }
    .l-container a:hover img
    {
        opacity: .8;
    }
    /*ボタン設定*/
    .c-button.pink .c-button__link:hover
    {
        background-color: var(--blue01);
    }
    .c-button.pink .c-button__link:hover .c-button__arrow::after
    {
        background-image: url(../images/common/icon_arrow_b.svg);
    }
    .c-button.blue .c-button__link:hover
    {
        background-color: var(--yellow01);
    }
    .c-button.blue .c-button__link:hover .c-button__arrow::after
    {
        background-image: url(../images/common/icon_arrow_o.svg);
    }
    .c-return a:hover
    {
        background-color: var(--pink01);
    }
    /*ページネーション*/
    .c-pagenation li a:hover
    {
        color: var(--white);
        background-color: var(--blue01);
    }
    /*spフロートメニュー*/
    .c-spcv
    {
        display: none !important;
    }
    /*snsボタン*/
    .c-sns-bt.x .c-sns-bt__link:hover
    {
        background-color: var(--pink01);
    }
    .c-sns-bt.insta .c-sns-bt__link:hover
    {
        background-color: var(--pink01);
    }
}
@media all and (min-width: 1025px)
{
    .pc_under
    {
        display: none !important;
    }
    .l-header .c-button__jp
    {
        font-size: min(1.3vw, 24px);
    }
    .l-header .c-button__arrow
    {
        width: min(2vw, 40px);
    }
}
@media all and (max-width: 768px), all and (min-width: 1025px)
{
    .fullTb
    {
        display: none !important;
    }
}
@media all and (min-width: 621px) and (max-width: 768px)
{
    .tab_only
    {
        display: none !important;
    }
}
@media all and (max-width: 1024px)
{
    .pc_only
    {
        display: none !important;
    }
    /*ヘッダー*/
    .l-header__logo
    {
        display: flex;

        width: 35%;
        max-width: 220px;

        align-items: center;
    }
    .l-header.is-scroll
    {
        background: url(../images/common/bg_white.jpg) center/cover no-repeat;
    }
}
@media all and (max-width: 890px)
{
    /*フッター*/
    .l-footer__address-area
    {
        width: 100%;

        justify-content: center;
    }
    .l-footer__menu-area
    {
        width: 100%;
    }
    .l-footer__menu
    {
        justify-content: center;
    }
    .l-footer__cv-list
    {
        justify-content: center;
    }
    .l-footer__copy
    {
        text-align: center;
    }
}
@media all and (max-width: 768px)
{
    .tab_over
    {
        display: none !important;
    }
    /*spフロートメニュー*/
    .c-spcv
    {
        position: relative;
        z-index: 900;

        display: flex;

        transition: opacity .5s;

        align-items: stretch;
        justify-content: space-between;
        grid-gap: 1%;
    }
    .c-spcv__bt
    {
        flex: 1;
    }
    .c-spcv__bt.tel .c-spcv__link
    {
        background-color: var(--blue02);
    }
    .c-spcv__bt.tel .c-spcv__image
    {
        background-image: url(../images/common/icon_tel.svg);
    }
    .c-spcv__bt.tel .c-spcv__text
    {
        color: var(--blue01);
    }
    .c-spcv__bt.mail .c-spcv__link
    {
        background-color: var(--pink01);
    }
    .c-spcv__bt.mail .c-spcv__image
    {
        background-image: url(../images/common/icon_mail_w.svg);
    }
    .c-spcv__bt.x .c-spcv__link
    {
        background-color: var(--blue01);
    }
    .c-spcv__bt.x .c-spcv__image
    {
        background-image: url(../images/common/sns_x.svg);
    }
    .c-spcv__bt.insta .c-spcv__link
    {
        background-color: var(--yellow01);
    }
    .c-spcv__bt.insta .c-spcv__image
    {
        background-image: url(../images/common/sns_insta.svg);
    }
    .c-spcv__link
    {
        display: flex;

        height: 100%;
        padding: 8px var(--m16) 4px;

        border-top-left-radius: 10px;
        border-top-right-radius: 10px;

        align-items: baseline;
        justify-content: center;
        grid-gap: var(--m14);
    }
    .c-spcv__text
    {
        font-size: var(--fs20_24);
        line-height: 1;

        color: var(--white);
    }
    .c-spcv__image
    {
        width: 20px;

        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;

        aspect-ratio: 1/1;
    }
    .c-spcv.jsfix
    {
        position: fixed;
        bottom: 0;

        width: 100%;

        opacity: 1;
        /* background-color: unset; */
    }
    .c-spcv.opa
    {
        opacity: 0;
    }
    .c-spcv.none
    {
        display: none !important;
    }
    /*c-return*/
    .c-return.return_fixed
    {
        bottom: 7.5%;
    }
    .c-radioCheck
    {
        width: 100%;
    }
}
@media all and (max-width: 620px)
{
    .sp_over
    {
        display: none !important;
    }
    .l-container::before
    {
        aspect-ratio: 1/.45;
    }
    /*フッター*/
    .l-footer .c-menu
    {
        width: calc(50% - var(--m32) / 2);
    }
    .c-spcv .c-telbt__image,
    .c-spcv .c-button__image
    {
        width: 20px;
    }
    /*c-return*/
    .c-return
    {
        position: relative;
    }
    .c-return.return_fixed
    {
        bottom: 8%;
    }
    /*ポップアップ*/
    .c-pop-box__image
    {
        aspect-ratio: 1/1;
    }
}
