@charset "utf-8";

/* font-family: 'Playfair Display', serif;
font-family: 'Zen Maru Gothic', serif; */
/* ---------------------
---------共通css-------- */
html {
    font-size: 62.5%;
    overflow-x: hidden;

}

body {
    font-size: 1rem;
    font-family: 'Playfair Display', 'Zen Maru Gothic', serif;
    line-height: 1.7;
    letter-spacing: .1em;
    color: #14001A;
    background-color: #FFFCF9;
    padding: 0;
    /* はみ出た丸の要素を非表示 */
    overflow-x: hidden;
}

*,
::before,
::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #14001A;

}

p {
    /* 最小1.2rem | SP:1.4rem | TB:1.5rem | PC:1.6rem | 最大1.8rem */
    /* font-size: clamp(1.2rem, calc(0.25vw + 1.3rem), 1.8rem); */

    /* 最小1.4rem,最大1.8rem */
    font-size: clamp(1.4rem, 1.2343rem + 0.7072vw, 1.8rem);
    /* 自動で文章を折り返し */
    text-wrap: balance;
    /* 自動で単語も折り返し */
    word-break: auto-phrase;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

section {
    padding-top: 48px;
    padding-bottom: 64px;
}

.margin {
    padding-top: 48px;
    padding-bottom: 64px;
}

.wraper {
    max-width: 100%;
    padding: 0 24px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

/* グレーの背景 */
.bg_beige {
    background-color: #Eee;
}



/* コンタクトのボタン装飾 */
.button {
    display: flex;
    max-width: 200px;
    height: 50px;
    padding: 20px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background-color: #14001A;
    color: #FFF;
    margin: 0 auto;
}

.btn-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* ボタンの背景がグレーになっていたため透明化 */
    background-color: transparent;
    margin-top: 48px;
    margin-bottom: 48px;
}

.btn-container img {
    vertical-align: text-bottom;
}

/* ボタンの文字間隔を広げる */
.btn-container a {
    letter-spacing: 0.14em;
}

.button:hover {
    color: #14001A;
    /* background: linear-gradient(149deg, rgba(251,114,153,1) 0%, rgba(244,152,178,1) 27%, rgba(182,230,122,1) 50%, rgba(180,67,202,1) 75%, rgba(237,137,166,1) 95%);); */
    /* background: rgb(204, 135, 16); */
    /* background: linear-gradient(149deg, rgba(204, 135, 16, 1) 0%, rgba(255, 255, 255, 1) 27%, rgba(182, 230, 122, 1) 58%, rgba(67, 202, 182, 1) 77%, rgba(208, 169, 0, 1) 100%); */
    background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
    margin-left: 20px;
    transition-property: background-color, margin-left;
    transition-duration: 300ms;
    transition-timing-function: ease-in;
    transition-delay: 0ms;
    animation: img-change 5s;
}


/* 途中で消えてから50％で表示する */
@keyframes img-change {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    20% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    /* 50% {
        background: linear-gradient(149deg, rgba(204,135,16,1) 0%, rgba(255,255,255,1) 27%, rgba(182,230,122,1) 58%, rgba(67,202,182,1) 77%, rgba(208,169,0,1) 100%);

    } */
    100% {
        opacity: 1;
    }
}

/* btnの装飾ここから */
.btn {
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    background-color: #14001A;
    border-radius: 50px;
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2);
    /* ボーダーの色と太さ */
    padding: 10px 30px;
    text-align: center;

    /*アニメーションの指定*/
    transition: ease .2s;
}

/* ホバーした時の線を消す */
.btn-container a:hover {
    background-image: linear-gradient(120deg, #84fab0 0%, #ABBDF9 60%, #E2C1EB 80%, #8fd3f4 100%);
    /* ボーダーの色と太さ */
    outline-color: rgba(226, 132, 132, 0.137);
}

/*ボタン内spanの形状*/
.btn span {
    position: relative;
    z-index: 2;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color: #fff;
}

.btn:hover span {
    color: #14001A;
}


/*   背景が流れる（斜め） */
.bgskew::before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: -130%;
    /*色や形状*/
    /* background: linear-gradient(149deg, rgba(204, 135, 16, 1) 0%, rgba(255, 255, 255, 1) 27%, rgba(182, 230, 122, 1) 58%, rgba(67, 202, 182, 1) 77%, rgba(208, 169, 0, 1) 100%); */
    background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
    width: 120%;
    height: 100%;
    transform: skewX(-25deg);

}

/*hoverした時のアニメーション*/
.bgskew:hover::before {
    animation: skewanime .5s forwards;
    /*アニメーションの名前と速度を定義*/

}

@keyframes skewanime {
    100% {
        left: -10%;
        /*画面の見えていない左から右へ移動する終了地点*/
    }
}

/* btnの装飾ここまで */


h1 {
    font-size: 3.2rem;

    @media screen and (min-width:768px) {
        font-size: 4.8rem;
    }
}

h2 {
    /* 最小1.6rem | SP:2rem | TB:2.5rem | PC:3rem | 最大2.4rem */
    font-size: clamp(1.6rem, calc(0.25vw + 1.5rem), 2.4rem);
    /* font-size: 2.4rem; */
    letter-spacing: 0.38em;
}

.category-label {
    font-size: 1.4rem;
    color: #a49774;
}

/* テキストを大文字にする */
.upp {
    text-transform: uppercase;
}

/* テキストの頭文字を大文字にする */
.cap {
    text-transform: capitalize;
}


/* 中央寄せ */
.center {
    text-align: center;
}


/* 最初以外のセクションのtopに余白 */
section:not(:first-child) {
    margin-top: 60px;
}





/* -------------------------------------
ヘッダー
------------------------------------- */
/* ヘッダーの幅を100% 、固定、均等配置*/
.header {
    max-width: 100%;
    width: 100%;
    height: 70px;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;

    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;

    padding: 0 24px;

    /* background-color: aquamarine; */
}

/* ヘッダーのロゴの大きさ */
.header__title img {
    width: 50px;
    height: 50px;

}

/* -------------------------------------
ヘッダー-SP
------------------------------------- */
/* PCナビを非表示 */
.PC-nav {
    display: none;
}


/* ======================================== 
ハンバーガーメニュー
======================================== */
/* クリック前のボタン */
.toggle {
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 24px;
    z-index: 999;
}

/* トグルボタンの線 */
.toggle span {
    display: inline-block;
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #ddd;
    border-radius: 8px;
    transition: all .3s linear;
}

/* トグルボタンの上の線 */
.toggle span:nth-of-type(1) {
    width: 50%;
    top: 22px;
    background-color: #14001A;
}

/* トグルボタンの下の線 */
.toggle span:nth-of-type(2) {
    width: 30%;
    top: 29px;
    background-color: #14001A;
}


/* トグルボタンのホバー、フォーカスした時の
　　アウトラインと影 */
.toggle:hover,
.toggle:focus {
    box-shadow: 0 0 1rem rgba(219, 212, 212, 0.5);
}



/* ======================================== 
クリック後の処理
======================================== */
/* トグルボタンの背景色をベージュへ */
.toggle.active {
    background-color: #Eee;
}

/* 上の線の位置 */
.toggle.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    ;
    width: 35%;
}

/* 下の線の位置 */
.toggle.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}

/*アクティブになったエリア*/
#g-nav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: absolute;
    z-index: 999;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg {
    position: fixed;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #Eee;
    /*丸のスタート位置と形状*/
    transform: scale(0);
    /*scaleをはじめは0に*/
    right: -50px;
    top: -50px;
    transition: all .6s;
    /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
}



#g-nav.panelactive #g-nav-list {
    display: block;
    /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
    opacity: 0;
    /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity: 1;
}




/*リストのレイアウト設定*/
#g-nav li {
    text-align: center;
}

#g-nav li a {
    color: #333;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 1.8rem;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}













/* ======================================== 
ここから768px以上
======================================== */
@media screen and (min-width:768px) {

    /* 画面幅768px以上に適用 */
    /* ヘッダーのロゴの大きさ */
    .header__title img {
        width: 64px;
        height: 64px;
    }

    .PC-nav a {
        font-size: 1.6rem;
    }

    /* mvのテキストの大きさ */
    .mv_text_inner p {
        font-size: 2.4rem;
    }


}