@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: 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;
}

/* 【Ul】ナビゲーションメニュー（ロゴ部分以外のメニュー）*/
.nav-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 60px;
}

/* 【li】*/
/*メニューの文字間隔 */
.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;
}

/*トップ画像ないので余白つくる*/
/* ケーキページトップ余白 */
header .space-1 {
    max-width: 100vw;
    height: 70vh;
}

/* メニュー(food/cafe)ページトップ余白 */
header .space-2 {
    max-width: 100vw;
    height: 20vh;
}

/* ウェルカムメッセージ*/
.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: 200px;
}

h1 .title {
    font-size: 2em;
    line-height: 1.5em;
    font-weight: bold;
}

/* info　共通 */
main {
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    /* background-color: aqua; 確認用*/
    text-align: center;
    padding: 50px 0;
}

/* メインタイトル共通 */
h2 {
    font-size: 2em;
    line-height: 1.5em;
    letter-spacing: 3px;
    margin-bottom: 30px;
    border-bottom: #333333 solid 1px;
}

main p {
    font-size: 1.1em;
    line-height: 3em;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.info {
    font-size: 1.2em;
    border-bottom: #333333 solid 1px;

}

/* sns */
.contact {
    /* background-color: aqua; 確認用*/
    text-align: center;
}

.sns img {
    margin: 50px;
}

.sns a:hover {
    opacity: 0.8;
}

/* 【order cakes】ページ　Slider */
.shop {
    max-width: 1800px;
    height: auto;
    background-color: #9971402e;
    margin: 0 auto;
    padding: 50px 0;
}

.shop h3,
p {
    text-align: center;
    letter-spacing: 3px;
}

.slider-2 {
    max-width: 1000px;
    margin: 0 auto;
}

.slider-2 img {
    width: 100%;
    padding: 20px;
}

/* 【contact】【Reservations】ページ 共通設定*/
.form {
    max-width: 600px;
    background-color: #edf6fa;
    margin: 0 auto;
    padding: 30px;
    box-shadow: 3px 3px 5px #8888;
    border-radius: 5px;
}

.form-item {
    width: 100%;
    margin-bottom: 20px;
}

/* インプット項目 */
.form-label {
    width: 100%;
    font-size: 1.1em;
    margin-bottom: 5px;
    /* background-color: aqua;確認用 */
    text-align: left;
    padding-left: 10px;
}

.form-input {
    width: 100%;
    height: 35px;
    text-align: center;
    background-color: #fff;
    border-radius: 5px;
    /* インプット部分　書体*/
    font-family: "Klee One", cursive;
    font-weight: 400;
    font-style: normal;
    color: #333333;
}

/* リセットシートで消されたラジオボタン表示させる */
/* input {
    appearance: revert;
} */

button,
input,
select,
textarea {
  -webkit-appearance: auto;
  appearance: auto;
  border-width: 1px;
  background-color: #fff;
  font-size: 0.9em;
  padding: 0.4em;
}
 
/* 選択系パーツ */
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
  vertical-align: initial;
}
 
/* ボタン */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  background-color: #f0f0f0;
  border: solid 1px #666;
  border-radius: 3px;
}
 
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
  background-color: #ddd;
  cursor: pointer;
}

/* ラジオボタンの項目 */
label {
    /* 書体*/
    font-family: "Klee One", cursive;
    font-weight: 400;
    font-style: normal;
    color: #333333;
    padding: 5px;
}

/* お問合せのテキストエリア */
textarea {
    background-color: #fff;
    border-radius: 5px;
    margin: 5px 0 10px 0;
}

/* 送信ボタン */
.submit {
    text-align: center;
    /* background-color: aqua; */
}

.form-btn {
    /* 書体*/
    font-family: "Klee One", cursive;
    font-weight: 400;
    font-style: normal;
    color: #333333;
    padding: 5px;
    /* background-color: #b7f3fd; */
    width: 130px;
    text-align: center;
    border-radius: 5px;
    border: #333333 1px solid;
    font-size: 1.2em;
}


/* フッター/アドレス */
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%;
    }

    /* ハンバーガーメニュー作成【表示】*/
    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;
    }

    /* ハンバーガーボタンを押すとオープン */
    .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;
    }

    /* 【Food/Cafe】ドロップダウンメニューを横並びに*/
    .drop-menu-list {
        top: 0;
        /*メニューの位置を調整*/
        padding: 10px 0;
        /*上下に余白*/
    }



    /* 【Info】または【MENU】*/
    main {
        width: 100%;
        height: 100%;
        padding: 0 50px;
        /*左右に余白*/
    }

    h2 {
        font-size: 1.1em;
    }

    main p {
        font-size: 1em;
    }

    main img {
        width: 80%;
        /*メニュー画像レスポンシブに*/
    }


    /* sns */
    .contact {
    }

    .sns img {
    }

    .sns a:hover {
    }

    /* フッター/アドレス */
    footer {
        height: 100%;
    }

    footer p {
    }

    footer img {
    }

    footer small {
    }

    /* オーダーケーキ */

    .button img {
        width: 100px;
    }

    .button a:hover {
    }

}


/* スマホ用(~599px) */
@media screen and (max-width:599px) {

    /* ヘッダー */
    header {
    }

    .header {
        height: 80px;
        padding: 5px 30px;
    }

    .header .logo img {
        /* width: 15%; */
    }

    /*トップ画像ないので余白つくる*/
    /* ケーキページトップ余白 */
    header .space-1 {
        height: 40vh;
    }

    /* メニュー(food/cafe)ページトップ余白 */
    header .space-2 {
        height: 20vh;
    }

    /* ウェルカムメッセージ全体*/
    .top {
        width: 100%;
        height: 100%;
    }

    /* ウェルカムメッセージ部分 */
    h1 {
        width: 50%;
        /*メッセージの枠せまく*/
        background-color: rgba(255, 255, 255, 0.7);
        top: 100px;
        /*位置を上にあげる*/
        font-size: 0.6em;
        /*フォント小さく*/
    }


    /* 【Info】または【MENU】 */
    main {
        width: 100%;
        height: 100%;
    }

    h2 {
        font-size: 0.9em;
    }

    main p {
        font-size: 0.7em;
    }

    /* 【お問い合わせ】ページ 設定*/
.form {
    max-width: 100%;
    padding: 15px;
}

.form-item {
    width: 100%;
    margin-bottom: 10px;
}

/* インプット項目 */
.form-label {
    width: 100%;
    font-size: 0.8em;
    margin-bottom: 5px;
    /* background-color: aqua; */
    padding-left: 5px;
}

.form-input {
    width: 100%;
    height: 25px;
}

/* ラジオボタンの項目 */
label {
    padding: 5px;
    font-size: 0.9em;
}

/* お問合せのテキストエリア */
textarea {
    margin-top: 5px;
    width: 100%;
    /* レスポンシブ */
}

/* 送信ボタン */

.form-btn {
    width: 100px;
    font-size: 0.9em;
}

    /* sns */
    .contact {
        margin-bottom: 30px;
    }

    .sns img {
        margin: 20px;
    }

    .shop h3 {
        font-size: 0.8em;
    }

    .shop p {
        font-size: 0.7em;
    }


    /* フッター */
    footer p {
        font-size: 0.8em;
    }

    footer img {
    }

    /* オーダーケーキ */
    .button img {
        width: 70px;
    }

}