@charset "utf-8";

/* おおまかにブレイクポイントを決める
SP ~ 519px
tab 520px ~ 959px
PC 960px~
*/

/* =======================
変数宣言
=======================*/
:root {
    --size-sm: 1rem;
    --size-md: 1.6rem;
    --size-lg: 2.2rem;
    --size-xl: 4.2rem;
    --size-xxl: 6.6rem;
    --text-color: #333333;
    --main-color: #f9c1cf;
    --btn-color: #f494a1;
    --sub-color: #cdede7;
    --main-color-rgb: 249, 193, 207;
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --gutter-base: 8px;
    --side-gutter: calc(var(--gutter-base)*2);
    --contents-gutter: calc(var(--gutter-base)*5);
    --contents-gutter-pc: calc(var(--gutter-base)*10);
    --section-gutter: calc(var(--gutter-base)*10);
    --section-gutter-pc: calc(var(--gutter-base)*20);
    --footer-gutter: calc(var(--gutter-base)*30);
}

/* =======================
共通設定
=======================*/
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: var(--size-md);
    color: var(--text-color);
    line-height: 1.75;
    font-family: var(--font-sans);
}

a {
    /* aタグのテキストデコレーションを消す */
    text-decoration: none;
    color: #fff;
}

.center {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

main {
    width: 100%;
}

/* 下スクロール */
.scrolldown {
    position: absolute;
    bottom: var(--gutter-base);
    right: calc(var(--gutter-base)*3);
    animation: anim 1s ease-in-out infinite;
}

@keyframes anim {

    0% {
        bottom: 1%;
    }

    50% {
        bottom: 3%;
    }

    100% {
        bottom: 1%;
    }

}

/*Scrollテキストの描写*/
.scrolldown span {
    position: absolute;
    left: -20px;
    bottom: 10px;
    color: #fff;
    font-size: var(--size-sm);
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
}

.scrolldown:after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: 0;
    /*矢印の形状*/
    width: 1px;
    height: 50px;
    background: #eee;
}

@media screen and (min-width:960px) {

    .scrolldown {
        display: none;
    }

    /* ========min-width:960px======== */
}

/* h2タイトル */
.title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--contents-gutter);
    gap: var(--side-gutter);
}

h2 {
    font-size: var(--size-lg);
    font-weight: 600;
    text-align: center;
}

.title .title_deco {
    display: block;
    transform: scale(0.6);
}

/* コンテンツ */
.contents {
    margin-top: calc(var(--contents-gutter)*1.5);
    margin-bottom: calc(var(--contents-gutter)*1.5);
}

.contents .contents_container {
    margin-bottom: var(--section-gutter);
    padding: 0 var(--side-gutter);
}

.contents .contents_text {
    margin-bottom: var(--contents-gutter);
    text-align: center;
}

.contents .contents_text span {
    color: var(--btn-color);
    font-weight: bold;
}

.contents .contents_text2 {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: var(--contents-gutter);
}


@media screen and (min-width:960px) {

    .contents {
        margin-top: calc(var(--section-gutter)*2.5);
    }

    /* ========min-width:960px======== */
}

/* デコレーション縦 */
.deco .ver {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--contents-gutter);
    margin-bottom: var(--contents-gutter);
    height: 80px;
}

/* ボタン */
.btn {
    border: 1px solid var(--btn-color);
    border-radius: 40px;
    background-color: var(--btn-color);
    display: block;
    max-width: 320px;
    line-height: 80px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    transition: 0.4s;
    position: relative;
    box-shadow: 3px 4px 0 0 rgba(54, 25, 13, 0.2);
}

.btn a {
    display: block;
}

@media screen and (min-width:960px) {

    .btn:hover {
        box-shadow: none;
        transform: translateX(4px) translateY(4px);
    }

    /* ========min-width:960px======== */
}

.image {
    margin-bottom: var(--contents-gutter);
}

/* =======================
wrapper
=======================*/

@media screen and (min-width:960px) {

    .wrapper {
        width: 100%;
    }

    .wrapper .split {
        width: 50%;
    }

    .wrapper .left {
        position: fixed;
        height: 100vh;
    }

    .wrapper .right {
        margin-left: 50%;
        display: flex;
        flex-wrap: wrap;
    }

    .key_visual .key_visual_inner {
        height: 100vh;
    }

    /* ========min-width:960px======== */
}


/* =======================
ヘッダー
=======================*/
header {
    background-color: rgba(0, 0, 0, 0.32);
    z-index: 100;
    position: fixed;
    width: 100%;
    top: 0;
    padding-top: var(--gutter-base);
    padding-left: var(--gutter-base);
    padding-right: var(--gutter-base);
    padding-bottom: var(--gutter-base);
}

header .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header_inner h2 {
    width: 42px;
}

header .hum_menu {
    position: relative;
    cursor: pointer;
    width: 42px;
    height: 42px;
    z-index: 100;
    mix-blend-mode: difference;
}

header .hum_menu span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 10px;
    height: 2px;
    background-color: #ffffff;
    width: 64%;
}

header .hum_menu span:nth-of-type(1) {
    top: 10px;
}

header .hum_menu span:nth-of-type(2) {
    top: 20px;
}

header .hum_menu span:nth-of-type(3) {
    top: 30px;
}

header.on .hum_menu span:nth-of-type(1) {
    top: 16px;
    left: 13px;
    transform: translateY(4px) rotate(-45deg);
    width: 64%;
}

header.on .hum_menu span:nth-of-type(2) {
    opacity: 0;
}

header.on .hum_menu span:nth-of-type(3) {
    top: 28px;
    left: 13px;
    transform: translateY(-8px) rotate(45deg);
    width: 64%;
}

/* スマホ用ナビ */
header nav {
    background-color: rgba(205, 237, 231, 0.95);
    position: fixed;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: calc(var(--gutter-base)*14);
    padding-left: calc(var(--gutter-base)*5);
    padding-right: calc(var(--gutter-base)*5);
    transition: all 0.6s;
    /* ふわっと消せないdisplay: none;じゃない方法で消す */
    opacity: 0;
    /* リンクは消えた訳ではないので、visibility: hidden; */
    visibility: hidden;
    z-index: 10;
}

header.on nav {
    /* 押されたらふわっと出てくる */
    top: 0;
    opacity: 1;
    visibility: visible;
}

header nav a {
    font-size: var(--size-lg);
    line-height: 1.4;
    /* border-bottom: 1px solid #6e524c; */
    display: block;
    text-align: center;
    padding: var(--side-gutter) 0;
    mix-blend-mode: difference;
}


@media screen and (min-width:300px) {
    header nav a {
        font-size: var(--size-md);
    }

    /* ========min-width:300px======== */
}

@media screen and (min-width:520px) {

    header {
        padding-left: calc(var(--gutter-base)*2);
        padding-right: calc(var(--gutter-base)*2);
    }

    header nav a {
        font-size: var(--size-lg);
        line-height: 1.6;
    }

    /* ========min-width:520px======== */
}


@media screen and (min-width:960px) {
    header {
        /* padding: calc(var(--gutter-base)*3); */
        margin-bottom: var(--section-gutter);
        width: 50%;
    }

    /* header .header_inner {
        max-width: 800px;
        margin: 0 auto;
    } */

    /* ハンバーガーメニューを消す */
    /* 詳細度が負けているので、同等にする header .hum_menu と後ろに書かれたものが優先される*/
    header .hum_menu {
        display: none;
    }

    header nav {
        visibility: visible;
        opacity: 1;
        /* positionを元の状態に戻す */
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        /* 背景の色を消す と文字も透明になって見えなくなる → aタグで色指定*/
        background-color: transparent;
        order: 3;
    }

    header nav ul {
        display: flex;
    }

    header nav ul li {
        display: inline-block;
        margin: var(--gutter-base);
    }

    header nav ul li a {
        font-size: var(--size-md);
        color: #ffffff;
        text-align: center;
        border-bottom: none;
        line-height: 0.8;
        display: block;
        background-image: linear-gradient(to top, var(--sub-color) 80%, transparent 50%);
        background-repeat: no-repeat;
        background-size: 0 6px;
        background-position: 0 bottom;
        transition: 0.3s;
    }

    header nav ul li:last-of-type {
        margin-right: 0;
        padding-right: 0;
    }


    header nav ul li a span {
        font-size: var(--size-sm);
    }

    header nav ul li a:hover {
        background-size: 100% 6px;
    }

    /* ========min-width:960px======== */
}

/* =======================
フッター
=======================*/

footer {
    background-color: var(--main-color);
    color: var(--text-color);
    margin-top: calc(var(--contents-gutter-pc)*1.5);
    padding-top: var(--contents-gutter);
    padding-bottom: calc(var(--gutter-base)*2);
}

footer img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 260px;
    margin-bottom: calc(var(--gutter-base)*2);
}

footer address {
    text-align: center;
    font-style: normal;
    font-family: var(--font-serif);
    font-weight: 300;
    margin-bottom: calc(var(--contents-gutter)*1.5);
}

footer small {
    display: block;
    text-align: center;
}

@media screen and (min-width:960px) {

    footer {
        width: 100%;
    }

    /* ========min-width:960px======== */
}