@charset "UTF-8";

/* スマホ表示---FontSize目安
16px/320px*100=5vw */
/* スマホ(1.4vw)*3.2vw */

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: Noto_Sans_JP;
    src: url(../font/Noto_Sans_JP/static/NotoSansJP-Regular.ttf);
}

@font-face {
    font-family: Sawarabi_Gothic;
    src: url(../font/Sawarabi_Gothic/SawarabiGothic-Regular.ttf);
}

#hanburger {
    /* スマホ用ハンバーガーメニュー */
    display: none; /* チェックボックスを非表示 */
}

body {
    font-family: Sawarabi_Gothic;
    color: #630;

    background-image: url(../images/body.jpg);
    background-position: center;
    background-size: cover;
}

a {
    color: #630;
}

a:hover {
    color: rgb(170, 107, 43);
    transition: 0.2s;
}

ul {
    list-style-type: none;
}

.flex {
    display: flex;
}

/* ヘッダー-ロゴ */
header {
    position: fixed;
    width: 100%;
    height: fit-content; /* res_5vw */
    background-color: rgba(204, 255, 153, 0.8);
    backdrop-filter: blur(5vw);
    z-index: 1000;
}

header .flex {
    /* res */
    display: block;
}

header h1 img {
    /* サイトロゴ画像 */
    display: block;
    height: 15vw; /* res_5vw */
    margin: 0 auto; /* res */
    padding: 3vw 0; /* res */
}

/* ------------------------------- */
/* ハンバーガーメニュー（参考あり）
https://kouhekikyozou.com/css_mega_menu */

.menu_button { /* ボタンのスタイル */
    position: fixed;
    top: 5vw;
    right: 5vw;
    width: 10vw; /* 幅 */
    height: 10vw; /* 高さ */
    background: #ffffff; /* 背景色 */
    z-index: 10;
}
   
.menu_button::before { /* アイコンのスタイル */
    font-family: "Font Awesome 5 Free";
    content: "\f0c9"; /* アイコン「３本線」 */
    font-weight: 900;
    position: absolute;
    color: #630;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    
    font-size: 5vw;
}
   
#hanburger:checked + .menu_button::before { /* アイコンのスタイル（チェック済み） */
    content: "\f00d"; /* アイコン「×印」 */
    font-size: 5vw;
}
   
nav { /* メニュー全体のスタイル */
    visibility: hidden; /* メニューを非表示 */
    position: fixed;
    top: 22vw;
    right: 0;
    overflow-y: scroll;
    -ms-overflow-style: none;
    /* スクロールバーを非表示　Microsoft Edge */
    scrollbar-width: none;
    /* スクロールバーを非表示　Firefox */
    width: 63%;
    height: 50vh;
    padding: 10vw 0.5vw;
    margin: 1vw;
    border: 1vw solid rgb(255, 255, 255);
    border-radius: 30vw 0 30vw 0;
    background-color: rgba(198, 253, 142, 0.8);
    backdrop-filter: blur(5vw);
    font-family: Noto_Sans_JP;
}

nav::-webkit-scrollbar {
    /* スクロールバーを非表示　Google Chrome,Safari */
    display: none;
}
   
#hanburger:checked ~ nav { /* メニュー全体のスタイル（チェック済） */
    visibility: visible; /* メニューを表示 */
    animation: hanburger 0.3s;
}

@keyframes hanburger {
    0% {
        transform: translateX(10vw);
        overflow: hidden;
    }
    100% {
        transform: translateX(0vw);
    }
}

nav a { /* 各項目のスタイル */
    display: block;
    width: 100%;
}

.gnavi-li:last-child {
    margin-bottom: 5vw;
}
   
.gnavi-li > a { /* 親項目のスタイル */
    font-weight: bold;
    padding: 0 0 2vw 5vw;
    margin-top: 7vw;
    text-decoration: none;
    font-size: calc( 1.6vw * 3.2); /* res_1.6vw */
    letter-spacing: 0.05em; /* res */
}

nav .gnavi .gnavi-li a div {
    /* 英字と日本語の段落分け */
    font-size: calc( 0.9vw * 3.2); /* res_1vw */
}
   
.dropdown-ul > li > a {
    /* 子項目 */
    padding-left: 7vw;
    text-decoration: none;
    line-height: 2.3;
    font-size: calc( 1.2vw * 3.2); /* res_1.2vw */
}

.dropdown-ul > li > a::before {
    content: "\0bb";
}

/* ------参考ここまで */

/* ------------------------------- */
/* ヘッダー-ナビ → resハンバーガーメニューへ */

/* ------------------------------- */
/* 上部へボタン */
.to_top {
    /* 上部へ飛ぶボタンの画面固定 */
    position: fixed;
    z-index: 10000;
}

.to_top a {
    /* "ページ上部へ" */
    display: block;
    position: absolute;
    width: 8em;
    top: 92vh; /* res_92vh */
    left: 60vw; /* res_88vw */
    padding: 1vw;
    border-radius: 4vw;
    text-align: center;
    text-decoration: none;
    font-size: calc( 1.2vw * 3.2); /* res_1.2vw */
    background-color: rgba(198, 253, 142, 0.8); /* res */
}

.to_top a .fa-circle-arrow-up {
    /* 上部へボタンの矢印アイコン */
    font-size: calc( 1.2vw * 3.2); /* res_1.2vw */
    margin-right: 0.2em;
}

/* ------------------------------- */
/* メイン */
main {
    /* mvからカテゴリまで */
    width: 100%;
    padding-top: 23vw; /* res_5vw */
    /* ↑Gナビ用の上部余白 */
}

/* メイントップ */

/* .back-pattern res_none */

main .main-visual {
    /* mvエリア */
    width: 100%;
    margin-bottom: 10%;
    overflow: hidden;

    background-color: #ebfadd;
    box-shadow: 0 0.5vw 1vw #ddd, 0 -0.5vw 1vw #ddd;
}
.swiper {
    width: 100%;
    margin: 0 auto;
}
.swiper-wrapper img {
    display: block;
    width: 100%;
}

/* メイン-カテゴリ */
main h2 {
    width: 92%;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    font-size: calc( 2vw * 3.2);
}

main h2 i {
    margin-right: 0.3em;

    animation: h2-anime 2s infinite;
}
@keyframes h2-anime {
    0% {
        rotate: -10deg;
    }
    66% {
        rotate: 10deg;
    }
    100% {
        rotate: -10deg;
    }
}

.category-area {
    /* カテゴリエリア */
    width: 85%; /* res_90% */
    margin: 0 auto;
    border-top: 0.6vw dashed #630; /* res_0.2vw */
}
.category-area:nth-of-type(2) {
    border-bottom: 0.6vw dashed #630;
}

.category-flex {
    display: block;
    margin: 5vw 0; /* res_2vw 2vw */
}

.category-area .category-flex .category-a {
    /* 画像エリア(tag-pの親) */
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 1;
}

.category-area .category-flex .category-a img {
    /* カテゴリ画像(計2つ) */
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover; /* トリミング */
    object-position: 0 10%; /* トリミング位置の調整 */
    vertical-align: bottom;
    border-radius: 2vw;
}

.category-area .category-flex .category-a .tag-p {
    /* "Items","Order" */
    position: absolute;
    top: 55%;
    left: 55%;
    width: 7em; /* res_8em */
    padding: 0.1em 0.2em;
    text-align: center;
    font-size: calc( 1.4vw * 3.2); /* res_1.4vw */
    letter-spacing: 0.1em;
    background: #630;
    color: #fff;
    z-index: 10;
}

.tag-p i {
    /* "Items","Order"の矢印アイコン */
    margin: 0.2em;
}

.category-area .category-flex .category-a:hover {
    filter: brightness(95%);
    transform: translateY(0.2vw);
    transition: 0.2s;
}

.category-area .category-flex .category-p-area {
    /* 画像右の説明文 */
    width: 100%;
    margin-top: 6vw; /* res_2.5vw */
    font-size: calc( 1.2vw * 3.2); /* res_1.2vw */
}

.category-p-area h3 {
    /* "選べるフラワーブーケ・フラワーアレンジメント" */
    /* "自由度の高い“カスタムオーダー”も承っています" */
    margin-bottom: 1em;
    font-size: calc( 1.4vw * 3.2); /* res_1.4vw */
    font-weight: 600;
    letter-spacing: 0.1em;
}

.category-p-area p {
    width: 100%;
    text-indent: 1em;
}

.category-p-area p + a {
    /* "すべてのアイテムを見る" */
    display: block;
    width: 86%;
    margin: 2vw auto 1vw auto;
    text-align: right;
    font-size: calc( 1.2vw * 3.2); /* res_1.2vw */
}

.category-ul-area {
    /* カテゴリ1"用途","予算" */
    display: flex;
    width: 90%;
    margin: 0 auto;
    padding: 3vw;
    justify-content: space-between;
    border: 0.1vw dotted #630;
    border-radius: 1vw;
}

.category-ul > p {
    width: 80%;
    margin-top: 3%;
    margin-left: -12%;
}
.category-ul > p i {
    margin-right: 0.2em;
}
.category-ul > p .fa-gift {
    color: #b1360d;
}
.category-ul > p .fa-coins {
    color: #b1850d;
}


.category-p-area .category-ul-area ul {
    /* カテゴリ1"用途","予算" */
    width: 100%;
    line-height: 2;
    font-size: calc( 1.1vw * 3.2); /* res_1.1vw */
}

.category-p-area .category-ul-area ul li {
    /* カテゴリ1"用途","予算" */
    margin-left: 1em;
}

/* メイン-カテゴリ2 */
.category-flex:nth-of-type(2) .category-a {
    margin-top: 15vw;
}

.category-p-area p {
    text-indent: 1em;
    white-space: pre-wrap;
}
.category-p-area p:nth-child(3) {
    /* "選べる花材は時期や場合により限りがあります。" */
    font-size: calc( 1vw * 3.2); /* res_1vw */
    color: #c30;
}

.category-p-area p span {
    /* カテゴリ2注釈 */
    font-size: calc( 0.8vw * 3.2); /* res_0.8vw */
    color: #c30;
}

.category-p-area .category-ul-2 li {
    /* "カスタムオーダーとは？" */
    /* "オーダーページへ" */
    margin: 0.5em 1em;
    font-size: calc( 1.3vw * 3.2); /* res_1.3vw */
}

.category-p-area .category-ul-2 li .fa-chevron-right {
    /* カテゴリ2矢印 */
    font-size: calc( 1vw * 3.2); /* res_1vw */
    margin-right: 0.3em;
}

/* ------------------------------- */
/* お知らせ */
.section-news {
    width: 80%; /* res_66% */
    margin: 5vw auto;
}

.section-news h2 {
    /* お知らせ見出し */
    position: relative;
    width: 100%;
    text-align: center;
    font-size: calc( 2vw * 3.2); /* res_2vw */
    font-weight: normal;
    border: none; /* res_border */

    z-index: 10;
}

.section-news h2 i {
    position: absolute;
    top: 80%;
    left: 85%;
    font-size: calc( 3.6vw * 3.2);
}

.section-news h2 div {
    /* お知らせ段落分け */
    font-size: calc( 1vw * 3.2); /* res_1vw */
}

.section-news .news-ul {
    width: 100%; /* res_-84.5% */
    margin-left: 0; /* res_auto */
    margin-top: 2vw; /* res_-4% */
    font-size: calc( 1.2vw * 3.2); /* res_1.2vw */
    border: 0.1vw solid #630;
    z-index: 1;
}

.section-news .news-ul li {
    line-height: 3;
    border-bottom: 0.1vw dotted #630;
}

.section-news .news-ul li:last-child {
    border-bottom: transparent;
}

.section-news .news-ul li a {
    display: block;
    padding: 0 2em 1em 2em;
    line-height: 1.5;
}

.section-news .news-ul li time {
    display: block;
    padding: 0 1em;
}

.section-news p a {
    display: block;
    line-height: 2;
    font-size: calc( 1.2vw * 3.2); /* res_1.2vw */
    text-align: right;
    text-decoration: none;
}

/* インスタ口コミ */
.section-insta {
    width: 100%;
    padding: 12vw 0;
    background-color: #ebfadd;
    box-shadow: 0 0.5vw 1vw #ddd, 0 -0.5vw 1vw #ddd;
}

/* インスタスライドショー(参考あり)
https://rita-plus.com/blog/css-animation-scroll-infinity/ */
@keyframes infinity-scroll {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0%);
    }
}
.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}
.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0;
    animation: infinity-scroll 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
    width: calc(100vw / 1.2);
}
.scroll-infinity__item>img {
    width: 100%;
    vertical-align: bottom;
}
.scroll-infinity__wrap:hover .scroll-infinity__list{
    animation-play-state: paused;
}
/* ------参考ここまで */

.section-insta a {
    /* "投稿をもっと見る" */
    display: block;
    width: fit-content;
    height: 20vw;
    margin: 1vw auto;
    text-align: center;
    text-decoration: none;
    font-size: calc( 1.2vw * 3.2); /* res_1.3vw */
}

.section-insta a:hover {
    color: #630;
}

.section-insta a i {
    margin: 0 0.3em;
    font-size: calc( 1.8vw * 3.2); /* res_1.8vw */
}

.section-insta a span {
    display: block;
    padding: 1.2em;
    margin: 1em 0 0.5em 0; /* res_bottom 0.6em */
    line-height: 2.6vw;
    border-radius: 4vw;
    font-size: calc( 1.2vw * 3.2); /* res_1.6vw */
    border: 1vw solid #fff;
    color: #fff;
    background: linear-gradient(to right,
    rgba(247, 207, 0, 0.7),
    rgba(246, 37, 2, 0.7) 45%,
    rgba(182, 47, 82, 0.7) 75%,
    rgba(113, 58, 166, 0.7));
}

.section-insta a span:hover {
    filter: brightness(120%) sepia(60%);
    transition: 0.2s;
}

/* フッター */
footer {
    margin-top: 10vw;
    padding: 3vw 4vw;
    background: #E9D0B8;
    box-shadow: 0 0.5vw 1vw #ddd, 0 -0.5vw 1vw #ddd;
}

.footer-nav {
    padding-bottom: 10vw;
    border-bottom: 0.5vw dashed #630;
}

.footer-nav ul {
    margin: 4vw 0; /* res_2vw */
}

.footer-nav .footer-nav-h-li {
    width: fit-content;
    font-size: calc( 1.5vw * 3.2); /* res_1.5vw */
    margin:  2em 0 0.5em 0; /* res */
}

.footer-nav .footer-nav-h-li i {
    /* fa-leaf */
    font-size: calc( 1.6vw * 3.2); /* res_1.6vw */
    margin-right: 0.4em;
}

.footer-nav ul .flex li a {
    width: fit-content;
    font-size: calc( 1.1vw * 3.2); /* res_1.2vw */
}

.footer-nav ul .flex li a .fa-brands {
    /* sns-icon */
    font-size: calc( 2vw * 3.2); /* res_2vw */
}

.footer-nav .flex .fa-caret-right {
    /* fa-caret-right */
    /* res */
    display: none;
}

.footer-nav ul .flex {
    margin-left: 2.5em;
}

.footer-nav ul:nth-child(2) .flex,
.footer-nav ul:nth-child(3) .flex,
.footer-nav ul:nth-child(4) .flex {
    display: block;
    line-height: 2;
}

.footer-nav ul .flex li {
    width: fit-content;
    margin-right: 1em;
}

.footer-nav ul .flex li:last-child {
    margin-right: 0;
}

.footer-nav + ul {
    width: fit-content;
    margin: 10vw auto 0 auto;
    font-size: calc( 1vw * 3.2); /* res_1vw */
}

.footer-nav + ul .flex {
    display: block; /* res */
    line-height: 1.8; /* res */
}

footer p {
    width: 100%;
    margin: 5vw 0 15vw 0;
    font-size: calc( 1vw * 3.2); /* res_1vw */
    text-align: center;
}