html {
    background-image: url(../image/background-img.png);
    background-size: 50%;
    scroll-behavior: smooth;
}

html,
body,
button,
input,
textarea,
select {
    font-family: "Zen Kaku Gothic New", sans-serif;
}

/* spanで囲った塊を自動改行させる共通設定 */
.text-block {
    display: inline-block;
}

/* ページ全体をふわっと表示 */

body {
    opacity: 0;
    animation: pageFadeIn 1.5s ease forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* -----------------------------
================================
ヘッダーの設定
================================
--------------------------------*/

header {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    align-items: center;
    justify-content: space-between;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;

}

#header-logo {
    width: 100%;
    margin: 0 1.5rem
}

a.header-link-button {
    position: relative;
    overflow: hidden;

    display: inline-block;
    padding: 4px 28px;
    color: #fff;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(90deg,
            #7a7308 0%,
            #d4c55c 100%);
}

a.header-link-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;

    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);

    transform: skewX(-20deg);
}

a.header-link-button:hover::before {
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.hamburger {
    position: relative;
    width: 86px;
    height: 86px;
    margin: .5rem 1rem;
    display: grid;
    place-items: center;
    padding: 10px 12px;
    border: 1px solid #1F3E62;
    background: transparent;
    color: #1F3E62;
    cursor: pointer;
    z-index: 10000;
}

.hamburger__label {
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: .02em;
    line-height: 1;
}

.hamburger__bars {
    width: 46px;
    height: 30px;
    position: relative;
    display: block;
}

.hamburger__bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1F3E62;
    border-radius: 999px;

    transform-origin: right center;

    transition: transform .28s ease, top .28s ease, opacity .18s ease;
}



/* 三本線の設定 */
.hamburger__bars span:nth-child(1) {
    top: 0;
    transform: scaleX(.65);
}

.hamburger__bars span:nth-child(2) {
    top: 12px;
    transform: scaleX(.5);
}

.hamburger__bars span:nth-child(3) {
    top: 24px;
    transform: scaleX(.8);
}

/* バツになるアニメーション */
.hamburger.is-active .hamburger__bars span:nth-child(1) {
    top: 32px;
    transform: scaleX(1) rotate(45deg);
}

.hamburger.is-active .hamburger__bars span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.2);
}

.hamburger.is-active .hamburger__bars span:nth-child(3) {
    top: 0px;
    transform: scaleX(1) rotate(-45deg);
}

.hamburger.is-active .hamburger__bars {
    right: 5px;
}

/* 線画動くアニメーション */
/* 1本目 */
.hamburger:not(.is-active) .hamburger__bars span:nth-child(1) {
    animation: wiggle1 2.4s ease-in-out infinite alternate;
}

/* 2本目 */
.hamburger:not(.is-active) .hamburger__bars span:nth-child(2) {
    animation: wiggle2 2.8s ease-in-out infinite alternate;
}

/* 3本目 */
.hamburger:not(.is-active) .hamburger__bars span:nth-child(3) {
    animation: wiggle3 2.2s ease-in-out infinite alternate;
}

@keyframes wiggle1 {
    0% {
        transform: scaleX(.7);
    }

    50% {
        transform: scaleX(.85);
    }

    100% {
        transform: scaleX(.53);
    }
}

@keyframes wiggle2 {
    0% {
        transform: scaleX(.3);
    }

    50% {
        transform: scaleX(.7);
    }

    100% {
        transform: scaleX(1);
    }
}

@keyframes wiggle3 {
    0% {
        transform: scaleX(.75);
    }

    50% {
        transform: scaleX(.95);
    }

    100% {
        transform: scaleX(.8);
    }
}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 768px) {
    #header-logo {
        width: 70%;
    }

    .hamburger {
        width: 60px;
        height: 70px;
        padding: 10px 4px;
    }

    .hamburger__label {
        font-size: 16px;
    }

    .hamburger__bars span:nth-child(1) {
        top: 4px;
    }

    .hamburger__bars span:nth-child(3) {
        top: 20px;
    }
}

@media screen and (min-width: 375px) and (max-width: 727px) {

    #header-logo {
        width: 50%;
    }

    .link-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    a.header-link-button {
        display: none;
    }

    .hamburger {
        margin: .4rem .6rem;
        width: 46px;
        height: 56px;
    }

    .hamburger__label {
        font-size: 12px;
    }

    .hamburger__bars {
        width: 30px;
    }

    .hamburger.is-active .hamburger__bars span:nth-child(1) {
        top: 21px;
    }
}

/* ここまで */

/* ハンバーガー開いた時の設定 */
body.is-nav-open #header-logo,
body.is-nav-open .header-link-button {
    opacity: 0;
    pointer-events: none;
}

body.is-nav-open {
    overflow: hidden;
}

header.is-fv .hamburger {
    border-color: #fff;
    color: #fff;
}

header.is-fv .hamburger__bars span {
    background: #fff;
}

/* ナビ開いた時はバツをネイビーにする */
body.is-nav-open .hamburger__bars span {
    background: #1F3E62;
}

/* 枠線と文字色も揃えるなら */
body.is-nav-open .hamburger {
    border-color: #1F3E62;
    color: #1F3E62;
}

/* ナビゲーション中身（バンバーガーOPEN） */
.global-nav {
    position: fixed;
    inset: 0;
    z-index: 9000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
}

.global-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.global-nav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity .35s ease;
}

.global-nav.is-open .global-nav__backdrop {
    opacity: 1;
}

.global-nav__panel {
    position: relative;
    width: 100%;
    height: 60%;
    background: #fff;

    transform: translateY(-18px);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
}

.global-nav.is-open .global-nav__panel {
    transform: translateY(0);
    opacity: 1;
}

.global-nav__inner {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    height: 100%;
    padding: 80px 60px;
}

/* 左側の設定 */
.global-nav__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.sns_links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2rem;
}

/* 中央のメニューの設定 */
.global-nav__center {
    display: flex;
    justify-content: space-evenly;
}

.global-nav__group {
    width: 36%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.global-nav__list {
    margin: 0 auto;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    color: #1F3E62;
}

.global-nav__list a {
    position: relative;
    display: inline-block;
    padding-left: 24px;
    transition: color .3s ease;
}

.global-nav__list a::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #9F8F3B;
    font-size: 14px;
    opacity: 0;
    transition: opacity .3s ease;
}

.global-nav__list a:hover::before {
    opacity: 1;
}

.global-nav__list li {
    margin-bottom: 0.38rem;
}

/* 中央メニュータイトル部分 */

.nav-title {
    display: grid;
    justify-items: center;
    text-align: center;
    margin-bottom: 1rem;
}

.nav-title__text {
    font-family: "Libre Bodoni", serif;
    font-size: 40px;
    color: #9F8F3B;
    line-height: 1;
}

.nav-title__deco {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.nav-title__line {
    height: 2px;
    background: #9F8F3B;
    flex: 1;
}

.nav-title__center {
    height: 7px;
    width: auto;
    display: block;
}

.nav-title__arrow {
    height: 7px;
    width: auto;
    display: block;
}


/* ナビの右側部分 */
.global-nav__right {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    margin-top: 2rem;
}

.global-nav__cta {
    position: relative;
    overflow: visible;
    width: 260px;
    min-height: 40px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #1F3E62;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    background: #fff;

    border: 2px solid #9F8F3B;
}

/* 内側ドットライン（上下） */
.global-nav__cta::before,
.global-nav__cta::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    border-top: 2px dotted #9F8F3B;
    opacity: .9;
}

.global-nav__cta::before {
    top: 4px;
}

.global-nav__cta::after {
    bottom: 4px;
}

/* 左右の装飾画像*/
.cta-deco {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: auto;
    pointer-events: none;
}

.cta-deco img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-deco--left {
    left: -22px;
}

.cta-deco--right {
    right: -22px;
}

/* 文字 */
.global-nav__ctaText {
    font-size: 16px;
    letter-spacing: .08em;
}

.global-nav__cta:hover {
    background: #1F3E62;
    color: #fff;
}


/* -----------------------------
レスポンシブ
--------------------------------*/
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .global-nav__center {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .global-nav__group {
        width: 80%;
    }

    .global-nav__list {
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .global-nav__inner {
        gap: 2%;
        align-items: start;
        align-content: center;
    }

    .global-nav__group {
        width: 90%;
    }

    .global-nav__center {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .global-nav__right {
        margin-top: 0;
    }

    .global-nav__list a::before {
        display: none;
    }

}

@media (max-width: 900px) {
    .global-nav__panel {
        height: 90%;
    }

    .global-nav__inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr;
        padding: 60px 30px;
        gap: 8px;
    }

    .global-nav__left {
        width: 36%;
        grid-column: 1 / -1;
        justify-self: center;
        text-align: center;
    }

    .global-nav__center {
        grid-column: 1 / 2;
        justify-content: center;
    }

    .global-nav__right {
        grid-column: 2 / 3;
        align-items: center;
    }
}


@media screen and (min-width: 375px) and (max-width: 727px) {

    .global-nav__panel {
        height: 100%;
    }


    .global-nav__inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 18px;
        padding: 50px 20px;
        text-align: center;
    }

    /* 全部1列 */
    .global-nav__left,
    .global-nav__center,
    .global-nav__right {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .global-nav__left {
        width: 50%;
        flex-direction: row;
        justify-content: center;
        /* 中央寄せ */
        align-items: center;
        /* 縦中央 */
        gap: 20px;
        /* ロゴとSNSの間 */
    }

    .global-nav__logo {
        width: 60%;
        /* ロゴが大きすぎる場合 */
    }

    .sns_links {
        display: flex;
        gap: 16px;
    }

    /* メニュー中央寄せ */
    .global-nav__center {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-title__text {
        font-size: 28px;
    }

    .global-nav__list a {
        padding-left: 0;
    }

    /* CTA中央寄せ */
    .global-nav__right {
        align-items: center;
        gap: 8px;
    }

    .global-nav__cta {
        width: 190px;
        min-height: 36px;
    }

    .cta-deco {
        width: 19px;
    }

    .cta-deco--left {
        left: -19px;
    }

    .cta-deco--right {
        right: -19px;
    }
}

/* -----------------------------
================================
FVの設定
================================
--------------------------------*/
.fv {
    position: relative;
    height: auto;
    aspect-ratio: 1920 / 750;
    overflow: hidden;
}

.fv-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.fv-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.fv-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.fv-title,
.fv-lead,
.fv-note {
    color: #fff;
    font-family: "Shippori Mincho B1", serif;
}

h1.fv-title {
    margin: 1rem 0;
    font-size: 40px;
    text-indent: 2rem;
    font-weight: 600;
    text-shadow: 0 4px 7px rgba(0, 0, 0, 0.8);
}

p.fv-lead {
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: 500;
    text-shadow: 0 4px 7px rgba(0, 0, 0, 0.8);
}

p.fv-note {
    margin-top: 3rem;
    font-size: 20px;
}

p.fv-note span {
    display: block;
}

/* -----------------------------
レスポンシブ
--------------------------------*/

/* 1919以下 */
@media (max-width: 1920px) {
    .fv {
        aspect-ratio: 1440/730;
    }
}

/* 1440以下 */
@media (max-width: 1440px) {
    .fv {
        aspect-ratio: 1024/720;
    }

}

/* 1024以下 */
@media (max-width: 1024px) {

    h1.fv-title {
        font-size: 2rem;
    }

    p.fv-lead {
        font-size: 1rem;
    }

    p.fv-note {
        font-size: 1rem;
    }
}

/* 768以下 */
@media (max-width: 768px) {
    .fv {
        aspect-ratio: 767 / 650;
    }
}


@media screen and (min-width: 375px) and (max-width: 727px) {
    .fv {
        aspect-ratio: 390 / 650;
    }

    .fv-bg-img {
        transform: translateX(0px);
    }

    h1.fv-title {
        font-size: 1.5rem;
    }

    p.fv-lead {
        font-size: 12px;
    }

    p.fv-note {
        margin-top: 2rem;
        font-size: 12px;
    }
}



/* -----------------------------
================================
メイン領域の設定
================================
--------------------------------*/
#main {
    margin: 0 auto;
    max-width: 1620px;
    width: 100%;
}

/* 各セクションの幅の設定（共通） */
.container {
    padding: 80px 10% 100px 10%;
}

/* 各種セクションタイトルの設定 */
.section-title {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 40px;
}

.section-title__en {
    font-family: "Libre Bodoni", serif;
    font-size: 48px;
    color: #9F8F3B;
    line-height: 1;
}

.section-title__jp {
    font-family: "Shippori Mincho B1", serif;
    font-size: 16px;
    color: #9F8F3B;
}

/* -----------------------------
レスポンシブ
--------------------------------*/
/* 767以下 */
@media (max-width: 1366px) {
    .container {
        padding-bottom: 50px;
    }
}

@media (max-width: 1024px) {
    .section-title__en {
        font-size: 40px;
    }

    .section-title__jp {
        font-size: 14px;
    }
}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .section-title__en {
        font-size: 26px;
    }

    .section-title__jp {
        font-size: 12px;
    }

    .container {
        padding: 20px 8% 20px 8%;
    }
}



/* -----------------------------
================================
News-トップ
================================
--------------------------------*/

.news-panel {
    padding: 50px 70px;
    margin: 0 10%;
    background: url("../image/vintage-paper.webp") center / cover no-repeat;
}

/* =============================
    汎用コーナーフレーム
============================= */

.frame-panel {
    position: relative;
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

/* 左上 */
.frame-corner--tl {
    top: 10px;
    left: 10px;
    background-image: url("../image/news-fram-lefttop.svg");
}

/* 右上 */
.frame-corner--tr {
    top: 10px;
    right: 10px;
    background-image: url("../image/news-fram-righttop.svg");
}

/* 右下 */
.frame-corner--br {
    bottom: 10px;
    right: 10px;
    background-image: url("../image/news-fram-rightbottom.svg");
}

/* 左下 */
.frame-corner--bl {
    bottom: 10px;
    left: 10px;
    background-image: url("../image/news-fram-leftbottom.svg");
}

.news-list {
    position: relative;
    z-index: 1;
}

.news-item {
    border-bottom: 1px solid rgba(143, 122, 44, 0.5);
}

.news-item:first-child .news-link {
    padding-top: 0;
}

.news-link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 2rem 0 4px 0;
    text-decoration: none;
    color: #6B5A23;
}

/* 日付＋New */
.news-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Sorts Mill Goudy", serif;
    font-weight: 400;
    color: #9F8F3B;
}

.news-date {
    letter-spacing: .04em;
}

.news-text-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 本文 */
.news-text {
    font-family: "Shippori Mincho B1", serif;
    letter-spacing: .04em;
}

/* 右矢印 */
.news-arrow {
    width: 50px;
    height: 26px;
    justify-self: end;
    background: url("../image/news-top-linkarrow.svg") center / contain no-repeat;
    opacity: .9;
    transition: transform .3s ease;
}

/* hover */
.news-link:hover .news-arrow {
    transform: translateX(6px);
}


/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 900px) {
    .frame-corner {
        width: 30px;
        height: 30px;
    }

    .frame-corner--tl {
        top: 5px;
        left: 5px;
    }

    .frame-corner--tr {
        top: 5px;
        right: 5px;
    }

    .frame-corner--br {
        bottom: 5px;
        right: 5px;
    }

    .frame-corner--bl {
        bottom: 5px;
        left: 5px;
    }


}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .news-panel {
        margin: 0;
    }

    .news-arrow {
        display: none;
    }

}



/* ----------------------------- */
.more {
    margin-top: 40px;
    display: grid;
    place-items: center;
}

.moreLink {
    position: relative;
    display: inline-block;
    padding: 16px 80px;
    font-family: "Shippori Mincho B1", serif;
    text-decoration: none;
    color: #1F3E62;
}

/* 下線 */
.moreLink::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 1px;
    background: rgba(183, 155, 59, .7);
}

/* 羽ペン */
.moreLink::after {
    content: "";
    position: absolute;
    right: -70px;
    top: 33%;
    width: 76px;
    height: 64px;
    background: url("../image/link-line-ornament.svg") center / contain no-repeat;

    transform: translate(-70px, -50%);
    opacity: 0;

    transition: transform .4s cubic-bezier(.4, 0, .2, 1),
        opacity .3s ease;
}

.moreLink:hover::after {
    transform: translate(0, -50%);
    opacity: 1;
}

.moreLink:hover {
    color: #4f7fb6;
}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 1024px) {
    .moreLink::after {
        transform: translate(0, -50%);
        opacity: 1;
        transition: none;
    }

}

@media (max-width: 900px) {

    .news-panel {
        padding: 35px 20px;
    }

    .news-arrow {
        justify-self: start;
    }

    .news-corner {
        width: 40px;
        height: 40px;
    }

    .news-corner--tl {
        top: 10px;
        left: 10px;
    }

    .news-corner--tr {
        top: 10px;
        right: 10px;
    }

    .news-corner--br {
        bottom: 10px;
        right: 10px;
    }

    .news-corner--bl {
        bottom: 10px;
        left: 10px;
    }
}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .moreLink {
        padding: 16px 16px;
    }
}



/* -------------------------------------------------
====================================================
サービス紹介部分の設定
==================================================== 
----------------------------------------------------*/
#service {
    border-top: #9F8F3B 2px solid;
    border-bottom: #9F8F3B 2px solid;
}


/* セクションタイトルの装飾（共通） */
.deco {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 40px 0 30px;
}

.deco__parts {
    width: 70%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0 auto;
}

.deco__parts--top {
    background-image: url("../image/service-little-frame-top.svg");
    aspect-ratio: 1200 / 100;
    margin-bottom: -2%;
}

.deco__parts--bottom {
    background-image: url("../image/service-little-frame-bottom.svg");
    aspect-ratio: 1200 / 70;
}

.deco__center {
    position: relative;
    display: grid;
    gap: 2px;
}

.deco__line {
    height: 4px;
    background: #9F8F3B;
}

.deco__line-slender {
    height: 2px;
    background: #9F8F3B;
}

.deco__titleWrap {
    text-align: center;
    padding: 2% 0;
}

.deco__ornament--bottom {
    transform: scaleY(-1);
}

.deco__title {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    color: #9F8F3B;
    letter-spacing: .08em;
}

.sub-title {
    font-size: 2rem;
}

.block-title {
    font-size: 2.5rem;
}


/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 1024px) {
    .block-title {
        font-size: 32px;
    }
}

@media screen and (min-width: 375px) and (max-width: 727px) {

    .deco__line-slender {
        height: 1px;
    }

    .deco__line {
        height: 2px;
    }

    .deco__titleWrap {
        padding: 0;
    }

    .deco {
        margin-bottom: 0;
    }

    .deco__parts {
        width: 100%;
    }

    .deco__title {
        font-size: 24px;
    }

}

/* ここまで */

.plan-lead {
    text-align: center;
    color: #1F3E62;
    margin: 18px 0 60px;
}

/* 3カラム */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    align-items: start;
}

.plan-card {
    text-align: center;
}

.plan-visual {
    margin-bottom: 18px;
}

.plan-visual__img {
    width: 80%;
    margin: 0 auto;
    height: auto;
    display: block;
}

/* プラン名の枠（左右パーツ） */
.plan-titleFrame {
    display: grid;
    grid-template-columns: 33px 1fr 33px;
    align-items: center;
    column-gap: 0;
}

/* 左右パーツ（背景画像） */
.plan-titleFrame__parts {
    height: 80px;
    background-repeat: no-repeat;
    background-size: contain;
}

.plan-titleFrame__parts-left {
    background-image: url("../image/plan-title-frame-left.svg");
    background-position: right center;
    margin-right: -3px;
}

.plan-titleFrame__parts-right {
    background-image: url("../image/plan-title-frame-right.svg");
    background-position: left center;
    margin-left: -3px;
}

/* 中央 */
.plan-titleFrame__center {
    display: grid;
    row-gap: 8px;
    justify-items: center;
    min-width: 0;
}

.plan-titleFrame__lineSet {
    width: 100%;
    display: grid;
    gap: 2px;
}

/* 線 */
.plan-titleFrame__lineSet .slim {
    height: 1px;
    background: #9F8F3B;
}

.plan-titleFrame__lineSet .medium {
    height: 3px;
    background: #9F8F3B;
}

.plan-name {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-size: 24px;
    color: #1F3E62;
    letter-spacing: .08em;
}

.plan-desc {
    height: 4rem;
    color: #1F3E62;
    line-height: 2;
    margin: 14px 0 22px;
    text-align: center;
}

.plan-recTitle {
    font-family: "Shippori Mincho B1", serif;
    font-size: 20px;
    color: #1F3E62;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 2px solid #9F8F3B;
    padding-bottom: 4px;
}

.plan-recList {
    text-align: left;
    color: #1F3E62;
    line-height: 2.2;
}

.plan-recList li {
    margin: 8px 28px;
    list-style-type: circle;
    line-height: 1.5;
}

/* -----------------------------
レスポンシブ
--------------------------------*/
/* 1439以下 */
@media (max-width: 1440px) {
    .plan-grid {
        gap: 60px;
    }
}

/* 1023以下 */
@media (max-width: 1024px) {
    .plan-grid {
        gap: 20px;
    }

    .plan-recList li {
        margin: 8px 0 8px 16px;
    }

    .plan-visual__img {
        width: 70%;
        margin: 0 auto;
    }

}

/* 767以下 */
@media (max-width: 768px) {
    .plan-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        width: 80%;
        margin: 0 auto;
    }

}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .service {
        padding-top: 20px;
    }

    .plan-grid {
        width: 100%;
    }

    .plan-lead {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .plan-titleFrame__parts {
        height: 54px;
    }

    .plan-titleFrame__center {
        row-gap: 0;
    }

    .plan-titleFrame__lineSet .medium {
        height: 2px;
    }


    .plan-name {
        font-size: 20px;
    }

    .plan-desc {
        line-height: 1.5rem;
    }



}

/* =================================================
    百の問い紹介
================================================= */

.hyakutoi {
    margin: 10% 5%;
}

.hyakutoi-inner {
    margin: 0 auto;
    position: relative;
    background: #FFFAEA;
    overflow: hidden;
    border: #9F8F3B 3px solid;
}

.inner-line {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0.5%;
    padding: 1% 2% 3% 2%;
    border: #9F8F3B 1px solid;
}

/* 四隅装飾画像 */
.corner {
    position: absolute;
    width: 120px;
    /* 素材に合わせて調整 */
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.corner.tl {
    top: -4px;
    left: -4px;
}

.corner.tr {
    top: -4px;
    right: -4px;
}

.corner.bl {
    bottom: -4px;
    left: -4px;
}

.corner.br {
    bottom: -4px;
    right: -4px;
}

/* コンテンツは装飾より上に */
.hyakutoi-inner>*:not(.corner) {
    position: relative;
    z-index: 2;
}

/* タイトル */
.hyakutoi-title {
    width: 90%;
    text-align: center;
    font-size: 28px;
    line-height: 1.4;
    font-family: "Shippori Mincho B1", serif;
    color: #1f2c44;
    font-weight: 500;
    padding: 1% 0 2%;
    margin: 0 3%;
    border-bottom: #9F8F3B 2px solid;
}

/* 本文エリア（左右） */
.hyakutoi-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2%;
    width: 90%;
}

/* 左：画像 */
.hyakutoi-image_area {
    text-align: center;
    width: 30%;
}

.book-img {
    width: 100%;
}

.hyakutoi-note {
    margin-top: 18px;
    font-size: 12px;
    color: #1f2c44;
    opacity: 0.85;
}

/* 右：テキスト */
.hyakutoi-text {
    width: 65%;
}

.hyakutoi-subtitle {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 18px;
    color: #1f2c44;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    text-align: center;
}

.hyakutoi-lead {
    line-height: 2;
    margin-bottom: 28px;
    color: #1f2c44;
    text-align: center;
}

/* 2つのプラン枠 */
.hyakutoi-box-wrap {
    display: flex;
    gap: 24px;
}

:root {
    --gold: #9F8F3B;
}

/* 外枠 */
.hyakutoi-box_outer-frame {
    flex: 1;
    padding: 3px;
    position: relative;
    border: 2px solid var(--gold);
    background: transparent;
}

/* 内枠 */
.hyakutoi-box {
    height: 100%;
    padding: 12px 12px;
    background: #fff;
    position: relative;
    border: 2px solid var(--gold);
    text-align: center;
}

/* 四隅共通 */
.scoop {
    --size: 44px;
    --ring: 20px;
    --line: 2px;

    position: absolute;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: transparent;
    box-shadow: inset 0 0 0 var(--line) var(--gold);
    pointer-events: none;
    z-index: 3;
}

/* 位置*/
.scoop.tl {
    top: calc(var(--size)/-2);
    left: calc(var(--size)/-2);
    clip-path: inset(50% 0 0 50%);
}

.scoop.tr {
    top: calc(var(--size)/-2);
    right: calc(var(--size)/-2);
    clip-path: inset(50% 50% 0 0);
}

.scoop.bl {
    bottom: calc(var(--size)/-2);
    left: calc(var(--size)/-2);
    clip-path: inset(0 0 50% 50%);
}

.scoop.br {
    bottom: calc(var(--size)/-2);
    right: calc(var(--size)/-2);
    clip-path: inset(0 50% 50% 0);
}

.hyakutoi-box * {
    position: relative;
    z-index: 4;
}

.hyakutoi-box-title {
    font-family: "Shippori Mincho B1", serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 14px;
    color: #1f2c44;
    border-bottom: #9F8F3B 2px solid;
    padding-bottom: 8px;
}

.hyakutoi-gold {
    font-family: "Shippori Mincho B1", serif;
    color: #9F8F3B;
    font-size: 18px;
}

.hyakutoi-box-text {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    color: #1f2c44;
    gap: 0.5rem;
}

.hyakutoi-box-text__detail {
    font-size: 14px;
}


/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 1024px) {
    .hyakutoi {
        margin: 10% 0;
    }

    .hyakutoi-inner {
        padding: 0;
    }

    .hyakutoi-content {
        gap: 18px;
    }

    .hyakutoi-title {
        font-size: 24px;

    }

    .hyakutoi-content {
        width: 100%;
    }

    .circle-bg {
        width: 280px;
    }

    .book-img {
        width: 220px;
    }

    .hyakutoi-box-title {
        font-size: 20px;
    }

    .hyakutoi-box-wrap {
        gap: 8px;
    }

    .hyakutoi-btn {
        min-width: 260px;
    }

}

@media (max-width: 768px) {
    .hyakutoi-inner {
        padding: 0;
    }

    .hyakutoi-inner::before,
    .hyakutoi-inner::after {
        left: 22px;
        right: 22px;
    }

    .corner {
        width: 92px;
    }

    .hyakutoi-content {
        flex-direction: column;
        gap: 28px;
    }

    .hyakutoi-title {
        font-size: 20px;
    }

    .hyakutoi-note {
        margin-top: 0;
        font-size: 8px;
    }

    .hyakutoi-image,
    .hyakutoi-text {
        width: 100%;
    }

    .hyakutoi-box-title {
        font-size: 18px;
    }

    .hyakutoi-box-wrap {
        flex-direction: column;
        gap: 16px;
    }

    .hyakutoi-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .hyakutoi-btn {
        min-width: auto;
        width: 100%;
    }

}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .corner {
        width: 50px;
    }

    .hyakutoi-title {
        font-size: 20px;
    }

    .hyakutoi-image_area {
        width: 80%;
    }

    .hyakutoi-lead {
        line-height: 1.5rem;
        font-size: 14px;
    }

}




/* ---------------------------- */

/* 下ボタン */
.link-buttons {
    margin-top: 46px;
    display: flex;
    justify-content: center;
    gap: 42px;
}

.link-button {
    display: inline-block;
    min-width: 300px;
    border: 2px solid #9F8F3B;
    background: #fff;
    transition: 0.25s;
    padding: 3px;
}

.link-button-innerline {
    padding: 2px 20px;
    text-align: center;
    border: 1px solid #9F8F3B;
    color: #1f2c44;
    text-decoration: none;
    font-family: "Shippori Mincho B1", serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    background: #fff;
    transition: 0.25s;
}

.link-button:hover {
    background: #9F8F3B;
}

.link-button:hover .link-button-innerline {
    background: #9F8F3B;
    border-color: #fff;
    color: #fff;
}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 768px) {
    .link-buttons {
        gap: 16px;
    }
}



/* =================================================
    オプション紹介-トップ
================================================= */

.option-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 3rem;
    margin-bottom: 6%;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.option-pict {
    width: 250px;
}

.option-name {
    color: #9F8F3B;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    height: 3.8rem;
    margin-bottom: 1rem;

    display: flex;
    align-items: center;
    justify-content: center
}

.option-desc {
    color: #1F3E62;
    font-weight: 400;
}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 1024px) {
    .option-grid {
        gap: 1rem;
    }

    .option-name {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .option-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .option-name {
        height: auto;
    }

    .option-grid {
        gap: 8px;
    }

    .option-card {
        margin-top: 1rem;
    }

    .option-desc {
        font-size: 14px;
        margin: 0 8px;
    }
}



/* =================================================
    お客様の声-トップ
================================================= */

#voice {
    border-bottom: #9F8F3B 2px solid;
}

.voice-grid {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
    text-align: center;
    color: #1F3E62;

    margin: 8% auto;
}

.coming-soon {
    line-height: 2rem;
}

.line-center-deco {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}

.line-center-deco_left,
.line-center-deco_right {
    width: 30%;
    height: 2px;
    background: #9F8F3B;
}

.line-center-deco_centerObject {
    width: 10%;
}

/* -----------------------------
レスポンシブ
--------------------------------*/

@media screen and (min-width: 375px) and (max-width: 727px) {

    .line-center-deco_centerObject {
        width: 30%;
    }

    .line-center-deco_left,
    .line-center-deco_right {
        height: 1px;
    }

    .coming-soon {
        line-height: 1.5rem;
        font-size: 14px;
    }
}

/* =================================================
    FAQ-トップ
================================================= */

.QA-list {
    margin: 5% 15%;
}

.qa-item {
    margin-bottom: 2%;
}


/* 質問行（クリック対象） */
.qa-q_row {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 14px;

    padding: 2% 40px 0.5% 10%;
    cursor: pointer;

    font-family: "Shippori Mincho B1", serif;
    color: #1F3E62;
}

/* Q */
.qa-q {
    font-family: "Libre Bodoni", serif;
    line-height: 1;
}

.qa-text {
    min-width: 0;
    line-height: 1.6;
}

/* 下のライン（Q側） */
.qa-q_row::after {
    content: "";
    position: absolute;
    left: 2%;
    right: 2%;
    bottom: 0px;
    height: 2px;
    background: #9F8F3B;
}

/* 左右の装飾（Q側ライン上） */
.qa-orn {
    position: absolute;
    bottom: -10px;
    width: 22px;
    height: 22px;
    background: center / contain no-repeat;
    pointer-events: none;
}

.qa-orn--l {
    left: 0px;
    background-image: url("../image/line-side-ornament_left.svg");
}

.qa-orn--r {
    right: 0px;
    background-image: url("../image/line-side-ornament_right.svg");
}

/* 右の＋（CSSで線を描く） */
.qa-plus {
    position: relative;
    width: 20px;
    height: 20px;
    transform: none;
    justify-self: end;
}

.qa-plus::before,
.qa-plus::after {
    content: "";
    position: absolute;
    background: #9F8F3B;
}

/* 横線 */
.qa-plus::before {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* 縦線（openで消して−にする） */
.qa-plus::after {
    width: 2px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: opacity .25s ease;
}

.qa-item.is-open .qa-plus::after {
    opacity: 0;
}

.qa-a_row {
    display: none;
    margin: 0 3%;
    padding: 2% 8%;
    color: #1F3E62;
    line-height: 2;
    background: #f0e1b3a6;
}

.qa-q_row::after {
    content: "";
    position: absolute;
    left: 2%;
    right: 2%;
    bottom: 0;
    height: 2px;
    background: #9F8F3B;
}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 1023px) {
    .QA-list {
        margin: 5% 0;
    }
}

@media screen and (min-width: 375px) and (max-width: 727px) {

    .qa-q {
        font-size: 1rem;
    }

    .qa-q_row {
        grid-template-columns: auto 1fr auto;
        column-gap: 8px;
        padding: 7% 12px 0.5% 5%;
    }

    .qa-plus {
        width: 14px;
        height: 14px;
    }

    .qa-plus::before {
        width: 14px;
    }

    .qa-plus::after {
        height: 14px;
    }

    .qa-orn {
        width: 16px;
        height: 16px;
        bottom: -8px;
    }

    .qa-text {
        line-height: 1.5;
    }

    .qa-q_row::after {
        height: 1px;
    }

    .qa-orn {
        bottom: -8px;
    }

    .qa-orn.two-lines {
        bottom: -12px;
    }

    .qa-a_row {
        line-height: 1.5;
    }
}


/* =================================================
    問い合わせ-トップ
================================================= */
#contact {
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: "";
    position: absolute;

    top: -66px;
    left: -9px;
    width: 40%;
    aspect-ratio: 1/1;

    background: url(../image/contact~background.svg) no-repeat center/ contain;

    opacity: 0.08;
    transform: rotate(11deg);

    z-index: 0;
}

#contact .container {
    position: relative;
    z-index: 1;
    border-top: #9F8F3B 2px solid;
}

.contact-contents-list {
    display: flex;
    flex-direction: column;
    justify-items: center;
    font-family: "Shippori Mincho B1", serif;
    color: #1F3E62;
}

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

.contact-contents {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 6%;
}

.contact-content_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-content_link:hover .link-button {
    background: #9F8F3B;
}

.contact-content_link:hover .link-button .link-button-innerline {
    background: #9F8F3B;
    border-color: #fff;
    color: #fff;
}

.contact-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
}

.contact-content_img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 89%;
    height: 89%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    display: block;
}

.circular-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 1024px) {
    #contact .container {
        margin-top: 2rem;
        padding-bottom: 100px;
    }

    .contact-content_link {
        gap: 1rem;
    }

    .contact-contents {
        gap: 1rem;
    }

    .contact-visual {
        width: 70%;
    }

    .contact-content_link .link-button {
        min-width: 200px;
    }
}



@media screen and (min-width: 375px) and (max-width: 727px) {

    #contact {
        padding-bottom: 0;
    }

    #contact::before {
        top: 0px;
        left: 0px;
        width: 85%;
    }

    .contact-content_link {
        gap: 1rem;
    }

    .contact-content_link .link-button {
        min-width: 220px;
    }

    .contact-contents {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-visual {
        display: none;
    }
}



/* =================================================
    フッター
================================================= */

.footer-nav {
    background-image: url(../image/navy-img.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    color: #fff;
}

.footer-nav__panel {
    width: 100%;
}

.footer-nav__inner {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    height: 100%;
    padding: 80px 60px;
}

/* 左 */
.footer-nav__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.footer-sns {
    display: flex;
    justify-content: center;
    gap: 2rem;

    width: fit-content;
    margin: 0 auto;
}

.footer-sns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    line-height: 0;
    flex: 0 0 auto;
    width: auto;
}

.footer-sns img {
    display: block;
    width: 24px;
}

/* 中央 */
.footer-nav__center {
    display: flex;
    justify-content: space-evenly;
}

.footer-nav__group {
    width: 36%;
    display: flex;
    flex-direction: column;
}

.footer-nav__list {
    margin: 0 20%;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    color: #fff;
}

.footer-nav__list li {
    margin-bottom: 0.38rem;
}

.footer-nav__list a {
    position: relative;
    display: inline-block;
    padding-left: 24px;
    text-decoration: none;
    color: #fff;
    transition: color .3s ease, opacity .3s ease;
}

.footer-nav__list a::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #9F8F3B;
    font-size: 14px;
    opacity: 0;
    transition: opacity .3s ease;
}

.footer-nav__list a:hover::before {
    opacity: 1;
}

.footer-nav__list a:hover {
    opacity: .85;
}

/* ===== タイトル装飾（矢印・ライン・ドット） ===== */
.footer-nav-title {
    display: grid;
    justify-items: center;
    text-align: center;
    margin-bottom: 1rem;
}

.footer-nav-title__text {
    font-family: "Libre Bodoni", serif;
    font-size: 40px;
    color: #9F8F3B;
    line-height: 1;
}

.footer-nav-title__deco {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.footer-nav-title__line {
    height: 2px;
    background: #9F8F3B;
    flex: 1;
}

.footer-nav-title__center {
    height: 7px;
    width: auto;
    display: block;
}

.footer-nav-title__arrow {
    height: 7px;
    width: auto;
    display: block;
}

/* 右 */
.footer-nav__right {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    margin-top: 2rem;
}

.footer-nav__cta {
    position: relative;
    overflow: visible;
    width: 260px;
    min-height: 40px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #fff;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    background: transparent;
    border: 2px solid #9F8F3B;

    transition: background .3s ease;
}

/* 内側ドットライン（上下） */
.footer-nav__cta::before,
.footer-nav__cta::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    border-top: 2px dotted #9F8F3B;
    opacity: .9;
}

.footer-nav__cta::before {
    top: 4px;
}

.footer-nav__cta::after {
    bottom: 4px;
}

/* 左右の装飾画像 */
.footer-cta-deco {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: auto;
    pointer-events: none;
}

.footer-cta-deco img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-cta-deco--left {
    left: -22px;
}

.footer-cta-deco--right {
    right: -22px;
}

.footer-nav__ctaText {
    font-size: 16px;
    letter-spacing: .08em;
}

.footer-nav__cta:hover {
    background: #fff;
    color: #1F3E62;
}

.footer-legal__list {
    display: flex;
    flex-direction: column;
    align-items: end;
    font-family: "Shippori Mincho B1", serif;
    font-size: 0.8rem;
}

.footer-legal__link {
    transition: color .3s ease;
}

.footer-legal__link:hover {
    color: #9F8F3B;
}

.footer-copyright {
    margin: 0 auto;
    text-align: center;
    padding: 20px 0 30px;
    font-family: "Shippori Mincho B1", serif;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    letter-spacing: .05em;
}

/* -----------------------------
レスポンシブ
--------------------------------*/

/* 1439以下 */
@media (max-width: 1440px) {
    .footer-nav__inner {
        grid-template-columns: 240px 1fr 240px;
        padding: 80px 30px;
        gap: 1%;
    }

    .footer-nav__center {
        gap: 2%;
    }

    .footer-nav__group {
        width: 100%;
    }

    .footer-nav-title__text {
        font-size: 32px;
    }

    .footer-nav__cta {
        width: 200px;
    }
}

/* 1023以下 */
@media (max-width: 1024px) {
    .footer-nav {
        background-repeat: repeat;
    }

    .footer-nav__inner {
        grid-template-columns: 1fr;
        gap: 70px;
        padding: 60px 30px;
        text-align: center;
    }

    .footer-nav__logo {
        margin: 0 auto;
        width: 50%;
    }

    .footer-nav__center {
        gap: 40px;
    }

    .footer-nav__group {
        width: 100%;
    }

    .footer-nav-title__text {
        font-size: 40px;
    }


    .footer-nav__list {
        margin: 0;
    }

    .footer-nav__list a {
        padding: 0;
    }

    .footer-nav__cta {
        width: 260px;
    }

    .footer-legal__list {
        align-items: center;
    }

    .footer-nav__list a::before {
        display: none;
    }
}

/* 767以下 */
@media (max-width: 768px) {}

@media screen and (min-width: 375px) and (max-width: 727px) {

    .footer-nav-title__text {
        font-size: 24px;
    }

    .footer-nav__center {
        gap: 4px;
    }

    .footer-nav-title__center {
        height: 5px;
    }

    .footer-nav-title__arrow {
        height: 4px;
    }

    .footer-nav__list a {
        font-size: 12px;
    }

    .footer-nav__inner {
        gap: 32px;
    }

    .footer-nav__logo {
        width: 80%;
    }
}



/* --------------------ここから下層ページ-------------------- */


/* =================================================
    下層ページ用FV
================================================= */
.sub-fv {
    display: flex;
    top: 102px;
    height: 480px;
    position: relative;
    overflow: hidden;
    margin-bottom: 112px;
}

/* 左（青背景） */
.sub-fv__left {
    width: 70%;
    background-image: url(../image/navy-img.webp);
    background-repeat: no-repeat;
    background-position: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;

    /* ← 斜めカット */
    clip-path: polygon(0 0, 85% 0, 75% 100%, 0 100%);
    z-index: 2;
}

.sub-fv__inner {
    padding-left: 120px;
}

.sub-fv__title {
    font-size: 48px;
    font-family: "Libre Bodoni", serif;
}

.sub-fv__title span {
    display: inline;
}

.sub-fv__subtitle {
    margin-top: 16px;
    font-size: 20px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
}

/* 右（画像） */
.sub-fv__right {
    margin-left: -16%;
    width: 61%;
    background-size: cover;
    background-position: center;
}

.page-plans .sub-fv__right {
    background-image: url("../image/plan-top.webp");
    background-size: cover;
    background-position: center;
}

.page-flow .sub-fv__right {
    background-image: url(../image/flow-fv.webp);
}

.page-faq .sub-fv__right {
    background-image: url(../image/faq-fv_img.webp);
}

.page-company .sub-fv__right {
    background-image: url(../image/company-fv.webp);
}

.page-contact .sub-fv__right {
    background-image: url(../image/contact-fv.webp);
}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 1225px) {
    .sub-fv__title {
        font-size: 46px;
    }
}

@media (max-width: 1024px) {
    .sub-fv__title {
        font-size: 40px;
    }

    .sub-fv__subtitle {
        font-size: 18px;
    }

    .sub-fv__inner {
        padding-left: 80px;
    }

    .sub-fv__title {
        font-size: 40px;
    }

}


@media screen and (min-width: 375px) and (max-width: 727px) {
    .sub-fv {
        height: 280px;
        top: 70px;
        margin-bottom: 74px;
    }


    .sub-fv__inner {
        padding-left: 30px;
    }

    .sub-fv__left {
        width: 120%;
    }

    .sub-fv__title {
        font-size: 32px;
    }

    .sub-fv__title span {
        display: block;
    }


    .sub-fv__right {
        background-position: 70%;
        margin-left: -22%;
    }

    .sub-fv__subtitle {
        font-size: 16px;
    }
}

/* =============================
    パンくず
============================= */
.breadcrumb {
    max-width: 1920px;
    margin: 8px auto 0;
    border-left: 80px solid #9F8F3B;
    padding-left: 16px;
}

.breadcrumb__inner {
    font-family: "Shippori Mincho B1", serif;
    font-size: 14px;
    color: #9F8F3B;
}

.breadcrumb a {
    text-decoration: none;
    color: #1F3E62;
    transition: opacity .3s ease;
}

.breadcrumb a:hover {
    opacity: .7;
}

.breadcrumb__sep {
    margin: 0 8px;
    color: #9F8F3B;
}

.breadcrumb__current {
    color: #9F8F3B;
}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .breadcrumb {
        border-left: 30px solid #9F8F3B;
    }

    .breadcrumb__inner {
        font-size: 12px;
    }
}

/* =============================
    基本プランと料金　プラン料金P
============================= */
.three-plans {
    max-width: 1148px;
    margin: 0 auto;
}

.plan-details-card {
    border: #9F8F3B 2px solid;
    margin-bottom: 5rem;
}

.plan-card__inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: #fff;
    padding: 2rem 2rem 1rem;
}

.plan-card__main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.plan-card__media {
    width: 40%;
}

.plan-card__media img {
    display: block;
    object-fit: cover;
}

.plan-card__body {
    display: flex;
    flex-direction: column;
    width: 60%;
    padding: 0 4%;
}

.plan-card__title {
    font-family: "Shippori Mincho B1", serif;
    font-size: 28px;
    font-weight: 500;
    color: #9F8F3B;
    text-align: center;
    border-bottom: #9F8F3B 1px solid;
    padding-bottom: 1rem;
}


.plan-card__lead {
    color: #1F3E62;
    padding: 1rem;
}


.plan-card__content {
    position: relative;
    background-color: #fff;
    border: #9F8F3B 1px solid;
    padding: 8%;
    margin-top: 1rem;
}

.plan-card__content-title {
    position: absolute;
    top: -15px;
    left: 20px;
    font-family: "Shippori Mincho B1", serif;
    color: #fff;
    background-color: #9F8F3B;
    padding: 2px 2rem 5px;
}

.plan-card__list {
    color: #1F3E62;
    text-align: left;
    padding-left: 1em;
}

.plan-card__list li {
    list-style-type: disc;
    margin: 8px 0;
}

.plan-card__price {
    font-family: "Shippori Mincho B1", serif;
    color: #9F8F3B;
    padding: 1rem 0;
    text-align: end;
}

.plan-card__price-label {
    font-size: 18px;
}

.plan-card__price-value {
    font-family: "Libre Bodoni", serif;
    font-size: 28px;
}

.plan-card__price-unit {
    font-size: 16px;
}

.plan-card__price-tax {
    font-size: 12px;
}

.delivery-option {
    border-top: #9F8F3B 1px solid;
    padding: 1rem 2rem 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    color: #1F3E62;
    font-weight: 500;
}

.delivery-option__price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.human-obj {
    width: 4rem;
}

.delivery-option__price-tax {
    font-size: 12px;
}

.vertical-line {
    width: 1px;
    background-color: #9F8F3B;
    margin: 0 3rem;
}

.delivery-option__description {
    display: flex;
    align-items: center;
}

/* .delivery-option__price-label {
    white-space: nowrap;
} */

.delivery-option__price-amount {
    white-space: nowrap;
}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 1440px) {
    .plan-card__media {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .vertical-line {
        margin: 0 2rem;
    }

    .plan-card__media img {
        padding-bottom: 1rem;
    }

}


@media (max-width: 768px) {
    .plan-card__main {
        flex-direction: column;
        align-items: stretch;
    }

    .plan-card__media,
    .plan-card__body {
        width: 100%;
    }

    .plan-card__media img {
        aspect-ratio: 4 / 2;
        object-fit: cover;
    }


}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .plan-card__body {
        padding: 0 4%;
    }

    .plan-card__inner {
        padding: 1rem 1rem 1rem;
    }

    .plan-card__title {
        font-size: 24px;
    }


    .plan-card__media img {
        aspect-ratio: 4 / 3;
    }

    .delivery-option {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem 0 0;
    }

    .delivery-option__price {
        justify-content: center;
        padding: 0 2rem;
    }

    .vertical-line {
        height: 1px;
        width: 80%;
        margin: 1rem auto;

    }
}


/* ----------------百の問い説明欄------------------- */
.hyakunotoi-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hyakunotoi-title {
    font-family: "Shippori Mincho B1", serif;
    color: #1F3E62;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hyakunotoi-body {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    padding: 3rem;
}

.hyakunotoi-image {
    text-align: center;
}

.hyakunotoi-image img {
    width: 70%;
}

.hyakunotoi-note {
    font-size: 12px;
    color: #1F3E62;
}

.hyakunotoi-text {
    color: #1F3E62;
    text-align: center;
}

.hyakunotoi-subtitle {
    font-family: "Shippori Mincho B1", serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hyakunotoi-questions {
    background: url(../image/vintage-paper2.webp) center / cover no-repeat;
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.hyakunotoi-questions__title {
    position: relative;
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
    color: #572910;
    font-size: 28px;
    font-weight: 500;
    padding: 3rem 2rem 2rem;
    margin-bottom: 1rem;
}

.hyakunotoi-questions__title::before,
.hyakunotoi-questions__title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100px;
    height: 46px;
    transform: translateY(-50%);
    background: center / contain no-repeat;
}

.hyakunotoi-questions__title::before {
    left: calc(50% - 260px);
    background-image: url("../image/title-side-obj-01.webp");
}

.hyakunotoi-questions__title::after {
    right: calc(50% - 260px);
    background-image: url("../image/title-side-obj-02.webp");
}

.hyakunotoi-questions__body {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: auto auto;
    column-gap: 2rem;
    row-gap: 0;
    align-items: start;
    margin: 3rem;
}

.hyakunotoi-questions__list {
    padding: 0;
    color: #1F3E62;
    padding-left: 2rem;
}

.hyakunotoi-questions__list li {
    border-bottom: 2px solid rgba(107, 90, 35, .45);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.hyakunotoi-questions__list li {
    display: flex;
    align-items: baseline;
}

.hyakunotoi-questions__list .qno {
    font-family: "Libre Bodoni", serif;
    color: #1F3E62;
    min-width: 40px;
    margin-right: 1rem;
}

.hyakunotoi-questions__etc {
    grid-column: 1 / -1;
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
    font-size: 24px;
    color: #572910;
    margin: 6px 0 0;
}

.hyakunotoi-plans {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hyakunotoi-plans__title {
    width: 80%;
    font-family: "Shippori Mincho B1", serif;
    font-size: 28px;
    font-weight: 500;
    color: #1F3E62;
    border-bottom: #9F8F3B 2px solid;
    padding-bottom: 0.5rem;
    text-align: center;
    margin-bottom: 2rem
}

.hyakunotoi-plans .hyakutoi-box-wrap {
    width: 80%;
}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 1024px) {

    .hyakunotoi-questions__title::before,
    .hyakunotoi-questions__title::after {
        height: 30px;
        top: 58%;
    }

    .hyakunotoi-title {
        font-size: 28px;
    }
}

@media (max-width: 820px) {
    .hyakunotoi-body {
        padding: 3rem 0;
    }

    .hyakunotoi-questions__body {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 1rem;
        margin: 1rem 2rem;
    }

    .hyakunotoi-questions__list {
        order: 1;
        padding: 0;
    }

    .hyakunotoi-questions__etc {
        order: 2;
    }

    .hyakunotoi-questions__image {
        order: 3;
    }

    /* 元画像を隠す */
    .hyakunotoi-questions__image img {
        display: none;
    }

    /* 差し替え画像を背景で表示 */
    .hyakunotoi-questions__image {
        background-image: url("../image/hyakunotoi-kakikomi-img2.webp");
        background-size: cover;
        background-position: center;
        aspect-ratio: 4 / 3;
        margin-bottom: 1rem;
    }


}

@media (max-width: 768px) {
    .hyakunotoi-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hyakunotoi-questions__body {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 1rem;
        margin: 1rem 2rem;
    }

    .hyakunotoi-questions__list {
        order: 1;
        padding-left: 0;
        font-size: 16px;
    }

    .hyakunotoi-questions__etc {
        order: 2;
        font-size: 16px;
    }

    .hyakunotoi-questions__image {
        order: 3;
    }


    .hyakunotoi-questions__title::before,
    .hyakunotoi-questions__title::after {
        height: 20px;
        width: 46px;
    }



    .hyakunotoi-questions__title::before {
        left: calc(50% - 190px);
    }

    .hyakunotoi-questions__title::after {
        right: calc(50% - 190px);
    }

    .hyakunotoi-questions {
        position: relative;
        overflow: hidden;
        background: none;
        /* 元の背景は消す */
    }

    /* 回転させる背景レイヤー */
    .hyakunotoi-questions::before {
        content: "";
        position: absolute;
        inset: 0;

        background-image: url("../image/vintage-paper2.webp");
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;

        transform: rotate(90deg) scale(4);
        transform-origin: center;

        z-index: 0;
    }

    /* 中身を前面へ */
    .hyakunotoi-questions>* {
        position: relative;
        z-index: 1;
    }

    .hyakunotoi-questions__title {
        font-size: 24px;
    }
}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .hyakunotoi-body {
        grid-template-columns: 100%;
        padding: 2rem;
    }

    .hyakunotoi-title {
        font-size: 24px;
    }

    .hyakunotoi-note {
        font-size: 8px;
    }

    .hyakunotoi-subtitle {
        font-size: 20px;
    }

    .hyakunotoi-plans__title {
        font-size: 20px;
    }

    .hyakunotoi-questions__title {
        font-size: 20px;
    }

    .hyakunotoi-questions__title::before {
        left: calc(50% - 160px);
    }

    .hyakunotoi-questions__title::after {
        right: calc(50% - 160px);
    }


}


/* =============================
    オプション（プラン料金ページ用：旗カード）
============================= */

.option-cards {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* 旗カード本体 */
.option-flag {
    --gold: #9F8F3B;
    --navy: #1F3E62;

    padding: 28px 22px 116px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0,
            100% 0,
            100% 100%,
            50% 92%,
            0 100%);
}

/* 金の枠線レイヤー */
.option-flag::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #9F8F3B;

    clip-path: polygon(0 0,
            100% 0,
            100% 100%,
            50% 92%,
            0 100%);

    z-index: 0;
}


/* 中身レイヤー（カード本体） */
.option-flag::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #fff;

    clip-path: polygon(0 0,
            100% 0,
            100% 100%,
            50% 92%,
            0 100%);

    z-index: 1;
}

.option-flag>* {
    position: relative;
    z-index: 2;
}


.option-flag__title {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.15;
    min-height: 68px;
    display: grid;
    place-items: center;
    margin: 6px 0 14px;
}

/* 説明文 */
.option-flag__lead {
    color: var(--navy);
    line-height: 2;
    text-align: center;
    margin: 0;
    min-height: 8em;
}

/* 途中の横線 */
.option-flag__rule {
    height: 2px;
    background: rgba(159, 143, 59, .85);
    margin: 18px 0;
}

/* 仕様/補足 */
.option-flag__meta {
    color: var(--navy);
    line-height: 2;
    margin: 1rem 0;
    min-height: 8rem;

    display: flex;
    align-items: center;
    justify-content: center;
}

.kome-anchor {
    position: relative;
    display: inline-block;
}

.kome {
    position: absolute;
    top: -0.6em;
    right: -1.2em;
    font-size: 0.6em;
}

/* 価格 */
.option-flag__price {
    margin: 18px 0 0;
    font-family: "Shippori Mincho B1", serif;
    color: var(--navy);
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.option-flag__unit {
    font-size: 16px;
}

.option-flag__value {
    font-family: "Libre Bodoni", serif;
    font-size: 32px;
    letter-spacing: .02em;
}

.option-flag__yen {
    font-size: 18px;
}

.option-notes {
    color: #1F3E62;
    margin: 3rem 0;
}

.option-notes__text {
    line-height: 2rem;
}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 1366px) {
    .option-flag__price {
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .option-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .option-flag__title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .option-cards {
        grid-template-columns: 1fr;
    }

    .option-flag__lead,
    .option-flag__meta {
        min-height: auto;
    }
}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .option-notes__text {
        font-size: 14px;
    }

    .option-flag__title {
        font-size: 20px;
        min-height: 60px;
    }


}



/* =============================
    安心してご利用いただくために
============================= */
.peace-of-mind-panel {
    position: relative;
    padding: 3rem;
    background: url(../image/info−image.png) center / cover no-repeat;
    border: #9F8F3B 2px solid;
}

.peace-of-mind__title {
    font-family: "Shippori Mincho B1", serif;
    color: #1F3E62;
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 1rem;
    text-align: center;
}

/* 左の白ガラスパネル */
.peace-of-mind__text {
    width: 56%;
    margin: 2% 6%;
    padding: 3.2rem 3.6rem;
    background: rgba(255, 255, 255, .30);
    backdrop-filter: blur(2px);
}

/* 各ブロック間 */
.peace-of-mind__block+.peace-of-mind__block {
    margin-top: 2.8rem;
}

/* 見出し */
.peace-of-mind__heading {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Shippori Mincho B1", serif;
    color: #1F3E62;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* ◆ダイヤ */
.peace-of-mind__diamond {
    width: 18px;
    height: 18px;
    background: #9F8F3B;
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* 本文 */
.peace-of-mind__desc {
    color: #1F3E62;
    line-height: 2.2;
    margin: 0;
    padding-left: 6%;
}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 1024px) {

    .peace-of-mind__text {
        width: 70%;
    }

    .peace-of-mind__title {
        font-size: 28px;
    }
}

@media (max-width: 820px) {
    .peace-of-mind__text {
        width: 90%;
    }
}


@media screen and (min-width: 375px) and (max-width: 727px) {
    .peace-of-mind__title {
        font-size: 20px;
    }

    .peace-of-mind-panel {
        padding: 3rem 1rem;
        background-position: 70% center;
    }

    .peace-of-mind__text {
        width: 100%;
        margin: 0;
        padding: 2rem 1rem;
        margin: 1rem 0;
        background: rgba(255, 255, 255, 0.6);
    }

    .peace-of-mind__heading {
        font-size: 18px;
    }

    .peace-of-mind__diamond {
        width: 16px;
        height: 16px;
    }


}


/* =============================
    ご利用の流れP
============================= */

.flow-step__panel {
    margin: 0 auto;
    max-width: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    border: #9F8F3B 2px solid;
    background-color: #FFFAEA
}

.flow-step__stamp {
    position: absolute;
    top: -14px;
    left: -44px;
    width: 10%;
}

.flow-step__title {
    background-color: #9F8F3B;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-size: 32px;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

.flow-step__body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    margin: 0 auto;
    gap: 2rem;
}

.flow-step__content {
    width: 60%;
    display: flex;
    flex-direction: column;
    color: #1F3E62;
}

.flow-step__lead {
    font-size: 14px;
    line-height: 1.8em;
    font-weight: 400;
}

.flow-step__list {
    line-height: 1.8em;
    padding-left: 2em;
    font-weight: 900;
}

.flow-step__box {
    border: #9F8F3B 1px solid;
    background-color: #fff;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 3rem 2rem;
}

.flow-step__box-title {
    font-family: "Shippori Mincho B1", serif;
    position: absolute;
    top: -.8rem;
    left: 2rem;
    background-color: #9F8F3B;
    color: #fff;
    padding: 2px 2rem;
}

.flow-step__box-list {
    line-height: 3em;
    padding-left: 1em;
    font-weight: 900;
}

.flow-step__image {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.flow-step__image img {
    display: block;
    width: 340px;
    height: 340px;
    object-fit: contain;
}

.flow-step__arrow {
    width: 4%;
    margin: 1rem auto 2rem auto;
}

.flow-step__list li {
    line-height: 2em;
}

.flow-step__list li,
.flow-step__box-list li {
    position: relative;
}

.flow-step__list li::before,
.flow-step__box-list li::before {
    content: "・";
    position: absolute;
    left: -1em;
}

.box-list__lead {
    font-size: 14px;
    padding-top: 1rem;
    line-height: 1.4em;
}

/* -----------------------------
レスポンシブ
--------------------------------*/

@media (max-width: 1024px) {

    .flow-step__panel {
        max-width: 90%;
    }

    .flow-step__body {
        flex-direction: column;
        gap: 0;
    }

    .flow-step__content {
        width: 100%;
    }

    .flow-step__stamp {
        width: 15%;
        top: -20px;
    }

    .flow-step__title {
        font-size: 24px;
    }

}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .flow-step__panel {
        margin-top: 1rem;
        max-width: 90%;
    }

    .flow-step__title {
        font-size: 18px;
    }

    .flow-step__stamp {
        top: -1px;
        left: -30px;
        width: 20%;
    }

    .flow-step__body {
        gap: 16px;
        padding: 1rem;
    }

    .flow-step__list {
        padding-left: 1rem;
        font-size: 16px;
    }

    .flow-step__box {
        padding: 2rem 1rem;
        margin-bottom: 0;
    }

    .flow-step__box-list {
        line-height: 1.8rem;
    }


    .flow-step__box-title {
        width: 86%;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .flow-step__image img {
        width: 260px;
        height: 260px;
    }

    .flow-step__arrow {
        width: 7%;
    }

}


/* =============================
    ご利用の際の注意事項モーダル
============================= */

.notice-modal {
    position: fixed;
    inset: 0;
    z-index: 11000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.notice-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.notice-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.notice-modal__dialog {
    position: relative;
    width: min(1100px, calc(100% - 48px));
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    background: #FDFCF8;
    border: 4px solid #1F3E62;
    overflow: hidden;
}

.notice-modal__inner {
    padding: 32px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}

.notice-modal__frame {
    padding: 36px 56px 48px;
    background: #FDFCF8;
}

.notice-modal__title {
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1F3E62;
    margin-bottom: 14px;
}

.notice-modal__lead {
    text-align: center;
    font-size: 16px;
    color: #1F3E62;
    margin-bottom: 36px;
}

.notice-modal__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.notice-modal__list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 22px;
    line-height: 1.9;
    color: #1F3E62;
}

.notice-modal__list li:last-child {
    margin-bottom: 0;
}

.notice-modal__list li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}

.notice-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 72px;
    height: 72px;
    border: none;
    border-radius: 50%;
    background: #1F3E62;
    cursor: pointer;
    z-index: 2;
}

.notice-modal__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

.notice-modal__close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.notice-modal__close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダル開いてる時スクロール止める */
body.is-notice-modal-open {
    overflow: hidden;
}

/* iPhone系スクロール暴れ対策を少し補助 */
html.is-notice-modal-open {
    overflow: hidden;
}

body.is-notice-modal-fixed {
    position: fixed;
    width: 100%;
    left: 0;
}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 768px) {
    .notice-modal__dialog {
        width: calc(100% - 24px);
        max-height: calc(100vh - 24px);
        margin: 12px auto;
    }

    .notice-modal__inner {
        padding: 12px;
        max-height: calc(100vh - 24px);
    }

    .notice-modal__frame {
        padding: 56px 16px 24px;
    }

    .notice-modal__title {
        font-size: 24px;
        line-height: 1.5;
    }

    .notice-modal__lead {
        font-size: 12px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .notice-modal__content {
        padding: 18px 14px;
    }

    .notice-modal__list li {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .notice-modal__close {
        top: 10px;
        right: 10px;
        width: 52px;
        height: 52px;
    }

    .notice-modal__close span {
        width: 24px;
    }
}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .notice-modal__inner {
        padding: 0px;
    }

    .notice-modal__close {
        width: 30px;
        height: 30px;
    }
}


/* ------------------------------------------------------ */
/* =============================
    FAQ-P
============================= */
.faq-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 34px;
    align-items: start;
    margin: 5rem auto;
    padding: 0 4rem;
}

.faq-sidebar {
    position: sticky;
    top: 120px;
}

.faq-sidebar__sticky {
    display: flex;
    flex-direction: column;
    background: #FFFAEA;
    border: #9F8F3B 2px solid;
    padding: 1rem;
    margin: 3rem 0;
}

.faq-sidebar__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #9F8F3B;
}

.faq-sidebar__title-row {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-sidebar__title-en {
    font-family: "Libre Bodoni", serif;
    font-size: 2rem;
}

.faq-sidebar__title-ja {
    font-family: "Shippori Mincho B1", serif;
    font-size: 0.8rem;
}

.faq-sidebar__deco {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
}

.faq-sidebar__line {
    flex: 1;
    height: 1px;
    background: #9F8F3B;
}

.faq-sidebar__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    height: 40px;
    width: auto;
    pointer-events: none;
}

.faq-sidebar__arrow {
    height: 24px;
    width: auto;
    display: block;
}

.faq-category-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: "Shippori Mincho B1", serif;
    text-align: center;
}

.faq-category-list li {
    background-color: #fff;
    border: #9F8F3B 1px solid;
    padding: 0.4em;
    color: #9F8F3B;
}

.faq-sidebar__toggle {
    display: none;
}

/* -----------------------------
レスポンシブ
--------------------------------*/
@media (max-width: 1024px) {
    .QA-list {
        margin: 5% 3%;
    }
}


@media (max-width: 820px) {

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 1.5rem;
    }

    .faq-sidebar {
        position: sticky;
        top: 105px;
        z-index: 100;
        order: -1;
    }

    .faq-sidebar__sticky {
        margin: 0;
        padding: 1rem;
    }

    .faq-main {
        width: 100%;
    }

    .faq-category-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .faq-sidebar__deco {
        height: 50px;
    }

    .faq-sidebar__center {
        height: 50px;
    }

    .faq-category-list li {
        padding: 0;
    }

    .faq-category-list a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.6em 0.8em;
        text-decoration: none;
        color: #9F8F3B;
        line-height: 1.4;
    }
}

@media screen and (min-width: 375px) and (max-width: 727px) {
    .faq-sidebar {
        position: sticky;
        top: 160px;
        left: 0;
        z-index: 300;
        width: auto;
    }


    .faq-sidebar__toggle {
        display: flex;
        position: relative;
        top: 100px;
        left: -24px;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 60px;
        border: 1px solid #9F8F3B;
        border-left: none;
        background: #9F8F3B;
        color: #FFFAEA;
        font-family: "Libre Bodoni", serif;
        font-size: 14px;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .faq-sidebar__sticky {
        position: absolute;
        top: 0;
        left: 10px;
        width: min(82vw, 320px);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        margin: 0;
        padding: 1rem;
        background: #FFFAEA;
        border: #9F8F3B 2px solid;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(-16px);
        transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
    }

    .faq-sidebar.is-open .faq-sidebar__sticky {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .faq-sidebar__title-row {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 8px;
    }

    .faq-sidebar__title-en {
        font-size: 1rem;
    }

    .faq-sidebar__title-ja {
        font-size: .75rem;
    }

    .faq-sidebar__deco {
        height: 36px;
    }

    .faq-sidebar__center {
        height: 34px;
    }

    .faq-sidebar__arrow {
        height: 18px;
    }

    .faq-category-list {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .faq-category-list a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0.6em 0.8em;
        text-decoration: none;
        color: #9F8F3B;
    }

    .faq-sidebar__title-en {
        font-size: 1rem;
    }

    .faq-sidebar__title-row {
        display: flex;
        align-items: baseline;
        gap: 8px;
    }


    .faq-category-list {
        font-size: .8rem;
    }

    .faq-layout {
        margin-top: -80px;
        position: relative;
    }

    .h3-deco__title.faq-page {
        font-size: 20px;
    }

}

/* ------------------------------------------------------ */
/* =============================
    Company-P
============================= */
.company {
    background-color: #FFFAEA;
    border: #9F8F3B 2px solid;
}

.company-list {
    position: relative;
    z-index: 2;
    padding: 5% 42% 5% 6%;
    margin: 6% 0;
}

.company-list__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4em;
    padding: 1em 3em 0.8em 3em;
    border-bottom: #9F8F3B 1px solid;
}

.company-list__item::before,
.company-list__item::after {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 10px;
    height: 10px;
    border: #9F8F3B 1px solid;
    transform: rotate(45deg);
}

.company-list__item::before {
    left: -11px;
}

.company-list__item::after {
    right: -11px;
}

.company-list__item dt {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    width: 7em;
    color: #9F8F3B;
}

.company-list__item dd {
    color: #1F3E62;
}

.company__backIllust {
    position: absolute;
    z-index: 1;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    opacity: .15;
}

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

/* -----------------------------
Company レスポンシブ
--------------------------------*/

/* 1024以下 */
@media (max-width: 1024px) {

    .company-list {
        padding: 5% 30% 5% 6%;
    }

    .company-list__item {
        gap: 2em;
        padding: 1em 2em .8em;
    }

    .company__backIllust {
        width: 35%;
    }

}

/* 768以下 */
@media (max-width: 768px) {

    .company-list {
        padding: 5% 10%;
    }

    .company__backIllust {
        width: 50%;
        opacity: .08;
    }

    .company-list__item {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }

    .company-list__item dt {
        width: auto;
    }

}

@media screen and (min-width: 375px) and (max-width: 727px) {

    .company-list {
        margin: 0;
        padding: 1rem 3rem;
    }

    .company-list__item {
        padding: 1rem;
        gap: .4rem;
    }

    .company-list__item dt {
        font-size: 14px;
    }

    .company-list__item dd {
        font-size: 14px;
        line-height: 1.6;
    }

    .company__backIllust {
        width: 70%;
        right: 50%;
        transform: translate(50%, -50%);
        opacity: .05;
    }

}

/* ------------------------------------------------------ */
/* =============================
    お問い合わせ-P
============================= */

#contact-form {
    max-width: 1180px;
    padding-bottom: 30px;
    margin: 0 auto;
}

.contact-form__lead {
    text-align: center;
    color: #1F3E62;
    line-height: 1.9;
}

.contact-form__body {
    margin-top: 24px;
    padding-top: 48px;
    border-top: 1px solid #9F8F3B;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 300px 1fr;
    column-gap: 80px;
    align-items: center;
    margin: 0 80px 24px -80px;
}

.contact-form__label {
    position: relative;
    display: block;
    font-family: "Shippori Mincho B1", serif;
    color: #1F3E62;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: right;
    padding-right: 0;
}

.required-mark {
    color: #9F8F3B;
}

.required {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    margin-left: 0;
    color: #9F8F3B;
}

.contact-form__error {
    display: none;
    margin-top: 4px;
    color: #cc4b4b;
    font-size: 12px;
}

.contact-form__error.is-show {
    display: block;
}

.contact-form__field--medium {
    max-width: 30rem;
}


.contact-form__field--short {
    max-width: 10rem;
}

.contact-form__field--select {
    position: relative;
}

.age--select {
    max-width: 8rem;
}

.contact_type--select {
    max-width: 20rem;
}


.contact-form__field--select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;

    width: 14px;
    height: 14px;

    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;

    transform: translateY(-70%) rotate(45deg);

    pointer-events: none;
}

.contact-form__field--select::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;

    width: 30px;
    height: 100%;

    background: #9F8F3B;

    pointer-events: none;
}

.contact-form__field--select select {
    appearance: none;
    padding-right: 80px;
}


input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid #9F8F3B;
    border-radius: 50%;
    background: #fff;
    position: relative;
    cursor: pointer;
}

input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #9F8F3B;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid #9F8F3B;
    background: #fff;
    position: relative;
    cursor: pointer;
}

input[type="checkbox"]:checked::before {
    content: "✔";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -58%);
    color: #9F8F3B;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

input[type="checkbox"],
input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    border: 1px solid #9F8F3B;
    background-color: rgba(255, 255, 255, 0.65);
    color: #1F3E62;
    font-family: inherit;
    font-size: 16px;
}

.contact-form__field input,
.contact-form__field select {
    height: 28px;
    padding: 2px 10px;
}

.contact-form__row--check {
    border: none;
    padding: 0;
}

legend {
    padding: 0;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: rgba(31, 62, 98, 0.35);
}


.contact-form__field textarea {
    min-height: 210px;
    padding: 12px;
    resize: vertical;
}

.contact-form__row--textarea {
    align-items: start;
}


.contact-form__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 36px;
    color: #1F3E62;
}

.contact-form__note {
    text-align: right;
    color: rgba(31, 62, 98, .7);
    font-size: 12px;
    margin-top: 4px;
}

.contact-form__checks label,
.contact-form__privacy label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1F3E62;
    letter-spacing: 0.05em;
}

.contact-form__checks input,
.contact-form__privacy input {
    width: 18px;
    height: 18px;
}

.contact-form__privacy {
    margin-top: 64px;
    text-align: center;
}

.contact-form__checks input[type="checkbox"],
.contact-form__checks input[type="radio"],
.contact-form__privacy input[type="checkbox"] {
    flex-shrink: 0;
}

.contact-form__submit {
    margin-top: 24px;
    text-align: center;
}

.contact-form__button {
    width: 260px;
    height: 44px;
    border: 1px solid #9F8F3B;
    background-color: #1F3E62;
    color: #fff;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.12em;
    cursor: pointer;
}


/* -----------------------------
問い合わせ レスポンシブ
--------------------------------*/

@media (max-width: 820px) {
    .contact-form__row {
        margin: 0 0px 24px -90px;
    }
}

@media screen and (min-width: 375px) and (max-width: 727px) {

    #contact-form {
        padding-top: 28px;
        padding-bottom: 0;
    }

    .contact-form__lead {
        font-size: 14px;
        line-height: 1.8;
    }

    .contact-form__body {
        margin-top: 20px;
        padding-top: 32px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        row-gap: 8px;
        margin: 0 0 22px;
    }

    .contact-form__label {
        width: fit-content;
        text-align: left;
        line-height: 1.6;
    }

    .required {
        right: -18px;
    }

    .contact-form__note {
        text-align: left;
        font-size: 11px;
        margin-top: 2px;
    }

    .contact-form__field input,
    .contact-form__field select {
        height: 40px;
        font-size: 14px;
        padding: 6px 10px;
    }

    .contact-form__field textarea {
        min-height: 180px;
        font-size: 16px;
    }

    .contact-form__checks {
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-form__checks label {
        width: 100%;
    }

    .contact-form__row–check {
        margin-bottom: 22px;
    }

    .contact-form__row–check .contact-form__row {
        margin-bottom: 0;
    }

    .contact-form__privacy {
        margin-top: 40px;
        font-size: 13px;
        line-height: 1.6;
    }

    .contact-form__privacy label {
        align-items: flex-start;
        text-align: left;
    }

    .contact-form__button {
        width: 100%;
        max-width: 260px;
        height: 44px;
        font-size: 16px;
    }

    .contact-form__field–select::before {
        width: 40px;
    }

    .contact-form__field–select::after {
        right: 13px;
        width: 12px;
        height: 12px;
    }

    .contact-form__field–select select {
        padding-right: 52px;
    }
}


/* ------------------------------------------------------ */
/* =============================
    確認画面（３p共通）
============================= */
.confirm-breadcrumb {
    margin-top: 121px;
}


.confirm {
    max-width: 1920px;
    margin: 0 auto;
    padding-bottom: 50px;

}

.confirm__lead {
    position: relative;
    margin-bottom: 64px;
    padding-bottom: 24px;
    color: #1F3E62;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    letter-spacing: .08em;
}

.confirm__lead::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(100%, 1080px);
    height: 1px;
    background: #9F8F3B;
    transform: translateX(-50%);
}

.confirm__table {
    max-width: 70%;
    margin: 0 auto;
    border: 2px solid #1F3E62;
}

.confirm-list {
    margin: 0;
}

.confirm-list__row {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 48px;
}

.confirm-list__row:last-child {
    border-bottom: none;
}

.confirm-list__term {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 24px;
    background: #1F3E62;
    font-family: "Shippori Mincho B1", serif;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.confirm-list__row:last-child .confirm-list__term {
    border-bottom: none;
}

.confirm-list__description {
    display: flex;
    align-items: center;
    padding: 12px 28px;
    background: #fff;
    color: #1F3E62;
    border-bottom: 1px solid #1F3E62;

}

.confirm-list__row:last-child .confirm-list__description {
    border-bottom: none;
}

.confirm-list__row--message {
    min-height: 420px;
}

.confirm-list__row--message .confirm-list__term {
    align-items: center;
}

.confirm-list__row--message .confirm-list__description {
    align-items: flex-start;
    padding-top: 28px;
}

.confirm__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    max-width: 640px;
    margin: 48px auto 0;
}

.confirm__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 32px;
    border: 2px solid #9F8F3B;
    font-family: inherit;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.12em;
    cursor: pointer;
}

.confirm__button--back {
    background-color: #FFFAEA;
    color: #1F3E62;
}

.confirm__button--back:hover {
    background-color: #1F3E62;
    color: #fff;
}

.confirm__button--submit {
    background-color: #1F3E62;
    color: #fff;
}

.confirm__button--submit:hover {
    background-color: #fff;
    color: #1F3E62;
}

.confirm__note {
    margin-top: 32px;
    color: #1F3E62;
    font-size: 14px;
    line-height: 2;
    text-align: center;
    letter-spacing: 0.08em;
}

/* -----------------------------
　 レスポンシブ
--------------------------------*/

@media (max-width:1024px) {
    .confirm__table {
        max-width: 80%;
    }

    .confirm__buttons {
        gap: 78px;
        max-width: 550px;
    }
}

@media (max-width:823px) {
    .confirm-breadcrumb {
        margin-top: 90px;
    }

    .confirm {
        padding-bottom: 40px;
    }

    .confirm__lead {
        margin-bottom: 40px;
        padding-bottom: 20px;
        font-size: 14px;
    }

    .confirm__table {
        max-width: 80%;
    }

    .confirm-list__row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .confirm-list__term {
        justify-content: flex-start;
        padding: 10px 16px;
        border-bottom: none;
    }

    .confirm-list__description {
        min-height: 44px;
        padding: 12px 16px;
        border-bottom: 1px solid #1F3E62;
    }

    .confirm-list__row:last-child .confirm-list__description {
        border-bottom: none;
    }

    .confirm-list__row--message {
        min-height: auto;
    }

    .confirm-list__row--message .confirm-list__description {
        min-height: 180px;
        padding-top: 16px;
    }

    .confirm__buttons {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 260px;
        margin-top: 40px;
    }

    .confirm__button {
        width: 100%;
        min-height: 44px;
        font-size: 15px;
    }

    .confirm__note {
        margin-top: 24px;
        font-size: 13px;
    }
}

@media screen and (min-width:375px) and (max-width:727px) {
    .confirm-breadcrumb {
        margin-top: 72px;
    }

    .confirm__lead {
        margin-bottom: 32px;
        font-size: 12px;
        line-height: 1.8;
        letter-spacing: .06em;
    }

    .confirm__table {
        border-width: 1px;
        max-width: 90%;
    }

    .confirm-list__term {
        padding: 9px 12px;
        font-size: 14px;
    }

    .confirm-list__description {
        padding: 10px 12px;
        font-size: 14px;
        line-height: 1.8;
    }

    .confirm-list__row--message .confirm-list__description {
        min-height: 160px;
    }

    .confirm__buttons {
        margin-top: 32px;
    }

    .confirm__note {
        font-size: 12px;
        line-height: 1.8;
    }
}

/* ------------------------------------------------------ */
/* =============================
    お問い合わせ送信完了P
============================= */
.contact-thanks {
    position: relative;
    padding: 160px 0;
}

.contact-thanks__contents {
    position: relative;
    z-index: 2;
    max-width: 868px;
    margin: 0 auto;
    text-align: center;
}

.contact-thanks__title {
    font-family: "Shippori Mincho B1", serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.7;
    color: #1F3E62;
}

.contact-thanks__message {
    margin-top: 40px;
}

.contact-thanks__message p {
    line-height: 2.2;
    color: #1F3E62;
}

.contact-thanks__line {
    width: 100%;
    max-width: 790px;
    height: 1px;
    margin: 56px auto 0;
    background-color: #9F8F3B;
}

.contact-thanks__note {
    margin-top: 40px;
    line-height: 2;
    color: #1F3E62;
}

.contact-thanks__button {
    font-family: "Shippori Mincho B1", serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    margin-top: 80px;
    padding: 0 32px;
    background-color: #1F3E62;
    color: #FFF;
    font-size: 18px;
    text-decoration: none;
    transition: .3s;
}

.contact-thanks__button:hover {
    opacity: .8;
}

.contact-thanks__flower {
    position: absolute;
    bottom: 60px;
    width: 48%;
    z-index: 1;
}

.contact-thanks__flower img {
    width: 100%;
    height: auto;
}

.contact-thanks__flower--left {
    left: -80px;
}

.contact-thanks__flower--right {
    right: -80px;
}

/* -----------------------------
お問い合わせ送信完了P レスポンシブ
--------------------------------*/
@media (max-width:1024px) {
    .page-contact-thanks-main .container{
        padding-left: 0;
        padding-right: 0;
    }
    .contact-thanks {
        overflow: hidden;
        padding: 120px 0;
    }
    .contact-thanks__contents {
        max-width: 720px;
    }
    .contact-thanks__title {
        font-size: 28px;
    }
    .contact-thanks__flower {
        bottom: 80px;
        width: 55%;
        opacity: .3;
    }
    .contact-thanks__flower--left {
        left: 0px;
    }
    .contact-thanks__flower--right {
        right: 0px;
    }
}

@media (max-width:823px) {
    .contact-thanks {
        padding: 96px 0;
    }
    .contact-thanks__contents {
        max-width: 86%;
    }
    .contact-thanks__title {
        font-size: 24px;
    }
    .contact-thanks__message {
        margin-top: 32px;
    }
    .contact-thanks__message p {
        line-height: 2;
    }
    .contact-thanks__line {
        margin-top: 40px;
    }
    .contact-thanks__note {
        margin-top: 32px;
        font-size: 14px;
    }
    .contact-thanks__button {
        margin-top: 56px;
    }
    .contact-thanks__flower {
        bottom: 40px;
        width: 60%;
    }
    .contact-thanks__flower--left {
        left: -12px;
    }
    .contact-thanks__flower--right {
        right: -12px;
    }
}

@media screen and (min-width:375px) and (max-width:727px) {
    .contact-thanks {
        padding: 72px 0 88px;
        overflow: hidden;
    }
    .contact-thanks__contents {
        max-width: 90%;
    }
    .contact-thanks__title {
        font-size: 20px;
        line-height: 1.8;
    }
    .contact-thanks__message {
        margin-top: 28px;
    }
    .contact-thanks__message p {
        font-size: 14px;
        line-height: 1.9;
    }
    .contact-thanks__line {
        margin-top: 32px;
    }
    .contact-thanks__note {
        margin-top: 28px;
        font-size: 12px;
        line-height: 1.8;
    }
    .contact-thanks__button {
        min-width: 240px;
        min-height: 44px;
        margin-top: 48px;
        font-size: 16px;
    }
    .contact-thanks__flower {
        bottom: 300px;
        width: 50%;
    }
    .contact-thanks__flower--left {
        left: 0px;
    }
    .contact-thanks__flower--right {
        right: 0px;
    }
}