/* ========================================
    Reset CSS
======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
    height: auto;
}

button,
input,
textarea {
    font: inherit;
}

/* ========================================
    Base
======================================== */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

body {
    line-height: 1.7;
    -webkit-text-size-adjust: 100%;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
        "游ゴシック", "Yu Gothic", sans-serif;
    color: #222;
    font-size: 1.6rem;
    font-weight: 500;
    background: linear-gradient(to bottom, #222124, #434046);
}

/* ========================================
    Layout — Mobile first
======================================== */

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

.main-content {
    width: 100%;
    background: #fff;
    margin: 0 auto;
    padding: 50px 0 0;
}

@media screen and (min-width: 769px) {
    .wrapper {
        display: flex;
        flex-direction: row-reverse;
    }

    .main-content {
        max-width: 700px;
        padding: 0;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .main-content {
        max-width: 500px;
    }
}

/* ========================================
    Side Nav (desktop only)
======================================== */

.side-nav {
    display: none;
}

@media screen and (min-width: 769px) {
    .side-nav {
        display: flex;
        width: calc(100% - 700px);
        align-items: center;
        justify-content: center;
        padding: 40px 20px 40px 50px;
        position: sticky;
        top: 0;
        height: 100vh;
        font-family: "Noto Serif JP", serif;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .side-nav {
        width: calc(100% - 500px);
    }
}

.side-nav__inner {
    width: 100%;
}

.side-nav__title {
    display: block;
    width: 200px;
    margin: 0 0 20px;
    line-height: 1;
    font-weight: 400;
}

.side-nav__clp {
    width: 200px;
    margin: 0 0 30px;
}

.side-nav__btn {
    display: block;
    width: 200px;
    margin: 0 0 30px;
    padding: 20px 0;
    border: 1px solid #F0CF95;
    border-radius: 999px;
    color: #d8c08d;
    font-size: 1.6rem;
    transition: 0.6s;
    text-align: center;
}

.side-nav__btn:hover {
    color: #000;
    background: #f0cf95;
}

.side-nav__list {
    margin: 0 0 30px;
}

.side-nav__list li {
    position: relative;
    margin-bottom: 16px;
    padding: 0 0 0 20px;
}

.side-nav__list li::before {
    position: absolute;
    top: 18px;
    left: 0;
    content: "";
    width: 10px;
    height: 1px;
    background: #a48454;
}

.side-nav__list a {
    display: block;
    color: #a48454;
    font-size: 2rem;
    line-height: 1.8;
    transition: 0.3s;
}

.side-nav__list a:hover {
    color: #f0cf95;
}

.side-nav__sns {
    display: flex;
    margin: 0 0 30px;
}

.side-nav__sns .icon {
    flex-basis: 30px;
}

.side-nav__copyright {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
        "游ゴシック", "Yu Gothic", sans-serif;
    color: #a48454;
    font-size: 1.2rem;
}

/* ========================================
    Header (mobile only)
======================================== */
.site-header {
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    height: 50px;
    background: #fff;
}

@media screen and (min-width: 769px) {
    .site-header {
        display: none;
    }
}

.site-header__inner {
    display: flex;
    justify-content: space-between;
}

.site-header__logo {
    width: 120px;
    padding: 10px 0 0 3%;
}

/* ========================================
    Drawer Menu
======================================== */
#drawer-checkbox {
    display: none;
}

#drawer-icon {
    cursor: pointer;
    display: inline-block;
    position: fixed;
    z-index: 9998;
    top: 0;
    right: 3%;
    width: 40px;
    height: 40px;
}

#drawer-icon span {
    background: #a48454;
    display: block;
    height: 2px;
    left: 0;
    right: 0;
    margin: -5% auto 0;
    position: absolute;
    top: 50%;
    width: 80%;
}

#drawer-icon span::before,
#drawer-icon span::after {
    background: #a48454;
    content: "";
    display: block;
    height: 100%;
    left: 0%;
    margin: -5% 0 0 0;
    position: absolute;
    top: 50%;
    transform: rotate(0);
    width: 100%;
}

#drawer-icon span::before {
    display: none;
    margin-top: -30%;
}

#drawer-icon span::after {
    margin-top: 28%;
}

#drawer-checkbox:checked~#drawer-icon span {
    background: rgba(51, 51, 51, 0);
}

#drawer-checkbox:checked~#drawer-icon span::before,
#drawer-checkbox:checked~#drawer-icon span::after {
    display: block;
    left: 5%;
    margin: 0;
    width: 90%;
    background: #a48454;
}

#drawer-checkbox:checked~#drawer-icon span::before {
    transform: rotate(-30deg);
}

#drawer-checkbox:checked~#drawer-icon span::after {
    transform: rotate(30deg);
}

#drawer-content {
    visibility: hidden;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #222124, #434046);
    transition: all .2s ease-in-out;
    opacity: 0;
}

#drawer-checkbox:checked~#drawer-content {
    visibility: visible;
    z-index: 998;
    transition: all .8s ease-in-out;
    opacity: 1;
}

#drawer-close {
    display: none;
    position: fixed;
    z-index: 39;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#drawer-checkbox:checked~#drawer-close {
    display: block;
    opacity: 0.3;
}

/* メニュー内容 */
.menu__content {
    position: relative;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 60px 6% 0;
    font-family: "Noto Serif JP", serif;
    -webkit-overflow-scrolling: touch;
}

.menu__inner {
    width: 100%;
    height: 100%;
}

.menu__block {
    width: 100%;
    margin: 0 0 30px;
    padding: 0 4%;
}

.menu__logo {
    width: 120px;
    margin: 0 auto 20px;
}

.menu__clp {
    width: 180px;
    margin: 0 auto 30px;
}

.menu__btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    padding: 17px 0;
    border: 1px solid #f0cf95;
    background: #f0cf95;
    border-radius: 999px;
    color: #000;
    font-size: 1.6rem;
    text-align: center;
}

.menu__link {
    width: 100%;
}

.menu__link li {
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 0 20px;
    font-size: 1.6rem;
    line-height: 1.6;
}

.menu__link li::before {
    position: absolute;
    top: 12px;
    left: 0;
    content: "";
    width: 10px;
    height: 1px;
    background: #a48454;
}

.menu__link a {
    color: #A48454;
}

.menu__sns {
    display: flex;
    justify-content: center;
}

.menu__sns .icon {
    flex-basis: 60px;
}

/* ========================================
    Footer
======================================== */
.footer {
    display: block;
    padding: 30px 0;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .footer {
        display: none;
    }
}

.footer .copyright {
    font-size: 1.1rem;
    color: #a48454;
}

/* ========================================
    Hero
======================================== */
.hero {
    position: relative;
}

.hero__copy {
    position: absolute;
    top: 32px;
    left: 20px;
    font-family: "Noto Serif JP", serif;
    color: #fff;
    z-index: 2;
}

.hero__title {
    font-size: 2.4rem;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 12px;
}

@media screen and (min-width: 480px) {
    .hero__copy {
        top: 40px;
        left: 22px;
    }

    .hero__title {
        font-size: 3.2rem;
        margin-bottom: 14px;
    }
}

.hero__sub {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
}

@media screen and (min-width: 480px) {
    .hero__sub {
        font-size: 1.6rem;
    }
}

/* ========================================
    Intro
======================================== */
.intro {
    padding: 32px 20px;
}

@media screen and (min-width: 480px) {
    .intro {
        padding: 40px 22px;
    }
}

.intro__text {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 28px;
}

@media screen and (min-width: 480px) {
    .intro__text {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }
}

/* ========================================
    CTA
======================================== */
.cta {
    margin: 0 0 60px;
    background: #EDE5D0;
    padding: 44px 20px;
    text-align: center;
}

.cta.-bottom {
    margin: 0;
}

@media screen and (min-width: 480px) {
    .cta {
        padding: 60px 20px;
    }
}

.cta__label {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.cta__btn {
    width: 100%;
    max-width: 300px;
    height: 62px;
    margin: 0 auto 20px;
    border-radius: 999px;
    border: 2px solid #f0cf95;
    background: linear-gradient(135deg, #1c1a24 0%, #4a474f 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    transition: 0.6s;
    &:hover {
        background: #f0cf95;
        color: #000;
    }
}

@media screen and (min-width: 480px) {
    .cta__btn {
        max-width: 320px;
        height: 72px;
        font-size: 2rem;
        display: inline-flex;
    }
}

.cta__notes {
    font-size: 1.3rem;
}

@media screen and (min-width: 480px) {
    .cta__notes {
        font-size: 1.4rem;
    }
}

/* ========================================
    Section Title
======================================== */
.section-title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 96px;
    margin: 0 3% 22px;
}

@media screen and (min-width: 480px) {
    .section-title {
        min-height: 120px;
        margin: 0 3% 60px;
    }
}

.section-title::before {
    position: absolute;
    z-index: 1;
    content: "";
    top: 0;
    left: 0;
    width: 96px;
    height: 100%;
    background-image: url(../img/icon-moon.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (min-width: 480px) {
    .section-title::before {
        width: 120px;
    }
}

.section-title__text {
    padding: 0 0 0 8%;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.8;
}

@media screen and (min-width: 480px) {
    .section-title__text {
        font-size: 2.4rem;
    }
}

/* ========================================
    Message
======================================== */
.message {
    margin: 0 0 40px;
    padding: 44px 0 0;
    text-align: center;
}

@media screen and (min-width: 480px) {
    .message {
        margin: 0 0 120px;
        padding: 60px 0 0;
    }
}

.message__text {
    margin: 0 0 28px;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 2.2;
}

@media screen and (min-width: 480px) {
    .message__text {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

.message__clp {
    width: 55%;
    margin: 0 auto 60px;
}

@media screen and (min-width: 480px) {
    .message__clp {
        width: 50%;
        margin: 0 auto 80px;
    }
}

.message__img {
    width: 100%;
    margin: 0 auto;
}

/* ========================================
    Visual Section — Before / After
======================================== */
.visual {
    margin: 0 0 56px;
}

@media screen and (min-width: 480px) {
    .visual {
        margin: 0 0 120px;
    }
}

.visual__block {
    padding: 0 20px;
    overflow: hidden;
}

@media screen and (min-width: 480px) {
    .visual__block {
        padding: 0 22px;
    }
}

/* カード共通 */
.visual__item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

/* Before/After ラベル */
.visual__b-a {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    padding: 6px 16px;
    font-family: "Noto Serif JP", serif;
    font-weight: 300;
    font-size: 1.6rem;
    letter-spacing: 0.16em;
    color: #fff;
    background: rgba(28, 26, 36, 0.68);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Before: やや暗く・小さく見せる */
.visual__item.-before {
    margin: 0 8% 20px 0;
    opacity: 0.88;
}

.visual__item.-before .visual__b-a {
    background: rgba(60, 56, 68, 0.72);
    letter-spacing: 0.12em;
}

/* After: ゴールドリング＋グロウ */
.visual__item:not(.-before) {
    box-shadow:
        0 0 0 1.5px #a48454,
        0 10px 36px rgba(164, 132, 84, 0.22);
    margin: 0 0 0 8%;
}

.visual__item:not(.-before) .visual__b-a {
    background: rgba(164, 132, 84, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* 区切り矢印 */
.visual__arrow {
    display: flex;
    align-items: center;
    margin: 0 20px 16px;
}

@media screen and (min-width: 480px) {
    .visual__arrow {
        margin: 0 22px 16px;
    }
}

.visual__arrow::before,
.visual__arrow::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0d2ac);
}

.visual__arrow::after {
    background: linear-gradient(90deg, #e0d2ac, transparent);
}

.visual__arrow span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0 12px;
    border: 1px solid #a48454;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #a48454;
    flex-shrink: 0;
}

/* ========================================
    Features Section
======================================== */
.features {
    margin: 0 0 56px;
}

@media screen and (min-width: 480px) {
    .features {
        margin: 0 0 120px;
    }
}

.features__block {
    padding: 0 20px;
}

@media screen and (min-width: 480px) {
    .features__block {
        padding: 0 22px;
    }
}

.feature__grid {
    display: grid;
    gap: 12px;
    margin: 0 0 20px;
}

@media screen and (min-width: 480px) {
    .feature__grid {
        gap: 16px;
        margin: 0 0 24px;
    }
}

.feature__card {
    margin: 0 0 30px;
    padding: 22px 18px;
    border: 1px solid #e0d2ac;
    background: #fafaf8;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 480px) {
    .feature__card {
        padding: 28px 24px;
    }
}

.feature__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #a48454, #e0d2ac);
}

.feature__card .num {
    font-size: 3rem;
    font-weight: 200;
    color: #d8c08d;
    line-height: 1;
    margin: 0 0 12px;
    letter-spacing: 0.05em;
}

@media screen and (min-width: 480px) {
    .feature__card .num {
        font-size: 3.6rem;
        margin: 0 0 14px;
    }
}

.feature__card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #222;
}

@media screen and (min-width: 480px) {
    .feature__card h3 {
        font-size: 2rem;
        margin: 0 0 12px;
    }
}

.feature__card p {
    font-size: 1.4rem;
    line-height: 1.8;
}

.point-card {
    border-radius: 10px;
    background: linear-gradient(135deg, #1c1a24 0%, #434046 100%);
    padding: 26px 20px;
    color: #fff;
}

@media screen and (min-width: 480px) {
    .point-card {
        padding: 32px 28px;
    }
}

.point-card h3 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #d8c08d;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(164, 132, 84, 0.25);
}

@media screen and (min-width: 480px) {
    .point-card h3 {
        font-size: 2rem;
        margin: 0 0 20px;
        padding-bottom: 14px;
    }
}

.point-card ul {
    display: grid;
    gap: 12px;
}

.point-card li {
    font-size: 1.6rem;
    padding-left: 20px;
    position: relative;
    color: #f0f0ee;
    line-height: 1.7;
}

.point-card li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 8px;
    height: 1px;
    background: #a48454;
}

/* ========================================
    PreOrder Section
======================================== */
.preorder {
    margin: 0 0 56px;
}

@media screen and (min-width: 480px) {
    .preorder {
        margin: 0 0 120px;
    }
}

.preorder__container {
    padding: 0 20px;
    margin: 0 0 28px;
}

@media screen and (min-width: 480px) {
    .preorder__container {
        padding: 0 22px;
        margin: 0 0 40px;
    }
}

.preorder__grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 0 40px;
}

@media screen and (min-width: 480px) {
    .preorder__grid {
        flex-direction:row;
    }
}

.preorder__pricecard {
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    margin: 0 0 20px;
    padding: 22px 18px;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 480px) {
    .preorder__pricecard {
        width: 48%;
        margin: 0;
        padding: 28px 24px;
    }
}

.preorder__pricecard::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a48454, #e0d2ac);
}

.preorder__pricecard .plan {
    font-family: "Noto Serif JP", serif;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: #a48454;
    margin: 0 0 8px;
}

.preorder__pricecard h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #222;
}

@media screen and (min-width: 480px) {
    .preorder__pricecard h3 {
        font-size: 1.8rem;
        margin: 0 0 14px;
    }
}

.preorder__pricecard .price {
    font-size: 2.4rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 16px;
    line-height: 1;
}

@media screen and (min-width: 480px) {
    .preorder__pricecard .price {
        font-size: 2.8rem;
        margin: 0 0 20px;
    }
}

.preorder__pricecard .price small {
    font-size: 1.2rem;
    font-weight: 400;
    color: #777;
}

.preorder__pricecard ul {
    margin: 0 0 16px;
    display: grid;
    gap: 8px;
}

@media screen and (min-width: 480px) {
    .preorder__pricecard ul {
        margin: 0 0 20px;
    }
}

.preorder__pricecard li {
    font-size: 1.3rem;
    color: #555;
    padding-left: 16px;
    position: relative;
    line-height: 1.7;
}

.preorder__pricecard li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 6px;
    height: 1px;
    background: #a48454;
}

.stock-note {
    display: inline-block;
    color: #a48454;
    border: 1px solid #e0d2ac;
    padding: 4px 12px;
    border-radius: 999px;
    background: #faf6ee;
}


.spec-box {
    border: 1px solid #ddd;
    overflow: hidden;
}

.spec-box table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.3rem;
}

@media screen and (min-width: 480px) {
    .spec-box table {
        font-size: 1.4rem;
    }
}

.spec-box tr {
    border-bottom: 1px solid #eee;
}

.spec-box tr:last-child {
    border-bottom: none;
}

.spec-box th {
    width: 28%;
    padding: 12px 10px;
    background: #f5f0e8;
    font-weight: 600;
    vertical-align: top;
    text-align: left;
}

@media screen and (min-width: 480px) {
    .spec-box th {
        width: 30%;
        padding: 14px 16px;
        font-size: 1.4rem;
        white-space: nowrap;
    }
}

.spec-box td {
    padding: 12px 10px;
    line-height: 1.8;
    vertical-align: top;
}

@media screen and (min-width: 480px) {
    .spec-box td {
        padding: 14px 16px;
    }
}

/* ========================================
    Faq Section
======================================== */
.faq {
    margin: 0 0 56px;
}

@media screen and (min-width: 480px) {
    .faq {
        margin: 0 0 120px;
    }
}

.faq__block {
    padding: 0 20px;
    display: grid;
    gap: 2px;
}

@media screen and (min-width: 480px) {
    .faq__block {
        padding: 0 22px;
    }
}

.faq__block dl {
    margin: 0 0 20px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq__block dt {
    font-weight: 600;
    padding: 15px 44px 15px 36px;
    cursor: pointer;
    position: relative;
    background: #fff;
    color: #222;
    transition: background 0.2s;
    line-height: 1.6;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

@media screen and (min-width: 480px) {
    .faq__block dt {
        font-size: 1.8rem;
        padding: 18px 50px 18px 40px;
    }
}

.faq__block dt::before {
    content: "Q";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #a48454;
}

@media screen and (min-width: 480px) {
    .faq__block dt::before {
        left: 14px;
        font-size: 2rem;
    }
}

.faq__block dt::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid #a48454;
    border-bottom: 1.5px solid #a48454;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
}

@media screen and (min-width: 480px) {
    .faq__block dt::after {
        right: 18px;
        width: 10px;
        height: 10px;
    }
}

.faq__block dt.is-open::after {
    transform: translateY(-30%) rotate(225deg);
}

.faq__block dt:hover {
    background: #faf6ee;
}

.faq__block dd {
    line-height: 1.9;
    padding: 0 14px 0 36px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: #fdfbf7;
    position: relative;
}

@media screen and (min-width: 480px) {
    .faq__block dd {
        font-size: 1.6rem;
        padding: 0 20px 0 40px;
    }
}

.faq__block dd::before {
    content: "A";
    position: absolute;
    left: 12px;
    top: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #d8c08d;
    line-height: 1;
    padding-top: 15px;
}

@media screen and (min-width: 480px) {
    .faq__block dd::before {
        left: 14px;
        font-size: 1.6rem;
        padding-top: 18px;
    }
}

.faq__block dd.is-open {
    max-height: 300px;
    padding: 15px 14px 15px 36px;
}

@media screen and (min-width: 480px) {
    .faq__block dd.is-open {
        padding: 18px 20px 18px 40px;
    }
}

/* ========================================
    Page Top Section
======================================== */
.pagetop {
    text-align: center;
    line-height: 1;
    a {
        position: relative;
        display: block;
        width: 100%;
        padding: 60px 0 40px;
        background: #A48454;
        color: #000;
        &:hover {
            background: #f0cf95;
            transition: 0.6s;
        }
        &::before {
            position: absolute;
            content: "";
            top: 30px;
            left: 0;
            right: 0;
            display: inline-block;
            vertical-align: middle;
            color: #333;
            line-height: 1;
            width: 1em;
            height: 1em;
            margin: 0 auto;
            border: 0.1em solid currentColor;
            border-left: 0;
            border-bottom: 0;
            box-sizing: border-box;
            transform: translateY(25%) rotate(-45deg);
        }
    }
}



/* ========================================
    Order
======================================== */
.order {
    padding: 60px 0;
}

.order__text {
    margin: 0 0 30px;
    padding: 0 6%;
}

.order__form {
    padding: 0 6%;
}

.order__form label {
    display: block;
    margin: 0 0 30px;
}

.order__form input {
    width: 100%;
    padding: 5px;
}

.order__form .wpcf7-select {
    display: block;
    width: 100%;
    padding: 15px 5px;
}

.order__form .wpcf7-submit {
    padding: 15px;
    border: none;
    background: #f0cf95;
    color: #000;
}


.order__thanks {
    padding: 0 6%;
    line-height: 1.8;
    .back__top {
        text-decoration: underline;
        &:hover {
            text-decoration: none;
        }
    }
}