@charset "UTF-8";

/* 共通設定 */
body {
    background-color: antiquewhite;
}


h1,
h2,
h3,
p,
li {
    font-family: "Klee One", cursive;
    font-weight: 400;
    font-style: normal;
    color: #333333;
}

.font-txt {
    font-family: "Josefin Slab", serif;
    font-optical-sizing: auto;
    font-weight:
    font-style: normal;
}

/* ヘッダー */
header {
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 1800px;
    height: auto;
    position: relative;
    margin: 0 auto;
}

/* 【ロゴ含む】ナビゲーションメニュー部分 */
.header {
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.825);
    padding: 15px 30px;
    margin: 0 auto;
    position: fixed;
    /*スクロールにあわせる*/
    z-index: 1;
}

/* ハンバーガーメニュー作成【非表示】*/
.drawer_toggle {
    width: 25px;
    z-index: 1000;
    /*.headerより上に*/
    display: none;
    cursor: pointer;
}

.drawer_toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333333;
    transition: all 0.4s;
}

.drawer_toggle span:first-of-type {
    margin-bottom: 5px;
    /*7px→5px*/
}

.drawer_toggle span:last-child {
    margin-top: 5px;
     /*7px→5px*/
}

/* ×ボタン */
.drawer_toggle.is-active span:nth-child(1) {
    transform: translate(0px, 6px) rotate(45deg);
    margin-top: 20px;
        /* ×の上に余白 */
}

.drawer_toggle.is-active span:nth-child(2) {
    display: none;
}

.drawer_toggle.is-active span:nth-child(3) {
    transform: translate(0px, -6px) rotate(-45deg);
    margin-top: 10px;
}

/* 【nav】ナビゲーションメニュー（ロゴ部分以外のメニュー）*/
.global_nav {
    /* background-color: aqua; テスト用背景色*/
    margin: 0 auto;
}

/* 【li】ナビゲーションメニュー（ロゴ部分以外のメニュー）*/
.nav-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 60px;
    /* background-color: aqua; テスト用背景色*/
}

/* メニューの文字間隔 */
.menu-item a {
    letter-spacing: 2px;
    position: relative;
    /*アンダーラインの位置を決めるための【基準】*/
}

/* ホバー時の色 */
.menu-item a:hover {
    color: #bb89a0;
}

/* メニューをホバーしたら下線がでる */
.menu-item a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #f1bbd4;
    bottom: -1px;
    /*アンダーラインがａタグ下端から現れる*/
    transform: scale(0, 1);
    /*アンダーラインの縮尺率。ホバー前はｘ方向に０*/
    transform-origin: left top;
    /*変形（アンダーラインの伸長）の原点がａタグ（各メニュー）の左端*/
    transition: transform 0.3s;
    /*変形の時間*/
}

.menu-item a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、ｘ方向に1（相対値）伸長*/
}

/* 【menu】ドロップダウンメニューのホバースタイル*/
.drop-menu:hover .drop-menu-list {
    opacity: 1;
    /* 不透明度を最大に */
    transition: opacity .3s, visibility .3s;
    /* アニメーション設定 */
    visibility: visible;
    /* 下層メニューを【表示】 */
}

/* 【menu】ドロップダウンメニュー */
.drop-menu {
    position: relative;
}

/* 【Food/Cafe】ドロップダウンメニューを横並びに*/
.drop-menu-list {
    opacity: 0;
    /* 不透明度を最小に（最初は非表示） */
    position: absolute;
    left: 0;
    top: 100%;
    transition: opacity .3s, visibility .3s;
    /* アニメーション設定 */
    visibility: hidden;
    /*下層メニューを【非表示】*/
    width: max-content;
    z-index: 1;
    display: flex;
    /*横並び*/
    flex-direction: row;
    /*横並び*/
    gap: 10px;
    /*アイテムの間隔*/
    /* background-color: aqua;確認用 */
}

/* 【Food/Cafe】ドロップダウンメニュー */
.drop-menu-item {
    padding: 5px;
}

.drop-menu-item a {
    font-size: 0.8em;
}

/* メインビジュアル画像 */
.slider-1 img {
    width: 100%;
}

/* ウェルカムメッセージ全体*/
.top {
    max-width: 1800px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

/* ウェルカムメッセージ部分 */
h1 {
    width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.825);
    position: absolute;
    top: 30%;
    /*メッセージの位置*/
    display: none;
    /* フェードインの為一旦非表示に */
}

/* Soil Cafeを右からスライドさせる設定 */
h1 .font-txt {
    display: inline-block; /*横並び*/
    position: absolute;
    right: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transition: width 2s, opacity 2s; /*幅と透明度のアニメーション*/
}


/* メッセージ冒頭部分 */
h1 .title {
    font-size: 2em;
    line-height: 1.5em;
    font-weight: bold;
}

/* コンセプト */
main {
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    /* background-color: aqua; */
    text-align: center;
    padding: 50px 0;
}

h2 {
    font-size: 1.2em;
    line-height: 1.5em;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

main p {
    font-size: 1.1em;
    line-height: 3em;
    letter-spacing: 3px;
}

/* コンテンツメニュー */
.content {
    max-width: 1800px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 50px;
    background-color: #9971402e;
    margin: 0 auto;
}


.menu img {
    border-radius: 5px;
    width: 100%;
}

.menu p {
    text-align: center;
    /* background-color: aqua; */
    padding: 10px;
}

.menu a:hover {
    opacity: 0.8;
}

/* sns */
.contact {
    /* background-color: aqua; 確認用*/
    text-align: center;
}

.sns img {
    margin: 50px;
}

.sns a:hover {
    opacity: 0.8;
}

/* 店舗写真　Slider */
.shop {
    max-width: 1800px;
    height: auto;
    /* background-color: aqua; 確認用*/
    margin: 0 auto;
    padding: 50px 0;
}

.shop h3,
p {
    text-align: center;
    letter-spacing: 3px;
    padding: 0 30px;
}


.slider-2 img {
    width: 100%;
    padding: 20px;
}

/* フッター/アドレス */
footer {
    height: auto;
    text-align: center;
    padding: 30px;
    background-color: rgba(206, 193, 193, 0.522);
}

footer p {
    line-height: 1.5em;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

footer img {
    margin: 10px;
}

footer small {
    color: #333333;
}

/* オーダーケーキ */
.button img {
    position: fixed;
    left: 10px;
    bottom: 10px;
}

.button a:hover {
    opacity: .8;
}

/* タブレット用（～1024px) */
@media screen and (max-width:1024px) {

    /* ヘッダー */
    header {
        width: 100%;
        height: 100%;
    }

    /* ウェルカムメッセージ*/
    .top {
        width: 100%;
        height: 100%;
    }

    /* ウェルカムメッセージ部分 */
    h1 {
        top: 25%;
        /*メッセージの位置*/
    }

    /* ハンバーガーメニュー作成【表示】*/
    header .drawer_toggle {
        display: block;
    }

    /* 【バーガーボタンで開く部分】ナビゲーションメニュー（ロゴ部分以外のメニュー）*/
    .nav-menu {
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
        display: none;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* ハンバーガーボタンを押すとオープン【is-active付与】 */
    .nav-menu.is-active {
        display: flex;
    }

    /*ヘッダーのロゴセンターに*/
    .header .logo {
        width: 100%;
        text-align: center;
    }

    .header .logo img {
        width: 15%;
        /*ロゴ小さく*/

    }

    /* ハンバーガーボタンを押すと消える */
    .header .logo.is-active img {
        display: none;
    }

    /* ドロップダウンメニュー */
    .drop-menu-item {
        width: 100%;
        text-align: center;
        padding: 10px;
        /* background-color: bisque; */
    }


    /* 【menu】ドロップダウンメニュー */
    .drop-menu {
        position: relative;
        /*位置の基準*/
    }

    /* 【Food/Cafe】ドロップダウンメニューを横並びに*/
    .drop-menu-list {
        top: 0;
        /*メニューの位置を調整*/
        padding: 10px 0;
        /*上下に余白*/
    }

    /* コンセプト */
    main {
        width: 100%;
        height: 100%;
    }

    h2 {
        font-size: 1.1em;
    }

    main p {
        font-size: 1em;
    }

    /* コンテンツメニュー */
    .content {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .menu img {
    }

    .menu p {
    }

    .menu a:hover {
    }

    /* sns */
    .contact {
    }

    .sns img {
    }

    .sns a:hover {
    }

    /* 店舗写真　Slider */
    .shop {
        width: 100%;
        height: 100%;
    }

    .shop h3,
    p {
    }


    .slider-2 img {
        /* width: 100%; */
        /* padding: 20px; */
    }

    /* フッター/アドレス */
    footer {
        height: 100%;
    }

    footer p {
    }

    footer img {
    }

    footer small {
    }

    /* オーダーケーキ */

    .button img {
        width: 100px;
    }

    .button a:hover {
    }

}

/* スマホ用(~599px) */
@media screen and (max-width:599px) {

    /* ヘッダー */
    header {
        /*スマホ画面いっぱいに表示*/
        width: 100vw;
        height: 100vh;
    }

    .header {
        height: 80px;
        padding: 5px 30px;
    }

    .header .logo img {
        /* width: 15%; */
    }

    .slider-1 img {
        width: auto;
        height: 100vh;
    }

    /* ウェルカムメッセージ部分*/
    h1 {
        width: 50%;/*メッセージの枠を小さく*/
        font-size: 0.6em;
    }

    h1 .title {
    }

    /* コンセプト */
    main {
        width: 100%;
        height: 100%;
    }

    h2 {
        font-size: 0.9em;
    }

    main p {
        font-size: 0.7em;
    }


    /* sns */
    .contact {
        margin-bottom: 30px;
    }

    .sns img {
        margin: 20px;
    }

    .sns a:hover {
    }

    /* 店舗写真　Slider */
    .shop {
    }

    .shop h3 {
        font-size: 0.8em;
    }

    .shop p {
        font-size: 0.7em;
    }


    .slider-2 img {
    }

    /* フッター/アドレス */
    footer {
    }

    footer p {
        font-size: 0.8em;
    }

    footer img {
    }


    /* オーダーケーキボタン */
    .button img {
        width: 70px;
    }

}