@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Opti&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Noto+Sans+JP&display=swap");

@font-face {
    font-family: "times";
    src: url("./fonts/timr45w.ttf") format("opentype");
}

html {
    line-height: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    color: #000;
    fill: #000;
    font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN",
        "Yu Mincho", "MS PMincho", "Times New Roman", serif;
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-character;
    font-feature-settings: "palt";
}

main hr {
    margin: 0;
    padding-bottom: 0 !important;
    border: none;
}

article header {
    padding-top: 0 !important;
}

a {
    color: #000;
    transition: 0.5s all;
}

a:hover,
a:active {
    opacity: 0.7;
    color: initial;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    transition: 0.5s all;
}

a img:hover {
    opacity: 0.7;
}

svg {
    width: 1em;
    height: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

#wrapper {
    width: 100%;
    margin: auto;
    background: #000;
}

.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

.none {
    display: none;
}

/* ------------------------------
　ヘッダー
------------------------------ */
header {
    width: 100%;
    position: relative;
}

#header {
    /* position: absolute; */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    transition: opacity 0.2s ease-out;
    z-index: 100;
    background-color: #000;
    height: 65px;
}

#header.top-header {
    /* background-color: transparent; */
    background-color: #000;
}

.header-wrap {
    /* max-width: 1200px; */
    width: 100%;
    margin: auto;
    /* position: relative; */
    position: fixed;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

#header .head-icon {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0 5px auto 0;
}

#header .head-icon .buy-btn {
    background-color: #fff;
    color: #000;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1;
}

#header .head-icon .buy-btn span {
    font-size: 1rem;
}

.head-logo {
    display: block;
    position: relative;
    left: 20px;
    margin: 10px 0;
}

.head-logo img {
    height: 120px;
}

.head-icon li {
    padding: 0 0 0 2rem;
}

.head-icon li img {
    width: 40px;
}

.head-icon li.cart-icon {
    padding: 0 0 0 2rem;
}

.cart-icon a {
    position: relative;
}

.number-item {
    background: #cfa920;
    color: #fff;
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 1;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    top: -6px;
    left: -8px;
}

@media screen and (max-width: 767px) {
    #header {
        position: fixed;
    }

    #header .head-icon {
        display: none;
    }

    .head-icon li.cart-icon {
        padding: 0 0 0 2rem;
    }

    .head-logo {
        margin: 0;
    }

    .head-logo img {
        height: 50px;
        margin: 5px 0;
    }
}

/* ------------------------------
　ハンバーガーメニュー
------------------------------ */
#g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #000;
    transition: all 0.6s;
}

#g-nav.panelactive {
    right: 0;
}

#g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
}

#g-nav ul {
    position: absolute;
    z-index: 999;
    width: 100%;
    top: 60px;
}

#g-nav li {
    list-style: none;
    text-align: left;
    padding-left: 5vw;
    border-bottom: 1px solid #ccc;
}

#g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.openbtn {
    position: fixed;
    z-index: 9999;
    top: 5px;
    right: 5px;
    cursor: pointer;
    width: 32px;
    height: 50px;
}

.openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    height: 1px;
    border-radius: 2px;
    background-color: #fff;
    width: 100%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 25px;
}

.openbtn span:nth-of-type(3) {
    top: 35px;
}

.openbtn.active span:nth-of-type(1) {
    top: 20px;
    transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 32px;
    transform: translateY(-6px) rotate(45deg);
}

/* ------------------------------
　ヘッダーグロナビ
------------------------------ */
.gnav {
    position: relative;
    /* margin: 0 0 0 0; */
    margin: 1.5rem 3rem auto auto;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gnav_wrap {
    list-style: none;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

.gnav_item {
    position: relative;
    text-align: center;
    padding: 0 2rem;
    height: 10px;
}

.gnav_item:not(:last-child) {
    margin-right: 0;
}

.gmenu {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.1rem;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    display: block;
    line-height: 1;
}

.gmenu:hover {
    opacity: 0.6;
    color: #fff;
}

.gmenu_sm {
    display: block;
    font-size: 1vw;
    letter-spacing: 0.1rem;
    font-weight: 700;
    color: #da1209;
    margin-top: -0.5vw;
}

/* ------------------------------
　トップページのMV
------------------------------ */
.slick-slide.moving {
    /* -webkit-animation-name: scale;
  animation-name: scale;
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; */
}

@keyframes scale {
    0% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.mainMv {
    position: relative;
    width: 100%;
    padding: 90px 0 0;
    background: url("../img/fv_bg.jpg") center no-repeat;
    background-size: cover;
}

.mainBgTop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background: linear-gradient(#c6deeb, rgba(198, 222, 235, 0));
}

.mainBgBottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background: linear-gradient(rgba(198, 222, 235, 0), #c6deeb);
}

.mainImg {
    display: block;
    width: 560px;
    margin: 95px auto 0 auto;
}

.top-main .mainMv {
    padding: 0;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.top-main .mainMv .mv-logo {
    position: absolute;
    top: 40%;
    left: 10%;
    z-index: 2;
}

.top-main .mainMv .mv-txt {
    position: absolute;
    top: 58%;
    left: 10%;
    z-index: 2;
}

.top-main .mainMv .mv-txt p {
    font-size: 2.2rem;
    letter-spacing: 10px;
    font-family: "Noto Serif JP", serif;
    display: inline-block;
    background-color: rgba(255, 255, 255, 1);
    margin: 0 0 10px 0;
    padding: 3px 10px;
    color: #000;
}

.top-main .mainMv .mv-deco {
    position: absolute;
    top: 52%;
    left: 0;
    z-index: 1;
}

#main-slider {
    overflow: hidden;
    height: 100vh;
}

.slider {
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
}

.slider img {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -300%;
    right: -300%;
    margin: auto;
    width: 100vw;
}

.second-mainMv {
    width: 100%;
    margin-top: 60px;
    padding: 10rem 0 3rem;
    background-color: #000;
}

.second-mainMv h2 {
    display: block;
    position: relative;
    margin: auto;
    text-align: center;
    font-size: 3.6rem;
    color: #fff;
    font-family: "Adobe Garamond Pro", "Yu Mincho Demibold", "YuMincho Demibold",
        "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho",
        "Times New Roman", sans-serif;
    letter-spacing: 4px;
}

.second-mainMv h2 p {
    font-size: 1.5rem;
    display: block;
    margin-top: 1.5rem;
}

.second-mainMv h2 p.bg-white-headding {
    background-color: #fff;
    color: #000;
    padding: 1rem 4rem;
    width: fit-content;
    margin: 1rem auto 3rem;
}

.mini-height {
    margin-top: -20px;
}

.mini-height h2 {
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
}

@media screen and (max-width: 767px) {
    .mainMv {
        width: 100%;
        position: relative;
        padding: 60px 0 0;
    }

    #main-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .slider {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .slider img {
        position: absolute;
        width: auto;
        height: 100%;
        display: block;
        top: 0;
        bottom: 0;
        left: -300%;
        right: -300%;
        margin: auto;
    }

    #main-slider,
    .slider,
    .slider img {
        overflow: hidden;
        height: 40rem;
        object-fit: cover;
    }

    .second-mainMv {
        margin-top: 0px;
    }

    .second-mainMv h2 {
        font-size: 3.2rem;
    }

    .top-main .mainMv {
        height: 40rem;
    }

    .top-main .mainMv .mv-txt p {
        font-size: 1.5rem;
        letter-spacing: 5px;
    }

    .top-main .mainMv .mv-logo {
        top: 34%;
        left: 1%;
        width: 86%;
    }

    .top-main .mainMv .mv-deco {
        top: 51%;
        width: 64%;
    }

    .top-main .mainMv .mv-txt {
        top: 62%;
        left: 10%;
    }
}
.product-show{
    color: #000;
}
/* ------------------------------
　トップページセクション
------------------------------ */
.top-main {
    color: #fff;
}

.top-main a {
    color: #fff;
}



.top_concept {
    color: #fff;
    position: relative;
    padding: 0;
    background-size: auto;
}

.top_concept_wrap {
    margin: auto;
    padding: 80px 0 98px 0;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.top_concept p {
    position: relative;
    line-height: 2.4;
    font-size: 1.7rem;
}

.top_concept_label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 42px 0 0 0;
}

.top_concept_label img {
    width: 170px;
}

.concept-logo {
    margin: auto;
    text-align: center;
    top: 17rem;
    position: relative;
}

.concept-pic {
    position: absolute;
}

.scroll-bar {
    text-align: center;
}

.scroll-bar p {
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    top: auto;
    font-weight: normal;
    font-family: "Montserrat", sans-serif;
}

.scroll-bar::after {
    content: "";
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 7rem;
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    .top_concept {
        background: url(../img/top_concept_sp.png) top center no-repeat;
        background-size: contain;
        height: 65rem;
    }

    .concept-pic-area {
        display: none;
    }

    .top_concept_wrap {
        padding: 0;
        top: -1rem;
    }

    .concept-logo {
        top: 14rem;
        width: 12rem;
    }

    .top_concept p {
        line-height: 2.5;
        top: 27rem;
        font-size: 1.3rem;
    }
}

/* ------------------------------
　トピックス
------------------------------ */
.top_topics {
    margin-top: -5rem;
}

.topics-heading {
    width: 15%;
}

.h3_heading {
    font-family: "Kaisei Opti", "Shippori Mincho", serif;
    font-size: 3rem;
    letter-spacing: 5px;
}

.h3_heading span {
    display: block;
    font-size: 1.5rem;
    letter-spacing: 5px;
}

.top_wrap {
    max-width: 1200px;
    margin: auto;
    width: 100%;
    position: relative;
}

.topics-area {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    width: 85%;
}

.topics-one {
    width: 21%;
    margin: 0 2%;
}

.topics-one img {
    width: 100%;
    height: 14rem;
}

.topics-date {
    font-size: 2.2rem;
    border-bottom: 1px solid #fff8b0;
    border-image: linear-gradient(to right, #fff8b0 0%, #b3a256 100%);
    border-image-slice: 1;
}

.viewmore-btn {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    width: 100px;
    height: 100px;
    border: 1px solid #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.topics-more {
    margin: 3rem 1rem 0 auto;
}

.topics-more-txt {
    text-align: center;
    font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
    .top_topics {
        margin-top: 0rem;
        padding-top: 2rem;
    }

    .top_topics .row {
        display: block;
    }

    .topics-heading {
        width: 100%;
    }

    .h3_heading {
        text-align: center;
        margin-bottom: 2rem;
    }

    .topics-area {
        display: block;
        width: 90%;
        margin: auto;
    }

    .topics-one {
        width: 100%;
        margin: 2rem auto 4rem;
        display: block;
    }

    .topics-one img {
        width: 80%;
        margin: auto;
        text-align: center;
        display: block;
        margin-bottom: 1rem;
    }
}

/* ------------------------------
　ストーリー
------------------------------ */
.top_story {
    background: url(../img/top_story.jpg) top center no-repeat;
    background-size: cover;
    position: relative;
}

.top_story::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.story-txt {
    position: relative;
    color: #fff;
    text-align: center;
    font-family: "Kaisei Opti", "Shippori Mincho", serif;
}

.story-heading {
    font-size: 5rem;
    font-weight: normal;
    letter-spacing: 10px;
    display: inline-block;
    border-bottom: 2px solid #fff;
    margin: 0 auto 2rem;
}

.story-head {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.story-of {
    font-size: 1.5rem;
}

.story-du {
    font-size: 1.5rem;
    font-style: italic;
    margin: 0 0.5rem;
}

.story-detail {
    line-height: 2.5;
}

.story-more {
    margin: 3rem auto 0;
}

/* ------------------------------
　プロダクト
------------------------------ */
.top_product {
    background-color: #e6ebee;
    color: #000;
    padding: 0;
    position: relative;
}

.product-bgwhite {
    position: relative;
    height: 96rem;
}

.product-bgwhite::before {
    content: "";
    position: absolute;
    top: 12rem;
    width: 65vw;
    height: 60rem;
    background: #fff;
    z-index: 0;
    overflow: hidden;
}

.product-step1 {
    width: 100%;
    padding: 0 0 170px 0;
}

.product-head {
    position: relative;
    padding: 120px 0 60px 0;
}

.product-head h3 {
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.product-heading {
    font-size: 40px;
    letter-spacing: 0.1em;
    display: block;
    text-align: center;
}

.product-heading-detail {
    font-size: 26px;
    letter-spacing: 0.04em;
    margin-top: 32px;
}

.product-pic {
    position: absolute;
}

.product-img1 {
    top: -69%;
    right: 4%;
}

.product-img2 {
    top: 295%;
    right: 58%;
}

.product-txt {
    color: #000;
    position: absolute;
    right: 10%;
    top: 540%;
    font-size: 2.4rem;
    line-height: 2;
}

.spice-one-content {
    display: flex;
    width: 85%;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    min-height: 12vh;
}

.spice-img {
    width: 90px;
}

.spice-spice {
    width: 120px;
}

.product-spice {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.spice-one {
    position: relative;
    width: 30.8%;
    /* 21% */
    margin: 0 0.6rem 2% 0.6rem;
    word-wrap: break-word;
    padding: 3rem 2rem 3rem 2rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spice-one:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: 50%;
    border-top: none !important;
}

.spice-one02 {
    position: relative;
    width: 30.8%;
    height: 452px;
    /* 21% */
    margin: 0 0.6rem 2% 0.6rem;
    word-wrap: break-word;
    padding: 2rem 0.8rem 8.5rem 0.8rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spice-one02:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: 50%;
    border-top: none !important;
}

.spice-border1 {
    border: 5px solid #db502e;
}

.spice-border1:before {
    border: 5px solid #c6000b;
}

.spice-border2 {
    border: 5px solid #fcd13e;
}

.spice-border2:before {
    border: 5px solid #e95532;
}

.spice-border3 {
    border: 5px solid #00a63c;
}

.spice-border3:before {
    border: 5px solid #fff362;
}

.spice-border4 {
    border: 5px solid #ee835c;
}

.spice-border4:before {
    border: 5px solid #fff57f;
}

.spice-border5 {
    border: 5px solid #94cbe6;
}

.spice-border5:before {
    border: 5px solid #ece175;
}

.spice-border6 {
    border: 5px solid #ffe8a9;
}

.spice-border7 {
    border: 5px solid #ee835c;
}

.spice-border7:before {
    border: 5px solid #85b1df;
}

.spice-img {
    margin: auto;
    display: block;
    margin-bottom: 1rem;
}

.spice-name-sub {
    font-size: 12px;
    text-align: center;
    margin: 14px 0 0 0;
    color: #000;
}

.spice-name-main {
    font-size: 23px;
    text-align: center;
    color: #000;
    /* margin: -28px 0 18px 0; */
}

.spice-quality {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 1rem auto;
}

.spice-quality li {
    width: 45%;
    /* width: 30.3%; */
    margin: 0.2rem 1.5%;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
    padding: 0.2rem 0.2rem;
}

.spice-price-area {
    border-top: 1px solid #898989;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem 0.5rem 0;
    justify-content: space-between;
}

.spice-price {
    font-size: 2.1rem;
    color: #898989;
}

.price-en {
    font-size: 1.4rem;
}

.price-tax {
    font-size: 1rem;
}

.spice-price-area img {
    width: 20px;
    height: auto;
}

.spice-price-area a {
    z-index: 2;
    position: relative;
}

.squre-btn {
    margin: 3rem auto 0;
    width: 280px;
    text-align: center;
    display: block;
}

.squre-btn .btn {
    position: relative;
    display: inline-block;
    text-align: left;
    width: 280px;
    padding: 3rem 2rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.squre-btn .btn::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 4px;
    bottom: 0;
    right: 36px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

.squre-btn .btn::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 4px;
    bottom: 0;
    right: 33px;
    width: 30px;
    height: 0.5px;
    background: rgba(255, 255, 255, 0.4);
}

.spice-more {
    padding: 1rem 0 10rem;
}

@media screen and (max-width: 767px) {
    .product-bgwhite {
        height: auto;
    }

    .product-bgwhite::before {
        position: absolute;
        top: 13rem;
        width: 65vw;
        height: 60rem;
    }

    .product-head {
        background-size: 36vw;
        padding: 4rem 0;
    }

    .product-head h3 {
        left: 2%;
    }

    .product-heading {
        font-size: 4rem;
    }

    .product-heading-detail {
        margin-top: 1rem;
    }

    .product-pic {
        position: relative;
    }

    .product-img1,
    .product-img2 {
        top: auto;
        right: auto;
    }

    .product-img1 {
        margin: 4rem 2rem 2rem;
    }

    .product-img2 {
        margin: 0rem 2rem 5rem;
    }

    .spice-one {
        width: 46%;
    }

    .spice-quality li {
        width: 100%;
        /* width: 47%; */
    }

    .spice-price-area {
        display: block;
    }

    .spice-price-area a {
        z-index: 2;
        position: relative;
        margin: 1rem 0 0 auto;
        display: block;
        width: fit-content;
    }

    .product-txt {
        position: relative;
        right: 0;
        top: 1rem;
        font-size: 1.8rem;
        line-height: 1.6;
        left: 1rem;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------
　STEP1 オリジナルスパイス ~ベースのスパイスを選ぼう~
------------------------------------------------------------------------------------------------------------------------ */
.sub-page-head {
    width: 100%;
}

.step-container {
    padding: 80px 0 130px 0;
}

.sub-page-inner {
    background-color: #000;
    padding: 10px 0 2px 0;
}

.sub-page-title {
    display: block;
    font-family: "parkside", cursive;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
    font-size: 46px;
    text-align: center;
}

.step-container {
    background-color: #e6ebee;
}

.step-title {
    text-align: center;
    color: #000;
    margin: 0 0 18px 0;
}

.step-title span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.step1 span::before {
    display: inline-block;
    content: "STEP 1";
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    margin: 0 30px 0 0;
    letter-spacing: 0.1em;
}

.step2 span::before {
    display: inline-block;
    content: "STEP 2";
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    margin: 0 30px 0 0;
    letter-spacing: 0.1em;
}

.step3 span::before {
    display: inline-block;
    content: "STEP 3";
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    margin: 0 30px 0 0;
    letter-spacing: 0.1em;
}

.step4 span::before {
    display: inline-block;
    content: "STEP 4";
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    margin: 0 30px 0 0;
    letter-spacing: 0.1em;
}

.step-flex {
    width: 1100px;
    height: 511px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.spice-soldout {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #000;
    padding: 4px 14px;
    letter-spacing: 0.1em;
}

.spice-base-item {
    position: absolute;
    bottom: 8px;
    right: 0;
    left: 0;
    width: 95%;
    margin: 0 auto 0 auto;
    background-color: #e6ebee;
    padding: 7px 12px 8px 24px;
}

.spice-base-box {
    position: relative;
}

.step-spice-check {
    position: absolute;
    width: 67px;
    top: -25px;
    left: -19px;
}

.spice-base-item label {
    color: #000;
}

/* ------------------------------------------------------------------------------------------------------------------------
　step2 オリジナルスパイス ~味をカスタマイズしよう~
------------------------------------------------------------------------------------------------------------------------ */
.step-wrap {
    width: 1100px;
    height: 511px;
    background-color: #fff;
    margin: 0 auto 0 auto;
    padding: 56px 0 0 0;
}

.taste-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: normal;
    color: #000;
    letter-spacing: 0.1em;
    margin: 0 0 30px 0;
    height: 80px;
}

.taste-prev-next {
    width: 43%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.taste-hot::before {
    display: inline-block;
    content: "";
    width: 73px;
    height: 49px;
    background: url("../img/hot-icon.png") center no-repeat;
    background-size: contain;
    margin: 0 8px 0 0;
}

.taste-garlic::before {
    display: inline-block;
    content: "";
    width: 55px;
    height: 75px;
    background: url("../img/garlic-icon.png") center no-repeat;
    background-size: contain;
    margin: 0 14px 0 0;
}

.taste-salt::before {
    display: inline-block;
    content: "";
    width: 55px;
    height: 75px;
    background: url("../img/salt-icon.png") center no-repeat;
    background-size: contain;
    margin: 0 14px 0 0;
}

.taste-taste::before {
    display: inline-block;
    content: "";
    width: 120px;
    height: 64px;
    background: url("../img/taste-icon.png") center no-repeat;
    background-size: contain;
    margin: 0 14px 0 0;
}

.taste-spice02::before {
    display: inline-block;
    content: "";
    width: 106px;
    height: 46px;
    background: url("../img/spice-icon.png") center no-repeat;
    background-size: contain;
    margin: 0 14px 0 0;
}

.taste-herb::before {
    display: inline-block;
    content: "";
    width: 62px;
    height: 46px;
    background: url("../img/herb-icon.png") center no-repeat;
    background-size: contain;
    margin: 0 14px 0 0;
}

.taste-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 776px;
    margin: 0 auto;
}

.taste-spice {
    position: relative;
}

.taste-hot-icon {
    position: absolute;
    top: -62px;
    right: -5px;
    width: 76px;
    /* height: 79px; */
}

.taste-grlic-icon {
    position: absolute;
    top: -62px;
    right: -12px;
    width: 86px;
}

.taste-salt-icon {
    position: absolute;
    top: -62px;
    right: -12px;
    width: 97px;
}

.taste-taste-icon {
    position: absolute;
    top: -62px;
    right: -12px;
    width: 117px;
}

.taste-spice-icon {
    position: absolute;
    top: -62px;
    right: -5px;
    width: 90px;
}

.taste-herb-icon {
    position: absolute;
    top: -62px;
    right: 6px;
    width: 85px;
}

/* .taste-spice-hot {
  width: 170px;
  height: 270px;
  background: url('../img/01_bannou_2.jpg') center no-repeat;
  background-size: contain;
} */

.taste-amount {
    width: 530px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.taste-amount02 {
    width: 530px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.taste-select-margin {
    display: inline-block;
    margin: 0 20px !important;
}

.taste-amount-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    background-color: #e6e6e6;
    border-radius: 50%;
}

.taste-amount-txt {
    font-size: 18px;
    color: #8f959a;
}

.taste-selected {
    background-color: #b7a015 !important;
}

.taste-selected p {
    color: #fff !important;
}

.taste-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 26px 0 0 0;
}

.taste-btn02 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 26px 0 0 0;
}

.taste-btn03 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0 0 0;
}

.taste-btn button,
.taste-btn02 button,
.taste-btn03 button {
    display: flex;
    align-items: center;
    color: #fff;
    background-color: #000;
    border: none;
    padding: 6px 16px;
    letter-spacing: 0.1em;
    border-radius: 5px;
}

.taste-next-arrow::after {
    display: inline-block;
    content: "";
    width: 36px;
    height: 10px;
    background: url("../img/next-arrow.png") center no-repeat;
    background-size: contain;
    margin: 0 0 0 5px;
}

.taste-prev-arrow::before {
    display: inline-block;
    content: "";
    width: 36px;
    height: 10px;
    background: url("../img/back-arrow.png") center no-repeat;
    background-size: contain;
    margin: 0 0 0 5px;
}

/* 栄養成分表示 */
.taste-ing-flex {
    width: 880px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
}

.taste-block-left {
    width: 47%;
}

.taste-spice-info {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.taste-block-right {
    width: 47%;
}

.taste-spice-label {
    color: #000;
    text-align: center;
    border-bottom: 1px solid #000;
    padding: 0 0 10px 0;
    margin: 0 0 14px 0;
}

.taste-spice-text {
    width: 40%;
    display: flex;
    justify-content: space-between;
    line-height: 2;
}

.taste-spice-text02 {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    line-height: 2;
}

.taste-spice-text span,
.taste-spice-text02 span {
    color: #000;
}

.taste-spice-name {
    color: #000;
    line-height: 1.8;
}

/* ------------------------------------------------------------------------------------------------------------------------
　step3 オリジナルスパイスを作ろう
------------------------------------------------------------------------------------------------------------------------ */
.label-flex {
    width: 1100px;
    height: 511px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 0 auto;
    padding: 27px;
    background-color: #fff;
}

.label-design {
    position: relative;
    width: 300px;
    background-color: #ebebeb;
}

.label-design-preview {
    position: absolute;
    top: 6px;
    left: 9px;
    color: #000;
    font-size: 14.5px;
}

/* プレビューラベル */
.label-preview {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 225px;
    height: 242px;
    margin: auto;
}

.label-preview::after {
    position: absolute;
    border: 1.5px solid #fff;
    content: "";
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.label-preview-inner {
    position: relative;
}

.label-for-you {
    position: absolute;
    width: 54px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
}

/* .label-icon-item {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 43px;
  margin: auto;
} */
/* ラベル中央アイコン */
.label-icon-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    margin: auto;
}

.icon1 {
    background: url("../img/icon1-white.png") center no-repeat;
    background-size: contain;
}
.icon2 {
    background: url("../img/icon2-white.png") center no-repeat;
    background-size: contain;
}
.icon3 {
    /* background: url('../img/icon3-white.png') center no-repeat; */
    background-size: contain;
}
.icon4 {
    background: url("../img/icon4-white.png") center no-repeat;
    background-size: contain;
}
.icon5 {
    background: url("../img/icon5-white.png") center no-repeat;
    background-size: contain;
}
.icon6 {
    background: url("../img/icon6-white.png") center no-repeat;
    background-size: contain;
}
.icon7 {
    background: url("../img/icon7-white.png") center no-repeat;
    background-size: contain;
}
.icon8 {
    background: url("../img/icon8-white.png") center no-repeat;
    background-size: contain;
}
.icon9 {
    background: url("../img/icon9-white.png") center no-repeat;
    background-size: contain;
}
.icon10 {
    background: url("../img/icon10-white.png") center no-repeat;
    background-size: contain;
}

.label-top {
    width: 100%;
    height: 121px;
    padding: 42px 0 0 0;
}

.label-top-one-text {
    text-align: center;
    font-size: 21px;
    margin: 0 0 -14px 0;
    transform: translateY(-8px);
    color: #fff;

    font-family: "times";
}

.label-top-two-text {
    text-align: center;
    font-size: 21px;
    color: #fff;
    transform: translateY(-25px);

    font-family: "times";
}

.label-bottom-one-text {
    text-align: center;
    font-size: 21px;
    margin: 0 0 -14px 0;
    transform: translateY(-8px);
    color: #fff;

    font-family: "times";
}

.label-bottom-two-text {
    text-align: center;
    font-size: 21px;
    color: #fff;
    transform: translateY(-25px);

    font-family: "times";
}

.label-date {
    position: absolute;
    bottom: 8px;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 14px;
    text-align: center;

    font-family: "times";
}

.label-bottom {
    width: 100%;
    height: 121px;
    padding: 24px 0 0 0;
}

.label-top-bg {
    background-color: #60c0bd;
}

.label-bottom-bg {
    background-color: #ed86b3;
}

.label-info {
    width: 695px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto 0 25px;
}

.label-item-block {
    width: 50%;
}

.label-item-flex {
    width: 50%;
    display: flex;
    align-items: center;
}

.label-item-block02 {
    width: 100%;
    display: flex;
    align-items: center;
    margin: -30px 0 6px 0;
}

.label-item-color {
    width: 196px;
    display: flex;
    flex-wrap: wrap;
}

.label-border {
    width: 100%;
    height: 1px;
    background-color: #898989;
    margin: 10px 0 10px 0;
}

.label-border02 {
    width: 100%;
    height: 1px;
    background-color: #898989;
    margin: -50px 0 10px 0;
}

.label-item {
    color: #b08e1c;
    margin: 0 0 5px 0;
}

.label-item02 {
    color: #b08e1c;
    margin: 0 25px 0 0;
    line-height: 1.4;
}

.label-item-name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.label-item-date {
    display: flex;
    align-items: center;
}

.label-item-name-margin {
    margin: 0 0 0 24px;
}

.label-item-txt {
    font-size: 14px;
    color: #000;
    display: inline-block;
    margin: 0 6px 0 25px;
    letter-spacing: 0.07em;
}

.icon-label-margin {
    margin: 0 0 0 16px;
}

.icon-label svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0 12px 0 0;
}

.date-year {
    width: 80px;
    margin: 0 0 0 20px;
    padding: 1px 8px;
    font-size: 15px;
}

.date-month {
    width: 56px;
    margin: 0 8px 0 8px;
    padding: 1px 8px;
    font-size: 15px;
}

.date-day {
    width: 56px;
    padding: 1px 8px;
    font-size: 15px;
}

/* For you */
input[type="radio"] {
    display: none; /* ラジオボタンを非表示にする */
}
input[type="radio"]:checked + label.foryou-label {
    background: #000; /* マウス選択時の背景色を指定する */
    color: #ffffff; /* マウス選択時のフォント色を指定する */
    padding: 3px 30px;
}
label.foryou-label {
    margin: 1px;
    padding: 3px 30px;
    background-color: #e6e6e6;
    color: #8f959a;
}

/* date 日付を選択有無 */
input[type="radio"] {
    display: none; /* ラジオボタンを非表示にする */
}
input[type="radio"]:checked + label.date-label {
    background: #000; /* マウス選択時の背景色を指定する */
    color: #ffffff; /* マウス選択時のフォント色を指定する */
    padding: 1px 0;
    width: 88px;
    display: block;
    text-align: center;
}
label.date-label {
    margin: 1px;
    padding: 1px 0;
    width: 88px;
    display: block;
    text-align: center;
    background-color: #e6e6e6;
    color: #8f959a;
}

/* 控えめ　普通　多めなど */
input[type="radio"] {
    display: none;
}
input[type="radio"]:checked + label.taste-select-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    background-color: #b7a015;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
}
label.taste-select-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    background-color: #e6e6e6;
    border-radius: 50%;
    font-size: 18px;
    color: #8f959a;
}

/* top color */
input[type="radio"] {
    display: none; /* ラジオボタンを非表示にする */
}
input[type="radio"]:checked + label.topcolor-label {
    border: 2px solid #000;
    width: 15px;
    height: 15px;
    display: block;
}
label.topcolor-label {
    margin: 2px;
    width: 15px;
    height: 15px;
    display: block;
}
label.topcolor1 {
    background: #0b2f80;
}
label.topcolor2 {
    background: #066eb3;
}
label.topcolor3 {
    background: #0096d9;
}
label.topcolor4 {
    background: #429493;
}
label.topcolor5 {
    background: #60c0bd;
}
label.topcolor6 {
    background: #5c2b6e;
}
label.topcolor7 {
    background: #baa0ca;
}
label.topcolor8 {
    background: #e50012;
}
label.topcolor9 {
    background: #b4091e;
}
label.topcolor10 {
    background: #ed86b3;
}
label.topcolor11 {
    background: #005e5d;
}
label.topcolor12 {
    background: #00884f;
}
label.topcolor13 {
    background: #44af35;
}
label.topcolor14 {
    background: #b5cd79;
}
label.topcolor15 {
    background: #801842;
}
label.topcolor16 {
    background: #5c3718;
}
label.topcolor17 {
    background: #888888;
}
label.topcolor18 {
    background: #b49907;
}
label.topcolor19 {
    background: #f9bf11;
}
label.topcolor20 {
    background: #ec6c00;
}

/* bottom color */
input[type="radio"] {
    display: none; /* ラジオボタンを非表示にする */
}
input[type="radio"]:checked + label.bottomcolor-label {
    border: 2px solid #000;
    width: 15px;
    height: 15px;
    display: block;
}
label.bottomcolor-label {
    margin: 2px;
    width: 15px;
    height: 15px;
    display: block;
}
label.bottomcolor1 {
    background: #0b2f80;
}
label.bottomcolor2 {
    background: #066eb3;
}
label.bottomcolor3 {
    background: #0096d9;
}
label.bottomcolor4 {
    background: #429493;
}
label.bottomcolor5 {
    background: #60c0bd;
}
label.bottomcolor6 {
    background: #5c2b6e;
}
label.bottomcolor7 {
    background: #baa0ca;
}
label.bottomcolor8 {
    background: #e50012;
}
label.bottomcolor9 {
    background: #b4091e;
}
label.bottomcolor10 {
    background: #ed86b3;
}
label.bottomcolor11 {
    background: #005e5d;
}
label.bottomcolor12 {
    background: #00884f;
}
label.bottomcolor13 {
    background: #44af35;
}
label.bottomcolor14 {
    background: #b5cd79;
}
label.bottomcolor15 {
    background: #801842;
}
label.bottomcolor16 {
    background: #5c3718;
}
label.bottomcolor17 {
    background: #888888;
}
label.bottomcolor18 {
    background: #b49907;
}
label.bottomcolor19 {
    background: #f9bf11;
}
label.bottomcolor20 {
    background: #ec6c00;
}

/* アイコン */
input[type="radio"] {
    display: none; /* ラジオボタンを非表示にする */
}
input[type="radio"]:checked + label.icon-label svg {
    fill: #b08e1c;
}
input[type="radio"]:checked + label.icon-label img {
    fill: #b08e1c;
}
label.icon-label {
    display: inline-block;
    cursor: pointer;
}

/* name label */
input[type="radio"] + label.name-label {
    position: relative;
    display: flex;
    align-items: center;
    color: #000;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.name-label small {
    font-size: 12px;
}

input[type="radio"] + label.name-label::before {
    position: relative;
    display: flex;
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 50%;
    margin: 0 8px 0 0;
}

input[type="radio"]:checked + label.name-label::before {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #000;
    background: #fff;
}

input[type="radio"]:checked + label.name-label::after {
    position: absolute;
    left: 3.5px;
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #b08e1c; /* 内側の丸の色 */
}

/* step base label */
input[type="radio"] + label.step-base-label {
    position: relative;
    display: flex;
    align-items: center;
    color: #000;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.step-base-label small {
    font-size: 14px;
}

input[type="radio"] + label.step-base-label::before {
    position: relative;
    display: flex;
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 50%;
    margin: 0 8px 0 6.5px;
}

input[type="radio"]:checked + label.step-base-label::before {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #000;
    background: #fff;
}

input[type="radio"]:checked + label.step-base-label::after {
    position: absolute;
    left: 10px;
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #b08e1c; /* 内側の丸の色 */
}

.name-input {
    display: block;
    width: 100%;
    padding: 0 10px 4px 10px;
}

.name-input-margin {
    margin: 0 0 5px 0;
}

.name-input::placeholder {
    color: #9fa0a0;
    font-size: 11px;
}

/* message label */
input[type="radio"] + label.message-label {
    position: relative;
    display: flex;
    align-items: center;
    color: #000;
    width: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="radio"] + label.message-label::before {
    position: relative;
    display: flex;
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 50%;
    margin: 0 8px 0 0;
}

input[type="radio"]:checked + label.message-label::before {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #000;
    background: #fff;
}

input[type="radio"]:checked + label.message-label::after {
    position: absolute;
    left: 3.5px;
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #b08e1c; /* 内側の丸の色 */
}

.message-label small {
    font-size: 12px;
}

/* message select */

.label-item-message-flex {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
}

.label-item-message-left {
    width: 64%;
}

.label-item-message-right {
    width: 32%;
}

.message-input {
    display: block;
    width: 100%;
    padding: 0 10px 4px 10px;
}

.message-input-margin {
    margin: 0 0 5px 0;
}

.message-input::placeholder {
    color: #9fa0a0;
    font-size: 11px;
}

.label-select-message {
    position: relative;
    z-index: 100;
    top: -71px;
    width: 100%;
    /* color: transparent; */
    background-color: transparent;
    border: none;

    padding: 23px 0;
}

.label-select-message option {
    white-space: pre-wrap;
}

#selected-format {
    position: relative;
    /*white-space: pre-line;  改行を適用するためのスタイル */
    font-size: 14px;
    color: #fff;
    background-color: #000;
    text-align: center;
    padding: 6px 0 20px 0;
}

#selected-format::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 9px;
    margin: auto;
    transform: rotate(135deg);
}

/* 上部カラー 下部カラー */
.topcolor {
    border: 1px solid #000;
    width: 15px;
    height: 15px;
}

/* エラー文 */
#error:has(li) {
    width: 831px;
    display: block;
    margin: 30px auto 0 auto;
    padding: 30px 30px;
    border: 1px solid #e50019;
    background-color: #fff;
}

#error li {
    color: #e50019;
}

#error li:nth-child(1)::before {
    display: block;
    text-align: center;
    content: "未入力箇所があります。";
    margin: 0 0 15px 0;
    color: #e50019;
}

/* your design ------------------------------------------------------------------------------------ */
.design-label {
    position: relative;
    width: 1100px;
    height: 511px;
    background-color: #fff;
    margin: 0 auto;
}
.design-label-inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 486px;
    height: 486px;
    background-color: #ebebeb;
    padding: 40px 0 0 0;
}

.design-label-item {
    font-family: "parkside", cursive;
    text-align: center;
    font-size: 41px;
    font-weight: normal;
    color: #000;
}

/* プレビューラベル */
.design-label-preview {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: -32px;
    width: 287px;
    height: 308px;
    margin: auto;
}
.design-label-preview02 {
    position: absolute;
    top: -6px;
    right: 0;
    left: 0;
    bottom: -32px;
    width: 287px;
    height: 308px;
    margin: auto;
}

.design-label-preview::after {
    position: absolute;
    border: 1.5px solid #fff;
    content: "";
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.design-label-preview02::after {
    position: absolute;
    border: 1.5px solid #fff;
    content: "";
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.design-label-preview-inner {
    position: relative;
}

.design-label-for-you {
    position: absolute;
    width: 69px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
}

.design-label-icon-item {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 61px;
    height: 55px;
    margin: auto;
}

.design-label-top {
    width: 100%;
    height: 154px;
    padding: 54px 0 0 0;
}

.design-label-top-one-text {
    text-align: center;
    font-size: 26px;
    margin: 0 0 -10px 0;

    font-family: "times";
}

.design-label-top-two-text {
    text-align: center;
    font-size: 26px;

    font-family: "times";
}

.design-label-bottom-one-text {
    text-align: center;
    font-size: 26px;
    margin: 0 0 -10px 0;

    font-family: "times";
}

.design-label-bottom-two-text {
    text-align: center;
    font-size: 26px;

    font-family: "times";
}

.design-label-date {
    position: absolute;
    bottom: 8px;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 18px;
    text-align: center;

    font-family: "times";
}

.design-label-bottom {
    width: 100%;
    height: 154px;
    padding: 34px 0 0 0;
}

.design-label-top-bg {
    background-color: #60c0bd;
}

.design-label-bottom-bg {
    background-color: #ed86b3;
}

/* 自分だけのスパイスが完成！ ------------------------------------------------------------------------------------ */
.complete-design {
    width: 511px;
    height: 511px;
    margin: 0 auto;
}

.complete-bannou {
    background: url("../img/01_bannou_3.png") center no-repeat;
    background-size: contain;
}

/* ------------------------------
　レシピ
------------------------------ */
.top_recipe {
    background: url(../img/top_recipe.jpg) top center no-repeat;
    background-size: cover;
    position: relative;
    padding: 20rem 0;
}

.top_recipe::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.top_recipe .story-detail {
    margin: 5rem auto;
}

@media screen and (max-width: 767px) {
    .top_recipe {
        padding: 10rem 0;
    }
}

/* ------------------------------
　ユーザーボイス
------------------------------ */
.top_uservoice {
    padding: 0;
    position: relative;
}

.uservoice-up {
    background: linear-gradient(
        180deg,
        #e6ebee 0%,
        #e6ebee 50%,
        #fff 50%,
        #fff 100%
    );
    position: relative;
    padding-top: 15rem;
}

.uservoice-frame {
    color: #fff;
    width: 28rem;
    height: 28rem;
    position: absolute;
    max-width: 98%;
    margin: 20px auto;
    padding: 2px;
    background: #000;
    font-size: 1.6rem;
    outline: 1px solid rgb(255, 255, 255);
    outline-offset: -7px;
    top: 29%;
    left: 50%;
}

.voice-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.voice-heading h3 {
    font-family: "Kaisei Opti", "Shippori Mincho", serif;
    font-weight: normal;
    letter-spacing: 5px;
}

.uservoice-heading {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.uservoice-heading-sub {
    font-size: 1.5rem;
}

.uservoice-pic {
    width: 55vw;
}

.uservoice-pic img {
    width: 100%;
}

.uservoice-bottom {
    background-color: #fff;
    padding: 10rem 0;
}

.uservoice-area {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-around;
}

.uservoice-area a {
    color: #000;
}

.uservoice-one {
    width: 30%;
}

.voice-more {
    padding: 3rem 0 0;
}

.uservoice-title-area {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000;
    margin: 1rem 0;
}

.uservoice-voiceno {
    font-size: 2rem;
    border-right: 1px solid #000;
    padding-right: 2rem;
}

.uservoice-name {
    padding-left: 2rem;
    font-size: 1.4rem;
}

.uservoice-subhead {
    font-size: 1.7rem;
    padding: 1rem 0 1rem;
}

.uservoice-detail {
    font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
    .uservoice-up {
        background: linear-gradient(
            180deg,
            #e6ebee 0%,
            #e6ebee 36%,
            #fff 36%,
            #fff 100%
        );
        padding-top: 3rem;
    }

    .uservoice-frame {
        width: 80%;
        height: 20rem;
        position: relative;
        max-width: 80%;
        margin: 20px auto;
        padding: 2px;
        outline: 1px solid rgb(255, 255, 255);
        outline-offset: -7px;
        top: 0;
        left: 0;
    }

    .uservoice-pic {
        width: 90%;
        margin: auto;
    }

    .uservoice-area {
        display: block;
    }

    .uservoice-one {
        width: 80%;
        display: block;
        margin: 0 auto 5rem;
    }
}

/* ------------------------------
　Q & A
------------------------------ */
.top_qanda {
    padding: 0;
    position: relative;
    background: url(../img/bg-line.jpg) bottom 0px center no-repeat;
    background-size: 100% 5px;
}

.qanda-up {
    background-color: #e6ebee;
    padding: 105px 0 130px 0;
    border-top: 1px solid #000;
}

.qanda-up2 {
    background-color: #e6ebee;
    padding: 105px 0 260px 0;
    border-top: 1px solid #000;
}

.qanda-head-area {
    max-width: 1100px;
    margin: auto;
    width: 100%;
    position: relative;
}

.qanda-head-area .qanda-pic {
    width: 100%;
}

.qanda-step {
    font-size: 40px;
    letter-spacing: 0.1em;
    display: block;
    text-align: center;
    color: #000;

    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
}

.qanda-heading-detail {
    font-size: 26px;
    letter-spacing: 0.04em;
    margin-top: 32px;
    text-align: center;
    color: #000;
}

.qanda-heading-sub {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.qanda-middle {
    background-color: #000;
    height: 100rem;
    margin-top: -48rem;
}

.qanda-image {
    width: 774px;
    display: block;
    margin: 50px auto 0 auto;
}

.qanda-image2 {
    width: 767px;
    display: block;
    margin: 50px auto 0 auto;
    transform: translateX(-48px);
}

.qanda-image3 {
    width: 553px;
    display: block;
    margin: 50px auto 0 auto;
}

/* .qanda-quantity {
  width: 1065px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 108px auto 0 auto;
} */

.qanda-quantity02 {
    width: 1065px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px auto 0 auto;
}

.qanda-quantity-img {
    width: 201px;
}

.qanda-cta {
    margin: 48px 0 0 0;
}

.qanda-cta-btn {
    width: 591px;
    display: block;
    text-decoration: none;
    outline: 1px solid #ffffff;
    outline-offset: -5px;
    background: #927b29;

    text-align: center;
    padding: 20px 0;
    margin: 0 auto 0 auto;
}

.qanda-cta-btn span {
    position: relative;
    color: #fff;
}

.qanda-cta-btn span::before {
    content: "";
    width: 15px;
    height: 15px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    right: -17px;
    top: 4px;
    transform: rotate(45deg);
}

.qanda-txt {
    text-align: center;
    margin-top: 24px;
}

.qanda-txt span {
    color: #927b29;
    font-size: 15px;
}

.qanda-txt span::before {
    display: inline-block;
    content: "";
    width: 40px;
    height: 10px;
    background: url("../img/arrow-img.png") center no-repeat;
    background-size: contain;
    margin: 0 5px 0 0;
}

.qanda-txt span a {
    color: #927b29;
    font-size: 15px;
    border-bottom: 1px solid #927b29;
}

.qanda-postage {
    width: 962px;
    display: block;
    margin: 44px auto 0 auto;
}

.qanda-make-btn {
    position: relative;
    display: block;
    width: 628px;
    margin: 95px auto 0 auto;
    background-color: #000;
    text-align: center;
    padding: 12px 0 18px 0;
}

.qanda-make-btn span {
    font-family: "parkside", cursive;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;

    font-size: 43px;
}

.qanda-make-btn span::before {
    content: "";
    width: 35px;
    height: 35px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}

.qanda-make-btn span::after {
    display: block;
    content: "";
    content: "オリジナルスパイスをつくる";

    font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN",
        "Yu Mincho", "MS PMincho", "Times New Roman", serif;
    font-size: 22px;
}

@media screen and (min-width: 768px) {
    .qanda-bottom-txt-area {
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
        font-weight: normal;
        font-family: "Kaisei Opti", "Shippori Mincho", serif;
        width: max-content;
        text-align: center;
        letter-spacing: 7px;
    }
}

@media screen and (max-width: 767px) {
    .qanda-up {
        padding: 0;
    }

    .qanda-head-area {
        background: url(../img/top-qanda1.jpg) top center no-repeat;
        background-size: cover;
        position: relative;
        padding: 8rem 0;
    }

    .qanda-middle {
        background: none;
        margin-top: 0;
        height: auto;
    }

    .qanda-head-area .qanda-txt-area {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0;
        padding: 0;
    }

    .qanda-middle-img {
        position: relative;
        width: 90%;
        height: auto;
        left: auto;
        right: auto;
        margin: auto;
        display: block;
    }

    .qanda-middle-pic1 {
        top: auto;
        right: auto;
        width: 50vw;
        left: auto;
        display: block;
        margin: 0 0 0 auto;
    }

    .qanda-middle-pic2 {
        top: -10rem;
    }

    .qanda-middle-pic3 {
        top: -8rem;
    }

    .qanda-bottom-img {
        position: relative;
        width: 90%;
        height: auto;
        top: auto;
        left: auto;
        right: auto;
        margin: auto;
        display: block;
    }

    .qanda-bottom-txt-area {
        position: relative;
        top: 0;
        left: auto;
    }

    .qanda-bottom-pic4 {
        top: -6rem;
    }

    .qanda-bottom-pic5 {
        top: -4rem;
    }

    .qanda-bottom-heading {
        font-size: 2.3rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .qanda-bottom-detail {
        font-size: 1.4rem;
        line-height: 2;
        padding: 0 2rem;
    }

    .qanda-bottom-deco {
        width: 15rem;
        bottom: -4rem;
        left: -2rem;
    }

    .qanda-bottom {
        padding-bottom: 10rem;
    }
}

/* ------------------------------
　セクション左
------------------------------ */
@media screen and (min-width: 768px) {
    .vertical-text::before {
        writing-mode: vertical-rl;
        text-orientation: sideways;
        font-size: 1.3rem;
        position: absolute;
        left: auto;
        letter-spacing: 2px;
        font-weight: normal;
        font-family: "Montserrat", sans-serif;
        right: 0;
        padding: 2rem 1rem 0 0;
        z-index: 1;
        white-space: nowrap;
    }

    #topics::after {
        top: 17%;
    }

    #story::before {
        content: "STORY";
        z-index: 0;
        display: none !important;
    }

    #story::after {
        top: 15%;
    }

    #product::after {
        top: 3%;
        background-color: #000;
    }

    #recipe::before {
        content: "RECIPE";
        z-index: 0;
    }

    #recipe::after {
        top: 13%;
    }

    #uservoice::before {
        content: "USER VOICE";
        color: #000;
        padding-top: 32rem;
    }

    #uservoice::after {
        top: 31%;
        background-color: #000;
    }

    #qanda::after {
        top: 3.5%;
        background-color: #000;
    }
}

/* ------------------------------
　検索窓
------------------------------ */
.open-btn {
    position: relative;
    background: url("../img/icon-search.png") no-repeat center;
    background-size: auto;
    width: 20px;
    height: 20px;
    cursor: pointer;
    top: 3px;
}

.open-btn.img-none {
    background: none;
}

@media screen and (max-width: 767px) {
    .open-btn {
        top: 0px;
    }
}

#search-wrap {
    position: absolute;
    top: 150px;
    right: 20px;
    z-index: -1;
    opacity: 0;
    width: 0;
    transition: all 0.4s;
    border-radius: 5px;
}

#search-wrap.panelactive {
    opacity: 1;
    z-index: 3;
    width: 100vw;
    right: -60px;
    padding: 20px;
    top: 35px;
    background: #000;
}

#search-wrap #searchform {
    display: none;
}

#search-wrap.panelactive #searchform {
    display: block;
}

#search-wrap input {
    -webkit-appearance: none;
    outline: none;
    color: #666;
}

#search-wrap input[type="text"] {
    width: 100%;
    border: none;
    transition: all 0.5s;
    letter-spacing: 0.05em;
    height: 46px;
    padding: 10px;
    background-color: #fff;
}

#search-wrap input[type="submit"] {
    position: absolute;
    top: 27px;
    right: 40px;
    background: url("../img/icon-search.png") no-repeat right;
    background-size: auto;
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
}

.scrollActive:not(.nav) #header {
    opacity: 0.8;
}

.scrollTop #header div:after {
    opacity: 0;
}

#siteName a {
    display: block;
    color: #000;
    fill: #000;
    font-weight: bold;
    text-decoration: none;
}

#main {
    width: 100%;
    overflow: hidden;
}

#subject {
    position: relative;
    padding: 2em 1.5em;
    z-index: 1;
}

#subject:before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    background: #f4f3ed;
    z-index: -1;
}

#pagenation {
    overflow: hidden;
}

#pagenation ul,
#pagenation ol {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: -0.25em;
}

#pagenation li {
    margin: 0.25em;
}

#pagenation a {
    position: relative;
    display: block;
    padding: 0.8em;
    text-decoration: none;
    background: #35220d;
    color: #fff;
    fill: #fff;
    line-height: 1em;
}

#pagenation a:hover,
#pagenation a:active {
    opacity: 0.7;
}

#pagenation i {
    position: absolute;
    top: calc(50% - 0.5em);
}

#pagenation [rel] {
    position: relative;
}

#pagenation [rel="prev"] {
    padding-left: 1.8em;
}

#pagenation [rel="prev"] i {
    left: 0.5em;
    transform: scale(-1, 1);
}

#pagenation [rel="next"] {
    padding-right: 1.8em;
}

#pagenation [rel="next"] i {
    right: 0.5em;
}

#pagenation .lsc-current-page {
    pointer-events: none;
    background: #aa9c91;
}

#gMap {
    position: relative;
}

#gMap div + div {
    margin: inherit;
}

#pagePath a:hover,
#pagePath a:active {
    text-decoration: none;
}

#pagePath ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

#pagePath li {
    line-height: 1.3em;
}

#pagePath li:last-child {
    font-weight: bold;
}

#pagePath li:last-child i {
    display: none;
}

#pagePath li:last-child a {
    pointer-events: none;
    text-decoration: none;
}

#pagePath i {
    margin: 0 0.3em;
    vertical-align: middle;
    opacity: 0.5;
}

#pageTop {
    text-align: center;
}

#pageTop a {
    display: block;
    width: 2.4em;
    height: 1.2em;
    margin: auto;
    padding-top: 0.2em;
    background: #b39354;
    border-radius: 1.2em 1.2em 0 0;
    color: #fff;
    fill: #fff;
    font-size: 2.4em;
    line-height: 1em;
    overflow: hidden;
}

#pageTop a:hover,
#pageTop a:active {
    color: rgba(255, 255, 255, 0.5);
    fill: rgba(255, 255, 255, 0.5);
}

#footer {
    padding: 2em 5em 0;
    background-color: #000;
}

.ft-width {
    max-width: 1200px;
    margin: 5rem auto 0;
}

#footer .gnav {
    margin: 0rem auto 0 5rem;
}

#footer .ft-logo {
    margin: auto;
}

#footer .ft-logo img {
    margin: 1rem auto 4rem;
    display: block;
    width: 257px;
    height: 56px;
}

#footer .ft-txt {
    text-align: center;
}

#footer .ft-txt p {
    margin: 5rem auto;
}

#footer ul {
    list-style: none;
}

.insta-icon-footer {
    width: 45px;
    height: 45px;
}

#footer ul.head-icon {
    margin: 5rem auto;
    justify-content: center;
}

#footer li {
    line-height: 1em;
}

#fAddress dl {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#fAddress dt,
#fAddress dt + dd {
    width: 100%;
}

#fAddress dt {
    font-size: 3em;
}

#fAddress dd {
    margin-top: 0.5em;
    line-height: 1.4em;
}

#fAddress dd:last-child {
    margin-left: 1.5em;
}

#fAddress i {
    margin-right: 0.2em;
    vertical-align: middle;
}

#fAddress i svg {
    width: 1.4em;
    height: 1.4em;
    margin: -0.2em 0;
}

#fNav span {
    margin-left: 0.2em;
    vertical-align: middle;
    opacity: 0.5;
}

#fNav > ul > li:nth-child(10) {
    display: none;
}

#fLink ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
}

#fLink li {
    margin: 0 1em;
}

#fLink a {
    position: relative;
    text-align: center;
    text-decoration: none;
}

#fLink a:hover,
#fLink a:active {
    opacity: 0.7;
}

#fLink span {
    position: absolute;
    top: 1em;
    right: 1em;
}

#fSns ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
}

#fSns li + li {
    margin-left: 1em;
}

#fSns a {
    display: block;
    width: 1.8em;
    height: 1.8em;
    padding: 0.4em;
    background: #fff;
    border-radius: 100%;
    font-size: 2em;
    color: #35220d;
    fill: #35220d;
}

#fSns a:hover,
#fSns a:active {
    background: #f1a107;
}

#fSns svg {
    vertical-align: top;
}

#copyright {
    padding: 1em 0 2em;
}

#copyright p {
    font-size: 0.8em;
    line-height: 1em;
    text-align: center;
    color: #fff;
}

.ft_sns-icon {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    margin: 3rem auto 0;
    align-items: center;
    justify-content: flex-start;
}

.ft_sns-icon li {
    margin: 1rem 1rem;
}

.ft_fnav .gnav_wrap {
    display: block;
}

.ft_fnav .gnav_item {
    text-align: left;
    height: auto;
    padding: 1rem 0;
}

.ft_fnav .gmenu {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
}

.ft_fnav .gmenu::before {
    content: "";
    height: 1px;
    width: 26px;
    margin-right: 1rem;
    background: #fff;
}

.ftr_gmenu {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.1rem;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    display: block;
    line-height: 1;
}

.ftr_gmenu:hover {
    color: #fff;
}

.ft_contact {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 1rem;
    margin-bottom: 1rem;
}

.ft_contact a {
    position: relative;
    display: inline-block;
    padding-left: 45px;
}

.ft_contact a::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 4px;
    bottom: 0;
    left: 15px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

.ft_contact a::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 4px;
    bottom: 0;
    left: 0px;
    width: 30px;
    height: 0.5px;
    background: rgba(255, 255, 255, 0.4);
}

.ft_fnav2 a {
    letter-spacing: 3px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.ft_fnav2 a span {
    letter-spacing: 0;
    font-size: 1rem;
}

.ft_squre-icon a {
    display: block;
    margin: 0 auto 2rem;
}

.ft_comrec {
    margin: 3rem 0 6rem;
}

.ft_comrec a {
    margin-bottom: 2rem;
}

.ft_tokushou a {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
    #footer {
        padding: 0em 1em 0;
    }

    #footer .ft-txt {
        padding: 0 2rem;
        font-size: 1.2rem;
    }

    .ft_sns-icon {
        justify-content: space-between;
        padding: 0px 22.667vw;
    }

    .ft_sns-icon li {
        margin: 1rem auto 3rem;
    }

    #footer .ft-logo img {
        /* margin: 1rem auto;
        display: block; */
        margin: 0rem auto;
        display: block;
        width: 44.027vw;
        height: auto;
    }

    .ft_squre-icon a img {
        width: 32.756vw;
        height: auto;
    }
}

[id^="anchor_"] {
    position: absolute;
}

.wrap {
    width: calc(100% - 3em);
    margin: auto;
}

.none {
    display: none !important;
}

.subject {
    font-weight: bold;
    text-align: center;
    line-height: 1em;
}

.subject i {
    display: block;
    width: 1.8em;
    height: 1.8em;
    margin: auto calc(50% - 0.7em);
    margin-bottom: 0.5em;
    background: #35220d;
    border-radius: 100%;
    fill: #fff;
}

.subject i svg {
    margin: 0.4em;
}

.subject + * {
    margin-top: 2em;
}

.headline {
    font-family: "Yu Mincho Demibold", "YuMincho Demibold", "Yu Mincho",
        "YuMincho", "Hiragino Mincho ProN", "MS PMincho", "Times New Roman",
        sans-serif;
    font-size: 4.3rem;
    font-weight: bold;
    line-height: 1;
}

.vertical-line {
    position: relative;
    display: block;
    padding: 0 45px;
}

.vertical-line:before {
    content: "";
    position: absolute;
    top: -6rem;
    display: inline-block;
    width: 1px;
    height: 50px;
    background-color: #000;
    left: 50%;
    -webkit-transform: rotate(0deg) translateX(-50%);
    transform: rotate(0deg) translateX(-50%);
}

@media screen and (max-width: 767px) {
    .wrap {
        width: calc(100% - 1em);
    }

    .headline {
        font-size: 3.2rem;
    }
}

.headline span {
    font-size: 1.3rem;
    display: block;
    font-weight: normal;
}

h2.headline:after {
    content: "";
    display: block;
    width: 8em;
    height: 1px;
    background-color: #ddd;
    margin: 0 auto;
}

.toppage .headline:after {
    content: none;
}

.headline + * {
    margin-top: 2em;
}

.title {
    font-weight: bold;
    line-height: 1.4em;
}

.title.line {
    position: relative;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #cfc6c0;
}

.title.point {
    position: relative;
    padding-left: 1.2em;
}

.title.point:before,
.title.point:after {
    content: "";
    position: absolute;
    width: 0.5em;
    height: 0.5em;
    background: #35220d;
}

.title.point:before {
    top: 0.1em;
    left: 0;
}

.title.point:after {
    top: 0.6em;
    left: 0.5em;
}

.title + * {
    margin-top: 1em;
}

.subTitle {
    font-weight: bold;
    line-height: 1.4em;
}

.subTitle.point {
    position: relative;
    padding: 0.8em;
    background: #f4f3ed;
    mix-blend-mode: multiply;
}

.subTitle.point:before {
    content: "";
    position: absolute;
    top: 1em;
    left: 0;
    width: 0.3em;
    height: 1em;
    background: #aa9c91;
}

.subTitle + * {
    margin-top: 1em;
}

.linkBut {
    display: inline-block;
    padding: 1em;
    line-height: 1em;
    text-decoration: none;
    color: #000;
    fill: #000;
}

.linkBut:hover,
.linkBut:active {
    color: #b39354;
    fill: #b39354;
    text-decoration: none;
}

.linkBut::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    transition: 0.5s all;
    padding-right: 30px;
}

.linkBut:hover::before {
    background-image: url(../img/icon-arrow_gold.png);
}

.linkBut i {
    margin-right: 0.4em;
    vertical-align: middle;
}

.linkBut.more {
    position: relative;
    padding: 1em;
    padding-right: 3em;
    fill: #35220d;
}

.linkBut.more:hover,
.linkBut.more:active {
    fill: #f1a107;
}

.linkBut.more i {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 1em;
    width: 1em;
    height: 1em;
    margin: 0;
    background: #fff;
    border-radius: 100%;
}

.linkBut.min {
    font-size: 0.875em;
}

.linkBut.reservation {
    background: #f1a107;
}

.linkBut.reservation:hover,
.linkBut.reservation:active {
    background: #f4b439;
}

.linkText i {
    margin-right: 0.2em;
    vertical-align: middle;
}

.list {
    list-style: none;
}

.list > li {
    line-height: 1.4em;
}

.list > li + li {
    margin-top: 0.3em;
}

.list.point > li {
    position: relative;
    padding-left: 1em;
}

.list.point > li:before {
    content: "";
    position: absolute;
    top: 0.4em;
    left: 0;
    width: 0.6em;
    height: 0.6em;
    border-radius: 100%;
    background: #35220d;
    opacity: 0.5;
}

.list.notes > li {
    padding-left: 1em;
    text-indent: -1em;
}

.list.count {
    counter-reset: count;
}

.list.count > li {
    position: relative;
    padding-left: 1.5em;
}

.list.count > li:before {
    position: absolute;
    left: 0;
    counter-increment: count;
    content: counter(count) ".";
}

.list + *,
* + .list {
    margin-top: 1em;
}

dl.table {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}

.table {
    border: 1px solid #ebebeb;
}

.table dt {
    border-bottom: 1px solid #ebebeb;
}

.table dd {
    border-bottom: 1px solid #ebebeb;
}

.table dd:last-of-type {
    border-bottom: none;
}

.table dt,
.table dd {
    padding: 0.8em;
    line-height: 1.4em;
}

.table dt {
    width: 10em;
    background: #b39354;
    color: #fff;
    fill: #fff;
}

.table dd {
    width: calc(100% - 10em);
    background-blend-mode: multiply;
}

.table + *,
* + .table {
    margin-top: 1em;
}

.feeTable {
    width: 100%;
}

.feeTable th,
.feeTable td {
    padding: 0.8em 0;
    border-top: 1px dotted #cebbaf;
    border-bottom: 1px dotted #cebbaf;
    vertical-align: middle;
}

.feeTable th {
    text-align: left;
}

.feeTable td {
    width: 6em;
    text-align: right;
}

.feeTable td + td {
    font-weight: bold;
}

.feeTable + *,
* + .feeTable {
    margin-top: 1em;
}

.feeTable tr th h4 {
    font-weight: 600;
}

.feeTable tr.opt th h4:after {
    content: "オプション";
    font-size: 0.8rem;
    background-color: red;
    padding: 0.25rem;
    border-radius: 2px;
    color: white;
    margin: 0 0 0 0.5rem;
}

.topicsList {
    list-style: none;
}

.topicsList li {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: flex-start;
    padding: 0.8em 0;
    border-bottom: 1px dotted #cebbaf;
}

.topicsList a {
    margin-left: 0.5em;
    font-weight: bold;
    line-height: 1.4em;
    text-align: justify;
    order: 3;
}

.topicsList time,
.topicsList span {
    padding: 0.5em;
    font-size: 0.8em;
    line-height: 1em;
}

.topicsList time {
    margin-left: 0.25em;
    line-height: 1em;
    opacity: 0.7;
    order: 2;
    text-align: right;
    margin-top: -1rem;
}

.topicsList span {
    width: 10em;
    background: #b39354;
    color: #fff;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    order: 1;
}

.note {
    padding: 10% 1em;
    background: #f4f3ed;
    border-radius: 0.5em;
    text-align: center;
}

.salonList > dl {
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0;
    border-bottom: 1px solid #cfc6c0;
    position: relative;
}

.salonList dt p {
    margin-top: 0.5em;
    text-align: left;
}

.salonList dt ul {
    margin-top: 1em;
}

.salonList dt li {
    padding: 0;
    border: 0;
    font-size: 0.875em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-grid;
}

.salonList [href^="tel"] {
    font-size: 1.4em;
    font-weight: bold;
}

.salonList dt + dd.favorite {
    position: absolute;
    right: 1em;
    top: 1em;
}

.salonList dt + dd.favorite .heartFavorite {
    font-size: 3rem;
}

.thumb:not(img) {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
}

.logo.after-login img {
    height: 60px;
    width: auto;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    /* main > *,
    main hr,
    article header {
        padding-top: 4em;
        padding-bottom: 2em;
    } */

    article {
        padding-bottom: 0;
    }

    article #subject {
        top: -2em;
    }

    #wrapper {
        width: 100%;
        overflow: hidden;
    }

    #footer {
        padding-bottom: 0;
    }

    .toppage #footer {
        padding-bottom: 0;
    }

    #footer .sp_reverse {
        flex-direction: column-reverse;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
    }

    #footer .gnav {
        margin: 0 auto 5rem;
    }

    #footer .gnav_wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    #footer .gnav_item {
        margin: 2rem 0;
        padding: 0 1.2rem;
    }

    .ft_squre-icon {
        margin: 0 auto 5rem;
        text-align: center;
        display: flex;
        padding: 0px 30px;
        gap: 5%;
    }

    .ft_squre-icon img {
        width: 245.67px;
        height: 66.18px;
    }

    .ft_comrec {
        margin: 3rem auto 3rem;
    }

    .ft_tokushou {
        margin: 0 auto;
    }

    .ft_comrec a,
    .ft_tokushou a {
        padding-bottom: 1rem;
        margin-bottom: 0;
        display: block;
        text-align: center;
    }

    #fLink a {
        color: #fff;
        padding: 0;
    }

    #pagePath {
        padding: 1em 0;
        overflow-x: scroll;
    }

    #pagePath li {
        white-space: nowrap;
    }

    #fAddress dl {
        justify-content: center;
        text-align: center;
    }

    #fNav ul {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        margin: 0 -1.5em;
        margin-top: 1em;
        border-top: 1px solid #fff;
    }

    #fNav ul:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        border-bottom: 1px solid #fff;
    }

    #fNav li {
        border-bottom: 1px solid #fff;
    }

    #fNav li ul {
        display: none;
    }

    #fNav a {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        align-content: center;
        padding: 1em;
        text-decoration: none;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    #fNav li:nth-child(odd) a {
        padding: 1em 0 1em 2em;
    }

    #fNav a:hover,
    #fNav a:active {
        background: #5d4e3d;
    }

    #fNav i {
        margin-right: 0.2em;
    }

    #fLink {
        margin: 2em 0;
    }

    #fSns {
        margin: 1em 0;
    }

    .subject {
        font-size: 1.6em;
    }

    .title {
        font-size: 1.4em;
    }

    .subTitle {
        font-size: 1.2em;
    }

    .salonList .subTitle {
        width: 80%;
    }

    .salonList dl {
        flex-wrap: wrap;
    }

    .salonList dt {
        width: 100%;
        padding-bottom: 1em;
    }

    .salonList dt ul {
        padding: 0.8em;
        border: 1px solid #f4f3ed;
    }

    .salonList dt li {
        white-space: normal;
    }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
    html {
        font-size: 2.8vw;
    }

    #siteName {
        height: 15vw;
        padding: 3.5vw 0 0 3vw;
    }

    #siteName svg {
        font-size: 8vw;
    }

    #gMap {
        height: 100vw;
    }

    #fAddress dt + dd {
        text-indent: 0.25em;
    }

    #fNav li {
        width: 50%;
    }

    #fNav li:nth-child(odd) {
        border-right: 1px solid #fff;
    }

    #fLink ul {
        flex-wrap: wrap;
    }

    #fLink li {
        width: 100%;
        text-align: center;
    }

    #fLink li + li {
        margin-top: 1em;
    }

    [id^="anchor_"] {
        margin-top: calc(-15vw - 2em);
    }

    .table dt,
    .table dd {
        width: 100%;
    }

    .table dd {
        margin-top: 0;
    }

    .topicsList li {
        flex-wrap: wrap;
        align-items: center;
    }

    .topicsList a {
        width: 100%;
        margin: 0.5em 0 0 0;
    }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    /*767px以下 横向き*/
    html {
        font-size: 1.8vw;
    }

    #wrapper {
        padding-top: 8vw;
    }

    #header {
        height: 8vw;
    }

    #siteName {
        height: 8vw;
        padding: 1.5vw 0 0 1.5vw;
    }

    #siteName svg {
        font-size: 5vw;
    }

    #gMap {
        height: 70vh;
    }

    #fNav li {
        width: 33.33%;
    }

    [id^="anchor_"] {
        margin-top: calc(-10vw - 2em);
    }
}

@media screen and (min-width: 768px) {
    html {
        font-size: 62.5%;
    }

    #siteName {
        position: absolute;
    }

    #pagePath {
        padding: 2em 0;
    }

    #pagePath ul {
        flex-wrap: wrap;
    }

    #footer .wrap {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #fAddress {
        width: 22em;
    }

    #fNav ul {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        justify-content: center;
    }

    #fNav ul ul {
        display: block;
        margin-left: 1.2em;
    }

    #fNav li {
        padding: 2rem 0;
        text-align: left;
        border-left: 1px solid #fff;
    }

    #fNav li:last-child {
        border-right: 1px solid #fff;
    }

    #fNav li a {
        width: calc(100% / 6);
        padding: 2rem 7rem 2rem 1.5rem;
        text-decoration: none;
    }

    #fNav > li > a {
        position: relative;
        padding-left: 1.2em;
    }

    #fNav > li i {
        position: absolute;
        left: 0;
    }

    #fNav a:hover,
    #fNav a:active {
        color: #f1a107;
        fill: #f1a107;
    }

    #fLink,
    #fSns,
    #copyright {
        width: 100%;
        margin-top: 4rem;
    }

    .subject {
        font-size: 1.8em;
    }

    .title {
        font-size: 1.4em;
    }

    .subTitle {
        font-size: 1.2em;
    }

    .topicsList li {
        padding: 1em 0;
    }
}

.salonList dt {
    width: 100%;
}

.salonList dt + dd {
    margin-left: auto;
}

.salonList dd + dd {
    margin: 1em 0 0 1em;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

.salonList dd + dd.map-btn {
    justify-content: right;
    margin: -3em 0 0 0;
}

@media screen and (min-width: 768px) {
    main > *,
    main hr,
    article header {
        padding-top: 5em;
        padding-bottom: 1em;
    }

    article {
        padding-bottom: 1rem;
    }

    article #subject {
        top: -4em;
    }

    #siteName {
        top: 1.5em;
        left: 1.5em;
    }

    #siteName svg {
        font-size: 3em;
    }

    #gMap {
        height: 40em;
    }

    [id^="anchor_"] {
        margin-top: -10em;
    }

    .wrap {
        max-width: 1100px;
    }
}

/* 2023年4月 追加 */
/* ------------------------------
　共通
------------------------------ */
.f-mincho {
    font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho",
        "Times New Roman", serif;
}

.f-minchoDB {
    font-family: "Yu Mincho Demibold", "YuMincho Demibold", "Yu Mincho",
        "YuMincho", "Hiragino Mincho ProN", "MS PMincho", "Times New Roman",
        sans-serif;
}

.txt-pink {
    color: #ff7676 !important;
}

.txt-black {
    color: #000 !important;
}

.txt-gold {
    color: #b39354 !important;
}

.txt-red {
    color: #f22603 !important;
}

.txt-green {
    color: #009b8f !important;
}

.txt-yellowgreen {
    color: #2be127 !important;
}

.txt-yellow {
    color: #cfa920 !important;
}

.txt-lightblue {
    color: #95e4ff !important;
}

.txt-lightpink {
    color: #ffadad !important;
}

.txt-grey {
    color: #888888 !important;
}

.txt-white {
    color: #fff !important;
}

.txt-small {
    font-size: 75% !important;
}

.hissu {
    padding-left: 2rem;
    font-size: 1.2rem;
}

.box-shadow {
    box-shadow: 10px 9px 12px 0px rgba(10, 10, 10, 0.1),
        0px 0px 0px 1px rgba(10, 10, 10, 0.02);
}

.btn-gold {
    background-color: #b39354;
    color: #fff;
    border: none;
    text-decoration: none;
}

.btn-black {
    background-color: #000;
    color: #fff;
    border: none;
    text-decoration: none;
}

.btn-red {
    background-color: #c14829;
    color: #fff;
    border: none;
    text-decoration: none;
}

.btn-pink {
    background-color: #f99292;
    color: #fff;
    border: none;
    text-decoration: none;
}

.btn-lightgreen {
    background-color: #e5f5f4;
    color: #35220d;
    border: none;
    text-decoration: none;
}

.btn-white {
    background-color: #fff;
    color: #000;
    border: 2px solid #ddd;
    text-decoration: none;
}

.btn-orange {
    background-color: #f2a122;
    color: #fff;
    text-decoration: none;
}

.btn-blue {
    background-color: #05a7df;
    color: #fff;
    text-decoration: none;
}

.btn-grey {
    background-color: #888;
    color: #fff;
    text-decoration: none;
}

.btn-yellow {
    background-color: #c8b863;
    color: #fff;
    text-decoration: none;
}

.bg-pink {
    background-color: #feefef;
    color: #000;
}

.bg-blue {
    background-color: #d9f2fa;
    color: #000;
}

.bg-gold {
    background-color: #b39354;
    color: #fff;
}

.bg-grey {
    background-color: #cccccc;
    color: #fff;
}

.bg-lightgrey {
    background-color: #f9f8f6;
    color: #000;
}

.bg-black {
    background-color: #000 !important;
    color: #fff !important;
}

.bg-lightblack {
    background-color: #2a2a2a;
    color: #fff;
}

.bg-lightgreen {
    background-color: #e5f5f4;
    color: #35220d;
}

.bg-yellow {
    background-color: #cfa920;
    color: #fff;
}

.bg-red {
    background-color: #c1272d;
    color: #fff;
}

.bg-lightblue {
    background-color: #e6ebee !important;
    color: #000 !important;
}

.article-border-bottom {
    background-image: url("../img/bg-line.jpg") !important;
    background-size: 100% 4px !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
}

.linkText {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: underline;
}

.btn {
    transition: 0.5s all;
}

.btn:hover {
    opacity: 0.5;
}

.btn-pd-lr-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.common-frame {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    max-width: 950px;
}

.frame-black {
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.common-frame .bg-gold,
.common-frame .bg-black,
.common-frame .bg-red,
.common-frame .bg-lightblack {
    padding: 1em;
    font-size: 1.8rem;
    font-weight: bold;
}

.common-frame .bg-red {
    font-size: 2.2rem;
}

.common-frame .no-word {
    min-height: 6rem;
    padding: 0;
}

.common-frame .main-sec {
    border-radius: 0 0 18px 18px;
}

.border-bk-top {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.border-bk-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.main-sec {
    padding: 3em 3em 2em;
}

.order-title p,
.order-title span {
    color: #fff;
    font-weight: normal;
    font-size: 1.4rem;
    display: block;
}

.bg-lightblack span {
    color: #fff;
    font-weight: normal;
    font-size: 1.4rem;
    display: block;
}

.text-decoration-underline {
    text-decoration: underline;
}

.border-bottom-gold {
    border-bottom: 1px solid #b39354;
}

.border-bottom-black {
    border-bottom: 1px solid #000;
}

.border-bottom-grey {
    border-bottom: 1px solid #c3c3c3;
}

.strike-through {
    text-decoration: line-through;
}

.various-txt span {
    display: block;
}

.btn-large {
    padding: 1em 5em;
    font-size: 1.6rem;
    font-weight: bold;
    width: 90%;
}

.btn-middle {
    padding: 1.5em 3em;
    font-size: 1.5rem;
    font-weight: bold;
}

.btn-small {
    padding: 0.8em 2em;
    font-size: 1.4rem;
    font-weight: bold;
}

.flex-evenly {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-evenly;
}

.flex-between {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
}

.flex-evenly .btn,
.flex-between .btn {
    width: 15em;
    padding: 1em 0;
}

.form-group {
    margin-bottom: 1em;
}

.common-frame.radius-0 {
    border-radius: 0;
}

.common-frame.radius-0 .bg-gold {
    border-radius: 0;
}

.content-box {
    margin: 1em auto 3em;
}

.content-box:last-of-type {
    margin: 1em auto 0;
}

.font-size-10 {
    font-size: 1rem !important;
}

.font-size-11 {
    font-size: 1.1rem !important;
}

.font-size-12 {
    font-size: 1.2rem !important;
}

.font-size-13 {
    font-size: 1.3rem !important;
}

.font-size-14 {
    font-size: 1.4rem !important;
}

.font-size-15 {
    font-size: 1.5rem !important;
}

.font-size-16 {
    font-size: 1.6rem !important;
}

.font-size-17 {
    font-size: 1.7rem !important;
}

.font-size-18 {
    font-size: 1.8rem !important;
}

.font-size-19 {
    font-size: 1.9rem !important;
}

.font-size-20 {
    font-size: 2rem !important;
}

.ta_center {
    text-align: center !important;
}

.btn.disabled,
.btn:disabled {
    opacity: 0.3;
}

.text-underline {
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    .mt-pc-0 {
        margin-top: 0rem !important;
    }

    .mt-pc-1 {
        margin-top: 1rem !important;
    }

    .mt-pc-2 {
        margin-top: 2rem !important;
    }

    .mt-pc-3 {
        margin-top: 3rem !important;
    }

    .mt-pc-4 {
        margin-top: 4rem !important;
    }

    .mt-pc-5 {
        margin-top: 5rem !important;
    }

    .mt-pc-6 {
        margin-top: 6rem !important;
    }

    .mt-pc-7 {
        margin-top: 7rem !important;
    }

    .mt-pc-8 {
        margin-top: 8rem !important;
    }

    .mt-pc-9 {
        margin-top: 9rem !important;
    }

    .mt-pc-10 {
        margin-top: 10rem !important;
    }

    .mb-pc-0 {
        margin-bottom: 0rem !important;
    }

    .mb-pc-1 {
        margin-bottom: 1rem !important;
    }

    .mb-pc-2 {
        margin-bottom: 2rem !important;
    }

    .mb-pc-3 {
        margin-bottom: 3rem !important;
    }

    .mb-pc-4 {
        margin-bottom: 4rem !important;
    }

    .mb-pc-5 {
        margin-bottom: 5rem !important;
    }

    .mb-pc-6 {
        margin-bottom: 6rem !important;
    }

    .mb-pc-7 {
        margin-bottom: 7rem !important;
    }

    .mb-pc-8 {
        margin-bottom: 8rem !important;
    }

    .mb-pc-9 {
        margin-bottom: 9rem !important;
    }

    .mb-pc-10 {
        margin-bottom: 10rem !important;
    }
}

@media screen and (max-width: 767px) {
    .main-sec {
        padding: 3em 1.5em 2em;
    }

    .sp-block {
        display: block !important;
    }

    .btn-small {
        font-size: 1.2rem;
    }

    .btn-middle {
        padding: 1rem 3em;
    }

    .p-sp-0 {
        padding: 0 !important;
    }

    .font-size-md-10 {
        font-size: 1rem !important;
    }

    .font-size-md-11 {
        font-size: 1.1rem !important;
    }

    .font-size-md-12 {
        font-size: 1.2rem !important;
    }

    .font-size-md-13 {
        font-size: 1.3rem !important;
    }

    .font-size-md-14 {
        font-size: 1.4rem !important;
    }

    .font-size-md-15 {
        font-size: 1.5rem !important;
    }

    .font-size-md-16 {
        font-size: 1.6rem !important;
    }

    .font-size-md-17 {
        font-size: 1.7rem !important;
    }

    .font-size-md-18 {
        font-size: 1.8rem !important;
    }

    .font-size-md-19 {
        font-size: 1.9rem !important;
    }

    .font-size-md-20 {
        font-size: 2rem !important;
    }

    .ta_center_sp {
        text-align: center !important;
    }

    .mt-sp-0 {
        margin-top: 0rem !important;
    }

    .mt-sp-1 {
        margin-top: 1rem !important;
    }

    .mt-sp-2 {
        margin-top: 2rem !important;
    }

    .mt-sp-3 {
        margin-top: 3rem !important;
    }

    .mt-sp-4 {
        margin-top: 4rem !important;
    }

    .mt-sp-5 {
        margin-top: 5rem !important;
    }

    .mt-sp-6 {
        margin-top: 6rem !important;
    }

    .mt-sp-7 {
        margin-top: 7rem !important;
    }

    .mt-sp-8 {
        margin-top: 8rem !important;
    }

    .mt-sp-9 {
        margin-top: 9rem !important;
    }

    .mt-sp-10 {
        margin-top: 10rem !important;
    }

    .mb-sp-0 {
        margin-bottom: 0rem !important;
    }

    .mb-sp-1 {
        margin-bottom: 1rem !important;
    }

    .mb-sp-2 {
        margin-bottom: 2rem !important;
    }

    .mb-sp-3 {
        margin-bottom: 3rem !important;
    }

    .mb-sp-4 {
        margin-bottom: 4rem !important;
    }

    .mb-sp-5 {
        margin-bottom: 5rem !important;
    }

    .mb-sp-6 {
        margin-bottom: 6rem !important;
    }

    .mb-sp-7 {
        margin-bottom: 7rem !important;
    }

    .mb-sp-8 {
        margin-bottom: 8rem !important;
    }

    .mb-sp-9 {
        margin-bottom: 9rem !important;
    }

    .mb-sp-10 {
        margin-bottom: 10rem !important;
    }

    .pt-sp-0 {
        padding-top: 0rem !important;
    }

    .pt-sp-1 {
        padding-top: 1rem !important;
    }

    .pt-sp-2 {
        padding-top: 2rem !important;
    }

    .pt-sp-3 {
        padding-top: 3rem !important;
    }

    .pt-sp-4 {
        padding-top: 4rem !important;
    }

    .pt-sp-5 {
        padding-top: 5rem !important;
    }

    .pt-sp-6 {
        padding-top: 6rem !important;
    }

    .pt-sp-7 {
        padding-top: 7rem !important;
    }

    .pt-sp-8 {
        padding-top: 8rem !important;
    }

    .pt-sp-9 {
        padding-top: 9rem !important;
    }

    .pt-sp-10 {
        padding-top: 10rem !important;
    }

    .pb-sp-0 {
        padding-bottom: 0rem !important;
    }

    .pb-sp-1 {
        padding-bottom: 1rem !important;
    }

    .pb-sp-2 {
        padding-bottom: 2rem !important;
    }

    .pb-sp-3 {
        padding-bottom: 3rem !important;
    }

    .pb-sp-4 {
        padding-bottom: 4rem !important;
    }

    .pb-sp-5 {
        padding-bottom: 5rem !important;
    }

    .pb-sp-6 {
        padding-bottom: 6rem !important;
    }

    .pb-sp-7 {
        padding-bottom: 7rem !important;
    }

    .pb-sp-8 {
        padding-bottom: 8rem !important;
    }

    .pb-sp-9 {
        padding-bottom: 9rem !important;
    }

    .pb-sp-10 {
        padding-bottom: 10rem !important;
    }
}

/* ------------------------------
　予約ボタン編集用
------------------------------ */
.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
    -ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
}

.delay2 {
    animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
}

.yoyaku_btn {
    text-align: right;
}

.yoyaku {
    float: right;
    margin-top: -39px;
}

#op_btn {
    z-index: 1;
    position: fixed;
}

#op_btn.active {
    opacity: 0.4;
}

.yoyaku {
    position: fixed !important;
    right: 0;
    top: 111px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
    line-height: 1;
    margin: 0;
    z-index: 9999;
    font-size: 16px;
    transition: 0.5s all;
}

.yoyaku:hover {
    opacity: 0.5;
}

.yoyaku.top {
    position: fixed !important;
    right: 0;
    top: 55px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background: #ce9b0e;
    line-height: 1;
    margin: 0;
    z-index: 9999;
    font-size: 16px;
}

.yoyaku a {
    display: block;
    color: #fff;
    background-color: #b39354;
    padding: 30px 11px;
    text-decoration: none;
}

.before-login {
    display: none;
}

@media screen and (min-width: 768px) {
    .btn-login,
    .btn-login:not(:disabled):not(.disabled).active,
    .btn-login:not(:disabled):not(.disabled):active,
    .show > .btn-login.dropdown-toggle,
    .btn-login:hover {
        background: none;
        border: none;
    }

    .fade.delay2.yoyaku.fadeInUp {
        top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .logo img {
        width: 140px;
    }

    .after-login img {
        height: 60px;
        width: auto;
    }

    .after-login {
        display: block;
    }

    .btn-login {
        text-decoration: none;
        left: 2em;
        padding: 0.5em 1.5em;
        position: absolute;
    }

    .btn-login span {
        color: #fff;
    }

    .yoyaku {
        position: fixed !important;
        width: 100%;
        writing-mode: unset;
        line-height: 1;
        z-index: 9999;
        font-size: 15px;
        text-align: center;
        opacity: 0.9;
        top: auto;
        bottom: 0%;
    }

    .yoyaku a {
        display: block;
        color: #fff;
        padding: 0.7em 1em;
        border-radius: 10%;
        text-decoration: none;
        margin: 1rem 1em 1rem auto;
        width: fit-content;
    }
}

/* ------------------------------
　店舗検索
------------------------------ */
.search-main .flex-fill {
    text-align: center;
    margin: 1em;
    font-size: 1.8rem;
    font-weight: bold;
}

.favorite-box .flex-fill {
    width: 30%;
}

.search-main a {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    text-decoration: none;
}

.search-main .flex-fill img {
    display: block;
    margin: auto;
    padding-bottom: 1em;
}

.search-box {
    margin: 3rem 0;
}

.title-box {
    font-size: 1.6rem;
    font-weight: bold;
}

.search-box .form-control {
    padding: 2rem 1rem;
}

.search-box .btn-outline-success {
    border: none;
    background-color: #e5f5f4;
}

.search-box .fa-search:before {
    color: #b39354;
    font-size: 2em;
    padding: 1em;
}

.favorite-box {
    font-size: 1.8rem;
    font-weight: bold;
}

.favorite-box a {
    text-decoration: none;
}

.favorite-box img {
    display: inline-block;
    margin: auto;
    vertical-align: middle;
    padding: 0 1em 0 0;
}

@media screen and (max-width: 767px) {
    .favorite-box .flex-fill {
        width: 100%;
    }

    .search-main .flex-fill img {
        display: inline-block;
        margin: auto;
        vertical-align: middle;
        padding: 0 1em 0 0;
    }

    .search-main .flex-fill.p-5 {
        padding: 3rem 1rem !important;
        margin: 1em auto;
    }

    .d-flex.search-main {
        display: block !important;
    }
}

/* ------------------------------
　パンくず
------------------------------ */
.breadcrumb {
    background: none;
    margin: -5rem auto 2rem;
    padding: 0.75rem 0;
}

.breadcrumb-item + .breadcrumb-item {
    padding: 0;
}

.breadcrumb-item a {
    color: #707070;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #707070;
    opacity: 1;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 1.5rem;
    color: #707070;
}

@media screen and (max-width: 767px) {
    .breadcrumb {
        font-size: 1.2rem;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 1rem;
    }
}

/* ------------------------------
　住所検索
------------------------------ */
.subject i {
    background: #d1311c;
}

#salon {
    padding: 0;
}

#salon h3 + .salonList {
    margin: 0;
}

#salon h2 + .salonList {
    border-top: 1px solid #aa9c91;
}

#mainTab {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    list-style: none;
}

#mainTab li {
    background: #35220d;
    color: #fff;
    fill: #fff;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

#mainTab li.active {
    background: #d1311c;
}

#fav section {
    padding-bottom: 0;
}

#map h2 + div {
    position: relative;
}

#selPref_safarimobile,
#map select {
    position: absolute;
    top: calc(8px + 2em);
    left: initial;
    right: 10px;
    width: auto;
    height: auto;
    border: solid 1px #35220d;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.25);
    transition-duration: 0.5s;
    transition-property: all;
}

#selPref_safarimobile:hover {
    background-color: #fff;
}

#selPref_safarimobile li,
#map select option {
    padding: 0.1em 0.5em;
    opacity: 0.8;
}

#selPref_safarimobile li.selected {
    opacity: 1;
    background-color: #f1a107;
}

#selPref_safarimobile li:not(.selected):hover {
    background-color: #f4b439;
}

.loadingLayer {
    display: none;
    margin: 0;
}

.loadingLayer > div {
    background: rgba(0, 0, 0, 0.8);
}

.loadingLayer p {
    font-weight: bold;
}

.loadingLayer .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10em;
    height: 10em;
    margin: -5em;
    border: 2px solid #a90329;
    border-top-color: transparent;
    border-radius: 100%;
    animation: spin 0.75s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.mapMask {
    margin: 0 !important;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    pointer-events: none;
}

#addr section {
    padding-bottom: 0;
}

#planTab {
    text-align: center;
}

#planTab ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    border-bottom: 0.2em solid #e4e4e4;
}

#planTab li {
    width: calc(100% / 7);
    padding: 1em;
    background: #fff;
    color: #4d4e50;
    text-align: center;
    transition: all 0.2s ease-out;
    border: solid 1px #e4e4e4;
    border-radius: 10px 10px 0px 0px;
    font-weight: bold;
}

#planTab li:hover,
#planTab li:active {
    cursor: pointer;
    background: #f1a107;
}

#planTab li + li {
    width: calc(100% / 7 - 1px);
}

#planTab .select {
    pointer-events: none;
    background: #e4e4e4;
    color: #4d4e50;
}

.gmap-info-box {
    position: relative;
    padding: 5px 10px 5px 5px;
    border: 1px solid #aaa;
    background-color: #fff;
    color: #5a2204;
}

.gmap-info-box img {
    display: none;
}

.gmap-info-box h3 {
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.caption {
    border: 1px solid #d1311c;
    color: #d1311c;
    fill: #d1311c;
    text-align: center;
}

.custom-control,
.custom-control-label,
input[type="checkbox"],
input[type="radio"] {
    cursor: pointer;
    width: fit-content;
}

input[type="checkbox"],
input[type="radio"] {
    top: 10px;
}

.custom-control {
    margin-bottom: 0;
}

.agree-check .caution-black {
    padding-bottom: 0;
}

.agree-check .custom-control {
    padding-left: 0;
}

.from-wide .custom-control {
    width: calc(100% + 1.5rem);
    display: inline;
}

.custom-checkbox .custom-control-label::before {
    top: 0.5rem;
}

.custom-control-label {
    padding: 3px 0 0 1em;
    font-size: 1.6rem;
    font-weight: bold;
}

.custom-control-label::before {
    background-color: #fff;
    border: solid 1px #ddd;
    width: 2rem;
    height: 2rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #000;
}

.custom-control-label::after {
    top: 0.8rem;
    left: -1.2rem;
    width: 1.4rem;
    height: 1.4rem;
    background-size: 100%;
}

.search-btn {
    margin: 5rem auto 0;
    padding: 1em 2em;
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
    transition: 0.5s all;
}

.search-btn:hover {
    opacity: 0.5;
}

.search-btn.btn-width_wide {
    width: 50%;
    padding: 1em 0;
}

@media screen and (min-width: 768px) {
    #mainTab li {
        width: calc(33.33% - 0.66em);
        padding: 1.5em 0;
    }

    #mainTab i {
        margin-right: 0.5em;
        vertical-align: middle;
    }

    #mainTab svg {
        width: 1.6em;
        height: 1.6em;
        margin: -0.3em 0;
    }

    .caption {
        padding: 2em;
    }

    .agree-check .custom-control {
        padding-left: 1em;
    }
}

@media screen and (max-width: 767px) {
    #mainTab li {
        width: calc(33.33% - 0.2em);
        padding: 1em 0;
    }

    #mainTab i {
        display: block;
        margin-bottom: 0.5em;
    }

    #mainTab svg {
        font-size: 1.8em;
    }

    #planTab select {
        width: 50%;
    }

    .caption {
        padding: 1em;
    }

    .custom-checkbox .custom-control-label::before {
        top: 0.7rem;
    }

    .custom-control-label::after {
        top: 1.2rem;
        left: -1.1rem;
        width: 1.2rem;
        height: 1.2rem;
    }

    .search-btn.btn-width_wide {
        width: 100%;
        padding: 1em 0;
    }
}

/* ------------------------------
　店舗詳細
------------------------------ */
.staff-review {
    max-width: 90%;
    margin: 5rem auto 1rem;
}

.staff-review h3 {
    margin-bottom: 1.5rem;
}

.staff-review h5 {
    font-weight: bold;
    text-align: center;
}

.staff-review .flex-box {
    margin-bottom: 3rem;
}

.staff-review .headline + * {
    margin-top: 0;
}

.staff-pic {
    text-align: center;
}

.staff-pic img {
    width: 100px;
    margin: 0 !important;
}

.staff-review .media-body {
    margin-left: 1em;
}

.staff-review .flex-fill {
    margin: 0 1rem;
    width: 50%;
}

.review-box .flex-fill p {
    display: inline-block;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 1em;
}

.review-box .flex-fill p + p {
    float: right;
}

.review-box {
    margin-top: 3em;
}

@media screen and (max-width: 767px) {
    .staff-review {
        max-width: 100%;
        margin: 5rem auto 1rem;
    }

    .staff-pic {
        text-align: center;
    }

    .staff-pic img {
        width: 8rem;
        margin: auto;
        margin: 0 !important;
    }

    .staff-review .media-body {
        margin-left: 1em;
    }

    .staff-review .flex-fill {
        margin: 1rem auto;
        width: 100%;
    }

    .staff-review .d-flex {
        display: block !important;
    }
}

/* ------------------------------
　お困り事
------------------------------ */
.common-table {
    border-collapse: separate;
    border-radius: 20px;
}

.common-table .thead-green {
    background-color: #b39354;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
}

.common-table .thead-green span {
    color: #addfdb;
    font-weight: normal;
    font-size: 1.4rem;
}

.common-table .thead-green th,
.common-table tbody td {
    padding: 1em;
}

.common-table .thead-green th {
    border-radius: 18px 18px 0 0;
    border-bottom: none;
    vertical-align: middle;
}

.common-table tbody .trouble-td {
    border-bottom: 1px solid #ddd;
    border-top: none;
    width: 50%;
}

.common-table tbody tr:last-child td {
    border-bottom: none;
}

.common-table tbody tr td:first-child {
    border-right: 1px solid #ddd;
}

.common-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 18px;
}

.common-table tbody tr:last-child td:last-child {
    border-radius: 0 0 18px 0;
}

.common-table .custom-control-label {
    padding: 0.2rem 0 0.5rem 1.5rem;
    font-size: 1.5rem;
    font-weight: normal;
}

/* ------------------------------
　コース選択　ウィザード
------------------------------ */
.bs-wizard {
    padding: 0 0 50px 0;
}

.bs-wizard > .bs-wizard-step {
    padding: 0;
    position: relative;
    width: 25%;
    opacity: 1;
}

.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
    color: #595959;
    font-size: 16px;
    margin-bottom: 5px;
}

.bs-wizard > .bs-wizard-step.active .bs-wizard-info {
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
}

.bs-wizard > .bs-wizard-step .bs-wizard-info {
    color: #bbb;
    font-size: 1.2rem;
}

.bs-wizard > .bs-wizard-step > .bs-wizard-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    background: #b39354;
    top: 23px;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
}

.bs-wizard > .bs-wizard-step > .progress {
    position: relative;
    border-radius: 0px;
    height: 8px;
    box-shadow: none;
    margin: 20px 0;
    left: 0%;
}

.bs-wizard > .bs-wizard-step > .progress > .progress-bar {
    width: 0px;
    box-shadow: none;
    background: #b39354;
}

.bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {
    width: 100%;
}

.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {
    width: 50%;
}

.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {
    width: 0%;
}

.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {
    width: 100%;
}

.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {
    background-color: #f5f5f5;
}

.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {
    opacity: 0;
}

.bs-wizard > .bs-wizard-step:first-child > .progress {
    width: 50%;
    left: 50%;
}

.bs-wizard > .bs-wizard-step:last-child > .progress {
    width: 50%;
}

.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot {
    pointer-events: none;
}

.new-second {
    justify-content: center;
}

.new-second .search-btn {
    width: 18rem;
    margin: 5rem 0rem 0.5rem;
    border-radius: 0;
}

/* ------------------------------
　コース選択　おすすめ
------------------------------ */
.course-wrap {
    margin: 0 auto;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.coursebox-wrap {
    width: 24%;
}

.course-box {
    border: 1px solid #b39354;
    border-radius: 10px;
    text-align: center;
    position: relative;
    height: 30rem;
}

.new-select {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

.new-select p {
    flex: 1 1 auto;
    text-align: center;
    color: #fff;
}

.new-select .course-new {
    background-color: #f2a127;
    border-radius: 10px 0 0 0;
}

.new-select .course-select {
    background-color: #b39354;
    border-radius: 0 10px 0 0;
}

.course-main .course-txt {
    font-size: 1.8rem;
    padding: 1rem 0 0;
}

.course-main .img-time {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.course-main .img-time img {
    width: auto;
}

.course-main .course-time {
    font-size: 2rem;
}

.course-main .course-time span {
    font-size: 5rem;
    font-weight: bold;
    line-height: 1;
}

.menu-select .course-main .course-time {
    padding: 1rem 0 2rem;
}

.menu-select .course-main .course-time span {
    font-size: 10rem;
}

.course-main .course-price {
    border-top: 1px solid #ddd;
    margin: 1rem auto 0;
    padding-top: 0.5rem;
    width: 90%;
    font-size: 2rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.course-caption {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 1rem 1rem 0;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

#accordion_menu > li {
    border: #ccc 1px solid;
    margin-bottom: -1px;
}

#accordion_menu a {
    color: #666;
}

#accordion_menu a[data-toggle="collapse"] {
    display: block;
    padding: 10px;
    text-decoration: none;
    position: relative;
}

#accordion_menu a[data-toggle="collapse"]:hover {
    background: #e7e7e7;
}

#accordion_menu a[data-toggle="collapse"]::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: #666 1px solid;
    border-right: #666 1px solid;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}

#accordion_menu a[aria-expanded="false"]::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-duration: 0.3s;
}

#accordion_menu a[aria-expanded="true"]::after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    transition-duration: 0.3s;
}

[id^="menu"] li {
    padding: 10px 10px 10px 20px;
}

@media screen and (max-width: 767px) {
    .d-flex.new-second {
        display: flex !important;
    }

    .new-second .search-btn {
        width: 15rem;
        margin: 5rem 0 0.5rem;
        border-radius: 0;
    }

    .coursebox-wrap {
        width: 48%;
        margin-bottom: 2rem;
    }

    .course-box {
        height: 33rem;
    }
}

/* ------------------------------
　オプション選択
------------------------------ */
.option-select {
    position: fixed !important;
    width: 100%;
    writing-mode: unset;
    line-height: 1;
    z-index: 9999;
    font-size: 15px;
    text-align: center;
    opacity: 1;
    top: auto;
    bottom: 0%;
    background-color: rgba(255, 255, 255, 0.8);
}

.option-select.yoyaku:hover {
    opacity: 1;
}

.option-select #selectCourse .feeTable th h3 {
    padding: 0;
}

.option-select #selectCourse .feeTable td {
    background-color: #fff;
    text-align: left;
}

#footer.ft-option {
    padding-bottom: 8em;
}

@media screen and (max-width: 767px) {
    .flex-evenly .btn,
    .flex-between .btn {
        width: 45%;
        padding: 1rem 0;
    }

    .option-select #selectCourse .feeTable th,
    .option-select #selectCourse .feeTable td {
        padding: 1rem;
    }

    .option-select #selectCourse .feeTable th h3 {
        font-size: 1.5rem;
    }

    .option-select #selectCourse .feeTable td h4 {
        font-size: 1.4rem;
    }
}

/* ------------------------------
　日時指名選択
------------------------------ */
.common-table .right-edit a {
    float: right;
    text-decoration: underline;
    color: #fff;
    font-size: 1.3rem;
    font-weight: normal;
}

.common-table .select-menu {
    font-weight: bold;
}

.common-table .select-menu tr {
    text-align: center;
}

.common-table .select-menu td {
    padding: 1rem 2em 0;
    border-top: none;
    border-bottom: 1px solid #ddd;
    position: relative;
    display: inline-block;
    width: 45%;
    text-align: left;
}

.common-table tbody.select-menu tr td:first-child {
    border-right: none;
}

.common-table .select-menu .select-title td {
    color: #b39354;
    font-weight: bold;
    padding: 2em 0 0 1em;
    border-bottom: none;
    float: left;
}

.common-table .select-menu td + td {
    text-align: right;
    vertical-align: bottom;
}

.common-table .select-menu .total-price td {
    padding: 2em 0 2em 1em;
    font-size: 1.7rem;
}

.common-table .select-menu .total-price td + td {
    color: #35220d;
    padding: 2em;
    float: none;
}

.common-table .right-req p,
.common-frame .right-req p {
    display: inline-block;
    vertical-align: -webkit-baseline-middle;
}

.common-frame .right-req .required-right {
    float: right;
    background-color: #f99292;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
}

.card {
    position: relative;
    display: block;
    margin-bottom: 0.75rem;
    background-color: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 0.25rem;
}

.card-block {
    padding: 1.25rem;
}

.staff-slider__image {
    border-radius: 0.25rem 0.25rem 0 0;
}

.staff-slider {
    margin: 0 -0.25rem 0.5rem;
    position: relative;
}

.staff-slider__frame {
    overflow: auto;
}

.staff-slider__frame::-webkit-scrollbar {
    display: none;
}

.staff-slider__inner {
    -webkit-overflow-scrolling: touch;
}

.staff-slider__inner::after {
    content: "";
    display: table;
    clear: both;
}

.staff-slider__item {
    background: #fff;
    border-radius: 0.4rem;
    border: 1px solid #ddd;
    cursor: pointer;
    margin: 0 0.25rem;
    overflow: hidden;
    position: relative;
    width: 12rem;
    float: left;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.staff-woman {
    background-color: #ee8d8c;
}

.staff-man {
    background-color: #179cce;
}

.staff-slider__item .img__wrap {
    width: 6.874rem;
    height: 7.832rem;
    display: table-cell;
    vertical-align: middle;
}

.staff-slider__item:hover {
    background: #e0e0e0;
    border-color: #e0e0e0;
}

.staff-slider__prev,
.staff-slider__next {
    background: #fff;
    border-radius: 50%;
    border: solid 1px #bdbdbd;
    cursor: pointer;
    display: none;
    height: 2rem;
    outline: none;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    z-index: 100;
    line-height: 2rem;
}

.staff-slider__prev:hover,
.staff-slider__prev:focus,
.staff-slider__next:hover,
.staff-slider__next:focus {
    background: #e0e0e0;
    outline: none;
    text-decoration: none;
}

.staff-slider__prev {
    left: -1.5rem;
}

.staff-slider__next {
    right: -1.5rem;
}

.staff-slider__prev:before,
.staff-slider__next:before {
    font-family: "Font Awesome 5 Free";
    font-size: 1.5rem;
    color: #b39354;
    font-weight: 900;
}

.staff-slider__prev:before {
    margin-left: -0.1rem;
    content: "\f104";
}

.staff-slider__next:before {
    margin-right: -0.1rem;
    content: "\f105";
}

.staff-slider__input {
    display: none;
}

.staff-slider__footer {
    background: #999;
    color: #fff;
    border-top: none;
    font-size: 1.2rem;
    overflow: hidden;
    padding: 0.375rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
}

.staff-slider__footer.staff-name {
    background-color: #f5f5f5;
    color: #777;
}

.nominate-fee {
    background: #fff;
    color: #35220d;
    width: 12rem;
    height: 4rem;
    clip-path: polygon(10% 90%, 20% 0%, 80% 0%, 90% 90%);
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: normal;
}

.staff-slider__image {
    border-radius: 0;
    display: block;
    margin: 0 auto;
    width: 10rem;
    height: 10rem;
    padding: 0.5rem;
}

.staff-slider__naming-fee {
    position: relative;
    z-index: 10;
    height: 1.5rem;
    margin: -1.5rem 0 0;
    padding: 0 0.25rem;
    line-height: 1.5rem;
    text-align: center;
    color: #424242 !important;
    background: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.staff-slider__input:checked + .staff-slider__item {
    background: #757575;
    border-color: #757575;
    color: #fff;
}

.staff-slider__input:checked + .staff-slider__item:before {
    background: #fff;
    border-radius: 50%;
    color: #b39354;
    content: "\f00c";
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Font Awesome 5 Free";
    font-size: 1.6rem;
    height: 2rem;
    position: absolute;
    right: 5px;
    top: 5px;
    text-align: center;
    width: 2rem;
    font-weight: 900;
}

.staff-slider__input:checked + .staff-slider__item:hover {
    background: #757575;
    border-color: #757575;
    cursor: default;
}

@media screen and (max-width: 767px) {
    .common-table .select-menu td {
        padding: 1rem 1rem 0;
        width: 60%;
    }

    .common-table .select-menu td + td {
        padding: 0 1rem;
        width: 30%;
    }

    .common-table .select-menu .total-price td + td {
        padding: 2em 1rem;
    }
}

/* ------------------------------
　日時指名選択（カレンダー）
------------------------------ */
.card-block {
    padding: 1.25rem;
}

.card-block h2 {
    color: #b39354;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.card-block h2 + p {
    margin: -0.5rem 0 1rem;
    color: #f99292;
    font-weight: bold;
}

.date-table__top-btn {
    margin-bottom: 0.5rem;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

.btn-prev.btn-sm {
    padding-left: 2.5rem;
}

.btn-next.btn-sm {
    padding-right: 2.5rem;
}

.btn-secondary {
    color: #424242;
    background-color: #fff;
    border: none;
    font-size: 1.3rem;
}

.btn-prev.btn-secondary:after {
    color: #ccc;
}

.btn-prev {
    padding-left: 1.8rem;
    position: relative;
}

.btn-next {
    padding-right: 1.8rem;
    position: relative;
}

.btn-prev:after {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    padding-right: 3rem;
}

.btn-next:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    padding-left: 3rem;
}

.date-table {
    width: 100%;
}

.date-table thead th {
    font-weight: normal;
    vertical-align: middle;
    border-bottom: 1px solid #bdbdbd;
}

.date-table thead th.bg-gold {
    background: #b39354;
    font-weight: bold;
}

.date-table th,
.date-table td {
    padding: 1rem;
}

.date-table__thead th,
.date-table__tfoot th {
    text-align: center;
}

.date-table th .date-table td {
    padding: 0.2rem 0.4rem;
}

.common-frame .date-table th,
.common-frame .date-table td {
    vertical-align: middle;
    border: 1px solid #bdbdbd;
    padding: 0;
    text-align: center;
}

.common-frame .date-table .date-table__thead th {
    padding: 0.5rem 0 1rem;
    border-radius: 0;
}

.date-table__btn--state-disabled {
    color: #bdbdbd;
    cursor: default;
}

.date-table__btn--state-active {
    color: #b39354;
    text-decoration: none;
}

.date-table__btn--state-active,
.date-table__btn--state-closed,
.date-table__btn--state-disabled {
    display: block;
    width: 100%;
}

.date-table__btn--state-disabled:before {
    content: "×";
}

.date-table__btn--state-active:before {
    content: "◯";
}

.date-table__btn--state-disabled:before,
.date-table__btn--state-active:before {
    font-size: 2rem;
    font-weight: bold;
}

.date-table__weekday {
    margin: auto;
    display: block;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
}

.saturday {
    color: #0a70b7;
}

.sunday {
    color: #df6859;
}

.common-frame .date-table__tbody tr:last-child td {
    border-bottom: 1px solid #bdbdbd;
}

.date-table__tbody td {
    border: 1px solid #ccc;
    cursor: pointer;
}

.delivery-active {
    background-color: #b39354;
}

.date-table__tbody td a {
    display: block;
}

@media screen and (max-width: 767px) {
    .card-block {
        padding: 0;
    }

    .date-table__btn--state-disabled:before,
    .date-table__btn--state-active:before {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .date-table thead th,
    .date-table td {
        font-size: 0.8rem;
    }

    .date-table th,
    .date-table td {
        padding: 0.2rem 0.4rem;
    }
}

/* ------------------------------
　ログイン＆パスワード
------------------------------ */
.login-sec,
.password-sec,
.signup-sec {
    max-width: 950px;
    margin: auto;
    padding: 0;
}

.login-page form,
.login-page .max-w100 {
    max-width: 800px;
    margin: 2em auto;
    padding-top: 0;
}

.form-group.row {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.form-control {
    padding: 1rem;
    font-size: 1.4rem;
    border-radius: 7px;
    height: auto;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #dbdbdb;
    border: none;
    opacity: 1;
    color: #000;
}

.custom-disabled {
    color: #000;
}

.loginbtn button {
    display: block;
    margin: 1em auto;
    text-align: center;
}

.loginbtn {
    text-align: center;
    margin: 3rem auto;
}

.loginbtn a {
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 1.5rem;
    width: fit-content;
    text-decoration: underline;
}

.loginbtn .btn {
    position: relative;
    display: inline-block;
    width: 280px;
}

.loginbtn .btn::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 4px;
    bottom: 0;
    right: 36px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

.loginbtn .btn::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 4px;
    bottom: 0;
    right: 33px;
    width: 30px;
    height: 0.5px;
    background: rgba(255, 255, 255, 0.4);
}

.pass_ac-link {
    margin: 3rem auto;
}

.account {
    font-size: 1.5rem;
    padding-bottom: 2rem;
    margin: 0 auto;
    text-align: center;
    display: block;
    width: fit-content;
    text-decoration: underline;
}

.loginbtn.btn-reissue button,
.loginbtn.btn-center button {
    margin: 1rem auto;
}

.width-sameform {
    max-width: 640px;
    margin: 3rem auto;
}

.fa-eye:before,
.fa-eye-slash:before {
    margin-left: -40px;
}

.fieldPassword {
    position: relative;
}

#buttonEye {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.signup-caution {
    margin: 5rem auto 5rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .login-page form,
    .login-page .max-w100 {
        max-width: 500px;
        margin: 2em 1rem;
    }

    .password-page p {
        font-size: 1.4rem;
    }

    .password-page form {
        max-width: 500px;
        margin: 0 1em;
    }

    .loginbtn button {
        display: block;
        margin: 1em auto 0 auto;
        text-align: center;
    }

    .loginbtn.btn-reissue button {
        margin: 1rem auto 0 0;
    }

    .loginbtn.btn-center button {
        margin: 1rem auto 0;
    }
}

/* ------------------------------
　アカウント作成
------------------------------ */
.account-sec form,
.account-sec .quit-wrap {
    max-width: 800px;
    margin: 2em auto;
    padding-top: 0;
}

.form-required {
    background: #000;
    color: #fff;
    font-weight: bold;
    padding: 0.3rem 1rem;
    border-radius: 7px;
    margin-left: 1rem;
    display: inline-block;
}

.common-frame label {
    padding: 7px 0;
    display: inline-block;
    vertical-align: middle;
}

.common-frame .form-group label {
    padding-left: 1rem;
}

.pass-caution {
    margin: 1rem 0 0 15rem;
    font-size: 1.3rem;
}

.account-sec form .label-black label {
    font-weight: normal;
    color: #000;
    padding-left: 0.6rem;
}

.form-check-input:disabled ~ .form-check-label {
    color: #000;
}

.form-select-wrap .form-control {
    width: auto;
}

.birthday-txt {
    padding: 0 1rem;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
}

.form-check {
    flex-basis: fit-content;
}

.caution-blue {
    color: #2cc1ff;
    display: block;
    font-size: 1.3rem;
    font-weight: normal;
}

.caution-black {
    color: #4d4e50;
    display: block;
    font-size: 1.3rem;
    font-weight: normal;
    padding: 1em;
}

.caution-pink {
    color: #f99292;
    display: block;
    font-size: 1.3rem;
    font-weight: normal;
    padding: 1em;
}

.common-table .thead-green.bg-grey {
    background-color: #f6f6f6;
    color: #000;
}

.common-table .thead-green.bg-grey span {
    color: #000;
    font-weight: normal;
    font-size: 1.4rem;
}

.account-sec form .txt-black label {
    color: #000;
}

.custom-control-input:disabled ~ .custom-control-label {
    color: #000;
}

.account-sec select + select {
    margin-top: 1em;
}

.over-y-scroll {
    overflow-y: scroll;
    height: 200px;
    padding: 1em;
}

.over-y-scroll::-webkit-scrollbar {
    width: 12px;
}

.over-y-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(100, 100, 100, 0.5);
    border-radius: 5px;
}

.over-y-scroll::-webkit-scrollbar-track {
    background: rgba(100, 100, 100, 0.3);
    border-radius: 0 0 5px 5px;
}

.over-x-scroll {
    overflow-x: scroll;
    padding: 1em;
}

.over-x-scroll::-webkit-scrollbar {
    width: 12px;
}

.over-x-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(100, 100, 100, 0.5);
    border-radius: 5px;
}

.over-x-scroll::-webkit-scrollbar-track {
    background: rgba(100, 100, 100, 0.3);
    border-radius: 0 0 5px 5px;
}

.agree-btn .btn {
    display: block;
    margin: auto;
    font-size: 1.5rem;
    padding: 1em 3em;
    border-radius: 10px;
}

.agree-btn .btn:disabled {
    opacity: 0.3;
}

.agree-check .custom-control-label {
    padding: 0.3rem 0 0 1em;
    font-size: 1.5rem;
    font-weight: normal;
    margin: 1em 0 0 1em;
}

.account-check-sec .form-control {
    background: #ddd;
}

@media screen and (max-width: 767px) {
    .account-sec form,
    .account-sec .quit-wrap {
        max-width: 500px;
        margin: 0 1em;
    }

    .account-sec .common-frame .main-sec {
        padding: 2em 0 1em;
    }

    .form-select-wrap .form-control {
        padding: 1rem 0.5rem;
        font-size: 1.5rem;
    }

    .agree-btn .btn {
        display: block;
    }

    .caution-black {
        padding: 1em 0;
    }

    .common-frame label {
        line-height: 1.5;
    }

    .common-frame .form-group label {
        padding-left: 0;
    }

    .pass-caution {
        margin: 1rem 0 0;
    }
}

.course-check .common-table .select-menu .select-title td {
    background: #e5f5f4;
    width: 90%;
    padding: 0.5rem 1em;
    margin: 3rem auto 1rem;
    float: none;
}

.course-check .common-table .select-menu td {
    border-bottom: none;
}

.course-check .common-table .select-menu tr:last-child td {
    margin-bottom: 3rem;
}

.course-check .customer-check .common-table .select-menu td {
    width: 90%;
}

.complete-page .main-sec {
    text-align: center;
}

.complete-page .btn {
    margin: 2em auto 0;
    display: block;
    width: fit-content;
}

.width-zip-pref {
    width: 40%;
}

#postcode,
#prefectures,
#municipalities {
    width: 50%;
}

@media screen and (max-width: 767px) {
    .course-check .sp-block .btn {
        width: 90%;
        margin: 1em auto;
        display: block;
    }

    .agree-check .custom-control-label {
        padding: 0.5rem 0 0 1em;
    }
}

/* ------------------------------
　モーダル
------------------------------ */
.modal .common-frame .bg-gold {
    border-radius: 0;
}

.modal .common-frame .bg-grey {
    padding: 1em;
    font-size: 1.8rem;
    font-weight: bold;
}

/* ------------------------------
　about
------------------------------ */
.about-sec {
    max-width: 800px;
    margin: auto;
}

.about-sec img {
    max-width: 600px;
    margin: 3rem auto 1rem;
    display: block;
}

@media screen and (max-width: 767px) {
    .about-sec img {
        margin: 0 auto;
        width: 100%;
    }
}

/* ------------------------------
　FAQ
------------------------------ */
.qa-004 dt,
.qa-004 dd {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 1em 1em 1em 3.5em;
}

.qa-004 dt {
    font-weight: 600;
}

.qa-004 dd + dt {
    margin-top: 1em;
}

.qa-004 dt::before,
.qa-004 dd::before {
    display: inline-block;
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    margin-right: 1em;
}

.qa-004 dt::before {
    background-color: #b39354;
    content: "Q";
}

.qa-004 dd::before {
    background-color: #6ec6bf;
    content: "A";
}

/* ------------------------------
  プライバシーポリシー
------------------------------ */
.price-sec img {
    max-width: 100%;
    width: auto;
    margin: 2em auto;
    display: block;
}

@media screen and (max-width: 767px) {
    .price-sec img {
        padding: 2em 1em;
    }
}

/* ------------------------------
  サイトマップ
------------------------------ */
.sitemap-sec a {
    text-decoration: underline !important;
    line-height: 2;
    font-size: 1.6rem;
}

.sitemap-sec ul {
    padding-left: 1em;
}

.sitemap-sec ul li:before {
    content: ">";
    color: #b39354;
    font-weight: bold;
    padding-right: 1rem;
}

/* ------------------------------
　予約内容のご確認
------------------------------ */
.course-check .common-table .select-menu .select-title td {
    background: #e5f5f4;
    width: 90%;
    padding: 0.5rem 1em;
    margin: 3rem auto 1rem;
    float: none;
}

.course-check .common-table .select-menu td {
    border-bottom: none;
}

.course-check .common-table .select-menu tr:last-child td {
    margin-bottom: 3rem;
}

.course-check .customer-check .common-table .select-menu td {
    width: 90%;
}

.complete-page .main-sec {
    text-align: center;
}

.complete-page .btn {
    margin: 2em auto 0;
    display: block;
    width: fit-content;
}

.course-check .common-table .select-menu td.width100 {
    width: 100% !important;
    padding-left: calc(5% + 2em) !important;
}

@media screen and (max-width: 767px) {
    .course-check .sp-block .btn {
        width: 90%;
        margin: 1em auto;
        display: block;
    }
}

/* ------------------------------
　マイページ
------------------------------ */
.customer-info .main-sec {
    font-size: 1.3em;
    font-weight: bold;
}

.yen-unit {
    padding-left: 1em;
}

.point-sec .text-small {
    font-size: 0.7em;
}

.rank-img img {
    padding-right: 5vw;
}

.mypage-btn .btn {
    font-size: 1.3em;
    font-weight: bold;
    text-align: left;
    padding: 1em;
    margin-bottom: 1em;
}

.mypage-btn .btn::after {
    content: "◀";
    float: right;
}

.mypage-favorite .salonList .linkText.tel {
    text-decoration: underline;
}

.mypage-favorite .salonList .linkText.tel use {
    color: #b39354;
}

.mypage-favorite .salonList > dl:last-child {
    border-bottom: none;
}

@media screen and (max-width: 767px) {
    .mypage-favorite .salonList .tel-link {
        margin: 1em 0 0 0;
    }
}

/* ------------------------------
　利用履歴
------------------------------ */
.history-table .common-frame .date-table th {
    font-size: 1em;
}

.history-table .common-frame .date-table th,
.history-table .common-frame .date-table td {
    padding: 1rem 2rem;
    white-space: nowrap;
}

.history-table .common-frame .date-table .btn {
    font-size: 1.5rem;
    border-radius: 7px;
}

/* ------------------------------
　トピックス
------------------------------ */
.topics-sec .topic-box {
    border-bottom: 1px solid #000;
}

.topics-sec .topic-box:first-of-type {
    border-top: 1px solid #000;
}

.topics-sec.topic-page .topic-box:first-of-type {
    border-top: none;
}

.pagination {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho",
        "Times New Roman", serif;
}

.pagination li {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 4.5rem;
    height: 4.5rem;
    background: #fff;
    border: solid 1px #000;
    color: #000;
    transition: all 0.15s linear;
    cursor: pointer;
}

.pagination li.first,
.pagination li.last {
    display: none;
}

.pagination li.navi-active {
    background: #111;
    pointer-events: none;
}

.pagination li.navi-active a {
    color: #fff;
}

.pagination li:not(.navi-active):hover {
    background: #111;
}

.pagination li:not(.navi-active):hover a {
    color: #fff;
}

.pagination > * + * {
    margin-left: 2rem;
}

.pagination li.prev {
    margin-left: 0rem;
}

/* ------------------------------
　about
------------------------------ */
.bg-about {
    background-image: url("../img/about_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    width: 100%;
}

.about-box {
    margin: 3rem auto 0;
}

.about-txt {
    font-size: 1.6rem;
    line-height: 2;
}

.box-one {
    border: 5px solid #b39354;
    margin: 3rem auto;
}

.box-number {
    background-color: #b39354;
    font-size: 2rem;
    font-weight: bold;
    display: block;
    width: 3rem;
    text-align: center;
}

.box-txt {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #b39354;
    padding: 0rem 0 2rem;
}

@media screen and (min-width: 768px) {
    .about-box {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        flex-wrap: wrap;
        margin: 3rem auto 0;
    }

    .box-one {
        width: 42%;
    }
}

@media screen and (max-width: 767px) {
    .about-txt {
        font-size: 1.3rem;
    }
}

/* ------------------------------
　マイページ
------------------------------ */
.mypage-sec {
    padding-top: 2rem;
}

/* ------------------------------
　商品一覧
------------------------------ */
.fade {
    transition: opacity 0.15s linear;
}

.modal-h3 {
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 2rem;
}

.search-modal ul li {
    padding: 0 0 1rem 2rem;
}

.search-part {
    margin: 3rem auto;
}

.search-modal label {
    padding: 0;
    cursor: pointer;
}

.search-modal input[type="checkbox"],
.search-modal input[type="radio"] {
    margin-right: 10px;
}

.products-sec {
    width: auto;
    max-width: 500px;
    margin: 10rem auto 0;
}

.products-sec img {
    width: auto;
    display: block;
    margin: auto;
}

.products-sec .product-name {
    font-size: 2.2rem;
    color: #b39354;
    font-weight: bold;
    text-decoration: underline;
    padding: 0.5rem 0 0.5rem;
    transition: 0.5s all;
}

.products-sec a:hover .product-name {
    opacity: 0.7;
}

.products-sec .price-fee {
    border-bottom: 1px solid #ababab;
    padding: 0 0 0.5rem;
}

.products-sec .tag-name {
    color: #b39354;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0;
    justify-content: space-between;
}

.products-sec .tag-name a {
    border: 1px solid #b39354;
    padding: 0.8rem 0 0.5rem;
    margin: 1%;
    width: 30%;
    border-radius: 5px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    transition: 0.5s all;
}

.products-sec .tag-name a li {
    color: #b39354;
}

.products-sec .tag-name a:hover {
    opacity: 0.6;
}

.numberof-txt {
    display: block;
}

.numberof-no {
    display: block;
    width: 80%;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #cccccc;
}

.cart-add {
    padding: 1em 0;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    width: 90%;
    max-width: 850px;
    background-color: #2a2a2a;
    color: #fff;
    text-decoration: none;
    margin: 1rem auto;
    text-align: center;
    display: block;
    cursor: pointer;
    transition: 0.5s all;
}

.cart-add:hover {
    opacity: 0.6;
}

.products-sec .mb-5 {
    margin-bottom: 8rem !important;
}

/* ------------------------------
　item　＆　itemdetail
------------------------------ */
.thumbnail .slick-track {
    transform: unset !important;
}

.thumbnail-img {
    opacity: 0.5;
    transition: opacity 0.3s linear;
    margin: 0 0.5rem;
    cursor: pointer;
    height: auto;
}

.thumbnail .slick-current {
    opacity: 1;
}

.slick-initialized {
    margin-bottom: 1rem;
}

/* slick dot カスタマイズ */
.slide-dots {
    text-align: center;
    margin: 0 0 0 -30px;
    li {
        display: inline-block;
        margin: 0 15px;
        button {
            position: relative;
            text-indent: -9999px;
            margin: 0 8px;
            padding: 0;
            background: none;
            border: none;
            border-radius: 0;
            outline: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            &:before {
                display: inline-block;
                content: "";
                width: 34px;
                height: 5px;
                background-color: #b5b5b6;
                text-indent: 0px;
                position: absolute;
                top: 0;
                left: 0;
            }
        }
        &.slick-active {
            button:before {
                content: "";
                background-color: #000;
            }
        }
    }
}

.category-sec {
    padding: 0;
}

.category-sec .produt-name {
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 1rem;
}

.price-title {
    display: inline-block;
    margin-bottom: 1rem;
}

.tax-per {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 0.3rem 1.5rem;
    margin: 0 0 1rem 1rem;
}

.price-yen {
    display: block;
}

.price-yen span {
    font-size: 1.4rem;
}

.price-detail {
    border-bottom: 1px solid #000;
    padding-bottom: 1rem;
}

.large-title {
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 1rem;
}

.middle-title {
    font-size: 1.8rem;
    font-weight: bold;
    padding-bottom: 1rem;
}

.small-title {
    font-size: 1.6rem;
    font-weight: bold;
    padding-bottom: 0.5rem;
}

.cart-white {
    background-color: #fff;
    color: #b39354;
    border: 3px solid #b39354;
}

.category-form {
}

.category-form .pos-right {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: right;
    align-items: center;
}

.category-form .pos-left {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: left;
    align-items: center;
}

.category-form .numberof-txt {
    padding-right: 1rem;
}

.category-form .numberof-no {
    width: 100px;
}

.width100 {
    max-width: 100%;
    width: 100%;
    margin: 5rem auto;
}

.rhombus {
    background: url("../img/rhombus.png") no-repeat top right;
    background-size: auto;
    padding: 5rem 0;
}

.various-img {
    max-width: 500px;
    margin: auto;
}

.various-img img {
    width: 500px;
}

.various-pattern h3 {
    font-size: 2rem;
}

.various-pattern h4 {
    font-size: 1.8rem;
}

.left-border-gold {
    border-left: 10px solid #b39354;
    padding: 10px 0 10px 20px;
}

.various-table {
    margin: 1rem 0;
}

.various-table th,
.various-table td {
    padding: 1rem;
    border-bottom: 1px solid #000;
    vertical-align: top;
}

.various-table th {
    width: 25%;
    font-weight: normal;
}

.various-table td {
    width: 75%;
}

.detail-hero {
    position: relative;
    margin: auto;
}

.slick-dots {
    bottom: -3rem;
}

.slick-next {
    position: relative;
    right: 0px;
    display: block;
    width: 286px;
    font-size: 15px;
    line-height: 1;
    height: auto;
    padding: 12px 0 18px 0;
    margin: 64px auto 0 auto;
    cursor: pointer;
    color: #fff;
    background: #000;
}

.slick-next:hover {
    background: #000;
    color: #fff;
    opacity: 0.7;
}

.slick-next:before {
    display: block;
    content: "NEXT" !important;
    color: #fff;
    font-size: 16px;
    font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN",
        "Yu Mincho", "MS PMincho", "Times New Roman", serif;
    margin: 0 0 5px 0;
    opacity: 1;
}

.slick-next::after {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    display: inline-block;
    content: "";
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 14px;
    height: 14px;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    margin: auto;
}

.hidden {
    display: none !important;
}

.slick-prev {
    position: relative;
    right: 0px;
    display: block;
    width: 286px;
    font-size: 15px;
    line-height: 1;
    height: auto;
    padding: 12px 0 18px 0;
    margin: 64px auto 0 auto;
    cursor: pointer;
    color: #fff;
    background: #000;
}

.slick-prev:hover {
    background: #000;
    color: #fff;
    opacity: 0.7;
}

.slick-prev:before {
    display: block;
    content: "BACK" !important;
    color: #fff;
    font-size: 16px;
    font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN",
        "Yu Mincho", "MS PMincho", "Times New Roman", serif;
    margin: 0 0 5px 0;
    opacity: 1;
}

.slick-prev::after {
    position: absolute;
    top: 0;
    left: 18px;
    bottom: 0;
    display: inline-block;
    content: "";
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 14px;
    height: 14px;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(225deg);
    margin: auto;
}

.slick-dots li button:before {
    opacity: 1;
    color: #fff;
}

.slick-dots li {
    margin: 0 1rem;
}

@media screen and (max-width: 767px) {
    .slick-dots {
        bottom: 1rem;
    }

    .slick-dots li button:before {
        font-size: 1rem;
    }

    .slick-dots li {
        margin: 0 0.7rem;
    }
}

.itemdetail-sec {
    padding-top: 3rem;
    max-width: 900px;
    margin: auto;
}

.itemdetail-left {
    width: 50%;
}

.itemdetail-right {
    width: 50%;
}

.itemdetail-right {
    line-height: 3;
    font-size: 2rem;
}

.itemdetail-right .item-mark {
    line-height: 1.8;
}

.detail-hero,
.detail-hero .slider,
.detail-hero .slider .slick-list {
    width: 45rem;
    height: 45rem;
}

.detail-hero .slider .slick-img,
.detail-hero .slider .slick-img img {
    height: 45rem;
    width: 45rem !important;
    object-fit: contain;
}

.itemdetail-right form {
    padding: 0;
}

.number-spinner-wrap {
    position: relative;
    display: block;
    height: auto;
    width: fit-content;
    margin: 0;
}

.number-spinner-wrap input::-webkit-outer-spin-button,
.number-spinner-wrap input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-spinner-wrap input {
    width: 6rem;
    height: 6rem;
    padding: 0;
    text-align: center;
}

.number-spinner-wrap .spinner {
    position: absolute;
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    padding: 2px 0.5rem;
    text-align: center;
    cursor: pointer;
    user-select: none;
    right: -3rem;
}

.number-spinner-wrap .spinner-up {
    top: -30%;
    transform: translate(0, 0%);
}

.number-spinner-wrap .spinner-down {
    bottom: 40%;
    transform: translate(0, 0%);
}

.itemdetail-right .cart-add {
    border-radius: 0;
    width: 100%;
    padding: 0.5rem 0;
}

.itemdetail-sns {
    margin: 3rem auto;
    padding: 2rem;
}

.itemdetail-sns p {
    line-height: 1.8;
    font-size: 1.6rem;
}

.itemdetail-sns .head-icon li {
    padding: 0;
}

.detail-usually {
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .itemdetail-left,
    .itemdetail-right {
        width: 100%;
    }

    .itemdetail-right {
        padding-top: 9rem;
    }

    .detail-hero,
    .detail-hero .slider,
    .detail-hero .slider .slick-list {
        width: 30rem;
        height: 30rem;
    }

    .detail-hero .slider .slick-img,
    .detail-hero .slider .slick-img img {
        height: 30rem;
        width: 30rem !important;
    }
}

/* ------------------------------
　FAQ
------------------------------ */
.faq-sec {
    margin: 5rem auto;
}

.faq-sec h3 {
    font-size: 2rem;
}

.toggle_title {
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    padding: 10px 10px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    background: #b39354;
    border-right: 40px solid #9f7f41;
    color: #fff;
}

.toggle_title span {
    font-size: 3rem;
    padding: 1rem 2rem 1rem 1rem;
    vertical-align: middle;
}

.toggle_title:hover {
    opacity: 0.7;
}

.toggle_title:after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 11px;
    background: url(../img/btn_arrow.png) no-repeat right top;
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    transition: 0.2s;
}

.toggle_title.selected:after {
    transform: translateY(-50%) rotate(180deg);
    transition: 0.2s;
}

.toggle_txt {
    display: none;
    padding: 2rem 1rem 1rem 1rem;
}

.toggle_txt span {
    font-size: 3rem;
    padding: 1rem 2rem 1rem 1rem;
    vertical-align: middle;
}

/* ------------------------------
　お知らせ
------------------------------ */
.topic-content h3 {
    font-weight: normal;
    font-size: 1.8rem;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 1rem 0;
}

.topic-content {
    border-bottom: 1px solid #000;
}

.topic-butoon {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    margin: 2rem auto;
}

.topic-butoon div {
    margin: 1rem 1.5rem;
    transition: 0.5s all;
}

.topic-butoon div:hover {
    opacity: 0.7;
}

.topic-butoon .topic-back,
.topic-butoon .topic-next {
    padding: 1.5rem;
}

.topic-butoon .topic-list {
    padding: 1.5rem 5rem;
}

.new-topics {
    margin: 5rem auto;
}

.new-topics h4 {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 1.6rem;
}

.new-topics .topic-one {
    padding: 1.5rem 1rem 1.5rem 2rem;
    border-bottom: 1px solid #d1d1d1;
}

/* ------------------------------
　お知らせ
------------------------------ */
.news-container {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}

.news-container .topic-box {
    width: 21.25%;
    margin: 0 5% 4rem 0;
}

.news-container .topic-box:nth-child(4n) {
    margin: 0 0 0 0;
}

.news-container .topic-box img {
    max-width: 200px;
    max-height: 200px;
    display: block;
    text-align: center;
    margin: auto;
    width: 18vw;
    height: 18vw;
    margin-bottom: 1rem;
}

.item-detail {
    line-height: 1.8;
    max-width: 200px;
}

@media screen and (max-width: 767px) {
    .news-container .topic-box {
        width: 50%;
        font-size: 1.3rem;
    }

    .news-container .topic-box img {
        max-width: 176px;
        max-height: 176px;
        width: 45vw;
        height: 45vw;
    }

    .news-container .topic-box {
        width: 45%;
        margin: 0 10% 4rem 0;
    }

    .news-container .topic-box:nth-child(2n) {
        margin: 0 0 0 0;
    }
}

/* ------------------------------
　読みもの
------------------------------ */
.recommend-blog .topic-box {
    border: none;
}

@media screen and (max-width: 767px) {
    .recommend-blog .topic-box {
        font-size: 1.3rem;
    }
}

/* ------------------------------
　カート
------------------------------ */
.cart-sec {
    width: auto;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
}

.cart-sec .product-detail {
    margin: 2rem 1rem;
    justify-content: center;
}

.cart-sec .cart-img {
    width: 45%;
    margin: auto 5% auto 0;
    text-align: center;
}

.cart-sec .cart-detail {
    width: 50%;
    line-height: 1.6;
    margin: 1rem 0;
}

.cart-sec .up-down {
    margin: 2rem 0;
    justify-content: left;
}

.product-name {
    margin: 1rem 0;
}

.up-down .number-of-items {
    width: 5rem;
    height: 4rem;
    text-align: right;
    border: 1px solid #ccc;
    margin: 0 0.2rem;
    padding: 1rem 0.5rem;
}

.up-down .updown-counter {
    background-color: #000;
    color: #fff;
    border: none;
    width: 4rem;
    height: 4rem;
    cursor: pointer;
}

.cart-delete {
    border: none;
    background: none;
    cursor: pointer;
    transition: 0.5s all;
}

.cart-delete:hover {
    opacity: 0.7;
}

.total-price {
    text-align: right;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 1rem;
}

.total-price dt {
    width: 60%;
    font-weight: normal;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.total-price dd {
    width: 40%;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.square-button {
    border-radius: 0;
}

.cart-sec .cart-total {
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 1rem 0;
}

.cartcheck-page .total-price {
    text-align: left;
    font-size: 1.5rem;
}

.order-detail {
    text-align: left;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.order-detail dt {
    width: 50%;
    margin-bottom: 1rem;
    font-weight: normal;
}

.order-detail dd {
    width: 50%;
    margin-bottom: 1rem;
}

.border-frame-grey {
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 1rem 0;
    padding: 2rem 1rem;
}

.border-frame-grey p {
    margin: 0.5rem 0;
}

.point-check {
    margin: 0 0 2rem;
}

.point-check label {
    cursor: pointer;
}

.point-use-area {
    margin: 0 0 2rem 3rem;
}

.point-use-area label {
    transition: all 0.5s;
    opacity: 1;
    display: block;
    margin: 1rem;
}

.point-use-area .point-use[disabled] {
    transition: all 0.5s;
    opacity: 0.2;
}

#point-quantity,
#charge-quantity {
    margin: 0 0.5rem 0 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    text-align: right;
    padding-right: 1rem;
}

.method-payment-area label {
    display: block;
    margin: 1rem;
}

.cartcheck-page input[type="checkbox"],
.cartcheck-page input[type="radio"] {
    margin-right: 1rem;
}

.delivery-info #prefectures {
    width: 150px;
}

.delivery-info .date-table td {
    height: 5rem;
}

.modal-dialog {
    max-width: 700px;
}

@media screen and (max-width: 767px) {
    .order-detail {
        font-size: 1rem;
    }

    .point-use-area {
        margin: 0 0 2rem 1rem;
    }

    #point-quantity,
    #charge-quantity {
        margin: 0 0.5rem 0 1rem;
        padding-right: 1rem;
        width: 70px;
    }

    .cart-sec .cart-img {
        width: 100%;
    }

    .cart-sec .cart-detail {
        width: 100%;
    }
}

/* ------------------------------
　アンバサダー
------------------------------ */
.ambassador-img-sec {
    display: block;
    position: relative;
    max-width: calc(600px + 5rem);
    margin: auto;
}

.ambassador-img-sec img {
    max-width: 600px;
    width: 600px;
}

.ambassador-img-sec p {
    background-color: #000;
    color: #fff;
    position: absolute;
    padding: 1rem 3rem;
    font-weight: bold;
}

.ambassador-img-sec .job-name {
    bottom: 8rem;
}

.ambassador-img-sec .ambassador-name {
    bottom: 2rem;
    left: 3rem;
}

.ambassador-page .sns-icon {
    margin: 1rem 0 0 auto;
    justify-content: right;
}

.ambassador-txt {
    text-align: center;
}

.ambassador-txt .job-name {
    font-size: 1.4rem;
    padding-bottom: 0.5rem;
}

.ambassador-txt .ambassador-name {
    font-size: 2.4rem;
    padding-bottom: 2rem;
}

.ambassador-txt .ambassador-deading {
    font-weight: normal;
    padding-bottom: 3rem;
}

.about-sec.ambassador-page.bg-grey {
    max-width: 100%;
}

.about-sec.ambassador-page.bg-grey .wrap {
    max-width: 800px;
}

@media screen and (max-width: 767px) {
    .ambassador-img-sec {
        width: 100%;
    }

    .ambassador-img-sec img {
        max-width: 100%;
        width: calc(100% - 3rem);
    }

    .ambassador-img-sec p {
        padding: 0.5rem 2rem;
    }

    .ambassador-img-sec .job-name {
        bottom: 4.5rem;
    }

    .ambassador-img-sec .ambassador-name {
        bottom: 1rem;
        left: 2rem;
    }

    .ambassador-txt .job-name {
        font-size: 1.2rem;
    }
}

/* ------------------------------
　ポイント
------------------------------ */
.point-part {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    margin: 2rem 0 1rem 1rem;
}

.point-part p {
    font-weight: bold;
}

.point-head {
    margin-right: 2rem;
}

.point-tbl {
    width: calc(100% - 2rem);
    margin: 1rem;
}

.point-tbl th {
    padding: 0.9rem;
}

.point-tbl td {
    padding: 1rem;
}

.point-tbl tr th:nth-child(3),
.point-tbl tr td:nth-child(3),
.point-tbl tr th:nth-child(4),
.point-tbl tr td:nth-child(4) {
    text-align: right;
}

@media screen and (max-width: 767px) {
    .point-tbl {
        width: calc(100% - 1rem);
        margin: 1rem 0.5rem;
        font-size: 1.1rem;
    }

    .point-tbl th {
        padding: 0.4rem;
    }

    .point-tbl td {
        padding: 0.5rem;
    }
}

/* ------------------------------
　購入履歴
------------------------------ */
.order-sec {
    padding-top: 2rem;
    max-width: 940px;
    margin: auto;
}

.order-page button {
    display: block;
    margin: auto;
}

.order-sec img {
    width: 200px;
}

@media screen and (max-width: 767px) {
    .order-page .order-detail {
        font-size: 1.3rem;
    }
}

/* ------------------------------
　特定商取引
------------------------------ */
.specify-dl dt,
.specify-dl dd {
    margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
    .specify-dl dt,
    .specify-dl dd {
        padding-right: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .specify-dl dt {
        padding-left: 0;
    }
}

/* ------------------------------
　特定商取引
------------------------------ */
.terms_main_content_inner {
    padding: 0 1rem;
}

.terms_main_content_inner h3 {
    font-size: 2.2rem;
}

.terms_main_content_inner + .terms_main_content_inner {
    border-top: 1px solid #eeeeee;
    margin: 30px 0 0 0;
    padding: 30px 0 0 0;
}

.terms_main_description {
    line-height: 1.8;
}

.terms_main_description h4 {
    margin: 2rem 0 1rem 0;
}

.terms_main_description p + p {
    margin-top: 1.5rem;
}

.terms_main_description ol {
    margin-left: 1rem;
}

.terms_main_description ol li {
    margin: 0 0 1rem 2rem;
    list-style: auto;
}

/* ------------------------------
　プライバシーポリシー
------------------------------ */
.main_description {
    border-bottom: 1px solid #eeeeee;
    letter-spacing: 0.03em;
    padding-top: 30px;
    padding-bottom: 30px;
}

.main_description:first-child {
    border-top: none;
}

.main_description h3 {
    font-size: 18px;
}

.main_description p,
.main_description ul {
    margin-top: 10px;
}

.main_description ul {
    margin-left: 10px;
}

.main_description ul li {
    position: relative;
    margin-bottom: 10px;
    margin-left: 12px;
}

.main_description ul li:last-child {
    margin-bottom: 0;
}

.main_description ul li::before {
    position: absolute;
    left: -15px;
    top: 0.75em;
    content: "";
    display: block;
    border-radius: 50%;
    width: 3px;
    height: 3px;
    background: #282828;
}

.main_description h4 {
    font-size: 16px;
    margin-top: 20px;
}

.main_description a {
    text-decoration: underline;
}

.main_description + .main_description {
    border-top: none;
    margin-top: 0;
}

/* ------------------------------
　マイページ
------------------------------ */
.mypage-sec a:hover,
.mypage-sec a:active {
    color: #000;
}

/* ------------------------------
　カレンダー
------------------------------ */
th.fc-day-sat .fc-col-header-cell-cushion,
th.fc-day-sat .fc-col-header-cell-cushion:hover {
    color: #0a70b7;
}

th.fc-day-sun .fc-col-header-cell-cushion,
th.fc-day-sun .fc-col-header-cell-cushion:hover {
    color: #df6859;
}

.fc-col-header-cell-cushion {
    color: black;
}

.fc-daygrid-day-number {
    color: black;
}

td.fc-day-sat .fc-daygrid-day-number {
    color: #eaf4ff;
}

td.fc-day-sun .fc-daygrid-day-number {
    color: #ffeaea;
}

.fc .fc-timegrid-slots td.fc-timegrid-slot {
    height: 8rem;
    cursor: pointer;
}

.date-table thead th.fc-timegrid-axis {
    height: 5rem;
}

.fc.date-table {
    font-size: 1.4rem;
    font-weight: normal;
}

.fc.date-table .fc-toolbar-title {
    font-size: 1.5rem;
    font-weight: normal;
}

.fc.date-table .fc-button-primary {
    background-color: transparent;
    color: #000;
    border: none;
}

.fc.date-table .fc-button-primary:hover {
    border: none;
}

.fc.date-table .fc-button-primary:focus {
    box-shadow: none;
}

.fc.date-table .fc-toolbar {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fc.date-table .fc-toolbar-chunk {
    margin: 0 1rem;
}

.delivery-caution {
    font-size: 1.4rem;
    padding: 1rem;
}

@media screen and (max-width: 767px) {
    .fc.date-table .fc-toolbar-chunk {
        margin: 0;
    }

    .fc.date-table .fc-toolbar {
        justify-content: space-between;
    }

    .fc-scrollgrid-sync-inner {
        word-break: break-all;
    }

    .fc .fc-timegrid-slots td.fc-timegrid-slot {
        height: 5rem;
    }
}

/* -------------------------------------------------------------
page-top
------------------------------------------------------------- */
#page-top a {
    color: #444;
    z-index: 999;
}

@media screen and (min-width: 768px) {
    #page-top {
        bottom: 20px;
        right: 15px;
        font-size: 40px;
        line-height: 1;
        position: fixed;
    }
}

@media screen and (max-width: 767px) {
    #page-top {
        bottom: 2rem;
        right: 10px;
        font-size: 32px;
        line-height: 1;
        position: fixed;
    }
}

/* ------------------------------
　トップ：カテゴリー
------------------------------ */
.top-category .topic-box {
    width: 25%;
    text-align: center;
}

.top-category .topic-box a {
    position: relative;
}

.top-category .topic-box img {
    border-radius: 50%;
    max-width: 160px;
}

.top-category .topic-box span {
    position: absolute;
    font-size: 1.4rem;
    font-family: "Yu Mincho Demibold", "YuMincho Demibold", "Yu Mincho",
        "YuMincho", "Hiragino Mincho ProN", "MS PMincho", "Times New Roman",
        sans-serif;
    display: block;
    background-color: #f4f3f2;
    padding: 4px 0 0;
    width: 100%;
    text-align: center;
    bottom: -260%;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    white-space: nowrap;
}

@media screen and (min-width: 768px) {
    .width200 {
        width: 16vw;
        max-width: 200px;
    }

    .width126 {
        width: 10vw;
        max-width: 126px;
    }
}

@media screen and (max-width: 767px) {
    .top-category .d-flex {
        flex-wrap: wrap;
    }

    .top-category .topic-box {
        width: 47%;
        margin: 0 3% 4rem 0;
    }

    .top-category .topic-box:nth-child(even) {
        margin: 0 0 4rem 3%;
    }

    .top-category .topic-box img {
        width: 40vw;
        max-width: 155px;
    }
}

/* ------------------------------
　トップ：アイテム
------------------------------ */
.top-item .us-form {
    align-items: center;
    padding: 1rem 2rem;
    justify-content: flex-start;
}

:focus {
    outline: none;
}

.select-box {
    position: relative;
    margin: 0em 0em 0em 0em;
    float: left;
}

.select-box::after {
    pointer-events: none;
    position: absolute;
    color: #666666;
    top: 50%;
    right: 5%;
    transform: translate(0%, -50%);
    content: "▼";
}

.us-form select {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0.3em 1em;
    background: #fff;
    border: none;
    border-radius: 0.3rem;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.4);
    font-size: 0.85em;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.us-form select option {
    text-shadow: none;
}

.us-form p {
    white-space: nowrap;
}

.darktest {
    background: #f4f3f2;
}

.antenna-icon {
    font-size: 1.5rem;
    padding: 0.5rem 2rem;
}

.antenna-icon::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../img/icon-search-wh.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 1rem;
}

.item-mark {
    width: fit-content;
    padding: 0.1rem 3rem;
    margin: 0.5rem 0;
}

.orderby {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: right;
    margin: 1rem 0 3rem;
}

.orderby .orderlink {
    text-decoration: underline;
    margin: 2rem 0 1rem;
    padding: 0 2rem;
    border-right: 1px solid #555;
    color: #555;
    font-size: 1.4rem;
    line-height: 0.8;
}

.orderby .orderlink:last-child {
    border-right: none;
}

@media screen and (max-width: 767px) {
    .top-item .us-form.d-flex {
        display: block !important;
        padding: 3rem 2rem;
    }

    .antenna-icon {
        display: block;
        width: 100%;
    }

    .orderby {
        justify-content: space-around;
    }

    .orderby .orderlink {
        padding: 0 2rem 0 0;
    }

    .select-box {
        float: none;
    }

    .us-form .price-pulldown {
        width: 75%;
        margin: 0 0 0 auto;
        display: inline-block;
    }

    .select-box::after {
        top: 8%;
        right: 5%;
        transform: translate(0%, 0%);
    }

    .us-form select {
        width: 100%;
    }

    .price-head {
        display: inline-block;
        width: 20%;
    }

    .price-kara {
        text-align: center;
    }

    .item-detail > div {
        padding: 0rem 1rem;
    }
}

/* ------------------------------
　トップ：アクセス
------------------------------ */
.access-sec {
    padding: 3em 0 5rem;
    background: #f7f7f7;
}

.access-wrap {
    max-width: 1100px;
    margin: auto;
}

.access-wrap iframe {
    width: 100%;
    max-width: 610px;
}

.access-head {
    font-family: "Yu Mincho Demibold", "YuMincho Demibold", "Yu Mincho",
        "YuMincho", "Hiragino Mincho ProN", "MS PMincho", "Times New Roman",
        sans-serif;
    font-size: 4.3rem;
    font-weight: bold;
    line-height: 1;
    display: inline-block;
    position: relative;
    padding: 0 180px;
    text-align: center;
    margin-bottom: 3rem;
}

.access-head:before,
.access-head:after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 150px;
    height: 1px;
    background-color: #000;
}

.access-head:before {
    left: 0;
}

.access-head:after {
    right: 0;
}

.access-info {
    margin: 1rem 5rem 5rem 0;
    line-height: 2;
    width: 50%;
}

@media screen and (max-width: 767px) {
    .access-sec {
        padding: 3rem 0;
    }

    .access-wrap {
        padding: 1em;
        background: #f7f7f7;
    }

    .access-info {
        margin: 5rem auto 3rem;
        width: 100%;
    }

    .access-head {
        display: block;
        padding: 0 2rem;
        font-size: 2.8rem;
    }

    .access-head:before,
    .access-head:after {
        width: 85px;
    }

    .access-wrap iframe {
        height: 190px;
    }
}

/* ------------------------------
　下層共通
------------------------------ */
.second article {
    /* padding: 6em 0 1px 0; */
    padding: 3em 0 1px 0;
    background-color: #e6ebee;
}

@media (max-width: 750px) {
    .qanda-quantity02 {
        display: flex;
        flex-wrap: wrap;
        gap: 2vw;
        align-content: center;
        justify-content: space-between;
        padding-right: 4vw;
        padding-left: 4vw;
        margin: 50px auto 0 auto;
        width: auto;
    }

    .qanda-cta-btn {
        width: auto;
        padding: 1vh 8vw;
    }

    .qanda-quantity-img {
        width: 40vw;
    }
}

.second-head {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.second-head .top_concept_wrap p {
    line-height: 2.5;
    margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
    .second article {
        padding: 5em 0;
    }

    .second-head .top_concept_wrap p {
        line-height: 2;
        font-size: 1.5rem;
    }
}

/* ------------------------------
　下層：about
------------------------------ */
.about-page .second-head {
    padding-top: 5em;
    padding-bottom: 5em;
}

.shop-box {
    margin-bottom: 20rem;
}

.shop-box:last-of-type {
    margin-bottom: 0rem;
}

.shop-main {
    position: relative;
}

.shop-name {
    position: absolute;
    background-color: #f4f3f2;
    padding: 3rem 2rem;
    text-align: center;
    top: 65%;
    left: 5%;
    line-height: 1.7;
}

.shop-box .head-icon li img {
    width: 35px;
}

.shop-box .access-info p {
    line-height: 2.5;
}

.shop-box .head-icon {
    justify-content: flex-start;
    margin-left: 3rem;
}

.shop-box .head-icon li {
    padding: 0 6rem 0 0;
}

.shop-box iframe {
    max-width: 980px;
    margin: auto;
    display: block;
}

@media screen and (min-width: 768px) {
    .about-img img:nth-child(1),
    .about-img img:nth-child(3) {
        width: 25%;
    }

    .about-img img:nth-child(2) {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .about-img img {
        width: auto;
        margin: 1rem auto 3rem;
        text-align: center;
        display: block;
    }

    .about-img img:last-of-type {
        margin: 1rem auto 0;
    }

    .shop-box {
        margin-bottom: 10rem;
    }

    .shop-main {
        left: -1em;
        width: calc(100% + 2em);
    }

    .shop-box .access-info p {
        line-height: 2;
    }

    .shop-box .head-icon {
        justify-content: space-between;
        margin: 0 2rem;
    }

    .shop-box .head-icon li {
        padding: 0 0 0 0;
    }

    .shop-img2 {
        margin: 0 1rem 5rem;
    }

    .shop-box iframe {
        height: 175px;
    }
}

/* ------------------------------
　下層：item＆itemdetail
------------------------------ */
.second .top-item {
    padding-top: 5rem;
    padding-bottom: 8em;
}

.item-order-number {
    position: relative;
}

.all-item-number {
    text-align: left;
    color: #ccc;
    margin: 2rem 0 1rem;
    position: absolute;
}

.caution-freeshipping {
    font-size: 1.5rem;
    background-color: #f9f8f6;
}

.itemdetail-detail .detail-cartbtn,
.itemdetail-detail .detail-backbtn {
    display: block;
    width: 70%;
    margin: auto;
    padding: 2rem 0;
    font-size: 1.8rem;
    color: #fff;
}

.detail-name {
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .second .top-item {
        padding-top: 3rem;
        padding-bottom: 8em;
    }

    .all-item-number {
        bottom: 0;
        font-size: 1.4rem;
    }

    .item-order-number .orderby .orderlink {
        margin-bottom: 5rem;
    }
}

/* ------------------------------
　下層：category
------------------------------ */
@media screen and (min-width: 768px) {
    .category-page .select-box,
    .category-page .price-pulldown:nth-of-type(2) {
        margin-right: 4rem;
    }

    .category-page .price-kara,
    .category-page .price-pulldown {
        margin-right: 2rem;
    }
}

/* ------------------------------
　下層：contact
------------------------------ */
.contact-form {
    max-width: 940px;
    margin: auto;
    padding-top: 2rem;
}

form {
    padding: 10px 0 0 0;
    z-index: 1;
    position: relative;
}

input[type="radio"] {
    position: relative;
    top: 1px;
    width: 30px;
}

.hissu {
    background-color: #cb4829;
    display: inline-block;
    padding: 8px 15px;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    margin: 0 0 6px 10px;
    width: fit-content;
    height: fit-content;
}

.nini {
    background-color: #939393;
    display: inline-block;
    padding: 8px 15px;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    margin: 0 0 6px 10px;
    width: fit-content;
    height: fit-content;
}

form .cms-form-group {
    padding: 5rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

form .cms-form-group:first-of-type {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.CMS-FORM-RADIO {
    width: 100%;
    margin-bottom: 0px;
}

.CMS-FORM-RADIO label {
    padding-right: 1%;
    display: inline-flex;
    width: 100%;
}

form textarea {
    height: 15rem;
}

/* form input[type="submit"],
form button[type="button"] {
    border: 0px;
    width: 100%;
    font-size: 1.6rem;
    font-weight: normal;
    padding: 16px 0;
    margin: 3rem auto;
    display: block;
    transition: 0.5s all;
    cursor: pointer;
} */

form input[type="submit"]:hover {
    opacity: 0.5;
}

form .cms-form-group label {
    display: inline-block;
    width: 30%;
    max-width: 300px;
}

form select {
    padding: 20px;
    border: #bbb solid 1px;
    border-radius: 3px;
}

form input,
form textarea {
    width: 100%;
    padding: 1rem;
    border: #bbbbbb solid 1px;
    border-radius: 4px;
    background-color: #fff;
}

.contact-page form input,
.contact-page form .form-control,
.contact-page form textarea {
    height: 32px;
    max-width: 420px;
    display: inline-table;
    padding: 0 1rem;
}

.contact-page form textarea {
    height: 200px;
    width: 100%;
    max-width: 580px;
    display: inline-block;
    vertical-align: top;
}

.CMS-FORM-RADIO label {
    display: block;
    padding: 0;
}

.cart-bikou {
    padding-top: 0;
}

.cart-bikou form .cms-form-group {
    display: block;
}

.signup-btn .btn {
    width: 280px;
    margin-top: 5rem;
}

.qanda-quantity-img {
    width: 201px;
}

.form-group-child {
    display: inline-table;
    width: 68%;
    text-align: left;
}

.form-caution {
    display: block;
}

.form-group-grandchild {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
}

.form-group-grandchild .zip-mark {
    margin-right: 1rem;
}

.no-hyphen {
    display: block;
    padding-left: 1rem;
}

.bulk-caution {
    line-height: 2;
}

@media screen and (max-width: 767px) {
    form input[type="submit"] {
        width: 100%;
    }

    form .cms-form-group {
        display: block;
    }

    form .cms-form-group label {
        display: block;
        width: auto;
    }

    .hissu {
        margin: 0 0 6px 1rem;
    }

    .signup-btn .btn {
        width: 200px;
        padding: 20px;
        margin: 0px;
        text-align: center;
    }

    .form-group-child {
        width: 100%;
    }

    .contact-page form input,
    .contact-page form .form-control,
    .contact-page form textarea {
        width: 100%;
    }

    .contact-page form .form-control.width-zip-pref {
        width: 70%;
    }

    .form-group-grandchild {
        display: block;
    }

    .form-group-grandchild .no-hyphen {
        padding-left: 2em;
    }
}

/* ------------------------------
　下層：quit
------------------------------ */
.quit-form .custom-control {
    width: auto;
}

.quit-form .custom-control > div {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}

.custom-control-input {
    position: relative;
}

.common-frame .quit-form label {
    display: block;
}

/* ------------------------------
　下層：Q&A
------------------------------ */
.second-mvbg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    padding: 17rem 0 20rem;
    position: relative;
}

.second-mvbg-before::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.bg-qanda {
    background-image: url("../img/second_qanda.jpg");
}

.accordion-container {
    margin: 0 auto 0;
    max-width: 950px;
    width: 100%;
}

.accordion-list:not(:first-child) {
    margin-top: 3rem;
}

.accordion-title {
    background: #b5b07d;
    color: #fff;
    cursor: pointer;
    font-size: 1.6rem;
    padding: 2rem 4rem;
    position: relative;
}

.accordion-title:before {
    position: absolute;
    content: "";
    top: 50%;
    right: 25px;
    height: 2px;
    width: 15px;
    background: #fff;
    transform: rotate(90deg);
    transition: all 0.3s ease-in-out;
}

.accordion-title:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 25px;
    height: 2px;
    width: 15px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.accordion-title.open:before {
    transform: rotate(360deg);
}

.accordion-title.open:after {
    opacity: 0;
}

.accordion-text {
    background-color: #fff;
    display: none;
    color: #000;
    padding: 2rem 4rem;
    position: relative;
}

.question-title {
    position: absolute;
    display: block;
    content: "Q";
    top: 18px;
    left: 12px;
    color: #fff;
    font-size: 1.8rem;
    font-family: "Noto Serif JP", serif;
}

.answer-text {
    position: absolute;
    display: block;
    content: "A";
    top: 18px;
    left: 12px;
    color: #b5b07d;
    font-size: 1.8rem;
    font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
    .accordion-title {
        padding-right: 6rem;
    }

    .second-mvbg {
        padding: 16rem 0 10rem;
    }
}

/* ------------------------------
　下層：商品紹介
------------------------------ */
.bg-productpg {
    background-image: url("../img/second_productpg.jpg");
}

.productpg .top_wrap {
    max-width: 1100px;
}

.productpg .product-spice {
    padding: 12rem 0 5rem;
    justify-content: space-between;
}

.productpg .spice-one {
    width: 28%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spice-img-flex {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.spice-subimg {
    width: auto;
    height: 10rem;
}

.spice-img-flex .spice-img {
    margin: 0 0 1rem;
}

.product-soldout {
    background-color: #000;
    color: #fff;
    position: relative;
}

.product-soldout {
    background-color: #000;
    color: #fff;
    position: absolute;
    top: -3px;
    right: -3px;
    padding: 0.3rem 2rem;
    letter-spacing: 3px;
}

@media screen and (max-width: 767px) {
    .productpg .spice-one {
        width: 46%;
        padding: 3rem 0.8rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .spice-img-flex .spice-img {
        width: 5rem;
    }

    .spice-img-flex .spice-subimg {
        width: 5rem;
        height: auto;
    }

    .product-soldout {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
}

/* ------------------------------
　下層：商品詳細
------------------------------ */
.pddetail .top_wrap {
    max-width: 1100px;
}

.pddetail .product-detail {
    padding: 12rem 0 5rem;
    display: block;
}

.pddetail .product-detail .spice-border1 {
    background-color: #fff;
    padding: 4rem;
}

.spice-one-detail {
    margin: 2rem 2%;
    position: relative;
    word-wrap: break-word;
    padding: 3rem 0.8rem;
    background-color: #fff;
}

.spice-one-detail:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: 50%;
    border-top: none !important;
    z-index: 0;
}

.detail-img-flex {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
}

.detail-sec {
    width: 50%;
    padding: 1em;
}

.picture-sec {
    width: 100%;
    padding: 1em;
}

.image-container {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image {
    position: relative;
}

.main-image img {
    width: 440px;
    height: 440px;
    object-fit: contain;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.thumbnail-container {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    max-width: 432px;
}

.thumbnail {
    width: 98px;
    height: 98px;
    object-fit: contain;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s;
}

.nav-button {
    display: none;
}

.image-info {
    display: none;
    font-size: 0.8em;
    margin-top: 8px;
    color: #666;
}

.detail-sec {
    width: 100%;
    max-width: 50rem;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #fff;
}

.pg-shopname {
    font-size: 2.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pd-productname {
    font-size: 4.2rem;
    font-weight: bold;
    margin-bottom: 3rem;
}

.pd-detaildescription {
    margin-bottom: 3rem;
    font-size: 1.7rem;
    line-height: 2;
}

.spice-effect {
    list-style: none;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.spice-effect li {
    background-color: #000;
    color: #fff;
    padding: 0.3rem 0;
    margin: 0 2% 1rem 0;
    border-radius: 2rem;
    width: 30%;
    text-align: center;
}

.pg-detail-sec2 {
    display: block;
    border-top: 1px solid #898989;
    border-bottom: 1px solid #898989;
    padding: 2rem 0;
}

.pg-no-weight {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    color: #898989;
    margin-bottom: 1.5rem;
    margin-top: 10px;
    font-family: "Noto Sans JP", sans-serif;
}

.pg-no-weight dt {
    margin-bottom: 0.5rem;
    flex-basis: 60%;
}

.pg-no-weight dd {
    margin-bottom: 0.5rem;
    flex-basis: 40%;
}


.pg-no-weight dd {
    text-align: right;
}

.stock-sec {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stock-box {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    margin-right: 1rem;
    border: 1px solid #898989;
}

.stock-name {
    background-color: #898989;
    color: #fff;
    padding: 0.5rem 3rem 0.5rem 2rem;
    position: relative;
}

.stock-tooltip {
    position: absolute;
    bottom: -0.2rem;
    right: 0.4rem;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
}

.stock-tooltip::before {
    content: "◯";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    color: #fff;
}

.tooltip-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #000;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: max-content;
}

.stock-tooltip:hover {
    opacity: 1;
    color: #fff;
}

.stock-tooltip:hover .tooltip-content {
    display: block;
}

.stock-answer {
    padding: 0 1rem;
}

.st-soldout {
    color: #fff;
    background-color: #000;
    padding: 0.5rem 1.8rem;
    margin-right: 1rem;
}

.group-left {
    display: flex;
}

.st-gift {
    padding: 0.5rem 1rem;
    border: 1px solid #000;
    display: inline-block;
    vertical-align: middle;
    margin-left: auto;
}

.st-gift img {
    display: inline-block;
    vertical-align: sub;
    margin-right: 0.5rem;
}

.stock-caution {
    font-size: 1.2rem;
    color: #777;
    margin: 1rem 0 1.5rem;
}

.price-pieces {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-price {
    font-size: 3.8rem;
    color: #898989;
    vertical-align: bottom;
    display: block;
}

.price-yentxt {
    font-size: 1.9rem;
    margin-left: 0.5rem;
}

.price-taxtxt {
    font-size: 1.2rem;
}

.pieces-box {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
}

.pieces-txt {
    margin-right: 0.5rem;
}

.selector-container {
    display: flex;
    border: 1px solid #afafaf;
    align-items: center;
    width: 11rem;
    justify-content: right;
    border-radius: 0.5rem;
    padding: 0.3rem 0;
}

.selector-container input {
    border: none;
    text-align: right;
    background: none;
}

.pieces-selector {
    padding: 0 0.5rem;
    display: inline-block;
}

.arrow-buttons {
    display: flex;
    flex-direction: column;
}

.arrow-up,
.arrow-down {
    padding: 0 0.8rem;
    cursor: pointer;
    font-size: 1.1rem;
}

.detail-caution {
    color: #595757;
    font-size: 1.4rem;
    margin: 1.5rem 0 5rem;
}

.detail-caution a {
    color: #e50019;
    text-decoration: underline;
}

.postage-table {
    width: 100%;
    margin-top: 1.5rem;
}

.postage-tbl {
    width: 100%;
}

.postage-tbl th {
    background-color: #e6ebee;
    padding: 1rem;
    font-size: 1.7rem;
}

.postage-tbl th .hissu-red {
    color: #e50019;
    font-size: 1.3rem;
}

.postage-tbl td {
    padding: 1rem;
    font-size: 1.3rem;
    line-height: 2;
}

.postage-tbl th,
.postage-tbl td {
    border: 1px solid #afafaf;
}

.postage-agree {
    display: flex;
    align-items: center;
    margin: 1.5rem 0 1rem;
}

.postage-agree input[type="checkbox"],
.postage-agree label {
    position: relative;
    border-bottom: 2px solid #e50019;
}

.postage-agree input[type="checkbox"] {
    display: none;
}

.postage-agree label {
    padding-left: 3rem;
    cursor: pointer;
    color: #e50019;
    font-size: 1.7rem;
}

.postage-agree label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border: 2px solid #000;
}

.postage-agree input[type="checkbox"]:checked + label:before {
    background-color: #000;
}

.postage-agree input[type="checkbox"]:checked + label:after {
    content: "\2713";
    position: absolute;
    left: 5px;
    top: 3px;
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}

.cart-in-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.cart-in-btn img {
    margin-right: 1rem;
}

.cart-in-btn:hover {
    background-color: #333;
}

.detail-bottom-area {
    border-top: 1px solid #afafaf;
    padding-top: 3rem;
}

.material-sec-flex {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
}

.material-box {
    font-size: 1.4rem;
}

.material-box1 {
    width: 22%;
    margin-right: 4%;
}

.material-box2 {
    width: 22%;
    margin-right: 4%;
}

.material-box3 {
    width: 48%;
}

.material-nutrition {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.material-nutrition dt,
.material-nutrition dd {
    margin-bottom: 0.5rem;
    flex-basis: 50%;
    font-weight: normal;
}

.material-nutrition dd {
    text-align: right;
}

.shipping-table {
    width: 100%;
}

.shipping-table th,
.shipping-table td {
    border: 1px solid #000;
    font-size: 1.2rem;
    padding: 0.5rem;
    text-align: center;
    background: white;
}

.shipping-table th.kuiki {
    width: 10.4%;
}

.shipping-table th.chihou {
    width: 6.4%;
}

.shipping-table th.kuiki,
.shipping-table th.chihou {
    background-color: #e6ebee;
}

.shipping-table-caution {
    font-size: 1.4rem;
    margin: 1.5rem 0;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .pddetail .product-detail {
        padding: 3rem 1.5rem;
    }

    .spice-one-detail {
        margin: 2rem 0;
    }

    .image-info {
        display: block;
        border: 1px solid #9fa0a0;
        color: #898989;
        width: 6rem;
        height: 3rem;
        border-radius: 1rem;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .detail-img-flex {
        flex-direction: column;
    }

    .sp-order-1 {
        order: 1;
    }

    .sp-order-2 {
        order: 2;
    }

    .sp-order-3 {
        order: 3;
    }

    .pddetail .product-detail .spice-border1 {
        padding: 1.5rem;
    }

    .pddetail form {
        padding: 0;
    }

    .pddetail .detail-sec {
        padding: 0.7rem;
    }

    .spice-effect li {
        width: 48.5%;
        margin-right: 1%;
        font-size: 1.1rem;
    }

    .picture-sec {
        padding: 0;
    }

    .nav-button {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        color: #9fa0a0;
        font-size: 2em;
        user-select: none;
    }

    .thumbnail-container {
        display: none;
    }

    .main-image img {
        width: 80vw;
        height: 80vw;
    }

    #prev-button {
        left: -2.5rem;
    }

    #next-button {
        right: -2.5rem;
    }

    .pg-detail-sec2 {
        border-top: none;
        padding-top: 5rem;
    }

    .pg-no-weight {
        font-size: 1.2rem;
    }

    .stock-sec {
        font-size: 1.1rem;
    }

    .stock-tooltip {
        font-size: 0.7rem;
        bottom: 0;
    }

    .tooltip-content {
        font-size: 0.9rem;
    }

    .stock-name {
        padding: 0.3rem 1.3rem 0.3rem 0.5rem;
    }

    .stock-answer {
        padding: 0.3rem 0.5rem;
    }

    .st-soldout {
        padding: 0.3rem 0.5rem;
    }

    .st-gift {
        padding: 0.3rem 0.5rem;
    }

    .stock-caution {
        font-size: 0.7rem;
    }

    .price-price {
        font-size: 2.4rem;
    }

    .price-yentxt {
        font-size: 1.4rem;
    }

    .price-taxtxt {
        font-size: 1rem;
    }

    .pieces-txt {
        font-size: 1.3rem;
    }

    .selector-container {
        width: 8rem;
    }

    .selector-container input {
        font-size: 1.3rem;
        padding: 0.5rem;
    }

    .arrow-up,
    .arrow-down {
        font-size: 0.8rem;
    }

    .detail-caution {
        font-size: 0.9rem;
    }

    .postage-tbl th {
        font-size: 1.3rem;
    }

    .postage-tbl th .hissu-red {
        font-size: 1rem;
    }

    .postage-tbl td {
        font-size: 0.8rem;
    }

    .postage-agree label {
        font-size: 1.3rem;
    }

    .postage-agree label:before {
        width: 1.5rem;
        height: 1.5rem;
        border: 1px solid #000;
    }

    .postage-agree input[type="checkbox"]:checked + label:after {
        left: 3px;
        top: 1px;
        font-size: 1.3rem;
    }

    .material-sec-flex {
        display: flex;
        flex-wrap: wrap;
    }

    .material-box {
        flex-basis: calc(50% - 1.5rem);
        margin: 0 0 1.25rem;
        width: auto;
        font-size: 1rem;
    }

    .material-box3 {
        flex-basis: 100%;
    }

    .shipping-table-wrap {
        overflow-x: auto;
        position: relative;
        z-index: 1;
    }

    .shipping-table {
        width: 100%;
        white-space: nowrap;
    }

    .selector-container {
        padding: 0.4rem 0 0.3rem;
    }
}

/* ------------------------------
　下層：ショッピングカート
------------------------------ */
/* Cart_1_通常パターン */
.shoppingcart-sec {
    max-width: 950px;
    /* margin: 0 auto 20rem; */
    margin: 0 auto 5rem;
    padding: 0;
}

.shoppingcart-sec form {
    padding: 0;
}

.cart-heading {
    font-size: 2.6rem;
    text-align: center;
    /* margin-bottom: 60px; */
    margin-bottom: 40px;
    letter-spacing: 4px;
}

.cart-wrap-flex {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
}

.cart-box-area {
    width: 60%;
}

.cart-address {
    width: 35%;
    background-color: #fff;
    height: fit-content;
    padding: 2rem;
}

.cart-box {
    position: relative;
    background-color: #fff;
    margin-bottom: 3rem;
}

.cart-box-wrap {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    padding: 2rem 1.5rem 2rem 1rem;
}

.cart-box .cart-delete {
    position: absolute;
    top: 0.5rem;
    right: 12px;
    width: auto;
    padding: 0;
    margin: 0;
    text-decoration: underline;
}

.cart-pic {
    width: 40%;
}

.cart-pic-selected {
    display: block;
    margin: 0 auto;
    width: 64px;
    height: 162px;
    background: url("/img/comp-img.png") center no-repeat;
    background-size: contain;
}

.cart-detail {
    position: relative;
    width: 48%;
    margin-left: 12%;
}

.cart-product-name {
    width: 100%;
    font-size: 2rem;
    border-bottom: 1px solid #333;
    line-height: 1;
    padding-bottom: 1rem;
}

.cart-stock-area {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
}

.cart-stock-yes {
    background-color: #909090;
}

.cart-stock-no {
    background-color: #fe0000;
}

.cart-stock-yes,
.cart-stock-no {
    padding: 0.5rem 0.5rem 0.2rem;
    color: #fff;
    font-family: "kozuka-gothic-pr6n", sans-serif;
}

.cart-stock-area .selector-container {
    width: 8rem;
    margin: 0 0 0 6px;
}

.cart-stock-area .selector-container input {
    padding: 0 0;
}

.cart-stock-area .arrow-up,
.cart-stock-area .arrow-down {
    line-height: 1;
    font-size: 1.2rem;
    padding: 0 1rem 0 1rem;
}

.cart-address-caution {
    font-weight: bold;
    margin-bottom: 2rem;
}

.cart-address .form-control {
    width: 100%;
    margin-bottom: 2rem;
    font-family: "Noto Sans JP", sans-serif;
}

.cart-total-name,
.cart-total-price {
    font-weight: bold;
    font-size: 2rem;
    color: #000;
    border-top: 1px solid #000;
    margin-top: 1rem;
    padding-top: 1rem;
}

.purchase-process {
    display: block;
    background-color: #000;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
    /* margin: 10rem auto 0; */
    margin: 5rem auto 0;
    cursor: pointer;
    transition: 0.3s;
    width: 40%;
    font-size: 1.8rem;
}

.purchase-process:hover {
    opacity: 0.7;
}

.cart-stock-area .pieces-txt {
    margin: 0 1rem 0 0.5rem;
}

/* Cart_2_在庫不足が含まれているパターン */
.inventory-shortage {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fe0201;
    font-weight: bold;
    text-decoration: underline;
}

.shortage-shippinng-tbl {
    margin: 2rem auto 5rem;
}

.shortage-shippinng-table {
    text-align: center;
    width: 100%;
}

.shortage-shippinng-table th,
.shortage-shippinng-table td {
    border: 1px solid #000;
}

.shortage-shippinng-table th {
    background-color: #000;
    color: #fff;
    padding: 1rem;
    font-weight: normal;
}

.shortage-shippinng-table td {
    text-align: center;
    display: block;
    padding: 3rem 0;
    background-color: #fff;
}

.shortage-shippinng-table td .center-left {
    text-align: left;
    display: inline-block;
    font-size: 1.8rem;
    line-height: 2;
}

.radio-box label {
    cursor: pointer;
}

/* Cart_3_ギフトボックス正常パターン */
.cart-detail-minitxt {
    font-size: 1.5rem;
    display: block;
    padding: 0.7rem 0 1rem;
}

.cart-stock-right {
    justify-content: right;
}

/* Cart_4_ギフトボックスをおすすめするパターン */
.gift-box-table {
    margin: 1rem auto 5rem;
    width: 100%;
    border: 3px solid #000;
}

.gift-box-table th {
    background-color: #000;
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    width: 25%;
    line-height: 2;
    letter-spacing: 3px;
}

.gift-box-table th span {
    display: block;
    font-size: 1.5rem;
    font-weight: normal;
}

.gift-box-table td {
    background-color: #fff;
}

.gift-box-tb-area {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

.gift-box-tb-area img {
    margin: 1rem 1rem 1rem 3rem;
    max-width: 150px;
}

.gift-box-detail {
    margin: auto;
    font-size: 2rem;
    font-weight: bold;
}

.gift-box-viewmore {
    position: relative;
    display: inline-block;
    width: 180px;
    padding-left: 40px;
    font-size: 1.6rem;
    font-weight: normal;
    margin: 1rem 0 0 1rem;
}

.gift-box-viewmore::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 6px;
    bottom: 0;
    left: 14px;
    width: 10px;
    height: 10px;
    border-top: 1px solid rgba(0, 0, 0, 1);
    transform: rotate(45deg);
}

.gift-box-viewmore::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 6px;
    bottom: 0;
    left: 0px;
    width: 25px;
    height: 0.5px;
    background: rgba(0, 0, 0, 1);
}

/* Cart_5_ギフトボックスエラーパターン */
.shoppingcart-sec05 .inventory-shortage {
    margin-bottom: 5rem;
}

/* Cart_1～5のスマホ */
@media screen and (max-width: 767px) {
    .cart-wrap-flex {
        display: block;
    }

    .cart-box-area {
        width: 100%;
    }

    .cart-stock-area {
        display: block;
        margin: 1rem 0;
    }

    .pieces-box {
        justify-content: right;
    }

    .cart-address {
        width: 100%;
    }

    .radio-box {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        align-items: baseline;
        margin-bottom: 2rem;
    }

    .radio-box input[type="radio"] {
        width: 20px;
        margin: 5px;
    }

    .radio-box label {
        font-size: 1.5rem;
        line-height: 1.2;
        width: calc(100% - 20px);
    }

    .cart-stock-yes,
    .cart-stock-no {
        display: inline-block;
        margin: 0 0 1rem;
        padding: 0.5rem 1rem;
    }

    .cart-stock-pieces {
        text-align: right;
    }

    .gift-box-table,
    .gift-box-table tbody,
    .gift-box-table tr {
        display: block;
        width: 100%;
    }

    .gift-box-table th,
    .gift-box-table td {
        display: block;
        width: 100%;
    }

    .gift-box-tb-area {
        display: block;
    }

    .gift-box-tb-area img {
        max-width: 200px;
        margin: auto;
        padding: 1rem 0;
        display: block;
    }

    .gift-box-detail {
        margin: 0 1rem;
        font-size: 1.7rem;
        text-align: center;
        padding-bottom: 2rem;
    }

    .gift-box-viewmore {
        width: 145px;
        margin: auto;
        padding: 0;
    }
}

/* カート確認画面 */
.cart-confirm-sec {
    max-width: 950px;
    margin: auto;
    padding: 0;
    font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans",
        "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.cart-confirm-sec-wrap {
    padding: 5rem 5rem;
}

#confirmform-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.confirmform-flex {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.confirmform-h3 {
    font-size: 2.2rem;
    border-bottom: 1px solid #000;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.orderer-detail-name {
    font-size: 2rem;
    margin: 2rem 0;
}

.orderer-change {
    position: relative;
    bottom: 1.5rem;
}

.orderer-change-link {
    padding: 1.5rem 3rem;
}

.orderer-change-link:hover {
    color: #fff;
}

.shipping-address {
    margin-bottom: 4rem;
}

.shipping-address .another-address {
    font-size: 1.6rem;
    cursor: pointer;
    margin-bottom: 3rem;
}

.shipping-address label input[type="checkbox"] {
    margin-right: 1rem;
}

input[type="checkbox"]#toggle-confirmform {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid #000;
    padding: 10px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    top: 6px;
}

input[type="checkbox"]#toggle-confirmform:checked {
    background-color: #000;
}

input[type="checkbox"]#toggle-confirmform:checked::after {
    content: "\2714";
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
}

.shipping-address .form-group {
    width: 48%;
}

.shipping-address .form-group label {
    margin-bottom: 1rem;
}

.shipping-address .form-control {
    border-radius: 0;
}

.shipping-address .form-required {
    background-color: #ca4729;
    font-weight: normal;
    padding: 0.1rem 0.3rem;
    border-radius: 0;
    margin-left: 1rem;
    font-size: 1.2rem;
}

.shipping-address .no-hyphen {
    display: inline-block;
    font-size: 1.4rem;
}

.shipping-address #municipalities {
    width: 100%;
}

.payment-method {
    margin-bottom: 4rem;
}

.notices .cms-form-textarea-LABEL {
    font-size: 2rem;
    font-weight: bold;
}

.notices .cms-form-textarea-LABEL span {
    font-size: 1.5rem;
    font-weight: normal;
    vertical-align: middle;
    padding-left: 1rem;
}

.cart-confirm-page .shoppingcart-sec {
    margin: 10rem auto 5rem;
}

.cart-confirm-page .flex-evenly .btn {
    width: 20em;
}

.confirmed-address {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0 3rem;
    font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
    .cart-confirm-sec-wrap {
        padding: 5rem 2rem;
    }

    .confirmform-flex {
        display: block;
    }

    .orderer-change {
        margin: 3rem auto 0;
        text-align: center;
        bottom: 0;
    }

    .orderer-change-link {
        display: block;
        margin: auto;
        text-align: center;
        width: fit-content;
    }

    input[type="checkbox"]#toggle-confirmform {
        padding: 7px;
        top: 5px;
    }

    .shipping-address .form-group {
        width: 100%;
    }

    input[type="checkbox"]#toggle-confirmform:checked::after {
        font-size: 1.3rem;
    }

    .cart-confirm-page .flex-evenly .btn {
        width: 10em;
    }
}

/* 注文完了 */
.cart-complete-sec {
    max-width: 950px;
    margin: 0 auto 10rem;
    padding: 0;
}

.complete-info {
    text-align: center;
    display: block;
    padding: 3rem 0;
    background-color: #fff;
}

.complete-info .complete-txt {
    text-align: left;
    display: inline-block;
    font-size: 2.3rem;
    line-height: 2;
    font-weight: bold;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans",
        "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.cart-complete-page .cart-heading {
    margin-bottom: 3rem;
}

.research-questions {
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans",
        "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.radio-group label {
    display: inline-block;
}

.research-purpose {
    margin: 3rem 0 2rem;
    font-size: 2rem;
    font-weight: bold;
}

.research-radio-group {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 4rem;
}

.research-radio-group label {
    cursor: pointer;
    margin-right: 3rem;
}

.research-radio-group input[type="radio"] {
    top: 0;
    width: 20px;
    height: 20px;
    margin-right: 1rem;
}

.research-questions {
    margin-top: 7rem;
}

@media screen and (max-width: 767px) {
    .radio-group label {
        display: block;
        margin-bottom: 1rem;
    }

    .complete-info {
        padding: 3rem 1.5rem;
    }

    .complete-info .complete-txt {
        font-size: 2rem;
    }

    .research-questions .flex-evenly .btn {
        width: 80%;
        padding: 1.5rem 0;
        margin: 2rem auto 0;
    }
}

/* ------------------------------
　下層：商品詳細（ギフトボックス）
------------------------------ */
.pddetail-giftbox .pd-productname {
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.pddetail-giftbox .pg-shopname {
    margin-bottom: 5rem;
    font-weight: normal;
}

.spice-border0 {
    border: 5px solid #000;
    padding: 4rem;
}

.pddetail-giftbox .pg-no-weight dt {
    flex-basis: 15%;
}

.pddetail-giftbox .pg-no-weight dd {
    flex-basis: 85%;
    padding-right: 26%;
}

@media screen and (max-width: 767px) {
    .pddetail .product-detail .spice-border0 {
        padding: 1.5rem;
    }

    .pddetail-giftbox .pg-shopname {
        margin-bottom: 2rem;
    }
}

/* start details note handle pc and mobile screen  */
.spice-detail-container-pc {
    display: block;
}

.spice-detail-container-mobile {
    display: none;
}

@media (max-width: 768px) {
    .spice-detail-container-pc {
        display: none;
    }

    .spice-detail-container-mobile {
        display: block;
    }
}

/* end details note handle pc and mobile screen  */

/* start page header title controll in css  */

.page-header-name {
    display: none;
}

/* start page header title controll in css  */

/* Mobile responsive part new figma ui */

@media (max-width: 750px) {
    /* Header black color bar */
    #header.top-header {
        height: 25.15vw;
        /* height: 15vh; */
        background-color: black;
        display: flex;
        align-items: center;
    }

    /* Header company logo */
    .head-logo img {
        /* height: 10vh; */
        height: 19.0022vw;
        margin: 1vh 0;
    }

    /* Menu icon */
    .openbtn {
        top: 10px;
        width: 5.6vw;
    }

    .openbtn span:nth-of-type(1) {
        top: 2vw;
    }

    .openbtn span:nth-of-type(2) {
        top: 4.1vw;
    }

    .openbtn span:nth-of-type(3) {
        top: 6.4vw;
    }

    /* Product page cover image */
    section.second-mainMv.second-mvbg.bg-productp {
        height: 30vh;
    }

    .second-mainMv h2 {
        display: none;
    }

    .productpg .product-spice {
        padding: 3rem 2% 5rem;
    }

    .spice-img-flex .spice-img {
        width: auto;
    }

    .spice-name-sub {
        font-size: 2.4vw;
    }

    .product-soldout {
        font-size: 3vw;
        padding: 0.3rem 1rem;
    }

    .spice-name-main {
        font-size: 3.90vw;
    }

    .spice-detail {
        font-size: 3.73vw;
    }

    .spice-detail-container-mobile{
        font-size: 3.73vw;
    }

    .spice-quality li {
        font-size: 3.5547vw;
    }

    ul.spice-quality.tag-area.limited-tags {
        font-size: 3.555vw;
    }

    .spice-quality {
        font-size: calc(100vw / 37.5);
    }

    .spice-price-area {
        display: flex;
        justify-content: space-between;
    }

    .spice-price {
        font-size: 3.3vw;
    }

    .price-en {
        font-size: calc(100vw / 30.36);
    }

    .price-tax {
        font-size: 2.311vw;
    }

    .giftbox-icon {
        font-size: 2.6667vw;
    }

    .spice-price-area a {
        margin: 0px;
    }

    .spice-price-area .cart-icon {
        width: 4vw;
        height: auto;
        margin-top: -1.333vw;
    }

    .spice-price-area img {
        width: 4vw;
        height: auto;
    }

    #giftbox-text-size {
        font-size: 2.844vw;
    }

    .productpg .spice-one {
        padding: 1rem 0.8rem;
    }

    .ft_squre-icon {
        margin: 0 auto 0rem;
    }

    #footer .gnav {
        margin: 0 auto 0rem;
    }

    .ft_contact {
        margin: 0% 10%;
        margin-bottom: 20px;
    }

    .ft_bulk_order {
        margin: 0% 10%;
    }

    .ft_fnav2 a {
        font-size: 1.4rem;
    }

    .footer-main-topic {
        display: flex;
        flex-wrap: wrap;
        padding: 0px 30px;
        justify-content: space-between;
    }

    .page-header-name {
        display: block;
        color: white;
        position: absolute;
        left: 50%;
        top: 60%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .page-header-name-main {
        font-size: 7.65vw; /* 43.0339pt */
        font-family: "TrajanPro3 Regular", serif;
    }

    .page-header-name-sub {
        font-size: 4.444vw; /* 25pt */
    }

    .product-name-area {
        margin-bottom: 0.9333vw;
    }

    .spice-one:before {
        bottom: -3px;
        left: -3px;
        width: calc(100% + 6px);
    }

    .shipping-table th,
    .shipping-table td {
        font-size: 3.809vw;
    }
}

@media (max-width: 400px) {
    .page-header-name-main {
        font-size: 7.65vw; /* 43.03px */
        font-family: "Times New Roman", serif;
    }

    .page-header-name-sub {
        font-size: 3.5vw; /* 25px */
    }
}

/* Start - Override toastr position */
#toast-container > div {
    top: 50px;
}
/* End - Override toastr position */

.ft_bulk_order {
    background: linear-gradient(to right, #c6b376, #b8860b);
    padding: 1rem;
    margin-bottom: 1rem;
}

.ft_bulk_order a {
    position: relative;
    display: inline-block;
    padding-left: 45px;
}

.ft_bulk_order a::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 4px;
    bottom: 0;
    left: 15px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

.ft_bulk_order a::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 4px;
    bottom: 0;
    left: 0px;
    width: 30px;
    height: 0.5px;
    background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 750px) {
    .ft_contact {
        margin: 0% 10%;
        margin-bottom: 20px;
    }

    .ft_bulk_order {
        margin: 0% 10%;
    }

    .ft_fnav2 a {
        font-size: 1.4rem;
    }
}

.user-and-cart-icon-container {
    background-color: black;
    height: 50px;
    padding: 10px;
}

.user-icon-sp {
    display: flex;
    position: fixed;
    top: 10px;
    right: 8vw;
}

.cart-icon-sp {
    display: flex;
    position: fixed;
    top: 10px;
    right: 17vw;
}
.user-sp {
    height: 6.1vw;
}

.cart-sp {
    height: 6.1vw;
}

.footer-button-container {
    display: flex;
    background-color: white;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px 5px 5px;
    width: 125.96px;
    height: 34.77px;
    margin-bottom: 20px;
}

.footer-button-icon {
    width: 30px;
    filter: invert(1);
}

.footer-button-text-container {
    font-size: 12px;
    font-weight: 600;
}

.footer-button-arrow-container {
    font-weight: 600;
}

.footer-button-icon-container {
    display: flex;
}

.footer-button-left-side {
    display: flex;
    align-items: center;
    gap: 3px;
}

@media screen and (max-width: 767px) {
    .ft_squre-icon a img {
        width: 35px;
        height: auto;
    }
}
