@charset "UTF-8";

/* font CDN
-------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');


/* settings
---------------------------------------------------*/
:root {
    --font-family1: "Noto Sans JP", sans-serif;
    --font-family2: "Jost", sans-serif;
    --font-family3: "sicprintempspetit", sans-serif;
    /* 最大幅 */
    --max-width1: 1470px;
    /* 背景色 */
    --bg-color1: #fafcf3;
    --bg-color2: #f4eddc;
    --bg-color3: #4a7051;
    --bg-color4: #f8dacd;
    /* 文字色 */
    --font-color-bass: #4d4d4d;
    --color-accent1: #4a7051;
    --color-accent2: #ea7894;
}

/* フォント読み込みまでローディング画面を表示
---------------------------------------------------*/
#font-loader-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#font-loader-overlay .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

html.wf-active #font-loader-overlay {
  opacity: 0;
  pointer-events: none;
}

/* 初期設定
---------------------------------------------------*/
html {
    font-size: 100%;
}
@media screen and (max-width: 1000px) {
    html {
        font-size: 85%;
    }
}

/* 表示・非表示 */
.pc {
    display: block;
}
.pc-in {
    display: inline-block;
}
.sp, .sp-in {
    display: none;
}
@media screen and (max-width: 1000px) {
    .sp {
        display: block;
    }
    .sp-in {
        display: inline-block;
    }
    .pc, .pc-in {
        display: none;
    }
}

/* flex */
.flex {
    display: flex;
    flex-wrap: wrap;
    &.-cc {
        justify-content: center;
        align-items: center;
    }
    &.-cs {
        justify-content: center;
        align-items: stretch;
    }
    &.-sbc {
        justify-content: space-between;
        align-items: center;
    }
}

/* header
-------------------------------- */
:root {
    --header-w: 100px;
    --header-logo-w: 230px;
    --header-btn-w: 40px;
    --header-menu-w: calc(100% - var(--header-logo-w));
}
.header__body {
    position: fixed;
    top: var(--ark-adminbar_height);
    right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    width: var(--header-w);
    height: calc(100vh - var(--ark-adminbar_height));
    padding: 30px;
    background: var(--bg-color2);
    & .header__logo {
        position: fixed;
        display: block;
        top: 1rem;
        left: 1rem;
        width: var(--header-logo-w);
        margin-top: var(--ark-adminbar_height);
    }
    & .header__menu {
        display: none;
    }
    & .sns-links {
        width: var(--sns-link-w);
        & a:not(:last-child) {
            margin-bottom: calc(var(--sns-link-w) * 1);
        }
    }
}

@media screen and (max-width: 1000px) {
    :root {
        --header-logo-w: 120px;
    }
    .header__body {
        justify-content: space-between;
        width: 100%;
        height: fit-content;
        padding: 10px 15px;
        background: white;
        & .header__logo {
            position: relative;
            top: 0;
            bottom: 0;
            left: 0;
            margin: auto 0;
        }
        & .sns-links {
            display: none;
        }
    }
}

/* コンテンツ幅など */
:root {
    --inner-max-w: 960px;
    --inner-pd: 4rem;
}
.l-content {
    margin-right: var(--header-w);
}
.l-container {
    max-width: 100%;
    padding: 0;
}
.contents-inner {
    width: 85%;
    max-width: var(--inner-max-w);
    padding: var(--inner-pd) 0;
    margin: 0 auto;
}
@media screen and (max-width: 1000px) {
    .l-content {
        margin-right: 0;
    }
}

/* SNSリンク */
:root {
    --sns-link-w: 25px;
}
.sns-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto auto 0;
    & a {
        display: block;
        width: var(--sns-link-w);
        height: var(--sns-link-w);
        background: var(--color-accent1);
        mask-repeat: no-repeat;
        -webkit-mask-repeat: no-repeat;
        mask-position: center;
        -webkit-mask-position: center;
        mask-size: cover;
        -webkit-mask-size: cover;
        &.-is {
            mask-image: url(../img/icon-sns-is.svg);
            -webkit-mask-image: url(../img/icon-sns-is.svg);
        }
        &.-x {
            mask-image: url(../img/icon-sns-x.svg);
            -webkit-mask-image: url(../img/icon-sns-x.svg);
        }
        &.-fb {
            mask-image: url(../img/icon-sns-fb.svg);
            -webkit-mask-image: url(../img/icon-sns-fb.svg);
        }
    }
}

/* ドロワーメニュー */
:root {
    --hamburger-btn-w: 36px;
}
.c-iconBtn__icon {
    position: relative;
    font-size: var(--hamburger-btn-w);
    height: var(--hamburger-btn-w);
    width: var(--hamburger-btn-w);
    & svg {
        fill: var(--color-accent1);
    }
    &::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: url(../img/hb-open.svg) no-repeat center center / cover;
        transition: .5s;
    }
}
[data-drawer=opened] .c-iconBtn__icon .__close {
    fill: white;
}
.p-drawer {
    width: fit-content;
    right: 0;
    left: auto;
    padding: 6rem 3rem 3rem;
    & .p-drawer__inner {
        display: block;
        width: fit-content;
        margin: 0 auto;
        & .sns-links {
            display: flex;
            width: 100%;
            margin-top: 3rem;
            & a {
                background: white;
            }
            & a:not(:last-child) {
                margin-bottom: 0;
                margin-right: calc(var(--sns-link-w) * 1);
            }
        }
    }
}
.p-drawer__close {
    display: none !important;
}
@media screen and (max-width: 1000px) {
    .p-drawer {
        width: 100%;
        padding-top: 75px;
    }
}

/* メニュースタイル
-------------------------------- */
:root {
    --nav-icon-w: 1em;
    --nav-icon-h: calc(var(--nav-icon-w) * 1.67);
}
.g-navi {
    & a {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: .3em .3em .6em calc(var(--nav-icon-w) * 1.6);
        margin-bottom: 1.2rem;
        text-decoration: none;
        font-family: var(--font-family3);
        font-weight: 100;
        &::before {
            position: absolute;
            content: "";
            width: var(--nav-icon-w);
            height: var(--nav-icon-h);
            left: 0;
            top: .2em;
            background: white;
            mask: url(../img/head-icon01.svg) no-repeat center center / cover;
            -webkit-mask: url(../img/head-icon01.svg) no-repeat center center / cover;
        }
        &::after {
            background: white;
        }
        & span {
            display: block;
            font-size: 80%;
            opacity: .5;
            font-family: var(--font-family2);
            font-weight: 300;
            margin-left: 2em;
        }
    }
    & a:last-child {
        margin-bottom: 0;
    }
    
}

/* footer
-------------------------------- */
.footer-area {
    padding: 6rem;
    padding-bottom: 4rem;
    margin-right: var(--header-w);
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    & .footer-info {
        width: 13rem;
        & .-img {
            width: 13.5rem;
            margin-right: 2rem;
        }
        & .-tx {
            width: max-content;
            & p {
                font-size: 1.4rem;
            }
            & .-name-jp {
                margin-bottom: .5em;
            }
            & .-name-en {
                font-size: 1rem;
            }
            & .-info {
                font-size: .9rem;
            }
        }
    }
    & .footer-copyright {
        width: 100%;
        & p {
            font-size: .7rem;
        }
    }
}
@media screen and (max-width: 1000px) {
    .footer-area {
        padding: 5rem 1rem 3rem;
        margin-right: 0;
    }
    .footer-inner {
        justify-content: center;
        & .footer-info {
            width: 100%;
            margin-bottom: 3rem;
            & .-img {
                display: block;
                width: 12rem;
                margin: 0 auto 2rem;
            }
            & .-tx {
                width: 100%;
                & p {
                    text-align: center;
                }
            }
        }
    }
    .footer-menu {
        margin-bottom: 3rem;
    }
    & .footer-copyright {
        & p {
            text-align: center;
        }
    }
}

/* 共通スタイル
-------------------------------- */
/*フォント設定*/
:root {
    --h2-leaf-w: 12rem;
    --h2-leaf-h: calc(var(--h2-leaf-w) * .074);
    --h2-leaf-pd: calc(var(--h2-leaf-h) * 1.8);
}
h2 {
    font-size: 1.4rem;
    text-align: center;
    font-family: var(--font-family3);
    color: var(--color-accent1);
    font-weight: 800;
    margin-bottom: 3rem;
    & span {
        position: relative;
        display: block;
        text-align: center;
        font-size: .8rem;
        font-family: var(--font-family2);
        font-weight: 400;
        padding-top: var(--h2-leaf-pd);
        margin-top: 1em;
        &::before {
            position: absolute;
            content: "";
            width: var(--h2-leaf-w);
            height: var(--h2-leaf-h);
            top: 0;
            left: 0;
            right: 0;
            margin: 0 auto;
            background: var(--color-accent1);
            mask: url(../img/head-leaf01.svg) no-repeat center center / cover;
            -webkit-mask: url(../img/head-leaf01.svg) no-repeat center center / cover;
        }
    }
}
:root {
    --h3-icon-w: 1em;
    --h3-icon-h: calc(var(--h3-icon-w) * 1.67);
}
h3 {
    position: relative;
    font-size: 1.4rem;
    color: var(--color-accent1);
    font-family: var(--font-family2);
    font-weight: 500;
    padding: .3em .3em .3em calc(var(--h3-icon-w) * 1.4);
    margin-bottom: 2rem;
    &::before {
        position: absolute;
        content: "";
        width: var(--h3-icon-w);
        height: var(--h3-icon-h);
        left: 0;
        top: 0;
        background: var(--color-accent1);
        mask: url(../img/head-icon01.svg) no-repeat center center / cover;
        -webkit-mask: url(../img/head-icon01.svg) no-repeat center center / cover;
    }
    &::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 3px;
        bottom: 0;
        left: 0;
        background: var(--color-accent1);
        mask: url(../img/dot-line01.svg) repeat-x left center / auto 100%;
        -webkit-mask: url(../img/dot-line01.svg) repeat-x left center / auto 100%;
    }
}
@media screen and (max-width: 1000px) {
    h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
}

p {
    color: var(--font-color-bass);
    font-size: .85rem;
    line-height: 1.8;
    margin-bottom: 1.8em;
    font-family: var(--font-family1);
}
p:last-child {
    margin-bottom: 0;
}
p.tx-head {
    font-size: 1.1rem;
    text-align: center;
    font-family: var(--font-family3);
    font-weight: 800;
    margin: 3rem auto;
    color: var(--color-accent1);
}
@media screen and (max-width: 1000px) {
    p {
        font-size: 1rem;
    }
    p.tx-head {
        margin: 2rem auto;
    }
}

a {
    text-decoration: none;
    transition: .5s;
    &:hover {
        transform: translatey(-5px);
        opacity: .5;
    }
}

.pd-l1 { padding-left: 1rem; }

.accol1 { color: var(--color-accent1); }
.ff1 { font-family: var(--font-family1); }
.ff2 { font-family: var(--font-family2); }
.ff3 { font-family: var(--font-family3); }
.fwn { font-weight: normal; }
.fw1 { font-weight: 100; }
.fw2 { font-weight: 200; }
.fw3 { font-weight: 300; }
.fw4 { font-weight: 400; }
.fw5 { font-weight: 500; }
.fw6 { font-weight: 600; }
.fw7 { font-weight: 700; }
.fw8 { font-weight: 800; }
.fw9 { font-weight: 900; }

/* リスト設定 */
:root {
    --list-icon-w: 2em;
    --list-icon-h: calc(var(--list-icon-w) * .8);
}
ul, ol {
    margin: 0 0 1.5rem;
    padding: 0;
    & li {
        position: relative;
        font-size: 1rem;
        font-family: var(--font-family2);
        color: var(--font-color-bass);
        margin-bottom: .5em;
        line-height: 1.8;
    }
}
ul {
    & li {
        padding: .3em .3em .3em calc(var(--list-icon-w) * 1.3);
        list-style: none;
        &::before {
            position: absolute;
            content: "";
            width: var(--list-icon-w);
            height: var(--list-icon-h);
            top: .4em;
            left: 0;
            background: url(../img/list-icon01.svg) no-repeat center center / contain;
        }
    }
}


/* 画像設定 */
img { display: block; }

/* 背景色 */
.-bg-light1 {
    background: var(--bg-color1);
}
.-bg-light2 {
    background: var(--bg-color2);
}
.-bg-dark1 {
    background: var(--bg-color3);
    & h2, h3, h4, h5, h6, p, a, span {
        color: white;
    }
}

/* width */
.w-full { width: 100%; }
.w-half { width: 50%; }
.w-third { width: calc(100% / 3); }
@media screen and (max-width: 1000px) {
    .w-half { width: 100%; }
    .w-third { width: 100%; }
}

:root {
    --h-column-w: 50%;
}
section.contents {
    width: 100%;
    height: 100%;
}
.h-column {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    height: 100%;
    &.-rep {
        flex-direction: row-reverse;
    }
    & .-tx {
        width: var(--h-column-w);
    }
    & .-img {
        position: relative;
        width: var(--h-column-w);
        height: auto;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}
@media screen and (max-width: 1000px) {
    :root {
        --h-column-w: 100%;
    }
    .h-column {
        & .-img {
            height: 22rem;
        }
    }
}

:root {
    --img-column-img-w: 45%;
    --img-column-tx-w: calc(100% - var(--img-column-img-w));
}
.img-column {
    display: flex;
    flex-wrap: wrap;
    width: 85%;
    max-width: var(--max-width1);
    margin: 0 auto;
    padding: 6rem 0;
    & .-img {
        width: var(--img-column-img-w);
        height: auto;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    & .-tx {
        width: var(--img-column-tx-w);
        padding: 1rem 0 1rem 6%;
    }
}
.img-column:not(:last-child) {
    padding: 6rem 0 0;
}
@media screen and (max-width: 1000px) {
    :root {
        --img-column-img-w: 100%;
        --img-column-tx-w: 100%;
    }
    .img-column {
        padding: 3rem 0 4rem;
        & .-img {
            height: 26rem;
            margin-bottom: 2rem;
        }
        & .-tx {
            padding: 0;
        }
    }
    .img-column:not(:last-child) {
        padding: 3rem 0 0;
    }
}

.dot-line {
    position: relative;
    &::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 3px;
        bottom: 0;
        left: 0;
        background: var(--color-accent1);
        mask: url(../img/dot-line01.svg) repeat-x left center / auto 100%;
        -webkit-mask: url(../img/dot-line01.svg) repeat-x left center / auto 100%;
    }
}

/* mv
-------------------------------- */
:root {
    --mv-image-catch-shift: 2.5rem;
    --mv-catch-pd: 2.5rem;
    --mv-leaf-w: 160px;
    --mv-leaf-h: calc(var(--mv-leaf-w) * .117);
    --mv-leaf-shift: calc(var(--mv-catch-pd) * -1);
}
.mv {
    height: calc(100vh - var(--ark-adminbar_height));
    & .-img {
        position: relative;
        & .image-catch {
            position: absolute;
            width: fit-content;
            height: fit-content;
            bottom: var(--mv-image-catch-shift);
            right: var(--mv-image-catch-shift);
            font-size: 1.8rem;
            font-family: var(--font-family2);
            font-weight: 200;
            color: white;
            text-align: right;
            letter-spacing: 6px;
        }
    }
    & p {
        color: var(--color-accent1);
        font-family: var(--font-family3);
        font-weight: 800;
        letter-spacing: .5rem;
    }
    & p.mv-catch {
        position: relative;
        font-size: 1.8rem;
        padding: var(--mv-catch-pd) 0;
        text-align: center;
        margin-bottom: 4rem;
    }
    & p.mv-catch::before, p.mv-catch::after {
        position: relative;
        content: "";
        display: block;
        width: var(--mv-leaf-w);
        height: var(--mv-leaf-h);
        left: 0;
        right: 0;
        margin: 0 auto;
        background: var(--color-accent1);
        mask: url(../img/mv-leaf01.svg) no-repeat center center / cover;
        -webkit-mask: url(../img/mv-leaf01.svg) no-repeat center center / cover;
    }
    & p.mv-catch::before {
        top: var(--mv-leaf-shift);
    }
    & p.mv-catch::after {
        bottom: var(--mv-leaf-shift);
        transform: scale(-1);
    }
    & p.mv-name {
        font-size: 1.1rem;
        text-align: center;
    }
}
@media screen and (max-width: 1000px) {
    :root {
        --mv-image-catch-shift: 1.5rem;
        --mv-catch-pd: 1.3rem;
        --mv-leaf-w: 90px;
    }
    .mv {
        height: auto;
        & .-img {
            height: 38rem;
            margin-bottom: 10rem;
            & .image-catch {
                bottom: auto;
                top: calc(var(--mv-image-catch-shift) + 60px);
                font-size: 1.4rem;
            }
        }
        & .-tx {
            position: absolute;
            width: 80%;
            bottom: 3rem;
            left: 0;
            right: 0;
            margin: 0 auto;
            & .contents-inner {
                padding: 3.5rem 0;
            }
            & p.mv-catch {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            & p.mv-name {
                font-size: .8rem;
                letter-spacing: .2rem;
            }
        }
    }
}

/* lineup
-------------------------------- */
:root {
    --lineup-box-w: 32%;
}
.lineup-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: var(--max-width1);
    margin: 0 auto;
    & .lineup-box {
        padding: 2.5rem 3rem;
        margin-bottom: 2rem;
        border-radius: 5px;
        &.-third {
            width: var(--lineup-box-w);
        }
        &.-full {
            width: 100%;
        }
    }
    & .lineup-box:last-child {
        margin-bottom: 0;
    }
    & p.lineup-head {
        position: relative;
        font-size: 1.1rem;
        font-family: var(--font-family3);
        font-weight: 800;
        color: var(--color-accent1);
        text-align: center;
        padding: 0 .5em 1em;
        margin-bottom: 0;
    }
    & p.lineup-price {
        font-size: 1rem;
        font-family: var(--font-family3);
        font-weight: 800;
        color: var(--color-accent2);
        text-align: center;
        padding: 1em;
        margin-bottom: 0;
    }
}
:root {
    --lineup-column2-img-w: 40%;
    --lineup-column2-tx-w: calc(100% - var(--lineup-column2-img-w));
}
.lineup-column2 {
    display: flex;
    flex-wrap: wrap;
    & .-img {
        width: var(--lineup-column2-img-w);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    & .-tx {
        width: var(--lineup-column2-tx-w);
        padding: .5rem 0 .5rem 4.5%;
    }
}
@media screen and (max-width: 1000px) {
    :root {
        --lineup-box-w: 100%;
        --lineup-column2-img-w: 100%;
        --lineup-column2-tx-w: 100%;
    }
    .lineup-column {
        & .lineup-box {
            padding: 2rem 2.5rem;
            margin-bottom: 1rem;
        }
    }
    .lineup-column2 {
        & .-tx {
            padding: 0;
        }
    }
}

/* instructor
-------------------------------- */
.instructor-inner {
    width: 90%;
    max-width: var(--max-width1);
    padding: 6rem 0 4rem;
    margin: 0 auto;
}
.instructor-box {
    width: 24%;
    margin-bottom: 3rem;
    & .instructor-img {
        margin-bottom: 0;
    }
    & .instructor-name {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        font-size: 1.4rem;
        padding: .5em .3em;
        font-family: var(--font-family3);
        font-weight: 800;
        color: var(--color-accent1);
        & .-en {
            font-size: 70%;
            font-family: var(--font-family2);
            font-weight: 400;
        }
    }
}
@media screen and (max-width: 1000px) {
    .instructor-inner {
        padding: 4rem 0 2rem;
    }
    .instructor-box {
        width: 48%;
        & .instructor-name {
            display: block;
            & span {
                display: block;
            }
            & .-en {
                text-align: right;
            }
        }
    }
}

/* overview
-------------------------------- */
.-overview .contents-inner {
    max-width: 1200px;
    padding: 5rem 6rem;
    margin-bottom: 6rem;
    & .overview-box {
        padding: 0 1rem;
        margin-bottom: 3rem;
        & p {
            font-size: 1rem;
            &.accol1 {
                font-size: 120%;
                margin-bottom: .5rem;
            }
        }
        &:last-child {
            margin-bottom: 0;
        }
    }
}
@media screen and (max-width: 1000px) {
    .-overview .contents-inner {
        padding: 3rem 2rem;
        margin-bottom: 4rem;
        & .overview-box {
            padding: 0 .5rem;
        }
    }
}

/* offer
-------------------------------- */
:root {
    --offer-head-icon-w: 1em;
    --offer-head-icon-h: calc(var(--offer-head-icon-w) * 1.6);
    --offer-arrow-icon-w: 4em;
    --offer-arrow-icon-h: calc(var(--offer-arrow-icon-w) * .375);
}
.-offer .contents-inner {
    padding: 6rem 0;
}
.offer-head {
    position: relative;
    width: fit-content;
    font-size: 2.2rem;
    font-family: var(--font-family3);
    font-weight: 800;
    color: var(--color-accent1);
    padding: 0 0 0 calc(var(--offer-head-icon-w) * 1.5);
    &::before {
        position: absolute;
        content: "";
        width: var(--offer-head-icon-w);
        height: var(--offer-head-icon-h);
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        background: var(--color-accent1);
        mask: url(../img/offer-icon01.svg) no-repeat center center / cover;
        -webkit-mask: url(../img/offer-icon01.svg) no-repeat center center / cover;
    }
}
.offer-arrow {
    width: var(--offer-arrow-icon-w);
    height: var(--offer-arrow-icon-h);
    background: var(--bg-color4);
    mask: url(../img/offer-arrow01.svg) no-repeat center center / cover;
    -webkit-mask: url(../img/offer-arrow01.svg) no-repeat center center / cover;
    margin: auto 2.5rem;
}
a.offer-btn {
    position: relative;
    display: block;
    width: fit-content;
    height: fit-content;
    font-size: 1.3rem;
    font-family: var(--font-family2);
    font-weight: 400;
    color: var(--color-accent1);
    padding: .7em 1em;
    padding-right: 4em;
    line-height: 1;
    border: 1px solid var(--color-accent1);
    &::after {
        position: absolute;
        content: "";
        width: .4em;
        height: .4em;
        top: 0;
        bottom: 0;
        right: 1.2em;
        margin: auto 0;
        border-top: 1px solid var(--color-accent1);
        border-right: 1px solid var(--color-accent1);
        transform: rotate(45deg);
    }
}
@media screen and (max-width: 1000px) {
    :root {
        --offer-head-icon-w: .9em;
        --offer-arrow-icon-w: 2.5em;
    }
    .-offer .contents-inner {
        width: 95%;
        padding: 4rem 0;
    }
    .offer-head {
        font-size: 1.4rem;
    }
    .offer-arrow {
        margin: auto 1rem;
    }
    a.offer-btn {
        font-size: 1.1rem;
        padding: .6em .7em;
        padding-right: 2em;
        &::after {
            right: .9em;
        }
    }
}


/* form ※プラグイン上書き
-------------------------------- */
:root {
    --form-label-w: 17em;
    --form-form-w: calc(100% - var(--form-label-w));
    --form-checkbox-w: 40px;
}
.forminator-row-inside {
   display: block !important;
}
.forminator-col {
    width: 100%;
    margin-bottom: 20px !important;
}
/*
.forminator-row, .forminator-field-email {
    margin-bottom: 0 !important;
}
*/
.forminator-field {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    & label, input, textarea {
        font-size: 18px;
        font-family: var(--font-family1);
        font-weight: 700;
        color: var(--font-color-bass);
    }
    & label {
        width: var(--form-label-w);
    }
    & input, textarea {
        width: var(--form-form-w) !important;
        padding: .6em 1em !important;
        border: 2px solid #bfbfbf !important;
        border-radius: 3px !important;
    }
    & input {
        max-width: calc(var(--form-form-w) * 1) !important;
    }
    & input::placeholder, textarea::placeholder {
        color: #bfbfbf;
        font-weight: 400;
    }
}
.forminator-field-textarea .forminator-field {
    padding-bottom: 3em !important;
    & .forminator-description {
        position: absolute;
        right: 0;
        bottom: 0;
        & span {
            position: relative;
            display: block;
            padding: 0 3.5em 0 1.2em;
            color: #f46161;
            &::before {
                position: absolute;
                content: "（";
                left: 0;
                top: 0;
                bottom: 0;
                margin: auto 0;
            }
            &::after {
                position: absolute;
                content: "文字）";
                right: 0;
                top: 0;
                bottom: 0;
                margin: auto 0;
            }
        }
    }
}
span.forminator-required {
    display: inline-block;
    position: relative;
    color: white;
    &::after {
        position: absolute;
        width: 5em;
        content: "（必須）";
        top: 0;
        left: -.5em;
        font-size: 14px;
        font-family: var(--font-family1);
        font-weight: 300;
        color: #f46161;
    }
}
.forminator-field-consent .forminator-field {
    justify-content: center;
    align-items: center;
    & .forminator-checkbox-box {
        border: 3px solid #137f3f !important;
        width: var(--form-checkbox-w) !important;
        height: var(--form-checkbox-w) !important;
        flex: 0 0 var(--form-checkbox-w) !important;
        &::before {
            font-size: calc(var(--form-checkbox-w) * .5) !important;
        }
    }
    & .forminator-checkbox__wrapper {
        & label {
            width: calc(var(--form-checkbox-w) * 1.4) !important;
        }
        & .forminator-checkbox__label {
            width: calc(100% - (var(--form-checkbox-w) * 1.4)) !important;
            margin-left: 0 !important;
            & p, p a {
                font-size: 22px;
                font-weight: 200;
                line-height: var(--form-checkbox-w);
                letter-spacing: 1px;
            }
            & p {
                color: #444;
            }
        }
    }
}
.forminator-button {
    display: block !important;
    width: 280px !important;
    height: 70px !important;
    text-align: center !important;
    margin: 0 auto !important;
    color: var(--color-accent1);
    font-size: 22px;
    font-family: var(--font-family1);
    font-weight: 700;
    border: 2px solid var(--color-accent1) !important;
    border-radius: 2px !important;
    background: white;
    letter-spacing: 5px;
    transition: .5s;
}
.forminator-button:hover {
    color: white;
    background: var(--color-accent1);
}
.forminator-error-message {
    width: 100%;
    font-size: 20px;
    color: #f46161;
    text-align: right;
    order: 3;
}
@media screen and (max-width: 1000px) {
    :root {
        --form-label-w: 100%;
        --form-form-w: 100%;
        --form-checkbox-w: 20px;
    }
    .forminator-col {
        margin-bottom: 22px !important;
    }
    .forminator-field {
        & label, input, textarea {
            font-size: 16px;
        }
        & label {
            margin-bottom: 8px !important;
        }
        & input, textarea {
            padding: .4em 1em !important;
            border: 2px solid #bfbfbf !important;
            border-radius: 3px !important;
        }
        & input {
            max-width: 100% !important;
        }
        & textarea {
            min-height: 120px !important;
        }
    }
    .forminator-field-textarea .forminator-field {
        padding-bottom: 15px !important;
        & .forminator-description span {
            font-size: 12px;
        }
    }
    .forminator-field-consent .forminator-field {
        & .forminator-checkbox-box {
            border: 2px solid #137f3f !important;
        }
        & .forminator-checkbox__wrapper {
            & .forminator-checkbox__label {
                & p, p a {
                    font-size: 12px;
                }
            }
        }
    }
    span.forminator-required {
        &::after {
            font-size: 12px;
        }
    }
    .forminator-error-message {
        font-size: 10px;
    }
    .forminator-button {
        width: fit-content !important;
        height: fit-content !important;
        margin: 8px auto 0 !important;
        font-size: 16px;
        border: 2px solid var(--color-accent1) !important;
        border-radius: 2px !important;
        padding: 10px 45px !important;
        letter-spacing: 3px;
    }
}


/* 固定ページ設定（トップページ以外）
-------------------------------- */
:root {
    --post-h1-leaf-shift: -25px;
}
.p-topArea {
    min-height: 120px;
    margin-top: 120px;
    margin-top: 100px;
    &.-noimg {
        background: white;
    }
    & h1 {
        position: relative;
        font-size: 28px;
        font-family: var(--font-family1);
        color: var(--color-accent1);
        font-family: var(--font-family3);
        font-weight: 800;
    }
    & h1::before, h1::after {
        position: relative;
        content: "";
        display: block;
        width: var(--mv-leaf-w);
        height: var(--mv-leaf-h);
        left: 0;
        right: 0;
        margin: 0 auto;
        background: var(--color-accent1);
        mask: url(../img/mv-leaf01.svg) no-repeat center center / cover;
        -webkit-mask: url(../img/mv-leaf01.svg) no-repeat center center / cover;
    }
    & h1::before {
        top: var(--post-h1-leaf-shift);
    }
    & h1::after {
        bottom: var(--post-h1-leaf-shift);
        transform: scale(-1);
    }
}
.p-breadcrumb {
    width: 90%;
    max-width: var(--max-width1);
    & span {
        font-size: 12px;
    }
}
.p-breadcrumb__list {
    justify-content: flex-end;
}
.l-content__body {
    margin: 4rem auto 8rem;
}
.p-page__content {
    width: 85%;
    margin: 0 auto;
    max-width: 960px;
    & h2 {
        font-family: var(--font-family1);
        font-size: 24px;
        color: var(--color-accent1);
        margin-top: 38px;
    }
    & p, ul {
        margin-top: 20px;
        margin-left: 10px;
    }
    & p, li {
        font-family: var(--font-family1);
    }
}

@media screen and (max-width: 1000px) {
    .l-content__body {
        margin: 2rem auto 5rem;
    }
    .p-topArea {
        margin-top: 70px;
        & h1 {
            font-size: 22px;
        }
    }
    .p-breadcrumb__list {
        justify-content: flex-start;
        margin-top: 30px;
        margin-bottom: 5px;
    }
    .p-page__content {
        & h2 {
            font-size: 20px;
            margin-top: 30px;
            margin-bottom: 0;
        }
        & p, ul {
            margin-top: 16px;
            margin-left: 5px;
        }
    }
}