@charset "UTF-8";

/* PC表示---FontSize目安1.4vw */
/* ↑ 14px(基準とするフォントサイズ)÷1000(基準とする画面幅)×100 */

* {
    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: 5vw;
    background-color: rgba(204, 255, 153, 0.8);
    backdrop-filter: blur(5vw);
    z-index: 1000;
}

header h1 img {
    /* サイトロゴ画像 */
    position: absolute;
    height: 5vw;
    margin-left: 3vw;
    vertical-align: bottom;
    z-index: 10000;
}

/* ------------------------------- */
/* ヘッダー-ナビ */
nav {
    /* ナビゲーション親 */
    width: 100%;
    font-family: Noto_Sans_JP;
}

nav .gnavi {
    /* ナビ-メニューエリア */
    display: flex;
    width: 60%;
    margin-left: 35%;
}

nav .gnavi .gnavi-li {
    /* メニューからドロップダウンのカテゴリまで */
    width: 100%;
    height: 5vw;
    text-align: center;
}

nav .gnavi .gnavi-li:hover {
    /* ホバー : メニューの背景色 */
    background-color: rgba(102, 51, 0, 0.2);
    transition: 0.2s;
}

nav .gnavi .gnavi-li .menu-a {
    position: relative;
    /* メニュー(計3つ) */
    display: block;
    margin-top: 0.6vw;
    text-decoration: none;
    border-left: 0.1vw solid #630; /* メニューの横区切り */
    font-size: 1.4vw;
}
.menu-a > i {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    font-size: 2vw;
}

nav .gnavi .gnavi-li:hover .menu-a {
    /* ホバー : メニューの文字色 */
    color: #630;
    transition: 0.2s;
}

nav .gnavi .gnavi-li:last-child .menu-a {
    /* メニューの横区切り */
    border-right: 0.1vw solid #630;
}

nav .gnavi .gnavi-li a div {
    /* 英字と日本語の段落分け */
    font-size: 1vw;
}

.gnavi-li:hover .dropdown-ul {
    /* ホバー : メニューにホバーでドロップダウンリスト表示 */
    position: absolute;
    top: 5vw;
    visibility: visible;
    opacity: 1;

    transition: 0.2s;
    z-index: 100;
}

.dropdown-ul {
    /* ドロップダウンリスト */
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 20%;
    background-color: #E9D0B8;
    backdrop-filter: blur(5vw);
    transition: 0.1s;
}

.dropdown-li a {
    /* ドロップダウンリストのテキスト設定 */
    display: block;
    font-size: 1.1vw;
    line-height: 3;
    color: #630;
    border-top: 0.1vw dotted #630;
}

.dropdown-ul .dropdown-li:first-of-type a {
    border-top: none;
}

.dropdown-li a:hover {
    /* ホバー : ドロップダウンリストの文字色と背景色 */
    color: #630;
    background-color: rgba(255, 255, 255, 0.5);
    transition: 0.2s;
}

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

.to_top a {
    /* "ページ上部へ" */
    display: block;
    position: absolute;
    width: 8em;
    top: 92vh;
    left: 88vw;
    font-size: 1.2vw;
    text-align: center;
    text-decoration: none;
    border-radius: 2vw;
    background-color: rgba(255,255,255,0.8);
}

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

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

/* メイントップ */
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: 70%;
    margin: 0 auto;
    border: 0.2vw solid #c2ab96;
}
.swiper-wrapper img {
    display: block;
    width: 100%;
}

/* メイン-カテゴリ */
main h2 {
    width: 80%;
    margin: 1em auto;
    text-align: center;
    font-weight: bold;
    font-size: 2.6vw;
}

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: 80%;
    margin: 0 auto;
    border-top: 0.2vw dashed #630;
}
.category-area:nth-of-type(2) {
    border-bottom: 0.2vw dashed #630;
}

.category-flex {
    display: flex;
    margin: 2vw;
}

.category-area .category-flex .category-a {
    position: relative;
    width: 25%;
    height: 18vw;
    margin-right: 3vw;
    border-radius: 2vw;
    z-index: 1;
}

.category-area .category-flex .category-a img {
    /* カテゴリ画像(計2つ) */
    width: 100%;
    vertical-align: bottom;
    border-radius: 2vw;
    box-shadow: 1vw 1vw 1vw rgba(102, 51, 0, 0.5);
}

.category-area .category-flex .category-a .tag-p {
    /* "Items","Order" */
    position: absolute;
    top: 8%;
    left: 45%;
    width: 8em;
    padding: 0.1em 0.2em;
    text-align: center;
    font-size: 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-a:hover img {
    box-shadow: 0.5vw 0.5vw 0.5vw rgba(102, 51, 0, 0.5);
    transition: 0.2s;
}

.category-area .category-flex .category-p-area {
    /* 画像右の説明文 */
    width: 75%;
    margin-top: 2.5vw;
    font-size: 1.2vw;
}

.category-p-area h3 {
    /* "選べるフラワーブーケ・フラワーアレンジメント" */
    /* "自由度の高い“カスタムオーダー”も承っています" */
    font-size: 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: fit-content;
    margin-top: auto;
    margin-left: 1.2em;
    font-size: 1.2vw;
}

.category-ul-area {
    /* カテゴリ1"用途","予算" */
    width: 95%;
}

.category-ul > p {
    width: 20%;
    margin-top: 3%;
    margin-left: -4%;
}
.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 .category-ul ul {
    /* カテゴリ1"用途","予算" */
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 3%;
    border: 0.1vw dotted #630;
    border-radius: 1vw;
    font-size: 1.1vw;
}

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

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

/* メイン-カテゴリ2 */
.category-p-area p {
    text-indent: 1em;
    white-space: pre-wrap;
}
.category-p-area p:nth-of-type(2) {
    /* "選べる花材は時期や場合により限りがあります。" */
    font-size: 1vw;
    color: #c30;
}

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

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

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

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

.section-news h2 {
    /* お知らせ見出し */
    position: relative;
    width: 15%;
    padding: 0.5% 1%;
    text-align: center;
    font-size: 2vw;
    font-weight: bold;
    border: 0.1vw solid #630;

    z-index: 10;
}

.section-news h2 i {
    position: absolute;
    top: 30%;
    left: 550%;
    font-size: 4vw;
}

.section-news h2 div {
    /* お知らせ段落分け */
    font-size: 1vw;
    font-weight: normal;
}

.section-news .news-ul {
    position: relative;
    width: 84.5%;
    margin-left: auto;
    margin-top: -4%;
    font-size: 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: inline-block;
}

.section-news .news-ul li time {
    display: inline-block;
    width: 20%;
    padding-left: 3em;
}

.section-news p a {
    display: block;
    line-height: 2;
    font-size: 1.2vw;
    text-align: right;
    text-decoration: none;
}

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

/* インスタスライドショー(参考あり) */
@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 / 4.5);
}
.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: 6vw;
    margin: 1vw auto;
    text-align: center;
    text-decoration: none;
    font-size: 1.3vw;
}

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

.section-insta a i {
    margin: 0 0.3em;
    font-size: 1.8vw;
}

.section-insta a span {
    display: block;
    padding: 1.2em;
    margin-bottom: 0.6em;
    line-height: 2.6vw;
    border-radius: 2vw;
    font-size: 1.6vw;
    border: 0.3vw 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));
    transition: 0.2s;
}

.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 {
    font-size: 1.2vw;
}

.footer-nav ul {
    margin: 2vw 0;
}

.footer-nav .footer-nav-h-li {
    width: fit-content;
    font-size: 1.5vw;
}

.footer-nav .footer-nav-h-li i {
    /* fa-leaf */
    font-size: 1.6vw;
    margin-right: 0.4em;
}

.footer-nav ul .flex li a {
    font-size: 1.2vw; /* res_1.2vw */
}

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

.footer-nav .flex .fa-caret-right {
    /* fa-caret-right */
    font-size: 1.6vw;
    line-height: 1.8vw;
    margin: 0 0.5em 0 1.5em;
}

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

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

.footer-nav + ul {
    width: 100%;
}

.footer-nav + ul .flex {
    width: fit-content;
    margin: 5vw auto 3vw auto;
}

.footer-nav + ul li {
    font-size: 1vw;
    margin-right: 2em;
}

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

footer p {
    width: 100%;
    font-size: 1vw;
    text-align: center;
}