@charset "utf-8";

/* -------------------------------------
    header
-----------------------------------------*/
.header_wrap {
    position: relative;
    z-index: 110;
}

.header_wrap header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 116px 0 40px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 1;
    transition: all .5s ease;
}

.header_wrap .header_btn {
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    height: 80px;
    padding: 0 20px 0 0;
    z-index: 3;
}

.header_wrap .header_btn .-_btn  {
    width: 120px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.header_wrap .header_btn .-_btn:hover {
    filter: brightness(120%);
    opacity: .7;
}

.header_wrap .header_btn .-_btn span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding-left: 7px;
}

.header_wrap .header_btn .request_btn { background: #C7861D;}

.header_wrap .header_btn .request_btn:before {
    content: "";
    width: 14px;
    height: 16px;
    background: url(../images/ico_material.svg) no-repeat 0 1px;
    background-size: 100% auto;
}

.header_wrap .header_btn .reservation_btn { background: #113065;}

.header_wrap .header_btn .reservation_btn:before {
    content: "";
    width: 14px;
    height: 15px;
    background: url(../images/ico_house.svg) no-repeat 0 1px;
    background-size: 100% auto;
}


@media screen and (max-width: 898px) {
    .header_wrap header {
        height: 60px;
        padding-right: calc(20 / 430 * 100vw); padding-left: calc(20 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
        padding-right: calc(20 / 430 * 100cqw); padding-left: calc(20 / 430 * 100cqw);
    }

    .header_wrap .header_btn {
        gap: 10px;
        height: 60px;
        padding: 0 10px 0 0;
    }

    .header_wrap .header_btn .-_btn {
        width: 80px;
        height: 30px;
        border-radius: 3px;
    }

    .header_wrap .header_btn .-_btn span {
        font-size: 10px;
        padding-left: 4px;
    }
    
    .header_wrap .header_btn .reservation_btn:before {
        width: 8px;
        height: 9px;
    }

    .header_wrap header .logo {
        width: 160px;
    }
}



/* -------------------------------------
    全体
-----------------------------------------*/
html {
    scroll-behavior: smooth;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.l-con { font-family: "Noto Sans JP", "Open Sans", "Inter", sans-serif;}

.l-content { container-type: inline-size;}

main {
    background-color: #fff;
    padding-top: 80px;
}

@media screen and (max-width: 898px) {
    main { padding-top: 60px;}
}



/* -------------------------------------
    l-section
-----------------------------------------*/
.l-section {
    font-size: calc(14 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    font-size: calc(14 / 430 * 100cqw);
    line-height: 1.8;
}

.l-section img { width: 100%;}

@media screen and (min-width: 768px) {
    .l-section img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* -------------------------------------
    l-bg
-----------------------------------------*/
.l-bgwrap {
    position: relative;
    z-index: 10;
}
@media screen and (max-width: 959px) {
    .l-bgwrap {
        position: absolute;
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .l-bgwrap {
        display: none;
    }
}

.l-bg {
    position: relative;
    background: linear-gradient(to bottom, #0068ff, #38a9ff);
    background-size: cover;
    width: 100%;
}
.l-bg.fixed { position: fixed;}

.l-bg_sideL,
.l-bg_sideR {
    display: flex; align-items: center; justify-content: center;
    width: calc((100% - (454px + 12px + 12px)) / 2);
    position: fixed; bottom: 0;
}

.l-bg_sideL {
    background-color: #096ced;
    background-image: url(../images/bg_pc_left.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.l-bg_sideR {
    left: calc(((100% - (454px + 12px + 12px)) / 2) + (454px + 12px + 12px));
    background: linear-gradient(to bottom, #0068ff, #38a9ff);
}

.l-bg_sideL .-_lp_name { display: none;}

@media (min-width: 898px) {
    .l-bg,
    .l-bg_sideL,
    .l-bg_sideR {
        height: calc(100% - 80px);
    }
}

@media (max-width: 897.98px) {
    .l-bg,
    .l-bg_sideL,
    .l-bg_sideR {
        height: calc(100% - 60px);
    }

    .l-bg_sideL { background: linear-gradient(to bottom, #0068ff, #38a9ff);}
}

@media screen and (min-width: 1280px) {
    .l-bg_sideL .-_lp_name {
        display: block;
        width: 90%;
        max-width: 358px;
        transform: translateY(-51px);
    }
}

@media screen and (min-width: 1080px) and (max-width: 1279.98px) {
    .l-bg_sideL {
        width: 13%;
        background: linear-gradient(to bottom, #0068ff, #38a9ff);
    }

    .l-bg_sideR {
        width: calc(100% - (454px + 12px + 12px) - 13%);
        left: calc(13% + (454px + 12px + 12px));
    }
}

@media screen and (min-width: 860px) and (max-width: 1079.98px) {
    .l-bg_sideL {
        width: 8%;
        background: linear-gradient(to bottom, #0068ff, #38a9ff);
    }

    .l-bg_sideR {
        width: calc(100% - (454px + 12px + 12px) - 8%);
        left: calc(8% + (454px + 12px + 12px));
    }
}

@media screen and (max-width: 859.98px) {
    .l-bg_sideR .bl_menu { display: none;}
}

@media screen and (max-width: 767.98px) {
    .l-bg_sideL,
    .l-bg_sideR { display: none;}
}


/* -------------------------------------
    l-content
-----------------------------------------*/
@media screen and (max-width: 860px) {
    .l-content-wrap {
        position: relative;
        width: 100%;
        z-index: 10;
    }
}

.l-content {
    position: relative; z-index: 90;
    width: 478px;
    background-color: #fff;
    margin: 0 auto;
    box-shadow: 2px 16px 24px 0 rgba(0, 75, 176, 0.50);
}

@media screen and (max-width: 1279.98px) {
    .l-content {
        margin-left: 13%;
    }
}
@media screen and (max-width: 1080.98px){
    .l-content {
        margin-left: 8%;
    }
}
@media screen and (max-width: 859.98px){
    .l-content {
        margin-left: auto;
    }
}
@media screen and (max-width: 767.98px) {
    .l-content {
        width: 100%;
        border: none;
    }
}



/* -------------------------------------
    l-footer
-----------------------------------------*/
.l-footer {
    text-align: center;
    padding: 40px 0 100px;
    border-top: 1px solid #003067;
}

.l-footer .logo {
    display: block;
    width: fit-content;
    margin: 0 auto 30px;
}

.l-footer .copy {
    font-size: 10px;
    color: #003067;
}



/* -------------------------------------
    bl_menu
-----------------------------------------*/
.bl_menu {
    width: 90%; max-width: 380px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border: 1px solid #d9d9d9;
    padding: 16px 16px 24px 16px;
    transform: translateY(-10px);
    line-height: 1.5;
    position: relative;
}

.bl_menu .-_ttl {
    font-family: Lato;
    font-size: 32px;
    color: #C7861D;
    margin-bottom: 0;
    font-weight: 800;
    margin-bottom: 16px;
}

.bl_menu .__illust {
    position: absolute; right: 25px; top: 20px;
    width: 58px; height: 66px;
}

.bl_menu .-_lists { border-top: 1px dotted #d9d9d9;}

.bl_menu .-_lists > li { border-bottom: 1px dotted #d9d9d9;}

.bl_menu .-_lists li a {
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s;
    color: #113065;
    transition: all 0.3s;
}

.bl_menu .-_lists > li > a { padding: 12px 16px 12px 8px;}

.bl_menu .-_lists li a::after {
    content: '';
    width: 12px; height: 10px;
    background-image: url(../images/ico_arrow_navy.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.bl_menu li a:hover { opacity: 0.8;}

.bl_menu .-__sub_lists { margin-left: 3em;}

.bl_menu .-__sub_lists li {
    list-style-type: disc;
    font-size: 14px;
}

.bl_menu .-__sub_lists li a { padding: 6px 16px 6px 8px;}

.bl_menu .btn-base {
    font-size: 20px;
    padding: 0 36px 0 30px;
}

.bl_menu .-_on-text {
    width: 310px;
    margin-right: auto; margin-left: auto;
}

.bl_menu .btn-base::after { width: 22px; height: 22px;}


/* -------------------------------------
    btn
-----------------------------------------*/
.bl_btn {
    display: flex;
    flex-direction: column; justify-content: center; align-items: center;
    margin-top: calc(40 / 430 * 100vw); margin-bottom: calc(40 / 430 * 100vw);  /* cqw未サポートiPhone15以前対策 */
    margin-top: calc(40 / 430 * 100cqw); margin-bottom: calc(40 / 430 * 100cqw);
}

.bl_btn.--bg {
    background: url(../images/btn_on_background.png) no-repeat center bottom;
    background-size: calc(300 / 430 * 100vw) calc(185 / 430 * 100vw);  /* cqw未サポートiPhone15以前対策 */
    background-size: calc(300 / 430 * 100cqw) calc(185 / 430 * 100cqw);
}

.btn-base {
    width: 100%;
    max-width: calc(342 / 430 * 100vw); max-width: calc(342 / 430 * 100cqw);
    height: 80px;
    padding: 0 calc(36 / 430 * 100vw) 0 calc(30 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    padding: 0 calc(36 / 430 * 100cqw) 0 calc(30 / 430 * 100cqw);
    display: flex;
    justify-content: center; align-items: center;
    gap: 2px;
    border-radius: 10px;
    background: #C7861D;
    box-shadow: 2px 4px 0 0 rgba(0, 0, 0, 0.25);
    color: #fff;
    transition: all 0.3s;
    font-family: "Zen Kaku Gothic New";
    font-size: calc(20 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    font-size: calc(20 / 430 * 100cqw);
    font-weight: 700;
    position: relative;
    text-align: center;
    text-decoration: none;
}

.btn-base:hover {
    color: #fff;
    text-decoration: none;
    background: #d29e4a;
    opacity: 1;
    box-shadow: none;
    transform: scale(1.04, 1.04);
}

.btn-base::after {
    content: '';
    display: block;
    width: calc(21 / 430 * 100vw);  width: calc(21 / 430 * 100cqw);
    height: calc(21 / 430 * 100vw); height: calc(21 / 430 * 100cqw);
    background: url(../images/ico_arrow_white.svg) no-repeat;
    background-size: cover;
    position: absolute; right: 5.4%; top: 50%;
    transform: translateY(-50%);
}

.btn-base.--navy { background: #113065;}

.btn-base.--navy::after { background: url(../images/ico_arrow_white-navy.svg) no-repeat;}

@media screen and (max-width: 767.98px) {
    .btn-base {
        font-size: calc(21 / 430 * 100vw);
    }
}

/* ボタン上テキスト */
.bl_btn .btn_on-text {
  margin-bottom: calc(100 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
  margin-bottom: calc(100 / 430 * 100cqw);
}



/* -------------------------------------
    bg
-----------------------------------------*/
.bg_beige { background: #FAF5E8;}





/* -------------------------------------
    p-event
-----------------------------------------*/
.p-event .-_part {
    padding-top: calc(26 / 430 * 100vw); padding-bottom: calc(40 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    padding-top: calc(26 / 430 * 100cqw); padding-bottom: calc(40 / 430 * 100cqw);
}

.p-event .-__condition {
    margin: calc(24 / 430 * 100vw) calc(40 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    margin: calc(24 / 430 * 100cqw) calc(40 / 430 * 100cqw);
    padding-bottom: calc(50 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    padding-bottom: calc(50 / 430 * 100cqw);
    font-size: calc(12 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    font-size: calc(12 / 430 * 100cqw);
}

.p-event .-__condition .-___title {
    background: #979797;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: calc(1px / 0);
    padding: calc(8 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    padding: calc(8 / 430 * 100cqw);
    line-height: 1;
    margin-bottom: calc(16 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    margin-bottom: calc(16 / 430 * 100cqw);
    font-size: calc(16 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    font-size: calc(16 / 430 * 100cqw);
}

.p-event .-__condition .__title {
    font-size: calc(15 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    font-size: calc(15 / 430 * 100cqw);
}

.p-event .-__condition .__title_sub {
    font-size: calc(14 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    font-size: calc(14 / 430 * 100cqw);
}

.p-event .-__condition .__mb20 {
    margin-bottom: calc(20 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    margin-bottom: calc(20 / 430 * 100cqw);
}

.li-circle_num li { display: flex;}

.li-circle_num li .-__num { margin-right: 0.3em;}

.p-event .-_part.--part2 .__photo {
    width: calc(252 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(252 / 430 * 100cqw);
    margin-right: auto; margin-left: auto;
}

.p-event .-_part.--part2 .bl_btn { margin-top: 0;}

.p-event .-_part.--part3 { padding-bottom: 0;}




/* -------------------------------------
    p-hallo
-----------------------------------------*/
.p-hallo {
    padding-top: calc(57 / 430 * 100vw); padding-bottom: calc(40 / 430 * 100vw);  /* cqw未サポートiPhone15以前対策 */
    padding-top: calc(57 / 430 * 100cqw); padding-bottom: calc(40 / 430 * 100cqw);
    position: relative;
}

.p-hallo .-_title {
    position: absolute; top: 0; z-index: 10;
    width: calc(415 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(415 / 430 * 100cqw);
}

.p-hallo .-_contents {
    width: calc(350 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(350 / 430 * 100cqw);
    margin-right: auto; margin-left: auto;
}

.p-hallo .-_contents .-__title {
    font-size: calc(24 / 430 * 100vw);
    font-size: calc(24 / 430 * 100cqw);  /* cqw未サポートiPhone15以前対策 */
    color: #113065;
    margin-top: calc(16 / 430 * 100vw); margin-bottom: calc(16 / 430 * 100vw);  /* cqw未サポートiPhone15以前対策 */
    margin-top: calc(16 / 430 * 100cqw); margin-bottom: calc(16 / 430 * 100cqw);
    line-height: 1.4;
    font-weight: 700;
}

.p-hallo .-_contents p {
    margin-bottom: 1.5em;
    font-weight: 500;
}

.p-hallo .-_contents p:last-child { margin-bottom: 0;}



/* -------------------------------------
    デザインへのこだわり
-----------------------------------------*/
.p-design {
    background: #F3F3F1;
    padding-top: calc((40 + 16 + 91) / 430 * 100vw); padding-bottom: calc(40 / 430 * 100vw);  /* cqw未サポートiPhone15以前対策 */
    padding-top: calc((40 + 16 + 91) / 430 * 100cqw); padding-bottom: calc(40 / 430 * 100cqw);
    position: relative;
}

.p-design .-_title {
    width: calc(390 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(390 / 430 * 100cqw);
    margin-left: auto;
    position: absolute; z-index: 1;
    left: calc(40 / 430 * 100vw); top: calc(-30 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    left: calc(40 / 430 * 100cqw); top: calc(-30 / 430 * 100cqw);
}

.p-design .-_block {
    position: relative; z-index: 2;
}

.p-design .-_block .-__text {
    width: calc(350 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(350 / 430 * 100cqw);
    margin-right: auto; margin-left: auto;
    font-weight: 500;
}

.p-design .-_block .-__text.--mt {
    margin-top: calc(12 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    margin-top: calc(12 / 430 * 100cqw);
}

.p-design .-_block .-__text .__title {
    color: #113065;
    font-size: calc(24 / 430 * 100vw);
    font-size: calc(24 / 430 * 100cqw);  /* cqw未サポートiPhone15以前対策 */
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 8px;
}

.p-design .-_block .-__text .__title .__num {
    font-size: calc(18 / 430 * 100vw);
    font-size: calc(18 / 430 * 100cqw);  /* cqw未サポートiPhone15以前対策 */
    font-family: "Sorts Mill Goudy";
    color: #C7C7C7;
    text-transform: uppercase;
    font-weight: 400;
    display: block;
    line-height: 0.8;
}

.p-design .-_block .-__text sup {
    font-size: calc(10 / 430 * 100vw);  /* cqw未サポートiPhone15以前対策 */
    font-size: calc(10 / 430 * 100cqw);
    position: relative; top: -5px;
}

.p-design .-_block .-__text .__note {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    margin-top: 4px;
}

.p-design .-_block .-__slider {
    margin-top: calc(32 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    margin-top: calc(32 / 430 * 100cqw);
}

.p-design .-_block .-__slider .__ttl_ej {
    text-align: center;
    color: #113065;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    margin-bottom: calc(16 / 430 * 100vw);  /* cqw未サポートiPhone15以前対策 */
    margin-bottom: calc(16 / 430 * 100cqw);
}

.p-design .-_block .-__slider .__ttl_ej .__en {
    font-family: Jost;
    font-weight: 700;
}

.p-design .-_block .-__slider .__ttl_ej .__jp {
    font-family: "Zen Kaku Gothic New";
    font-size: calc(20 / 430 * 100vw);
    font-size: calc(20 / 430 * 100cqw);  /* cqw未サポートiPhone15以前対策 */
    font-weight: 900;
}



/* -------------------------------------
    コンセプト
-----------------------------------------*/
.p-concept .-_block {
    padding-top: calc(10 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    padding-top: calc(10 / 430 * 100cqw);
    padding-bottom: calc(40 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    padding-bottom: calc(40 / 430 * 100cqw);
}

.p-concept .-_block:nth-of-type(2n-1) { background: #F3F3F1;}

.p-concept .-__message {
    width: calc(350 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(350 / 430 * 100cqw);
    margin: calc(25 / 430 * 100vw) auto; /* cqw未サポートiPhone15以前対策 */
    margin: calc(25 / 430 * 100cqw) auto;
    font-weight: 500;
}

.p-concept .-__message .__architect {
    width: calc(110 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(110 / 430 * 100cqw);
    float: right;
    margin-left: calc(10 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    margin-left: calc(10 / 430 * 100cqw);
}

.p-concept .-__message .__title {
    color: #8D806F;
    font-family: "Zen Kaku Gothic New";
    font-size: calc(18 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    font-size: calc(18 / 430 * 100cqw);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: calc(10 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    margin-bottom: calc(10 / 430 * 100cqw);
}

.p-concept .-__message .__title.--gold { color: #C7861D;}
.p-concept .-__message .__title.--navy { color: #113065;}

.p-concept .-__award {
    background: #F3F3F1;
    padding-top: calc(34 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    padding-top: calc(34 / 430 * 100cqw);
}

.p-concept .-__award .__box {
    width: calc(382 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(382 / 430 * 100cqw);
    margin-right: auto; margin-left: auto;
    background: #fff;
    padding: calc(24 / 430 * 100vw) calc(40 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    padding: calc(24 / 430 * 100cqw) calc(40 / 430 * 100cqw);
    border-radius: 4px;
}

.p-concept .-__award .__box p {
    font-weight: 500;
    margin-top: 1em; margin-bottom: 1.5em;
}

.p-concept .-__award .__box .__link {
    display: flex;
    justify-content: flex-end;
}

.p-concept .-__award .__box .__link a {
    color: #08F;
    font-family: "Zen Kaku Gothic New";
    font-weight: 900;
    display: flex; align-items: center;
    gap: calc(10 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    gap: calc(10 / 430 * 100cqw);
}

.p-concept .-__award .__box .__link a::after {
    content: '';
    width: calc(19 / 430 * 100vw); height: calc(19 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(19 / 430 * 100cqw); height: calc(19 / 430 * 100cqw);
    background: url(../images/ico_arrow_blue.svg);
    background-size: cover;
}

.p-concept .-__award .__box .__link a:hover { opacity: 0.7;}



/* -------------------------------------
    Point ウィザースホーム3つの特長
-----------------------------------------*/
.p-point {
    background: #113065;
    padding: calc(40 / 430 * 100vw) calc(24 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    padding: calc(40 / 430 * 100cqw) calc(24 / 430 * 100cqw);
}

.p-point .-_block {
    margin-bottom: calc(16 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    margin-bottom: calc(16 / 430 * 100cqw);
}



/* -------------------------------------
    Amazonギフトカードプレゼント
-----------------------------------------*/
.p-present {
    padding-bottom: calc(56 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    padding-bottom: calc(56 / 430 * 100cqw);
}

.p-present .-_notes {
    text-align: center;
    font-size: calc(12 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    font-size: calc(12 / 430 * 100cqw);
}






/* -------------------------------------
    カルーセル
-----------------------------------------*/
.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    width: calc(430px * 10);
    animation: scroll 60s linear infinite;
}

.carousel-track img {
    width: 430px;
    height: auto;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-430px * 5));
    }
}



/* -------------------------------------
    スライダー
-----------------------------------------*/
.js_sliders {
	position: relative;
	padding-bottom: calc(20 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    padding-bottom: calc(20 / 430 * 100cqw);
}

.js_sliders .-_slider {
    position: relative;
    z-index: 10;
    overflow: hidden;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
	padding-bottom: 6px;
}

.js_sliders .-__slides {
	display: flex;
	transition: transform 0.5s ease;
	touch-action: pan-y;
}

.js_sliders .-___slide {
	width: calc(330 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(330 / 430 * 100cqw);
    margin: 0 calc(8 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    margin: 0 calc(8 / 430 * 100cqw);
    flex-shrink: 0;
    box-sizing: border-box;
	user-select: none;
	cursor: pointer;
	border-radius: 5px;
	background: #FFF;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.js_sliders .-___slide img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

.js_sliders .-_controls {
	display: flex;
    justify-content: space-between; align-items: flex-start;
    width: calc(362 /430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(362 /430 * 100cqw);
    position: absolute; top: 50%; left: 50%; z-index: 10;
    transform: translate(-50%, -50%);
}

.js_sliders .-_controls button {
	background: #113065;
	border: none;
	color: #fff;
	width: 32px; height: 32px;
	cursor: pointer;
	border-radius: 50%;
    display: flex;
    justify-content: center; align-items: center;
}

.js_sliders .-_controls button img { width: 10px; height: auto;}



/* -------------------------------------
    アコーディオン
-----------------------------------------*/
.js_more-box { position: relative;}

.js_more-contents {
	height: 166px;
	overflow: hidden;
}

.js_more-contents section:last-child { margin-bottom: 60px;}

.js_more-show {
    padding-top: 78px;
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 40px;
    text-align: center;
    background: linear-gradient(180deg, rgb(255, 255, 255, 0.2) 0%, rgb(255, 255, 255, 1) 40%);
    cursor: pointer;
    transition: bottom 0.2s;
}

.js_more-show.active {
    background: linear-gradient(180deg, rgb(255, 255, 255, 0) 0%, rgb(255, 255, 255, 0.2) 30%, rgb(255, 255, 255, 1) 40%);
}

.js_more-show span {
    width: calc(153 / 430 * 100vw); height: calc(40 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(153 / 430 * 100cqw); height: calc(40 / 430 * 100cqw);
    background-image: url(../images/js_more-show_open.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    display: flex;
    justify-content: center; align-items: center;
    position: absolute; bottom: 5px; left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.js_more-show.active span {
    transition: all 0.3s;
    background-image: url(../images/js_more-show_close.png);
}

.js_more-show::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: calc((20 / 430 * 100vw) + 2px); /* cqw未サポートiPhone15以前対策 */
    bottom: calc((20 / 430 * 100cqw) + 2px);
    border-top: 1px solid #000;
    width: calc((100% - (185 / 430 * 100vw)) / 2); /* cqw未サポートiPhone15以前対策 */
    width: calc((100% - (185 / 430 * 100cqw)) / 2);
}

.js_more-show::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: calc((20 / 430 * 100vw) + 2px); /* cqw未サポートiPhone15以前対策 */
    bottom: calc((20 / 430 * 100cqw) + 2px);
    border-top: 1px solid #000;
    width: calc((100% - (185 / 430 * 100vw)) / 2); /* cqw未サポートiPhone15以前対策 */
    width: calc((100% - (185 / 430 * 100cqw)) / 2);
}


/* -------------------------------------
        PC/SP非表示
-----------------------------------------*/
@media screen and (min-width: 768px) {
    .pc_non { display: none;}
}
@media screen and (max-width: 767px) {
    .sp_non { display: none;}
}
