@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Felipa&family=Londrina+Shadow&display=swap');

/* 中空洞のやつ
 font-family: "Miltonian", serif;
  font-family: "Tilt Prism", sans-serif;
  font-family: "Ribeye Marrow", serif;
   font-family: "Rampart One", sans-serif;*/

/* 筆記体みたいなやつ
font-family: "Felipa", serif; */

/*商品名に使用
 font-family: "Trade Winds", system-ui;
  font-family: "Akaya Kanadaka", system-ui; */
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.background_test {
    background: linear-gradient(-45deg, rgb(247, 247, 129) 5%, #76e7e9);
}

.background_test2 {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

.flex {
    display: flex;
    gap: 20px;
}

/* >は直下のclass名に効く */
header>.flex,
footer>.flex {
    justify-content: space-between;
    align-items: center;
}

.flex-menu {
    color: rgb(255, 255, 255);
    font-family: "Ribeye Marrow", serif;
    font-size: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 100px;
    border: 3px solid #000;
    border-radius: 10px;
    padding: 0 50px 5px;
    background-color: #f3b8d6;
    text-shadow: 5px 5px 20px rgb(255, 255, 255);
}

.flex-menu li:hover {
    transform: scale(1.3);
}

li a {
    text-decoration: none;
}

.cat {
    position: fixed;
    top: 20px;
    right: calc((100% - 1200px) / 2);
    /* calcは画面を100％とすると画像1200pxを
    中央にするとき両側に均等に余白を分ける計算をする */
    z-index: 9999;
    /* カートを一番上にするために1より大きい数字を入れる */
}

header {
    margin-bottom: 150px;
}

.top-image {
    position: relative;
    margin-top: 20px;
}

img {
    max-width: 100%;
    padding: auto;
}

p {
    font-family: "メイリオ";
    color: #fff;

}

.first-text-one {
    font-size: 45px;
    text-shadow: 1px 1px 20px #180601;
    position: absolute;
    top: 60px;
    right: 30px;
}

.first-text-one p {
    font-family: "Felipa", serif;
}

.first-text-two {
    font-size: 35px;
    text-shadow: 1px 1px 20px #180601;
    position: absolute;
    bottom: 60px;
    right: 20px;
}
.fuwa{
    animation: fuwa 0.5s both;
}



@keyframes fuwa {
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity:1;
        transform: translateY(0);
    }
}
/* アニメーション下からフワッと現れて現れてからはその場にいる */

section {
    margin: 150px 0 10px 0;
}

h2 {
    margin-bottom: 30px;
    font-family: "メイリオ";
    font-size: 26px;
}

ul,
li {
    list-style: none;
}


.top-image {
    width: 1200px;
    max-width: 100%;
}

.top-image img {
    width: 100%;
}

.item-list {
    font-family: "Akaya Kanadaka", system-ui;
    width: 1200px;
    max-width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.item-list li {
    transition: all 0.5s;
    /* アニメーションでフォバーをするとフワッと出てくる */
}

.item-list li:hover {
    transform: scale(1.3);
    /* カーソルを当てると1.3倍大きくなる */
}

dl {
    text-align: center;
    font-size: 20px;
}

footer .footer-inner {
    margin: 150px 0;
    align-items: stretch;
}

footer nav.flex {
    align-items: flex-end;
    gap: 140px;
}

.flex-text-inner p{
    font-family: "Rampart One", sans-serif;
    color: #000;
    font-size: 22px;
}

.flex-text-inner p:hover {
    transform: scale(1.1);
}

.flex-text-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.button {
    width: 50px;
	height: 50px;
	background-color: #000;
    display: none;
}

.flex-menu {
    overflow: hidden;
    transition: .3s;
}


@media (max-width: 800px) {
    .cat{
       margin-top: 70px;
        right: 20px;
    }
    .hamburger {
        display: block;
        width: 44px;
        height: 34px;
        background-color:transparent;
    }

    .hamburger {
        display: block;
        width: 80%;
        height: 4px;
        background-color: transparent;
    }

    .flex-menu {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        gap: 0;
        font-size: 24px;
    } 

	/* ハンバーガーメニュのスタイル設定 */
    nav {
        position: fixed;
        position: relative;
        top: 24px;
        width: 100%;
        z-index: 10;
    }
    ul {
        /*最初はナビゲーションボタンは非表示*/
        display: none;
        /* list-style: none; */
    }

    li a{
        padding: 8px;
        color: #464646;
        display: block;
        text-align: center;
        text-decoration: none;
    }

    .hamburger {
        position: fixed;
        top: 32px;
        right:32px;
        cursor: pointer;
        width: 32px;
        height: 24px;
        z-index: 10;
    }
    .hamburger span {
        /*3本の線を作る*/
        transition: all .3s;
        position: absolute;
        height: 2px;
        background-color: #333;
        width:100%;
        z-index: 10;
    }
    .hamburger span:nth-of-type(1) {
        /*上の線の位置*/
        top: 4px;
    }
    .hamburger span:nth-of-type(2) {
        /*真ん中の線の位置*/
        top: 12px;
    }
    .hamburger span:nth-of-type(3) {
        /*下の線の位置*/
        top: 20px;
    }
    .hamburger.open span:nth-of-type(1) {
        /*openのとき、上の線を右斜めにする*/
        top: 10px;
        transform: translateY(6px) rotate(-33deg);
    }
    .hamburger.open span:nth-of-type(2) {
        /*真ん中の線を消す*/
        opacity: 0;
    }
    .hamburger.open span:nth-of-type(3) {
        /*下の線を左斜めにする*/
        top: 22px;
        transform: translateY(-6px) rotate(33deg);
    }

}