@charset "UTF-8";
/*
Theme Name: WEB site rian
Author: M.Kawamura
*/

/*====================================*/
/* Font Loading */
/*====================================*/
@font-face {
    font-family: 'NotoSerifJP';
    src: url('font/NotoSerifJP-VariableFont_wght.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('font/Jost-VariableFont_wght.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Italianno';
    src: url('font/Italianno-Regular.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --main: #94B8C5;
    --sub: #C1AF51;
    --white: #fff;
    --wh-gray: #f8f8f8;
    --gray: #B2B2B2;
    --txt: #fff;
    --txt-wh: #fff;
    --txt-bl: #39302D;
    --point: #473838;

}

/*====================================*/
/* base contents */
/*====================================*/
html {
    font-family: Lato, "NotoSerifJP", "Jost", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .1em;
    font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
    color: var(--txt-bl);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    word-break: break-all;
}

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

body {
    background-color: var(--white);
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

/* ----pc,sp/on_off---- */
.pc {
    display: none;
}

.tb {
    display: none;
}

.sp {
    display: block;
}

@media screen and (min-width: 768px) {
    .tb {
        display: block;
    }

    .sp {
        display: none;
    }
}

@media screen and (min-width: 1200px) {
    .pc {
        display: block;
    }

    .tb {
        display: none;
    }
}

.border__radius-32 {
    border-radius: 32px 0;
}

/* ----contents-text-align---- */
.ta-C {
    text-align: center;
}

.ta-R {
    text-align: right;
}

.ta-L {
    text-align: left;
}

.vertical {
    writing-mode: vertical-rl;
}

/* ----padding-bottoms---- */
.pt-S {
    padding-top: 1rem;
}

.pt-M {
    padding-top: 2rem;
}

.pt-L {
    padding-top: 3rem;
}

/* ----padding-bottoms---- */
.pb-S {
    padding-bottom: 1rem;
}

.pb-M {
    padding-bottom: 2rem;
}

.pb-L {
    padding-bottom: 3rem;
}

/* ----padding-left---- */
.pl-S {
    padding-left: 1rem;
}

.pl-M {
    padding-left: 2rem;
}

.pl-L {
    padding-left: 3rem;
}

/* ----padding-right---- */
.pr-S {
    padding-right: 1rem;
}

.pr-M {
    padding-right: 2rem;
}

.pr-L {
    padding-right: 3rem;
}

/* ----padding-top-bottom--- */
.ptb-S {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.ptb-M {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.ptb-L {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ----padding-left-right--- */
.plr-S {
    padding-left: 1rem;
    padding-right: 1rem;
}

.plr-M {
    padding-left: 2rem;
    padding-right: 2rem;
}

.plr-L {
    padding-left: 3rem;
    padding-right: 3rem;
}

/* ----margin-bottoms---- */
.mb-XXS {
    margin-bottom: .2rem;
}

.mb-XS {
    margin-bottom: .5rem;
    display: block;
}

.mb-S {
    margin-bottom: 1rem;
    display: block;
}

.mb-M {
    margin-bottom: 2rem;
}

.mb-L {
    margin-bottom: 3rem;
}

/* ----margin-tops---- */
.mt-S {
    margin-top: 1rem;
}

.mt-M {
    margin-top: 2rem;
}

.mt-L {
    margin-top: 3rem;
}

.mt-XL {
    margin-top: 4rem;
}

.mt-XXL {
    margin-top: 5rem;
}

.mt--XL {
    margin-top: -4.5rem;
}

/* ----margin-left---- */
.ml-S {
    margin-left: 1rem;
}

.ml-M {
    margin-left: 2rem;
}

.ml-L {
    margin-left: 3rem;
}

.ml-A {
    margin-left: auto;
}

/* ----margin-right---- */
.mr-S {
    margin-right: 1rem;
}

.mr-M {
    margin-right: 2rem;
}

.mr-L {
    margin-right: 3rem;
}

.mr-A {
    margin-right: auto;
}


/* ----color---- */
.color-1 {
    color: #1C1C1C;
}

.color-2 {
    color: #fff;
}

.color-3 {
    color: #f1ede8;
}

.color-4 {
    color: #e3dbd0;
}

.color-5 {
    color: #d7c6af;
}

.-main {
    color: var(--main);
}

.color-7 {
    color: #f7f7f7;
}

.color-8 {
    color: #cec6bb;
}

.-wht {
    color: var(--white);
}

/* ----bg-color---- */
.bg-c_1 {
    background-color: #1C1C1C;
}

.bg-c_2 {
    background-color: #fff;
}

.bg-c_3 {
    background-color: #f1ede8;
}

.bg-c_4 {
    background-color: #e3dbd0;
}

.bg-c_5 {
    background-color: #d7c6af;
}

.bg-c_6 {
    background-color: var(--main);
}

.bg-c_7 {
    background-color: #f7f7f7;
}

.bg-c_8 {
    background-color: #cec6bb;
}

/* ---- display ---- */
.display-block {
    display: block;
}

.display-none {
    display: none;
}

.display-inline {
    display: inline;
}

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

/* ----inner---- */
.inner {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    padding-top: 7rem;
    padding-bottom: 5rem;
}

.inner__bg {
    max-width: 1100px;
    margin: auto;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.sec-mg {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.inr-mg {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media screen and (min-width: 768px) {
    .inner {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

.top-mg {
    padding-top: 13rem;
}

/*====================================*/
/* common contents */
/*====================================*/
/* ----title---- */
.ttl-S,
.ttl-M,
.ttl-L {
    line-height: 1.5;
    letter-spacing: .1em;
}

.ttl-S {
    font-size: 1.1rem;
}

.ttl-M {
    font-size: 1.3rem;
}

.ttl-L {
    font-size: 1.5rem;
}

.ttl-XL {
    font-size: 2rem;
}

.ttl-XXL {
    font-size: 2.2rem;
    letter-spacing: 1rem;
}

.sec-ttl {
    position: relative;
    font-weight: bold;
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 1rem;
}

.sec-ttl::before {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: "sofia-pro", sans-serif;
    font-weight: 100;
    z-index: 999;
}

.sec-ttl-bg {
    position: absolute;
    display: inline-block;
    bottom: 0;
    left: 50%;
    width: 255px;
    height: 37px;
    top: -30px;
    transform: translate(-50%, 0%);
}

#top-works .sec-ttl-bg {
    background: url(./img/title_bage.png) no-repeat center;
}

#top-about .sec-ttl-bg {
    background: url(./img/title_bage02.png) no-repeat center;
}

#single .sec-ttl-bg {
    background: url(./img/title_white.png) no-repeat center;
}

#top-works .sec-ttl {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 100;
}

#single .sec-ttl {
    position: relative;
    top: -3rem;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 100;
}

#top-works .sec-ttl::before {
    color: #d7c6af;
    content: 'WORKS';
}

#top-about .sec-ttl::before {
    color: #f7f7f7;
    content: 'about';
}

.sec-ttl::after {
    content: "";
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    width: 1px;
    height: 20px;
}

/* ----text---- */
.txt-XXS,
.txt-XS,
.txt-S,
.txt-M,
.txt-L,
.txt-XL {
    line-height: 1.5;
}

.txt-XXS {
    font-size: .6rem;
}

.txt-XS {
    font-size: .75rem;
}

.txt-S {
    font-size: .85rem;
}

.txt-M {
    font-size: .9rem;
}

.txt-L {
    font-size: 1.2rem;
}

.txt-XL {
    font-size: 1.5rem;
}

.wh-now {
    white-space: nowrap;
}

/* ----text-style---- */
.bold {
    font-weight: bold;
}

.under {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.txt-bg-1 {
    background-color: #1C1C1C;
    padding: .75rem;
}

.txt-bg-2 {
    background-color: #fff;
    padding: .75rem;
}

.ltr-sp-S {
    letter-spacing: .25rem;
}

.ltr-sp-M {
    letter-spacing: .5rem;
}

.ltr-sp-L {
    letter-spacing: .75rem;
}

.line-h-XS {
    line-height: 1.5rem;
}

.line-h-S {
    line-height: 1.65rem;
}

.line-h-M {
    line-height: 1.8rem;
}

.line-h-L {
    line-height: 2rem;
}

/* ----indent---- */
.indent-S {
    display: inline-block;
    padding-left: 1rem;
    text-indent: -1rem;
}

.indent-M {
    display: inline-block;
    padding-left: 1.5rem;
    text-indent: -1.5rem;
}

.indent-L {
    display: inline-block;
    padding-left: 2rem;
    text-indent: -2rem;
}

/* ----button---- */
.opa {
    opacity: .5;
}

.hov:hover {
    opacity: .5;
    transition: all .3s;
    text-decoration: none;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 1.5rem 0;
    transition: all .3s;
    width: 100%;
    width: 320px;
    max-width: 320px;
    margin: 3rem auto;
    border: 2px solid var(--txt-color, #282828);
    background: var(--Wh, #FFF);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    font-weight: bold;
    text-align: center;
    z-index: 1;
    transition: width 0.3s ease;
}

.btn.btn-blue::after {
    display: inline-block;
    content: "";
    position: absolute;
    background: var(--main);
    height: 100%;
    width: 10px;
    left: 0;
    top: 0;
    z-index: -1;
    transition: width 0.3s ease;
}

.btn.btn-blue:hover {
    color: var(--white);
}

.btn.btn-blue:hover::after {
    width: 100%;
}

.btn.btn-blue::before {
    display: inline-block;
    content: "";
    position: absolute;
    background: var(--main);
    background: url(./img/rian-ttl-icn.svg) no-repeat center center / 100% auto;
    width: 1.75rem;
    height: 1.75rem;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.btn.btn-blue:hover:before {
    background: url(./img/rian-icn.svg) no-repeat center center / 100% auto;
}

.btn.btn-blue {
    color: var(--main);
}

.btn.btn-line {
    color: #06C755;
}

.btn.btn-line,.btn.btn-blue {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn.btn-line img {
    position: relative;
    z-index: 1;
    width: 1.75rem;
}

.btn.btn-line span {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.btn.btn-line::after {
    display: inline-block;
    content: "";
    position: absolute;
    background: #06C755;
    height: 100%;
    width: 10px;
    left: 0;
    top: 0;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn.btn-line:hover {
    color: var(--white);
}

.btn.btn-line:hover::after {
    width: 100%;
}

.btn.btn-line::before {
    display: inline-block;
    content: "";
    position: absolute;
    background: #06C755;
    background: url(./img/rian-ttl-icn.svg) no-repeat center center / 100% auto;
    width: 1.75rem;
    height: 1.75rem;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s ease;
}

.btn.btn-line:hover:before {
    background: url(./img/rian-icn.svg) no-repeat center center / 100% auto;
}

#top-page footer .btn {
    margin: 0 auto;
}

/* ----button-bg---- */
.btn-1 {
    position: relative;
    background-color: var(--main);
    border: 1px solid var(--main);
    color: #fff;
    text-align: center;
    letter-spacing: .15em;
    display: block;
}

.btn-2 {
    position: relative;
    background-color: var(--txt-bl);
    border: 1px solid var(--txt-bl);
    color: #fff;
    text-align: center;
    letter-spacing: .15em;
    border-radius: 5px;
}

.btn-3 {
    position: relative;
    background-color: var(--main);
    border: 1px solid var(--main);
    color: #fff;
    text-align: center;
    letter-spacing: .15em;
    border-radius: 50px;
}

.btn-4 {
    position: relative;
    background-color: var(--white);
    border: 1px solid var(--main);
    color: var(--main);
    text-align: center;
    letter-spacing: .15em;
    border-radius: 50px;
}

.btn-5 {
    position: relative;
    background-color: var(--main);
    border: 1px solid var(--main);
    color: #fff;
    text-align: center;
    letter-spacing: .15em;
    border-radius: 5px;
}

.btn-1:hover, .btn-3:hover, .btn-5:hover {
    background-color: white;
    border: 1px solid var(--main);
    color: var(--main);
}

.btn-2:hover {
    background-color: var(--white);
    border: 1px solid var(--txt-bl);
    color: var(--txt-bl);
}

.btn-4:hover {
    background-color: var(--main);
    border: 1px solid var(--main);
    color: var(--white);
}

.btn-3::after, .btn-2::after, .btn-1::after, .btn-5::after {
    position: absolute;
    top: 50%;
    right: 7%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
}

.btn-4::after {
    position: absolute;
    top: 50%;
    right: 7%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
}

.back-top-btn {
    max-width: 320px;
    display: block;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.back-top-btn.btn.btn-2::after {
    left: 7%;
    transform: translateY(-50%) rotate(-135deg);
}

.btn-main, .btn-sub {
    display: block;
    position: relative;
    padding: .5rem;
    background-color: var(--white);
    border: 2px solid var(--main);
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
    color: var(--txt-bl);
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.btn-sub {
    background-color: var(--white);
    border: 2px solid var(--sub);
    color: var(--sub);
}

.btn-main::after, .btn-sub::after {
    position: absolute;
    top: 50%;
    right: 7%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid var(--main);
    border-top: 2px solid var(--main);
    content: "";
}

.btn-sub::after {
    border-right: 2px solid var(--sub);
    border-top: 2px solid var(--sub);
}

.btn-main:hover {
    background-color: var(--main);
    color: var(--white);
}

.btn-sub:hover {
    background-color: var(--sub);
    color: var(--white);
}

@media screen and (min-width: 768px) {
    .btn-main, .btn-sub {
        padding: .75rem 1rem;
    }
}



.arrow__bt::after {
    transform: translateY(-50%) rotate(135deg);
}

/* ----button-underline---- */
.btn-under {
    text-decoration: underline;
    text-underline-offset: 4px;
    position: relative;
}

.btn-under.arrow_left {
    padding-left: 1rem;
}

.btn-under.arrow_left::before {
    left: 0;
    transform: rotate(225deg);
}

.btn-under-line {
    display: inline-block;
    position: relative;
}

.btn-under-line:before {
    background-color: #1C1C1C;
    bottom: -0.2em;
    content: "";
    display: block;
    height: 2px;
    left: 0px;
    position: absolute;
    width: 100%;
}

.btn-under-line:after {
    background-color: var(--main);
    transition: all ease-in 0.2s;
    bottom: -0.2em;
    content: "";
    display: block;
    height: 2px;
    left: 0px;
    position: absolute;
    width: 0%;
}

.btn-under-line:hover {
    color: var(--main);
    transition: all ease-in 0.2s;
}

.btn-under-line:hover:after {
    transition: all ease-in 0.2s;
    width: 100%;
}

.btn__box {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn__box>* {
    margin: 3rem 0;
}

@media screen and (max-width: 768px) {
    .btn__box {
        flex-direction: column;
    }

    .btn__box>* {
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .btn__box>*:not(:last-child) {
        margin-bottom: 0rem;
    }

    .btn__box>*:last-child {
        margin-top: 0rem;
    }
}

/* ----view site btn---- */
.visit-site-btn {
    position: relative;
    padding: .5rem 0;
    display: inline-block;
    text-decoration: none;
    outline: none;
}

.visit-site-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background: #333;
}

.visit-site-btn::before {
    animation: viewarrow 2s ease infinite;
}

@keyframes viewarrow {
    0% {
        width: 0;
        opacity: 0
    }

    20% {
        width: 0;
        opacity: 1
    }

    80% {
        width: 105%;
        opacity: 1
    }

    100% {
        width: 105%;
        opacity: 0
    }
}

.view.under-line {
    display: inline-block;
    padding-bottom: 4px;
    position: relative;
    z-index: 100;
}

.view.under-line.on::after {
    background: linear-gradient(transparent 0%, var(--main) 0%);
    bottom: 27%;
    opacity: .6;
    content: '';
    display: inline;
    height: 10px;
    left: 0;
    position: absolute;
    width: 0;
    z-index: -1;
}

.view.under-line.on::after {
    width: 100%;
    animation: under-line 1s ease both;
}

@keyframes under-line {
    0% {
        width: 0;
        transform: translate(0, 0);
    }

    100% {
        width: 100%;
        transform: translate(0, 0);
    }
}

/* ----button-border----- */
.btn-border {
    position: relative;
    padding-right: 30px;
    padding-bottom: 7px;
}

.btn-border::before {
    content: "";
    position: absolute;
    background: #000;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
}

.btn-border:hover::before {
    transition: all .5s;
    width: calc(100% - 15px);
}

/* ----border---- */
.border {
    border: 1px solid;
}

.border-top-W {
    border-top: #e3dbd0 1px solid;
}

.border-top-B {
    border-top: #1C1C1C 1px solid;
}

.border-bt-B {
    border-bottom: #1C1C1C 1px solid;
}

.border-bt-W {
    border-bottom: #f1ede8 1px solid;
}

.border-bt-O {
    border-bottom: var(--main) 1px solid;
}

.border-line {
    padding-bottom: 1px;
    display: inline;
    background: linear-gradient(transparent 60%, rgb(242, 117, 32, .4) 0%);
}

.bd-rd {
    border-radius: 5px;
}

/* ----flexbox---- */
.flex {
    display: block;
}

.fl,
.col_2,
.col_3,
.col_1_3,
.col_1_4,
.col_2_3,
.col_2_4,
.col_3_5 {
    display: flex;
    flex-flow: row wrap;
}

.col_1,
.col_1_2 {
    display: block;
}

.col_1>* {
    display: block;
    width: 100%;
}

.col_1_2>* {
    flex-basis: 100%;
}

.col_right>*:last-child {
    flex-basis: calc(75% - .9rem);
}

.col_3>* {
    flex-basis: calc(100% / 3 - .8rem);
}

.col_2_3>*,
.col_2_4>* {
    flex-basis: calc(100% / 2 - .5rem);
    margin-bottom: 1rem;
}

.col_3_5>* {
    flex-basis: calc(100% / 3 - .8rem);
    margin-bottom: 1rem;
}

/* .col_1_2>*:not(:last-child),
.col_2_3>*:not(:last-child),
.col_2_4>*:not(:last-child),
.col_3_5>*:not(:last-child) {
    margin-bottom: 3rem;
} */

.cols>* {
    width: 100%;
    min-width: 0;
}

.col-25 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-40 {
    flex: 0 0 40%;
    max-width: 40%;
}

.col-45 {
    flex: 0 0 45%;
    max-width: 45%;
}

.col-50 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-65 {
    flex: 0 0 65%;
    max-width: 65%;
}


.gap_1 {
    gap: 1.5rem;
}

.gap_2 {
    gap: 2rem;
}

.gap_3 {
    gap: 3rem;
}

.fld-clm {
    flex-direction: column;
}

.reverse>*:last-child {
    order: -1;
}

@media screen and (min-width: 768px) {
    .col_1_2 {
        display: flex;
        justify-content: space-between;
    }

    .col_1_2>* {
        flex-basis: calc(100% / 2 - .8rem);
    }

    .col_1_3>* {
        flex-basis: calc(100% / 2 - 1.2rem);
        margin-bottom: 0;
    }

    .col_1_4>* {
        flex-basis: calc(100% / 2 - 1.2rem);
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1200px) {
    .flex {
        display: flex;
    }

    .col_1_3>* {
        flex-basis: calc(100% / 3 - 1.5rem);
        margin-bottom: 0;
    }

    .col_1_4>* {
        flex-basis: calc(100% / 4 - 1.2rem);
        margin-bottom: 0;
    }

    .col_right>*:last-child {
        flex-basis: calc(80% - .9rem);
    }

    .col_2_3>* {
        flex-basis: calc(100% / 3 - 2rem);
        margin-bottom: 0;
    }

    .col_2_4>* {
        flex-basis: calc(100% / 4 - 1.5rem);
        margin-bottom: 0;
    }

    .col_3_5>* {
        flex-basis: calc(100% / 5 - .5rem);
        margin-bottom: 0;
    }
}

.jf_fs {
    justify-content: flex-start;
}

.jf_sb {
    justify-content: space-between;
}

.jf_c {
    justify-content: center;
}

.jf_e {
    justify-content: space-evenly;
}

.jf_fe {
    justify-content: flex-end;
}

.item-c {
    align-items: center;
}

/* ----grid-layout---- */
.grid,
.grid_1_2,
.grid_1_3,
.grid_3,
.grid_4,
.grid_1_4,
.grid_2_4,
.grid_2_3 {
    display: grid;
}

.grid_1_2 {
    grid-template-columns: 1fr;
}

.grid_2_4, .grid_2_3 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 1rem;
}

.grid_3 {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

.grid_4 {
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (min-width:600px) {
    .grid_1_2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid_1_3, .grid_2_3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid_1_4, .grid_2_4 {
        grid-template-columns: repeat(4, 1fr);
    }
}


/*====================================*/
/* page contents */
/*====================================*/

/* ----scroll-effect---- */
/* ledt */
#top-page .top-view .bg-texts.js-move.move .bg-text02,
#top-page .top-view .bg-texts.js-move.move .bg-text03 {
    opacity: 0;
    transform: translateX(-100%);
    transition: all ease-in 0.5s;
}

/* right */
#top-page .top-view .bg-texts.js-move.move .bg-text01 {
    opacity: 0;
    transform: translateX(100%);
    transition: all ease-in 0.5s;
}

/* top */
.pageIndex .mvSection.--scrolled .imgMainCharacter {
    opacity: 0;
    transform: translateY(-100%);
    transition: all ease-in 0.5s;
}

/* ----content-img-fit---- */
.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.img-bd {
    border: solid .1px #cec6bb;
}

/* -----ここからオリジナルスタイル---- */
#loding {
    background-color: #e3dbd0;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    transition: all ease-out 1s;
    z-index: 1000;
}

#loding.loaded {
    opacity: 0;
    visibility: hidden;
}

#loding .loding-cnt {
    position: relative;
}

#loding .img-loading {
    left: 50%;
    position: fixed;
    top: 46%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: auto;
}

/* ----フェードインアニメーション---- */
.view.view-fix,
.view.view-slideup,
.view.view-slidedown,
.view.view-slidein-L,
.view.view-slidein-R {
    opacity: 0;
}

.view.view-fix.on {
    opacity: 1;
    animation: view-fix 1s ease both;
}

.view.view-slideup.on {
    opacity: 1;
    animation: view-slideup 1s ease both;
}

.view.view-slidedown.on {
    opacity: 1;
    animation: view-slidedown 1s ease both;
}

.view.view-slidein-L.on {
    opacity: 1;
    animation: view-slidein-L 1s ease both;
}

.view.view-slidein-R.on {
    opacity: 1;
    animation: view-slidein-R 1s ease both;
}

@keyframes view-fix {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes view-slideup {
    0% {
        opacity: 0;
        transform: translate(0, 35px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes view-slidedown {
    0% {
        opacity: 0;
        transform: translate(0, -35px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes view-slidein-L {
    0% {
        opacity: 0;
        transform: translate(-35px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes view-slidein-R {
    0% {
        opacity: 0;
        transform: translate(35px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.typ {
    opacity: 0;
}

.typ span {
    opacity: 0;
}

/* フォント */
.fnt-num-b {
    font-family: "Vidaloka", serif;
    font-style: normal;
    font-weight: 700;
}

.fnt-pen-hand {
    font-family: 'Italianno';
    color: var(--sub);
    font-style: normal;
}

.fnt-en {
    font-family: "Jost";
    font-weight: 400;
    font-style: normal;
}

.fnt-en-b {
    font-family: sofia-pro, sans-serif;
    font-weight: 600;
    font-style: normal;
}

/* ----スクロールを促す---- */
.scrolldown {
    position: absolute;
    right: 7%;
    top: 1%;
    height: 100px;
}

.scrolldown span {
    position: absolute;
    left: -7px;
    bottom: 50px;
    color: #1C1C1C;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
}

.scrolldown::after {
    content: "";
    position: absolute;
    right: 2%;
    bottom: -1%;
    width: 1.2px;
    height: 44px;
    background-image: linear-gradient(-180deg, transparent, black 50%, transparent 50%, transparent);
    background-repeat: no-repeat;
    background-size: 100% 200%;
    animation-name: scroll-down;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-delay: 0.7s;
    animation-iteration-count: infinite;
    animation-fill-mode: backwards;
}

@keyframes scroll-down {
    0% {
        background-position: 0 100%;
    }

    50% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 -100%;
    }
}

/*====================================*/
/* header */
/*====================================*/
/*　上に上がる動き　*/
.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

/*　下に下がる動き　*/
.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header .nav__item::before {
    content: none;
}

#header {
    position: fixed;
    width: 100%;
    z-index: 5;
    transition: 0.2s;
}

#header.change-style {
    background-color: #003964;
    top: 0;
}

.header__logo {
    width: 250px;
    transition: ease .6s;
}

@media screen and (max-width: 767px) {
    .header__logo {
        opacity: 0;
        position: relative;
        visibility: hidden;
        z-index: 10000;
        margin-right: auto;
    }

    .header__logo.active {
        opacity: 1;
        visibility: unset;
    }
}

.header__logo img {
    width: 100%;
}

/* ヘッダー */
#header {
    width: 100%;
    /* height: 100%; */
    position: fixed;
    top: 0rem;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0 8rem;
}

@media screen and (max-width: 767px) {
    #header {
        top: 0rem;
        padding: inherit;
    }
}

.header__inner {
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: end;
    position: relative;
    margin: 0 auto;
    justify-content: space-between;
    height: initial;
    width: initial;
    padding: 1rem 1.2rem 1rem 2.5rem;
    border-radius: 50px;
}

@media screen and (max-width:959px) {
    .header__inner {
        justify-content: end;
        background-color: inherit;
        padding: 1rem 1.2rem 1rem 1.2rem;
        box-shadow: initial;
    }
}

/* ヘッダーのロゴ部分 */

.header__title {
    width: 80px;
}

@media screen and (min-width:960px) {
    .header__title {
        width: 120px;
    }
}

.header__title img {
    display: block;
    width: 100%;
    height: 100%;
}


/* ヘッダーのナビ部分 */
.header__nav {
    position: absolute;
    right: -8rem;
    top: 0;
    width: 100%;
    height: auto;
    transform: translateX(100%);
    background-color: #fff;
    box-shadow: 0px 0px 15px -5px rgb(51 51 51 / 50%);
    transition: ease .4s;
    z-index: 1000;
}

@media screen and (min-width:960px) {
    .header__nav {
        position: static;
        transform: initial;
        box-shadow: initial;
        background-color: inherit;
        height: inherit;
        /* display: flex; */
        justify-content: center;
    }

    .header__inner {
        padding-left: initial;
        padding-right: initial;
        gap: .5rem;
    }
}

@media screen and (min-width:960px) {
    .nav__list {
        display: flex;
        align-items: center;
        height: initial;
        /* gap: 1.5rem; */
    }
}

@media screen and (min-width:1440px) {
    .nav__list {
        /* gap: 1.5rem; */
    }
}

.nav__list {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
}

@media screen and (max-width:959px) {
    .nav__list {
        position: static;
        transform: inherit;
        padding: 0;
        margin-bottom: 1.5rem;
    }
}

@media screen and (min-width:960px) {
    .nav__list {
        position: inherit;
        transform: translate(0, 0);
        margin-bottom: 1rem;
    }
}

.sub__nav .nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ナビのリンク */
.nav__item {
    border-bottom: none !important;
    width: 140px;
}

.nav__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: .25rem; */
}

.nav__item a span.fnt-en {
    color: var(--txt-bl);
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: initial;
    font-family: inherit;
}

@media screen and (max-width:959px) {
    .nav__item {
        width: 100%;
    }
}

.nav__item::after {
    content: none;
}

.nav__item>a::before {
    content: none;
}

.nav__item a {
    width: 100%;
    display: block;
    white-space: nowrap;
}

header .nav__item>a {
    position: relative;
    padding: initial;
    margin-bottom: 1rem;
    /* padding-left: 1rem; */
    display: flex;
    align-items: center;
    height: initial;
    font-size: 1rem;
    text-align: left;
    text-shadow: 0 0px 3px #ffffff;
}

@media screen and (max-width:959px) {
    header .nav__item:not(:last-child)>a {
        padding-left: 0;
        padding-bottom: 1rem;
        border-bottom: var(--wht-gray) solid 2px;
    }

    header .nav__item:not(:last-child)>a::before {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        transform: translateY(2px);
        width: 100%;
        height: .5px;
        background-color: var(--main);
    }
}

header .nav__item>li:last-child>a {
    margin-bottom: initial;
}

.nav__item.contact {
    cursor: pointer;
    text-align: center;
    background: var(--main);
    border-radius: 50px;
}

@media screen and (max-width:959px) {
    .nav__item.contact {
        width: 100%;
        max-width: 320px;
        margin: auto;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        color: var(--white);
    }
}

.nav__item.contact>a {
    color: var(--white);
    border-left: initial;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: .4rem;
    padding: .7rem 0rem;
    margin-bottom: initial;
}

@media screen and (max-width:959px) {
    .nav__item.contact>a {
        display: none;
    }
}

.nav__item.contact>a>.icn {
    width: 20px;
    height: auto;
}

.nav__item .logo-box {
    width: 112px;
}

.nav__item .logo-box h1 {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

/* スマホ時、メニュー外に移動したロゴのスタイル */
.mobile-logo-box {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    width: 80px;
}

.mobile-logo-box .logo-box {
    width: 100%;
}

.mobile-logo-box .logo-box img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-logo-box .logo-box h1 {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

@media screen and (min-width:960px) {
    .nav__item {
        width: initial;
        margin: auto;
        text-align: center;
    }

    .nav__item>a {
        padding: initial;
        margin-bottom: 2rem;
        padding-left: initial;
        border-left: initial;
    }

    header .nav__item>a {
        border-left: none;
        margin-bottom: initial;
        font-size: .85rem;
    }

    .nav__item.contact>a {
        padding: rem 1.5rem;
    }

    .nav__item.contact>a>.icn {
        width: 28px;
    }

    .nav__item.contact {
        position: relative;
        width: 140px;
        display: flex;
        height: 100%;
    }

    .nav__item>a {
        margin-bottom: 0;
        border-bottom: 0;
    }
}

@media screen and (min-width:1600px) {
    .nav__item a {
        font-size: 1rem;
    }
}

.sub__nav .nav__item {
    width: 170px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: initial;
}

.sub__nav .nav__item.instagram {
    background: var(--main);
}

.sub__nav .nav__item.line {
    background: #4AAD31;
}

.sub__nav .nav__item .sub__nav__link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: .5rem;
    color: var(--white);
    padding-bottom: initial;
    text-shadow: initial;
}

@media screen and (max-width: 959px) {
    .sub__nav {
        width: 100%;
        height: 100%;
        z-index: 9999;
    }

    .sub__nav .nav__list {
        position: static;
        transform: inherit;
        padding: 0;
    }

    .sub__nav .nav__item {
        width: 100%;
    }

    .sub__nav .nav__item .sub__nav__link {
        margin-bottom: initial;
    }
}

.sub__nav .nav__item .icn__box svg {
    width: 100%;
    height: 100%;
}

/* ハンバーガーメニュー */
.header__hamburger {
    width: 22px;
    height: 100%;
}

.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
}

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

@media screen and (max-width:959px) {
    .hamburger {
        position: relative;
        margin-right: .5rem;
        margin-top: .5rem;
    }

    .hamburger::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 44px;
        height: 44px;
        background-color: var(--white);
        border-radius: 50px;
    }
}

/* ハンバーガーメニューの線 */
.hamburger span {
    width: 100%;
    border-radius: 2px;
    background-color: var(--main);
    position: relative;
    transition: ease .4s;
    display: block;
    height: 3px;
}

.hamburger.active span {
    background-color: var(--main);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    margin: 5px 0px;
}

.hamburger span:nth-child(3) {
    top: 0;
    width: 12px;
    margin-left: auto;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
    transform: translateX(0);
    right: 0rem;
}

@media screen and (max-width:959px) {
    .header__nav {
        display: block;
        padding: 3rem 1.1rem 1.5rem;
        border-radius: 0 0 30px 30px;
    }
}

.hamburger.active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    top: -10px;
    transform: rotate(-45deg);
    width: 100%;
}

.overlay {
    background-color: #000;
    cursor: pointer;
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.4s;
    visibility: hidden;
    width: 100vw;
    z-index: 1;
}

@media screen and (max-width:768px) {
    .overlay.active {
        visibility: visible;
        opacity: .4;
    }
}

@media screen and (max-width: 1200px) {
    .nav__item {
        display: flex;
    }
}

.wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.side-nav {
    animation: animationsideNav 1s 0s ease-out 1 normal;
    background-color: var(--white);
    animation-fill-mode: both;
    position: fixed;
    max-width: 144px;
    width: 10%;
    z-index: 999;
}

#top-page .side-nav {
    position: sticky;
    left: 0px;
    top: 0px;
}

#top-page .fix {
    position: fixed;
}



/*====================================*/
/* footer  */
/*====================================*/
footer {
    margin-left: auto;
}

.ft-cnt-logo h3 {
    max-width: 150px;
    margin: auto;
}

footer .btn.btn-2 {
    margin: initial;
    max-width: 960px;
    width: 90%;
}

.ft-cnt-btn li {
    margin-bottom: .1rem;
}

.ft-cnt-btn li:first-child {
    border-radius: 5px 5px 0 0;
}

.ft-cnt-btn li:last-child {
    border-radius: 0 0 5px 5px;
}

.ft-cnt-btn li a {
    display: inline-block;
    width: 100%;
}

.ft-cnt-btn li h3 {
    position: relative;
}

.ft-cnt-btn li h3::after {
    content: "";
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    width: 1px;
    height: 20px;
}

.fr-cnt {
    padding-top: 2rem;
}

.ft-cnt-nav {
    position: relative;
}

.contact.btn-line:hover {
    background-color: #f1ede8;
    color: #1C1C1C;
}

.contact::before {
    content: "";
    position: absolute;
    background: url('data:image/svg+xml;utf-8,<svg fill="%23f1ede8" xmlns="http://www.w3.org/2000/svg" width="25.4mm" height="17.42mm" viewBox="0 0 72 49.37"><path d="m0,0v49.37h72V0H0Zm43.57,23.84l-7.07,6.37L5.51,3.09h61.07l-23.01,20.75h0Zm-16.78,1.97L3.09,44.63V5.07l23.7,20.74Zm2.36,2.07l7.38,6.46,7.13-6.43,22.47,18.38H5.96l23.18-18.41Zm16.84-2.06l22.93-20.68v39.44l-22.93-18.76Z" /></svg>') no-repeat center / contain;
    left: 25px;
    width: 25px;
    height: 25px;
    text-align: left;
}

.contact:hover::before {
    background: url('data:image/svg+xml;utf-8,<svg fill="%231C1C1C" xmlns="http://www.w3.org/2000/svg" width="25.4mm" height="17.42mm" viewBox="0 0 72 49.37"><path d="m0,0v49.37h72V0H0Zm43.57,23.84l-7.07,6.37L5.51,3.09h61.07l-23.01,20.75h0Zm-16.78,1.97L3.09,44.63V5.07l23.7,20.74Zm2.36,2.07l7.38,6.46,7.13-6.43,22.47,18.38H5.96l23.18-18.41Zm16.84-2.06l22.93-20.68v39.44l-22.93-18.76Z" /></svg>') no-repeat center / contain;
}

/*====================================*/
/* テンプレートコーディング タイトルパーツA */
/*====================================*/
.ttl__A {
    font-size: 2.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 3rem;
}

.ttl__A>* {
    font-size: 1rem;
}

.bubble__ttl {
    margin-bottom: 3rem;
}

.bubble__ttl .ttl {
    position: relative;
    background-color: var(--main);
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--white);
    border-radius: 8px;
    padding: 1rem 0;
}

.bubble__ttl .ttl::after {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 18px solid transparent;
    border-left: 18px solid transparent;
    border-top: 1rem solid var(--main);
    border-bottom: 0;
}

@media screen and (min-width: 768px) {
    .bubble__ttl .ttl {
        font-size: 1.2rem;
    }
}

.main__ttl__box {
    margin-bottom: 2rem;
    width: fit-content;
}

.main__ttl {
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--sub);
    margin-bottom: 1rem;
}

.main__ttl::after {
    content: "";
    position: absolute;
    background-color: var(--sub);
    width: 120%;
    height: .15rem;
    bottom: -.5rem;
}

.main__ttl::before {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    right: -2rem;
    width: 2rem;
    height: 2rem;
    background: url(./img/rian-ttl-icn.svg) no-repeat left top / 100% auto;
    transform: translate(25%, calc(50% - 1.05rem));
}

.main__ttl .sub__ttl {
    font-size: 1.2rem;
    color: var(--txt-bl);
    display: inline-block;
}

.lower__ttl {
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--main);
}

.lower__ttl::after {
    position: absolute;
    content: "";
    background-color: var(--main);
    width: .125rem;
    height: 2rem;
    top: -2rem;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*====================================*/
/* テンプレートコーディング mv__Aパターン */
/*====================================*/
.mv-cnt {
    position: relative;
}

#mv__A .main-ttl {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

#mv__A .mv-txt__box {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translate(-50%, 0%);
    background: var(--white);
    color: var(--main);
    border-radius: 4px;
    width: max-content;
    z-index: 1;
    padding: 1rem 1.5rem;
}

#mv__A .mv-txt__box .ttl, #mv__A .mv-txt__box .txt {
    color: var(--white);
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
}

#mv__A .mv-txt__box .ttl {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 767px) {
    #mv__A .mv-txt__box {
        padding: 1rem;
        bottom: -4rem;
        /* width: 100%; */
    }

    #mv__A .mv-txt__box .ttl {
        font-size: 2rem;
    }
}

#mv__A .mv-txt__box .txt {
    font-size: 1.2rem;
    text-align: center;
    color: var(--main);
}

#mv__A .mv__box {
    background: url(./img/top-mv-bg01.jpg) no-repeat center;
    background-size: cover;
    min-height: 100svh;
    position: relative;
    background: linear-gradient(0deg, rgba(148, 184, 197, 0.60) 0%, rgba(148, 184, 197, 0.60) 100%), url(./img/top-mv-bg01.jpg) no-repeat center;
    backdrop-filter: blur(102px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
}

#mv__A .mv__box .left__box {
    position: relative;
    border-radius: 4px;
    background: var(--main);
    border-radius: 4px;
    padding: 2.5rem 3rem 5.5rem;
    outline-offset: -8px;
    z-index: 2;
}

#mv__A .mv__box .left__box::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    border: 1px solid var(--white);
    border-radius: 12px 2px 2px 2px;
}

#mv__A .mv__box .right__box {
    width: 440px;
}

@media screen and (max-width: 767px) {
    #mv__A .mv__box {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 1rem;
    }

    #mv__A .mv__box .right__box {
        order: -1;
    }

    #mv__A .mv__box .right__box {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 290px;
    }

    #mv__A .mv__box .left__box {
        padding: 1.75rem 2rem 2.5rem;
        margin-top: -4rem;
    }

    #mv__A .mv-txt__box .txt {
        font-size: 1rem;
    }
}

.img__frame img {
    border-radius: 1000px 1000px 0 0;
}

.img__frame {
    position: relative;
    height: fit-content;
}

.img__frame::after {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    border: 1px solid var(--sub);
    border-radius: 1000px 1000px 2px 2px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
}

#mv__A .mv__box .logo__box {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 4px solid var(--main);
    border-right: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
    border-left: 8px solid var(--main);
    background: var(--white);
    width: 100px;
    height: 100px;
    position: absolute;
    top: -1.5rem;
    left: 0rem;
    box-shadow: 0 4px 10px 5px rgb(0 0 0 / 12%);
}

@media screen and (min-width: 768px) {
    #mv__A .mv__box {
        background-size: cover;
    }
}

#mv__A .mv-ttl__box {
    position: relative;
    color: var(--white);
    text-align: center;
}

#mv__A .mv-ttl__box .ttl {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

#mv__A .mv-ttl__box .txt {
    font-size: 1.5rem;
}

#mv__A .mv-ttl__box .txt .shop-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin-left: 1rem;
}

#mv__A .mv-ttl__box .icn01 {
    display: inline-block;
    position: absolute;
    width: 80px;
    top: calc(-2.5rem - 80px / 2);
    left: calc(-3rem - 80px / 2);
}

#mv__A .mv-ttl__box .icn02 {
    display: inline-block;
    position: absolute;
    width: 32px;
    top: -1rem;
    left: -1.75rem;
}

#mv__A .right__box .icn {
    position: absolute;
    width: 125px;
    top: 0;
    right: 0;
    border-radius: initial !important;
}

@media screen and (max-width: 768px) {
    #mv__A .mv-ttl__box .txt {
        font-size: 1.25rem;
    }

    #mv__A .mv-ttl__box .ttl {
        font-size: 1.5rem;
        margin-bottom: .5rem;
    }

    #mv__A .mv-ttl__box .icn01 {
        width: 48px;
        top: calc(-1.75rem - 48px / 2);
        left: calc(-2rem - 48px / 2);
    }

    #mv__A .mv-ttl__box .icn02 {
        display: inline-block;
        position: absolute;
        width: 24px;
        top: -1rem;
        left: -1.5rem;
    }

    #mv__A .mv-ttl__box .txt .shop-name {
        font-size: 1.75rem;
    }
}

/*====================================*/
/* テンプレートコーディング top__service__A-01パターン */
/*====================================*/
#top__service__A-01 .ttl {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

#top__service__A-01 .sub__txt {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

#top__service__A-01 .service__item {
    margin-bottom: 3rem;
}

#top__service__A-01 .service__item .img__box {
    margin-bottom: 1rem;
}

#top__service__A-01 .service__item .ttl {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about__box {
    position: relative;
    display: flex;
    gap: 3.25rem;
}

.about__box .left__box {
    width: calc(100% / 1);
}

.about__box .right__box {
    width: 100vw;
    margin-right: calc(50% - 50vw);
}

.about__box .right__box .sub__img__box {
    display: flex;
    gap: 1rem;
    margin-left: calc(50% - 50vw);
    margin-top: -2rem;
    transform: translate(-10rem, 0);
}

#top__service__A-01 .sub__img__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 2rem;
    margin-left: auto;
    margin-right: calc(50% - 50vw);
    margin-top: 3rem;
}

#top__service__A-01 .sub__img__box .left__img {
    object-fit: cover;
    margin-bottom: 0;
    width: 400px;
    margin-left: auto;
}

#top__service__A-01 .sub__img__box .right__img {
    object-fit: cover;
    margin-top: -12rem;
    z-index: 2;
    width: 500px;
}

#top__service__A-01 .sub__img__box .left__img img,
#top__service__A-01 .sub__img__box .right__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#top__service__A-01 img {
    border-radius: 32px 0;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 768px) {
    .about__box {
        flex-direction: column;
    }

    .about__box .right__box {
        width: initial;
        margin-right: initial;
    }

    #top__service__A-01 .main__img__box {
        margin-top: 1rem;
    }

    #top__service__A-01 .sub__img__box {
        gap: 1rem;
        margin-right: initial;
        margin-top: 1rem;
    }

    #top__service__A-01 .sub__img__box .right__img {
        margin-top: initial;
    }
}

/*====================================*/
/* テンプレートコーディング top__concept_A-01パターン */
/*====================================*/
#top__concept_A-01 {
    z-index: 1;
    position: relative;
    background: url(./img/bg01.png) no-repeat center center / cover;
}

#top__concept_A-01 .inner {
    max-width: 1200px;
}

#top__concept_A-01 .concept__box {
    display: flex;
    gap: 3rem;
}

#top__concept_A-01 .concept__box .left__box {
    width: 38%;
}

#top__concept_A-01 .concept__box .right__box {
    position: relative;
    display: flex;
    align-items: end;
    width: 62%;
    gap: 2.5rem;
}

#top__concept_A-01 .concept__box .right__box .concept__txt .ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
}

#top__concept_A-01 .right__box .concept__txt__box {
    width: 60%;
}

#top__concept_A-01 .right__box .concept__img__box--02 {
    position: relative;
    width: 40%;
}

.concept__img__box--02 .fnt-pen-hand {
    position: absolute;
    top: -3.5rem;
    left: -3rem;
    transform: rotate(-10deg);
    font-size: 3.5rem;
}

@media screen and (max-width: 768px) {
    #top__concept_A-01 .concept__box {
        flex-direction: column;
    }

    #top__concept_A-01 .right__box .concept__txt__box {
        width: 100%;
    }

    #top__concept_A-01 .concept__box .left__box {
        position: relative;
        z-index: 3;
        width: 100%;
    }

    #top__concept_A-01 .concept__box .right__box {
        width: 100%;
        order: -1;
    }

    #top__concept_A-01 .right__box .concept__img__box--02 {
        position: relative;
        width: 50%;
        z-index: -1;
        order: -1;
        margin-bottom: -12rem;
    }

    #top__concept_A-01 .concept__box .right__box {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    #top__concept_A-01 .concept__img__box--01.img__frame {
        max-width: 280px;
        margin: auto;
    }
}

/*====================================*/
/* テンプレートコーディング top__reson__A-01パターン */
/*====================================*/
#top__reson__A-01 {
    background: var(--main);
}

#top__reson__A-01 .main__ttl__box {
    color: var(--white);
}

#top__reson__A-01 .main__ttl {
    color: var(--white);
}

#top__reson__A-01 .main__ttl::after {
    background: var(--white);
}

#top__reson__A-01 .menu__box {
    gap: 4rem;
}

#top__reson__A-01 .menu__box .menu__item:nth-child(2n) {
    margin-top: -5rem;
}

#top__reson__A-01 .num__box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: var(--sub);
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border-radius: 100%;
}

#top__reson__A-01 .num__box::before {
    content: "Reason";
    font-family: "Italianno";
    -webkit-text-stroke: 4px var(--white);
    text-stroke: 4px var(--white);
    paint-order: stroke;
    white-space: nowrap;
    font-size: 2rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: rotate(-10deg) translate(-50%, -50%);
}

#top__reson__A-01 .num {
    font-family: "Jost";
}

#top__reson__A-01 .reason__txt__box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

#top__reson__A-01 .right__box .txt__box {
    width: 100%;
}

#top__reson__A-01 .menu__item .reason__img__box {
    margin-bottom: 2rem;
}

#top__reson__A-01 .menu__item .right__box {
    color: var(--white);
}

#top__reson__A-01 .menu__item .right__box .ttl {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#top__reson__A-01 .main__ttl::before {
    background: url(./img/rian-icn.svg) no-repeat left top / 100% auto;
}

@media screen and (max-width: 768px) {
    #top__reson__A-01 .num__box {
        width: 75px;
        height: 75px;
    }

    #top__reson__A-01 .menu__box .menu__item:nth-child(2n) {
        margin-top: initial;
    }
}

/*====================================*/
/* テンプレートコーディング top__plan__price__A-01 */
/*====================================*/
.menu__price__item {
    z-index: 1;
    position: relative;
    background: url(./img/bg01.png) no-repeat center center / cover;
}

.menu__price__item:has(+ .menu__price__item) {
    margin-bottom: 8rem;
}

.menu__price__ttl {
    text-align: center;
    margin-bottom: 4rem;
}

.menu__price__ttl .en-ttl {
    font-family: "Italianno";
    font-size: 5rem;
    color: var(--sub);
    opacity: 0.3;
    margin-bottom: -4rem;
}

.menu__price__ttl .ja-ttl {
    font-size: 2rem;
    font-weight: bold;
}

.menu__price__ttl .ja-ttl .small {
    font-size: 1.5rem;
}

.menu__price__item {
    position: relative;
    background: var(--white);
    padding: 2rem 4rem;
}

.menu__price__item__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .menu__price__ttl {
        margin-bottom: 6rem;
    }
    .menu__price__ttl .ja-ttl {
        font-size: 1.5rem;
    }

    .menu__price__item {
        padding: 2rem 1rem;
    }
    
    .menu__price__item .menu__price__ttl {
        margin-bottom: 6.5rem;
    }

    .menu__price__item .ja-ttl {
        font-size: 1.5rem;
    }

    .menu__price__item__box {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
    }
}

.menu__price__item.--blue {
    background: var(--main);
}

.menu__price__item::before {
    display: inline-block;
    color: var(--white);
    position: absolute;
    top: -3rem;
    left: -.5rem;
    padding: .5rem 1rem;
}

.menu__price__item.--new::before {
    content: "ご新規様限定";
    background: var(--sub);

}

.menu__price__item.--line::before {
    content: "LINE予約限定メニュー";
    background: #06C755;
    color: var(--white);
}

.menu__price__item.--each::before {
    content: "都度払い";
    background: var(--main);
    color: var(--white);
}

.menu__price__item .menu__price__txt__box .ttl {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
}

.menu__price__item.--blue .menu__price__txt__box .ttl {
    color: var(--white);
}

.menu__price__item .menu__cat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.menu__price__item .menu__cat .menu__cat__item {
    position: relative;
    background: var(--white);
    color: var(--main);
    padding: .5rem 1rem .5rem 2rem;
    border: 1px solid var(--txt-bl);
    color: var(--txt-bl);
    font-weight: bold;
}

.menu__price__item .menu__cat .menu__cat__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.25rem;
    width: .5rem;
    height: .5rem;
    background: var(--main);
    border-radius: 100%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .menu__price__item .menu__price__txt__box .ttl {
        font-size: 1.25rem;
    }

    .menu__price__item .menu__cat .menu__cat__item {
        padding: .25rem .5rem .5rem 1.75rem;
    }

    .menu__price__item .menu__cat .menu__cat__item::before {
        left: 1rem;
    }
}

.menu__price__item::after {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    border: 1px solid var(--sub);
}

.menu__price__item.--each::after {
    border: 1px solid var(--main);
}

.menu__price__item.--line::after {
    border: 1px solid #06C755;
}

.menu__price__item .menu__price__img__box img {
    width: 160px;
    height: 160px;
    border-radius: 8px;
}

.menu__price__item .menu__price__detail__box .ttl {
    position: relative;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: var(--white);
    background: var(--main);
    padding: .25rem 1rem;
    display: inline-block;
}

.menu__price__item.--blue .menu__price__detail__box .ttl {
    background: var(--white);
    color: var(--main);
}

.menu__price__item .menu__price__detail__box .ttl::before {
    content: "";
    position: absolute;
    top: -.25rem;
    right: -.25rem;
    bottom: -.25rem;
    left: -.25rem;
    border: 1px solid var(--main);
}

.menu__price__item.--blue .menu__price__detail__box .ttl::before {
    border: 1px solid var(--white);
}

.menu__price__item .menu__price__detail__box .txt {
    font-size: 1.25rem;
    font-weight: bold;
    margin-left: 1rem;
}

.menu__price__item.--blue .menu__price__detail__box .txt {
    color: var(--white);
}

.menu__price__item .menu__price__detail__box .txt .pickup {
    font-size: 1.75rem;
    font-weight: bold;
}

.menu__price__item .menu__price__txt {
    margin-top: 2rem;
    text-align: center;
}

.menu__price__item.--blue .menu__price__txt {
    color: var(--white);
}

@media (max-width: 768px) {
    .menu__price__item .menu__price__txt {
        text-align: left;
    }

    .menu__btn__box {
        margin-top: 2rem;
    }
}

/* ==================================== */
/* テンプレートコーディング top__features__A-01パターン */
/* ==================================== */
#top__features__A-01 {
    position: relative;
}

#top__features__A-01::before {
    content: "";
    position: absolute;
    background: url(./img/bg02.png) no-repeat center center / cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 468px;
    z-index: 0;
}

#top__features__A-01 .main__ttl__box {
    position: relative;
    z-index: 1;
}

#top__features__A-01 .main__ttl__box::before {
    position: absolute;
    content: "";
    background: rgb(255 255 255 / 60%);
    filter: blur(1rem);
    height: 160%;
    width: 170%;
    border-radius: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

#top__features__A-01 .sub__ttl {
    color: var(--sub);
}

#top__features__A-01 .features__item {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25), 4px 4px 8px 0 rgba(40, 40, 40, 0.16);
    border-radius: 1000px 1000px 0 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

#top__features__A-01 .features__item .features__img__box.img__frame::after {
    content: none;
}

#top__features__A-01 .features__item .features__txt__box {
    background: var(--sub);
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#top__features__A-01 .features__item .features__txt__box .ttl {
    color: var(--white);
    font-family: "";
    margin-bottom: .5rem;
}

#top__features__A-01 .features__item .features__txt__box .txt {
    font-size: 1rem;
}

#top__features__A-01 .features__list {
    gap: 2rem;
}

@media screen and (max-width: 768px) {
    #top__features__A-01 .features__list {
        gap: 1rem;
    }
}

/*====================================*/
/* cv__ft */
/*====================================*/
#cv__ft .cv-txt__box {
    position: relative;
    color: var(--white);
    text-align: center;
    background-color: var(--main);
}

#cv__ft .cv-txt__box::after {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 3rem solid transparent;
    border-left: 3rem solid transparent;
    border-top: 2rem solid var(--main);
    border-bottom: 0;
    z-index: 1;
}

#cv__ft .cv-txt__box .ttl {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

#cv__ft .cv__img-wrap {
    position: relative;
    cursor: pointer;
    display: block;
    width: 100%;
}


#cv__ft .img__box {
    width: inherit;
}


#cv__ft .img__box img {
    width: inherit;
    height: auto;
    display: block;
}

#cv__ft .cv__btn {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    background: rgb(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    transition: opacity .4s;
    display: block;
    margin: 0;
    padding: 1.5rem;
    transition: all .3s;
}

#cv__ft .cv__cnt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
}

#cv__ft .cv__cnt .txt__box {
    font-weight: bold;
    font-size: 2rem;
    line-height: 1;
    white-space: nowrap
}

#cv__ft .cv__cnt .txt__box>.small {
    font-size: .8rem;
}

#cv__ft .cv__img-wrap:hover .cv__btn {
    background: rgba(243, 190, 225, 0.6);
}

/* 調整用 */
#cv__ft .cv__box {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 100%;
    width: 100%;
}

#cv__ft .cv__img-wrap .cv__btn .img__box {
    width: 57px;
}

@media screen and (max-width:768px) {
    #cv__ft .cv__btn {
        padding: 2rem 1.1rem;
    }

    #cv__ft .cv__cnt {
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        display: initial;
    }

    #cv__ft .cv__cnt .txt__box {
        font-size: 1.2rem;
    }

    #cv__ft .cv__cnt .img__box {
        font-size: 1.2rem;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -60%);
    }

    #cv__ft .cv__cnt .txt__box>.small {
        font-size: .7rem;
    }

    #cv__ft .cv__box {
        flex-direction: column;
    }

    #cv__ft .cv__img-wrap.demo .cv__btn .img__box {
        width: 42px;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}


/* ==================================== */
/* top__staff__A-01 */
/* ==================================== */
#top__staff__A-01 {
    z-index: 1;
    position: relative;
    background: url(./img/bg01.png) no-repeat center center / cover;
}

#top__staff__A-01 .sub__ttl .small {
    font-size: .8rem;
}

#top__staff__A-01 .staff__box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

#top__staff__A-01 .staff__ttl__box {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}

#top__staff__A-01 .staff__ttl__box .ttl {
    position: relative;
    font-size: 1.5rem;
    font-weight: bold;
}

#top__staff__A-01 .staff__ttl__box .ttl::before {
    content: "Staff";
    font-family: "Italianno";
    font-weight: 100;
    position: absolute;
    font-size: 3.5rem;
    top: -5rem;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--sub);
    transform: rotate(-10deg) translate(0%, -50%);
}

@media screen and (max-width: 768px) {
    #top__staff__A-01 .staff__box {
        flex-direction: column;
    }

    #top__staff__A-01 .staff__img__box {
        max-width: 200px;
        width: 100%;
        margin: 0 auto;
    }

    #top__staff__A-01 .staff__ttl__box {
        flex-direction: column;
        align-items: flex-start;
    }

    #top__staff__A-01 .staff__txt__box {
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }
}

/* ==================================== */
/* top__review__A-01 */
/* ==================================== */
#top__review__A-01 .rate__list {
    display: flex;
    align-items: center;
    gap: .25rem;
}

#top__review__A-01 .rate__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

#top__review__A-01 .review__rate__box {
    position: relative;
    background: var(--main);
    width: fit-content;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: -2.5rem;
}

#top__review__A-01 .review__rate__box::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: -7rem;
    left: 3rem;
    transform: translate(-50%, 0%);
    background: url(./img/rian-reviews-icn.svg) no-repeat center center / 100% auto;
    width: 2rem;
    height: auto;
    z-index: 2;
}

#top__review__A-01 .review__rate__box .plan__ttl {
    color: var(--main);
    background: var(--white);
    padding: .25rem 1rem;
    font-weight: bold;
    border-radius: 8px;
    margin-bottom: .75rem;
}

#top__review__A-01 .review__txt__box {
    border-radius: 32px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
    padding: 4rem 2.5rem 2.5rem;
    margin: 0 2.5rem;
}

#top__review__A-01 .review__item:not(:last-child) {
    margin-bottom: 4rem;
}

#top__review__A-01 .review__item .parson {
    font-weight: bold;
    margin-bottom: 1.5rem;
}

#top__review__A-01 .rate__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

@media screen and (max-width: 768px) {
    #top__review__A-01 .rate__box {}
}

#top__review__A-01 .rate__box .left__box {
    display: flex;
    align-items: center;
    gap: .5rem;
}

#top__review__A-01 .rate__box .left__box .num {
    color: #FFFC99;
}

#top__review__A-01 .rate__box .right__box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#top__review__A-01 .rate__box .right__box a {
    color: var(--white);
    position: relative;
    border-bottom: 1px solid var(--white);
    margin-right: 2rem;
}

#top__review__A-01 .rate__box .right__box a::before {
    content: "";
    position: absolute;
    background: url(./img/rian-icn.svg) no-repeat center center / 100% auto;
    bottom: 0;
    right: -2rem;
    width: 1.5rem;
    height: 1.5rem;
}

@media screen and (max-width: 768px) {
    #top__review__A-01 .review__rate__box {
        width: auto;
    }

    #top__review__A-01 .review__txt__box {
        margin: 0 1rem;
        padding: 5rem 1.5rem 1.5rem;
    }

    #top__review__A-01 .review__rate__box::after {
        bottom: -110%;
        left: 3rem;
        width: 2rem;
    }
}

/*====================================*/
/* ttl__bg__A-01 下層ページタイトル */
/*====================================*/
#ttl__bg__A-01 {
    position: relative;
}

#ttl__bg__A-01 .ttl__cnt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10rem;
    width: 100%;
    max-width: 1080px;
}

@media screen and (max-width:768px) {
    #ttl__bg__A-01 .ttl__cnt {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        transform: translate(-50%, -50%);
    }
}

#ttl__bg__A-01 .ttl__cnt .ttl__box .main {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

#ttl__bg__A-01 .ttl__cnt .ttl__box .sub {
    line-height: 1;
    font-size: 4rem;
    text-shadow: 0 1px 3px #ffffff;
}

#ttl__bg__A-01 .ttl__cnt .img__box {
    max-width: 300px;
    width: 300px;
}

@media screen and (max-width:768px) {
    #ttl__bg__A-01 .ttl__cnt .ttl__box .main {
        font-size: 1.5rem;
    }

    #ttl__bg__A-01 .ttl__cnt .img__box {
        max-width: 120px;
        width: 120px;
        order: -1;
    }
}

#ttl__bg__A-01 {
    position: relative;
}


#ttl__bg__A-01 .img__cnt img {
    object-fit: cover;
    height: 450px;
}

@media screen and (max-width:959px) {
    #ttl__bg__A-01 .img__cnt img {
        object-fit: cover;
        height: 400px;
    }
}

#ttl__bg__A-01::before {
    content: "";
    position: absolute;
    display: block;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75) 100% 360% no-repeat;
}

/*====================================*/
/* price__A-01 */
/*====================================*/
.tab {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.price__tab__buttons {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
    margin-top: -2.25rem;
    z-index: 1;
    padding: 0 1rem;
}

.price__tab__buttons button {
    padding: 1.25rem 0;
    background: none;
    border: none;
    border: 2px solid var(--main);
    background: var(--white);
    color: var(
    --main);
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    max-width: 320px;
    width: 100%;
    text-align: center;
}

.price__tab__buttons button:hover {
    background: var(--white);
}

.price__tab__buttons button.active {
    position: relative;
    border-bottom: 2px solid var(--main);
    color:  var(--white);
    background: var(--main);
}

.price__tab__buttons button.active::after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: url(./img/rian-price-tab-icn.svg) no-repeat center center / 100% auto;
    width: 3rem;
    height: 2rem;
}

.price__tab__contents .content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.price__tab__contents .content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*====================================*/
/* price__A-01 */
/*====================================*/
#recommend .inner {
    position: relative;
    padding-top: 0;
    z-index: 1;
}

.facial {
    position: relative;
    background: url(./img/price-mv-hund.jpg) no-repeat center center / cover;
}

.body {
    position: relative;
    background: url(./img/price-mv-body.jpg) no-repeat center center / cover;
}

.facial::before, .body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75) 100% 360% no-repeat;
    z-index: 1;
}

.price__ttl__box {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 7rem 0;
    margin-bottom: 8rem;
}

.price__ttl__box .fnt-pen-hand {
    font-size: 4rem;
    line-height: 1;
}

.price__ttl__box .price__ttl {
    font-size: 2rem;
    font-weight: bold;
}

.price__tab__box, .plan__price {
    background: #F0EEEB;
}

.plan__price .btn__box {
    padding-bottom: 5rem;
}

/*====================================*/
/* footer */
/*====================================*/
#footer {
    background: var(--main);
    box-shadow: 0 4px 50px 20px rgba(0, 0, 0, 0.05);
    color: var(--white);
}

#footer .inner {
    padding: 1rem 0;
}

#footer .map__box {
    margin-bottom: 2rem;
}

#footer .address__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

#footer .address__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#footer .inner .logo__box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

#footer .inner .logo__box .txt {
    color: var(--main);
    text-align: center;
}

@media screen and (max-width: 767px) {
    #footer .address__box {
        flex-direction: column;
    }

    #footer .detail__box {
        flex-direction: column;
    }
}

#footer .map__box {
    position: relative;
    aspect-ratio: 16 / 6;
    max-width: 1000px;
    width: 100%;
    height: auto;
}

#footer .map__box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#footer .detail__box .detail__list {
    gap: 1rem 0;
}

#footer .right__box .detail__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#footer .right__box .detail__item .ttl {
    border: 2px solid var(--main);
    background: var(--white);
    color: var(--txt-bl);
    font-weight: bold;
    padding: .25rem 0;
    min-width: 110px;
    text-align: center;
}

#footer .copyright {
    color: var(--txt);
    background-color: var(--sub);
}

#footer .copyright .txt {
    padding: .5rem;
    text-align: center;
    font-size: .7rem;
}

#footer .inner .logo__box img {
    width: 100%;
    max-width: 135px;
}

#footer .nav__list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-bottom: 3rem;
    gap: .5rem 0;
    color: var(--white);
}

#footer .nav__list li {
    display: flex;
    list-style-type: none;
    flex-grow: 1;
    text-align: center;
}

@media screen and (max-width: 767px) {
    #footer .nav__list li {
        flex-basis: calc(100% / 2 - .5rem);
        flex-grow: initial;
    }
}

#footer .nav__list li:not(:first-child)::before {
    content: "｜";
    color: var(--white);
}

@media screen and (max-width: 767px) {
    #footer .nav__list li:not(:first-child)::before {
        content: none;
    }

    #footer .nav__list li:not(:first-child):not(:nth-child(3)):not(:nth-child(5))::before {
        content: "｜";
    }
}

#footer .wh-blk {
    background-color: var(--white);
    padding: initial;
    border-radius: 32px 0;
    position: initial;
    bottom: 0;
    right: 8rem;
    max-width: 610px;
    transform: initial;
    box-shadow: initial;
    margin-bottom: 3rem;
    margin-top: initial;
}

#footer .reservation__box {
    padding: 1rem 0 0;
}

#footer .wh-label, .wh-time {
    padding: initial;
}

.reservation__box .tel__box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}