@charset "UTF-8";

/* [ Layout ] ----------------- */
:root {
    --white: #fff;
    --txt-black: #333;
    --bg: #fff0ef;

    /* 丸アンチック */
    --font-maru:
        "AP-MaruAnti", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
        "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro",
        "Hiragino Kaku Gothic StdN", "YuGothic", "Yu Gothic Medium",
        "YuGothic Medium", "Yu Gothic", Meiryo, sans-serif;

    /* ヒラギノStd */
    --font-hira:
        "HiraginoStd", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
        "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro",
        "Hiragino Kaku Gothic StdN", "YuGothic", "Yu Gothic Medium",
        "YuGothic Medium", "Yu Gothic", Meiryo, sans-serif;
}

/* 1rem = 10px */
html {
    font-size: calc(10 / 750 * 100vw);
}

body {
    width: 100%;
    background-color: var(--bg);
}

.con1240 {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.con900 {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    overflow: hidden;
}
a:hover {
    opacity: 0.7;
}

a > img {
    display: block;
    height: auto;
}

.pc-only {
    display: none;
}

/* [ Main ] ----------------- */

/* header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10.5rem;
    padding-inline: 1.8rem;
    background-color: var(--white);
}

.header-logo {
    max-width: 24.6rem;
}

.header-login {
    max-width: 32.2rem;
}

/* fv */

.fv-btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4.5rem 1.5rem;
    width: 100%;
    padding: 4.5rem 0 5.5rem;
    background: url(../img/fv-btn-bg.png) top center/100% 100% no-repeat;
}

.fv-btn01Wrap {
    display: flex;
    justify-content: center;
    grid-column: 1 / 3;
}
.fv-btn01 {
    max-width: 70.2rem;
}

.fv-btn02Wrap,
.fv-btn03Wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
}

.fv-btn02Wrap {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.fv-btn03Wrap {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.fv-btn02,
.fv-btn03 {
    max-width: 34.2rem;
}

.fv-btn02-txt,
.fv-btn03-txt {
    max-width: 27.391rem;
}

/* tab */
.tab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    width: 100%;
    padding: 2.4rem 4.3rem;
    background: var(--bg);
}

.tab-head {
    max-width: 61.1rem;
}

/* バウンドしながら現れるアニメーション */
@keyframes customBounce {
    0%,
    20%,
    53%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0);
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    80% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0) scaleY(0.95);
    }
    90% {
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}

.tab-head.is-bounce {
    animation-name: customBounce;
    animation-duration: 1s;
    animation-fill-mode: both;
    transform-origin: center bottom;
}

.tab-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.8rem 1.8rem;
}

.tab-btn:hover {
    cursor: pointer;
    opacity: 0.7;
}

/* panel */
.panel-sec {
    display: none;
}
.panel-sec.is-act {
    display: block;
    animation: panel-show 0.4s ease-in-out forwards;
}
/* パネル切替 */
@keyframes panel-show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 共通ボタン */
.common-btn {
    width: 19.8rem;
    height: 4rem;
}

/* sec01 */

.panel-sec {
    position: relative;
    z-index: 1;
}

/* sec01-前面スライド */
.slider-list {
    position: absolute;
    top: 35rem;
    left: 0;
    width: 100%;
    padding: 0 !important;
    background: transparent;
    z-index: 2;
    overflow: hidden;
}

.slider-item {
    width: 60rem;
    margin-inline: 4rem;
}

.slick-list {
    padding: 0 !important;
}

.slider-list .slick-slide {
    float: none !important;
    height: auto;
    transition:
        opacity 0.3s,
        transform 0.3s;
}

.slider-list .slick-track {
    display: flex !important;
    align-items: flex-end;
}

.slick-active {
    display: block !important;
}

/* 背景 */
.slider-listBg {
    position: relative;
    z-index: 1;
}

/* コマ送りのドット */
.slick-dots {
    bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
}

.slick-dots li button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.563rem;
    height: 3.388rem;
}

.slick-dots li button:before {
    position: absolute;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    font-size: 1.6rem;
    background-color: #cec9c9;
    opacity: 1;
    content: "";
}
.slick-dots li.slick-active button:before {
    width: 3.563rem;
    height: 3.388rem;
    padding-top: 0;
    background: url(../img/slider-star.png) center/cover no-repeat;
}

/* 次へ、戻るボタン */
.slick-prev,
.slick-next {
    bottom: 10.5rem;
    z-index: 2;
    width: 8.3rem;
    height: 8.3rem;
}
.slick-prev {
    left: 3.3rem;
}
.slick-next {
    right: 3.3rem;
}

.slick-prev:before,
.slick-next:before {
    display: block;
    width: 8.3rem;
    height: 8.3rem;
    font-size: 8.3rem;
    opacity: 1;
    color: transparent;
    content: "";
}

.slick-prev:before {
    background: url(../img/slider-prev.png) center/cover no-repeat;
}
.slick-next:before {
    background: url(../img/slider-next.png) center/cover no-repeat;
}

/* sec01 */
/* クリックボタンがある箇所 */

/* スライド2枚目 */
.slider-itemBg02_07 {
    display: flex;
    justify-content: center;
    height: 41.1rem;
    padding-top: 5.5rem;
    background: url(../img/sec01-sliderBg02_07.png) top center/100% 100%
        no-repeat;
}
.slider-itemBg02_07-btn {
    width: 60.8rem;
}

/* スライド5枚目 */
.slider-itemBg05_11 {
    display: flex;
    justify-content: center;
    height: 17.7rem;
    padding-top: 4rem;
    background: url(../img/sec01-sliderBg05_11.png) top center/100% 100%
        no-repeat;
}

/* 共通ボタン */
.sec01-btnBg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25.4rem;
    background: url(../img/sec01-btnBg.png) top center/100% 100% no-repeat;
}

.sec01-btn,
.sec02-btn,
.sec03-btn,
.sec04-btn {
    width: 47.9rem;
}

/* sec02 */
.sec02_07,
.sec02_10,
.sec02_11 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec02_07 {
    height: 14.2rem;
    background: url(../img/sec02_07.png) top center/100% 100% no-repeat;
}

.sec02_10 {
    height: 21rem;
    padding-bottom: 2rem;
    background: url(../img/sec02_10.png) top center/100% 100% no-repeat;
}

.sec02_11 {
    height: 23.4rem;
    background: url(../img/sec02_11.png) top center/100% 100% no-repeat;
}

/* sec03 */
.sec03_06,
.sec03_09,
.sec03_10 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec03_06 {
    height: 15.6rem;
    background: url(../img/sec03_06.png) top center/100% 100% no-repeat;
}

.sec03_09 {
    height: 20rem;
    padding-bottom: 2.3rem;
    background: url(../img/sec03_09.png) top center/100% 100% no-repeat;
}

.sec03_10 {
    height: 27.2rem;
    background: url(../img/sec03_10.png) top center/100% 100% no-repeat;
}

/* sec04 */

.sec04_07,
.sec04_08 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec04_07 {
    height: 14.8rem;
    background: url(../img/sec04_07.png) top center/100% 100% no-repeat;
}

.sec04_08 {
    align-items: start;
    height: 28.5rem;
    padding-top: 9.5rem;
    background: url(../img/sec04_08.png) top center/100% 100% no-repeat;
}

/* footer */
.footer {
    padding-bottom: 24.4rem;
    background: var(--white);
}
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20rem;
    background: url(../img/footer05.png) top center/100% 100% no-repeat;
}

.footer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.3rem;
}

.footer-item {
    display: flex;
    justify-content: center;
}

.footer-link {
    font-size: 2.2rem;
    font-weight: 400;
    text-decoration: underline;
}

.footer-txt01 {
    width: 14.136rem;
}

.footer-txt02 {
    width: 19.264rem;
}

.footer-txt03 {
    width: 17.599rem;
}

.footer-txt04 {
    width: 24.94rem;
}

/* 追従ボタン */
.follow {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 750px;
    background-color: var(--bg);
    z-index: 9999;
}
.follow a:hover {
    opacity: 1;
}

.follow-inner {
    display: flex;
    width: 100%;
}

.follow01 {
    max-width: 21.2rem;
}

.follow02 {
    max-width: 21.2rem;
}

.follow03 {
    max-width: 32.6rem;
}

.follow04 {
    margin-left: auto;
    max-width: 22.5rem;
}
.follow04-link {
    position: absolute;
    top: -6.7rem;
    right: 0;
}
.follow04-link:hover {
    opacity: 1;
}

/* 画像同士の小数点計算誤差による隙間を塞ぐ（極小マージン） */
.fv-btn,
.slider-itemBg02_07,
.slider-itemBg05_11,
.sec01-btnBg,
.sec02_07,
.sec02_10,
.sec02_11,
.sec03_06,
.sec03_09,
.sec03_10,
.sec04_07,
.sec04_08,
.footer-nav {
    margin-top: -0.1rem;
}
