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

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

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

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

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

@font-face {
    font-family: 'ZenKakuGothic';
    src: url('font/ZenKakuGothicNew-Black.ttf') format('opentype');
    font-weight: 900;
    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;
}

:root {
    --main: #008D99;
    --sub: #E29D09;
    --white: #fff;
    --wh-gray: #F6F6F6;
    --gray: #B2B2B2;
    --txt: #fff;
    --txt-wh: #fff;
    --txt-bl: #39302D;
    --point: #473838;

}

/*====================================*/
/* base contents */
/*====================================*/
html {
    font-family: Lato, "ZenKakuGothic", "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;
}
.comingsoon {
    background-color: #cccccc!important; /* 薄い灰色 */
    color: #666666!important; /* 暗い灰色 */
    border: none;
    border-radius: 5px;
    cursor: not-allowed; /* カーソルを禁止状態にする */
    pointer-events: none; /* マウスイベントを無効にする */
    opacity: 0.7; /* 透明度を少し下げる */
}

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

.tb {
    display: none;
}

.sp {
    display: block;
}

p {
    font-weight: 500;
    line-height: 200%;
    letter-spacing: 0;
}

@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-S2 {
    margin-bottom: 1.5rem;
}

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

.mb-M2 {
    margin-bottom: 2.5rem;
}

.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);
}

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

.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: 3rem;
    padding-bottom: 3rem;
}

.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: 7rem 10px;
    }
}

.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 {
    display: inline-block;
    padding: 1.5rem 0;
    transition: all .3s;
    width: 100%;
    font-size: 1rem;
    width: 320px;
    max-width: 320px;
    margin: 3rem 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: 1.25rem 0rem;
    background-color: var(--white);
    border: 2px solid var(--main);
    background: var(--main);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
    color: var(--white);
    text-align: center;
    width: 100%;
    margin: 0 auto;
    font-weight: bold;
}

.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(--white);
    color: var(--main);
}

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

@media screen and (min-width: 768px) {
    .btn-main, .btn-sub {
        padding: 1.25rem 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-line {
    display: inline-block;
    border: 1px solid #f1ede8;
    margin: 0 auto 2.5rem;
    padding: 1rem 0;
    transition: all .3s;
    text-align: center;
    width: 100%;
    border-radius: 5px;
}

.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%;
}

/* ----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 (max-width: 768px) {
    .reverse>*:last-child {
        order: initial;
    }
}

@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-num {
    font-family: "Vidaloka", serif;
    font-style: normal;
}

.fnt-en {
    font-size: 1rem;
    font-family: "Noto Sans JP";
    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: 1.5rem 1.2rem 1.5rem 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(--main);
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: initial;
}

@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;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    height: initial;
    font-size: 1rem;
    text-align: left;
    font-weight: bold;
    text-shadow: 0 0px 3px #ffffff;
}

header .nav__item.contact>a {
    background-color: var(--sub);
    text-shadow: none;
    padding: 1rem 1rem;
    display: inline-block;
}

header .nav__item.contact>a::after {
    content: none;
}

header .nav__item>a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: var(--main);
    transform: translateX(-50%);
}

@media screen and (max-width:959px) {
    header .nav__item:not(:last-child)>a {
        padding-left: 0;
        padding: 1rem 0;
        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>a::after {
        content: none;
    }
}

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;
}

@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;
    }

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

    .nav__item.contact {
        position: relative;
        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;
}

.side-nav-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    max-height: calc(var(--vh, 1vh) * 100);
    position: relative;
    text-align: center;
    padding: 20px 0px;
}

.logo-brand {
    display: block;
    margin-bottom: 4rem;
    width: 30px;
}

.logo-brand .logo-data-svg {
    width: 100%;
}

.logo-brand .logo-data {
    fill: #1C1C1C;
    height: auto;
    width: 100%;
}

.logo-brand:hover .logo-data {
    fill: var(--main);
    transition: all ease-out 0.2s;
}

.nav-link {
    font-family: "sofia-pro", sans-serif;
    font-size: 1.2rem;
    display: block;
    letter-spacing: 0.05em;
    margin: 0 auto 2rem;
    transition: all ease 0.1s;
    font-size: 0.7rem;
    letter-spacing: 0em;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.nav-link span {
    padding-bottom: .25rem;
    border-bottom: #1C1C1C solid 1px;
}

.nav-link:first-letter {
    font-size: 2.1rem;
}

.nav-link:hover {
    color: var(--main);
}

.nav-link:hover span {
    padding-bottom: .2rem;
    border-bottom: var(--main) solid 1px;
}

.side-nav .copyright {
    font-family: "sofia-pro", sans-serif;
    font-size: 0.4rem;
    color: #1C1C1C;
    opacity: 0.2;
    position: absolute;
    transform: translateY(-50%);
    bottom: -30px;
    left: 7px;
    line-height: 1.3;
    right: initial;
    writing-mode: horizontal-tb;
    text-align: left;
    top: initial;
    width: calc(100% - 10px);
}

.frames .bar-vertical {
    display: none;
    background-color: #f7f7f7;
    height: 8px;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 998;
}

.frames .bar-vertical:after {
    background-color: #f7f7f7;
    bottom: 0px;
    content: "";
    display: block;
    height: 8px;
    left: 0px;
    position: fixed;
    width: 100%;
    z-index: 998;
}


.frames .bar-horizontal {
    display: none;
    background-color: #f7f7f7;
    height: 100%;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 8px;
    z-index: 998;
}

.frames .bar-horizontal:after {
    background-color: #f7f7f7;
    content: "";
    display: block;
    height: 100%;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 8px;
    z-index: 998;
}

#top-page .top-view {
    background: url(./img/main-sp.jpg) no-repeat center;
    background-size: cover;
    min-height: 667px;
    /* max-height: calc(var(--vh, 1vh) * 100); */
    position: relative;
    overflow: hidden;
}

#top-page .top-view .bg-texts .bg-text01 {
    background: url(./img/main-txt-bg.png) no-repeat left bottom;
    position: absolute;
    display: none;
    transition: all ease-in 0.3s;
}

#top-page .top-view .bg-texts .bg-text01 .fnt-jp.vertical {
    writing-mode: initial;
}

#top-page .top-view .bg-texts .bg-text02 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 5%;
    mix-blend-mode: multiply;
    bottom: -1%;
    width: calc(100% - 25%);
    font-size: .5rem;
    transition: all ease-in 0.3s;
}

#top-page .top-view .bg-texts .bg-text02 .text-concept {
    width: calc((100% - 50px) / 2);
}

#top-page .top-view .bg-texts .bg-text02>* h2 {
    margin-bottom: .7rem;
}

#top-page .top-view .bg-texts .bg-text02>* h2,
#top-page .top-view .bg-texts .bg-text02>* h3 {
    display: inline-block;
    padding: .2rem 1.5rem;
}

#top-page .top-view .bg-texts .bg-text03 {
    position: absolute;
    top: -4%;
    left: -2%;
    opacity: .04;
    max-width: 500px;
    transform: rotate(-16deg);
    transition: all ease-in 0.3s;
    display: none;
}

#top-page .top-view .title-area {
    position: absolute;
    left: 50%;
    min-width: 250px;
    top: 45%;
    transform: translate(-50%, calc(-50% - 20px));
    width: 16%;
    z-index: 100;
}

#top-page .top-view .title-area h1 {
    max-width: 80px;
    margin: 0 auto 2rem;
}

#top-page .top-view .title-area .site-navigation {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

#top-page .top-view .title-area .site-navigation .nav-mv {
    display: block;
    position: relative;
    text-align: center;
    padding-bottom: 1.4rem;
    width: calc((100% - 40px) / 3);
}

#top-page .top-view .title-area .site-navigation .nav-mv::before {
    background-color: #1C1C1C;
    bottom: 0px;
    content: "";
    display: block;
    height: 1px;
    left: 0px;
    position: absolute;
    width: 100%;
}

#top-page .top-view .title-area .site-navigation .nav-mv::after {
    background-color: var(--main);
    bottom: 0px;
    content: "";
    display: block;
    height: 1px;
    left: 0px;
    position: absolute;
    width: 0%;
}

#top-page .top-view .title-area .site-navigation .nav-mv:hover {
    color: var(--main);
    transition: all ease-in 0.15s;
}

#top-page .top-view .title-area .site-navigation .nav-mv:hover::after {
    transition: all ease-in 0.15s;
    width: 100%;
}

/*====================================*/
/* info・トップページ  */
/*====================================*/
#top__info__A-01 {
    position: relative;
}
#top__info__A-01::before {
    content: "";
    position: absolute;
    background-image: url(./img/common/footprint_bule.webp);
    background-repeat: no-repeat;
    top: -120px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}
#top__info__A-01 .inner {
    padding-top: 3rem;
}


#top__info__A-01 .info-cnt {
    display: flex;
    align-items: center;
    margin: auto;
    margin-bottom: 4rem;
}

#top__info__A-01 .info-cnt .txt-box h2 {
    display: flex;
    flex-direction: column;
    font-size: 2rem;
}

@media screen and (max-width: 768px) {
    #top__info__A-01::before {
        display: none;
    }
    #top__info__A-01 .info-cnt {
        flex-direction: column;
    }

    #top__info__A-01 .info-cnt .txt-box h2 {
        font-size: 1.25rem;
    }
}

#top__info__A-01 .info-cnt .txt-box h2 .fnt-en {
    font-size: 1rem;
    color: var(--main);
}

.news-archive-list {
    display: grid;
    gap: 1.4rem;
    width: 100%;
}

#news-list .news-archive-list {
    gap: initial;
}

.news-archive {
    background: var(--white);
    padding: 1.5rem 0rem;
    width: 100%;
    border-bottom: 1px solid;
}

.news-archive-list .news-archive>* {
    display: grid;
    align-items: center;
}

.news-archive-cnt {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    font-family: "Noto Sans JP";
    font-size: 1rem;
}

.news-archive-cnt .category {
    color: var(--main);
}

.mt--L {
    margin-top: 0;
}

.sp-border-t,
.sp-border-y,
.sp-border-y02 {
    position: relative;
}

.sp-border-y::after {
    content: "";
    display: inline-block;
    position: absolute;
    background: #d7c6af;
    width: 14px;
    height: 1px;
    top: 50%;
    margin-left: .5rem;
}

.sp-border-y02::after {
    content: "";
    display: inline-block;
    position: absolute;
    background: #d7c6af;
    width: 50px;
    height: 1px;
    top: 50%;
    margin-left: 2rem;
}

.no-post {
    background: #fff;
    padding: 1rem;
    box-shadow: 0 0px 20px 0px rgba(0, 0, 0, 0.03);
}

/*====================================*/
/* intro・トップページ */
/*====================================*/
#top-intro {
    position: relative;
    width: 100%;
}

#top-intro .inr-mg {
    padding-top: 7rem;
    padding-bottom: 4rem;
}

#top-intro .intro-cnt {
    position: relative;
}

#top-intro .img-box {
    border-radius: 10px;
    width: 200px;
    margin-left: auto;
    overflow: hidden;
    box-shadow: rgba(51, 51, 51, 0.19) 0px 11px 38px 0px;
}

#top-intro .intro-box {
    margin-top: -6rem;
}

#top-intro .intro-box h2 {
    max-width: 200px;
}


/*====================================*/
/* cv__box */
/*====================================*/
#cv__box .cv-cnt {
    background-color: var(--sub);
    padding: 3rem 0;
}

#cv__box .sec-ttl-bg {
    position: absolute;
    display: inline-block;
    background: url(./img/title_white.png) no-repeat center;
    text-align: center;
    z-index: 1;
}

#cv__box .cv-cnt .btn.btn-2 {
    max-width: 960px;
    background-color: var(--main);
    border: 1px solid var(--main);
    margin-bottom: 1.5rem;
}

#cv__box .cv-cnt .btn.btn-2:hover {
    background-color: var(--white);
    color: var(--main);
}

/*====================================*/
/* 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;
}

/*------------------- 下層ページ -------------------*/
/*====================================*/
/* 作品一覧ページ  */
/*====================================*/

.page-ttl-en {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 15%;
    border-right: #f1ede8 1px solid;
    padding: 5rem 1rem 3rem;
}

.page-ttl-main {
    width: 85%;
    background-color: #d7c6af;
    padding: 4rem 0rem 3rem;
}

.page-ttl-main>h1 {
    margin-left: 1rem;
}

.page-ttl-main>h2 {
    margin-left: 1.5rem;
}

.category-ttl {
    position: absolute;
    margin-top: -1.5rem;
}

.category-ttl h3 {
    padding: .7rem 2rem;
    border-radius: 50px;
    margin-left: 2rem;
}

.works-cat-wrap {
    position: relative;
}

.works-cat-wrap .works-cat-list {
    font-size: .85rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    gap: 1.5rem 1rem;
    background: var(--wh-gray);
    border-radius: .5rem;
}

#works-cat .sec-ttl {
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 100;
    font-size: 1.2rem;
}

#works-cat .sec-ttl::before {
    color: var(--main);
    top: -77%;
    content:
        'CATEGORY';
}

#works #works-list .sec-mg {
    padding-top: initial;
}

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

.cat-btn a {
    padding: .6rem 1.2rem;
    background: var(--white);
}

.cat-btn:hover a {
    background-color: var(--sub);
    color: var(--main);
    transition: all ease-in 0.2s;
}

.cat-btn.current a {
    background-color: var(--main);
    color: #fff;
}

#works .works-list {
    gap: 4rem;
}

#works .thumb-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#works .page-work-link .thumb-area img {
    transition-duration: .7s;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

#works .page-work-link:hover .thumb-area img {
    transform: scale(1.1);
    transition-duration: .7s;
}

/*====================================*/
/* about/プロフィールページ  */
/*====================================*/
#about .works-img {
    position: absolute;
    bottom: 2%;
    right: -8%;
    width: 550px;
}

#about #skill-sec .sec-ttl::before {
    color: #d7c6af;
    content: 'MY SKILL';
}

#about .sec-ttl-bg {
    position: absolute;
    display: inline-block;
    background: url(./img/title_white.png) no-repeat center;
    text-align: center;
    z-index: 1;
}

#about .about-cnt:not(:last-child) {
    margin-bottom: 8rem;
}

#about .about-img {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background-color: #ddceba;
    border-radius: 50%;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    width: 200px;
}

#about .about-info {
    display: block;
    margin-top: 2rem;
}

#about .num-area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    font-size: .7rem;
    color: #cec6bb;
    white-space: nowrap;
    text-align: center;
    padding-bottom: .7rem;
    border-bottom: #cec6bb 1px dotted;
}

#about .num {
    font-size: 2rem;
}

#about .about-name {
    padding-left: 1.2rem;
    font-size: 1.2rem;
}

#about .about-detail {
    padding-top: 1.3rem;
}

.bar-chart-01>* {
    position: relative;
    padding-left: 1.2rem;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.bar-chart-01>*::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    left: 4px;
    top: 47%;
}

.bar-chart-01 {
    font-size: .9em;
    margin-bottom: 1.5rem;
}

.bar-chart-01 dt {
    width: calc(100% / 2 - 1rem);
    white-space: nowrap;
}

.bar-chart-01 dd {
    width: calc(100% / 2 - .5rem);
    border-radius: 2px;
    margin: 0;
    background-color: #dddddd;
}

/* Illustrator */
.skill-01 {
    width: 100%;
}

/* Photoshop */
.skill-02 {
    width: 80%;
}

/* HTML */
.skill-03 {
    width: 100%;
}

/* CSS */
.skill-04 {
    width: 100%;
}

/* Javascript */
.skill-05 {
    width: 70%;
}

/* CLIP studio */
.skill-06 {
    width: 80%;
}

/* XD */
.skill-07 {
    width: 80%;
}

/* After Effects */
.skill-08 {
    width: 50%;
}

/* Premiere Pro */
.skill-09 {
    width: 70%;
}

/* グラフアニメーション */
.view.view-graph-100,
.view.view-graph-80,
.view.view-graph-70,
.view.view-graph-60,
.view.view-graph-50 {
    width: 0%;
}

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

.view.view-graph-80.on {
    width: 80%;
    animation: view-graph-80 1s ease both;
}

.view.view-graph-70.on {
    width: 70%;
    animation: view-graph-70 1s ease both;
}

.view.view-graph-60.on {
    width: 60%;
    animation: view-graph-60 1s ease both;
}

.view.view-graph-50.on {
    width: 50%;
    animation: view-graph-50 1s ease both;
}

@keyframes view-graph-100 {
    0% {
        width: 0%;
        transform: translate(0, 0);
    }

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

@keyframes view-graph-80 {
    0% {
        width: 0%;
        transform: translate(0, 0);
    }

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

@keyframes view-graph-70 {
    0% {
        width: 0%;
        transform: translate(0, 0);
    }

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

@keyframes view-graph-60 {
    0% {
        width: 0%;
        transform: translate(0, 0);
    }

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

@keyframes view-graph-50 {
    0% {
        width: 0%;
        transform: translate(0, 0);
    }

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


/*====================================*/
/* news・ニュース一覧ページ */
/*====================================*/
#news-list .news-archive-list li {
    padding: 1.5rem;
}

#news-list .news-archive-list li a p {
    /* margin-bottom: .3rem; */
}

#news-list .news-archive-list li a p.sp-border-t::before {
    content: none;
}

#news-list .news-archive-list li:nth-child(odd) {
    background: #fbfbfb;
}

/*====================================*/
/* news・ニュース個別ページ */
/*====================================*/
#news .news-cont .news-ttl {
    padding: 1rem 1.5rem;
    background: var(--wh-gray);
}

#news .news-cont .news-inr>p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* ページネーション */
.pagination__btn--last, .pagination__btn--first, .pagination__btn--next, .pagination__btn--prev, .pagination__item a, .pagination__item--current {
    display: block;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    background: #1C1C1C;
    border: 1px solid #1C1C1C;
    min-width: 3em;
    transition: all .2s;
    margin: 0 1px 0 0;
    padding: calc(1em - 1px) 1em;
    border-radius: 5px;
}

.pagination__btn--last:hover, .pagination__btn--first:hover, .pagination__btn--next:hover, .pagination__btn--prev:hover, .pagination__item a:hover, .pagination__item--current:hover {
    color: #1C1C1C;
    background: #FFF;
}

.pagination {
    position: relative;
    display: flex;
    justify-content: center;
    color: #FFF;
    line-height: 1;
    margin: 0;
    padding: 2rem 0 3rem;
}

.pagination__list {
    display: none;
}

.pagination__item {
    margin: 0;
}

.pagination__item--current {
    background: #FFF;
    color: #1C1C1C;
    font-weight: bold;
    border-color: #1C1C1C;
    margin: 0 1px 0 0;
}

.pagination__pos {
    position: absolute;
    top: -.5em;
    left: 50%;
    transform: translate(-50%, 0);
    color: #1C1C1C;
}

.pagination__btn--prev {
    order: 2;
}

.pagination__btn--next {
    order: 4;
}

.pagination__btn--first {
    order: 1;
}

.pagination__btn--last {
    order: 5;
}

.post-btn-area {
    display: grid;
}

.post-btn-area .post-btn01 a, .post-btn-area .post-btn03 a {
    display: inline-block;
    padding: .7rem 1rem;
}

.post-btn01 {
    grid-row: 2/3;
    grid-column: 1/2;
}

.post-btn02 {
    grid-row: 1/2;
    grid-column: 1/3;
}

.post-btn03 {
    grid-row: 2/3;
    grid-column: 2/2;
}

.cnt-none {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style-type: none;
}

/* ページネーションPCスタイル */
@media (min-width: 1200px) {
    .pagination__list {
        order: 3;
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .pagination__pos {
        display: none;
    }

    .post-btn-area {
        place-items: center;
        grid-template-columns: auto 320px auto;
    }

    .post-btn01 {
        grid-row: 1/2;
        grid-column: 1/2;
    }

    .post-btn02 {
        grid-row: 1/2;
        grid-column: 2/3;
        min-width: 320px;
    }

    .post-btn03 {
        grid-row: 1/2;
        grid-column: 3/4;
    }
}

/*====================================*/
/* thanks・送信完了（サンクスページ） */
/*====================================*/
#thanks .thanks-img {
    margin: 0 auto 3rem;
    max-width: 400px;
}

@media screen and (min-width: 768px) {
    #top-page .top-view {
        background: url(./img/main-tb.jpg) no-repeat center;
        background-size: cover;
        min-height: 1024px;
    }

    .cnt-inner {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .list-inner {
        padding-left: 1.5rem;
        padding-right: 2rem;
    }

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

    #top-page .top-view .title-area h1 {
        max-width: 130px;
        margin-bottom: 2.5rem;
    }

    #top-page .top-view .title-area .site-navigation {
        justify-content: space-between;
    }

    .scrolldown {
        top: initial;
        bottom: 10%;
        height: 100%;
        right: 10%;
    }

    .nav-link:first-letter {
        font-size: 2rem;
    }

    .side-nav-wrap {
        padding: 50px;
    }

    .logo-brand {
        margin-bottom: 64px;
        width: 40px;
    }

    .sec-ttl-bg {
        width: 300px;
        height: 31px;
    }

    .work-info {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }

    #top-page .top-view .bg-texts .bg-text01 {
        color: #f1ede8;
        opacity: .8;
        position: absolute;
        right: 10px;
        top: 50px;
        width: 32%;
        display: block;
        padding: 0 2rem 1.7rem 1.2rem;
    }

    #top-page .top-view .bg-texts .bg-text01 .fnt-jp.vertical {
        writing-mode: vertical-rl;
    }

    #top-page .top-view .bg-texts .bg-text02 {
        position: absolute;
        left: 40px;
        top: calc((850px / 3) * 2.3);
        width: calc(100vw / 2.3);
    }

    #top-page .top-view .bg-texts .bg-text03 {
        left: -8%;
        top: -2%;
        transform: rotate(-18deg);
    }

    .frames .bar-vertical,
    .frames .bar-vertical:after {
        display: block;
        height: 16px;
    }

    .frames .bar-horizontal,
    .frames .bar-horizontal:after {
        display: block;
        width: 16px;
    }

    /*====================================*/
    /* info・トップページ */
    /*====================================*/

    .news-archive-list {
        gap: 1rem;
    }

    .news-archive-list .news-archive>* {
        grid-template-columns: 104px 1fr;
        gap: 2rem;
    }

    /*====================================*/
    /* news・ニュース個別ページ */
    /*====================================*/
    #news .news-cont .news-ttl {
        padding: 2rem 3rem;
    }

    #news .news-cont .news-inr {
        max-width: 900px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1200px) {
    .cnt-inner {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

#news-list .cnt-inner {
    margin-bottom: 3rem;
}

/*====================================*/
/* テンプレートコーディング タイトルパーツ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 {
    overflow-x: hidden;
}

.main__ttl__box {
    margin-bottom: 7.5rem;
    text-align: center;
}

.main__ttl {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    display: flex;
    color: var(--txt-bl);
    margin-bottom: 4.5rem;
    text-align: center;
}

#ttl__bg__A-01 {
    position: relative;
}
#ttl__bg__A-01 h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 700;
    font-size: 2rem;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    #ttl__bg__A-01 h1 {
        font-size: 1rem;
        text-align: center;
    }

    .main__ttl {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    .main__ttl__box {
        margin-bottom: 3rem;
    }
}

.main__ttl::after {
    content: "";
    background-color: var(--main);
    width: 5rem;
    height: .15rem;
    bottom: -1.2rem;
    left: 50%;
    margin-left: 1rem;
}

.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);
}


/*====================================*/
/* テンプレートコーディング mv__Aパターン */
/*====================================*/
#mv__A {
}

.mv-cnt {
    position: relative;
}

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

#mv__A .mv-txt__box {
    width: 100%;
}

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

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

#mv__A .mv-txt__box .lead__txt {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

#mv__A .mv-txt__box .lead__txt.dotted {
    display: inline-block;
    background-image: linear-gradient(to right, var(--sub) 3px, transparent 3px);
    background-size: 10px 3px;
    background-repeat: repeat-x;
    background-position: left bottom;
    padding-bottom: 0.75rem;
}

#mv__A .img-list {
    display: flex;
    gap: 1rem;
    max-width: 480px;
}

#mv__A .img-list .img-item img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    #mv__A .mv-txt__box {
        padding: 1rem;
    }

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

    #mv__A .mv-txt__box .lead__txt {
        font-size: 1.5rem;
    }
}

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

#mv__A .img__box {
    background: url(./img/top/top-mv-pc.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}

#mv__A .img__box .logo__box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 240px;
    margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
    #mv__A .img__box {
        background: url(./img/top/top-mv-sp.jpg) no-repeat center;
        background-size: cover;
        height: 800px;
    }
}

@media screen and (max-width: 768px) {
    #mv__A .img__box .logo__box {
        width: 140px;
        height: 140px;
        margin: 0 auto 2rem;
    }
}
/*====================================*/
/* テンプレートコーディング top__service__A-01パターン */
/*====================================*/
#top__about__A-01 .ttl {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;

}

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

#top__about__A-01 .about__box>* {
    flex-basis: calc(100% / 2 - .5rem);
}

#top__about__A-01 .about__box .right__box {
    max-width: 478px;
    max-height: 478px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#top__about__A-01 {
    position: relative;
    overflow: hidden;
}

#top__about__A-01::before {
    position: absolute;
    content: "";
    top: -42%;
    left: -50%;
    transform: translate(0%, 50%) rotate(-6.188deg);
    width: 160%;
    height: 90%;
    background-color: var(--wh-gray);
    z-index: -1;
}
#top__about__A-01 .inner {
    padding-bottom: 13rem;
}

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

    #top__about__A-01 .ttl {
        text-align: center;
    }

    #top__about__A-01::before {
        top: -50%;
        width: 200%;
        height: 98%;
    }

    #top__about__A-01 .inner {
        padding-bottom: 5rem;
    }

    #top__about__A-01 .about__box .right__box .main__img__box {
        max-width: 200px;
        max-height: 200px;
        margin: auto;
    }

    #top__about__A-01 .about__box .right__box {
        order: -1;
    }
}

/*====================================*/
/* テンプレートコーディング top__commitment_A-01パターン */
/*====================================*/
#top__commitment_A-01 {
    position: relative;
    overflow: hidden;
}
#top__commitment_A-01::before {
    content: "";
    position: absolute;
    background-image: url(./img/common/footprint_or.webp);
    background-repeat: no-repeat;
    top: 48%;
    right: 0;
    width: 420px;
    height: 500px;
    z-index: -5;
}
#top__commitment_A-01::after {
    position: absolute;
    content: "";
    bottom: 22%;
    left: -50%;
    transform: translate(0%, 50%) rotate(6.812deg);
    width: 160%;
    height: 60%;
    background-color: var(--wh-gray);
    z-index: -10;
}
#top__commitment_A-01 p {
    line-height: 160%;
}
.commitment__list {
    margin-bottom: 5rem;
}

.commitment__list .commitment__item .commitment__item__img {
    margin-bottom: 1.5rem;
}

.commitment__list .commitment__item .commitment__item__img img {
    width: 185px;
    height: 185px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.commitment__list .commitment__item .commitment__item__ttl {
    color: var(--sub);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.commitment__box__list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 5rem;
}

.commitment__box__list .commitment__box__item .commitment__cnt .commitment__box__ttl {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

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

.commitment__box__list .commitment__box__item>* {
    flex-basis: calc(100% / 2 - .5rem);
}

.commitment__box__list .commitment__box__item .commitment__box__img img {
    border-radius: 16px;
}

@media screen and (max-width: 768px) {
    #top__commitment_A-01::before {
        display: none;
    }
    #top__commitment_A-01::after {
        width: 200%;
        height: 40%;
    }
    .commitment__box__list {
        margin-bottom: 4rem;
    }

    .commitment__box__item {
        flex-direction: column;
        gap: 2rem;
    }
}

/*====================================*/
/* テンプレートコーディング custom__post__Aパターン */
/*====================================*/
#top__custom__post__A-01, #top__service__A-01, #top__menu__price__A-01 {
    position: relative;
    background: var(--white);
    box-shadow: 0 4px 50px 20px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 767px) {
    #top__custom__post__A-01::before {
        border-radius: 30px 30px 0 0;
    }

    #top__custom__post__A-01::after {
        border-radius: 0 0 30px 30px;
    }
}

#top__custom__post__A-01 .inner, #top__service__A-01 .inner {
    padding: 7rem 1.1rem;
}

@media screen and (max-width: 767px) {
    #top__custom__post__A-01 .inner {
        padding: 0 1.1rem;
    }
}

#top__custom__post__A-01 .main__ttl__box {
    margin-bottom: 3rem;
}

#top__custom__post__A-01 .btn-wrap.-wh {
    margin: auto;
}

#top__custom__post__A-01 .custom__post__list {
    display: flex;
}

#top__custom__post__A-01 .custom__post__list>* {
    width: calc(100% / 3 - .8rem);
    color: var(--txt-wh);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#top__custom__post__A-01 .custom__post__list .custom__post__item .img__box img {
    margin-bottom: 1rem;
}

#top__custom__post__A-01 .custom__post__list .custom__post__item .cat__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

#top__custom__post__A-01 .custom__post__list .custom__post__item .cat__list .cat__item {
    color: var(--main);
    background-color: var(--white);
    display: inline-block;
    padding: .2rem 1rem;
    border-radius: 50px;
}

#top__custom__post__A-01 .custom__post__list .custom__post__item .ttl {
    position: relative;
    font-size: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--white);
}

#top__custom__post__A-01 .custom__post__list .custom__post__item .txt {
    padding-top: 1rem;
}

#top__custom__post__A-01 .custom__post__list .custom__post__item .ttl::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    transform: translateY(3px);
    width: 3rem;
    height: 3px;
    background-color: var(--main);
}

#top__custom__post__A-01 .swiper-scrollbar-drag {
    height: 20px;
    cursor: pointer;
    background-color: var(--main);
    background-clip: content-box;
    border-radius: inherit;
}

#top__custom__post__A-01 .swiper {
    overflow: hidden;
    margin-bottom: 2rem;
}

#top__custom__post__A-01 .swiper-horizontal>.swiper-scrollbar, #top__custom__post__A-01 .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: inherit;
    height: inherit;
    overflow: hidden;
    height: 4px;
    cursor: pointer;
    background-color: var(--white);
    border-radius: inherit;
}

#top__custom__post__A-01 .swiper-button-next, .swiper-button-prev {
    position: inherit;
}

#top__custom__post__A-01 .swiper-button-next, .swiper-button-prev {
    width: inherit;
    height: inherit;
    margin-top: inherit;
}

#top__custom__post__A-01 .switch__box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

#top__custom__post__A-01 .switch__box .btn__box {
    display: flex;
    gap: 1rem;
    padding-left: 5rem;
}

@media screen and (max-width: 767px) {
    #top__custom__post__A-01 .switch__box .btn__box {
        padding-left: 2.5rem;
    }
}

#top__custom__post__A-01 .swiper-button-prev, #top__custom__post__A-01 .swiper-button-next {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: var(--white);
    border: 1px solid var(--white);
    left: 0;
    border-radius: 50%;
    padding: 0;
    transition: 0.3s;
    cursor: pointer;
}

#top__custom__post__A-01 .swiper-button-prev::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 11px;
    height: 11px;
    border-right: 3px solid var(--main);
    border-top: 3px solid var(--main);
    transition: all 0.3s;
    transform: translateX(-30%) translateY(-50%) rotate(225deg);
}

#top__custom__post__A-01 .swiper-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 11px;
    height: 11px;
    border-right: 3px solid var(--main);
    border-top: 3px solid var(--main);
    transition: all 0.3s;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

#top__custom__post__A-01 .swiper-button-prev:after, #top__custom__post__A-01 .swiper-rtl .swiper-button-next:after {
    content: none;
}

#top__custom__post__A-01 .swiper-button-next:after, #top__custom__post__A-01 .swiper-rtl .swiper-button-prev:after {
    content: none;
}

/*====================================*/
/* テンプレートコーディング top__instructor__A-01パターン */
/*====================================*/
.instructor-insta {
    background-image: url(./img/top/instructor-insta-img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

#top__instructor__A-01 .instructor__box .right__box .img__box {
    display: grid;
    place-content: center;
}

#top__instructor__A-01 .instructor__box .right__box .img__box img {
    border-radius: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    max-width: 420px;
}

@media screen and (max-width: 767px) {
    #top__instructor__A-01 .instructor__box .left__box {
        margin-bottom: 2rem;
    }

    #top__instructor__A-01 .instructor__box .right__box .img__box img {
        max-width: 200px;
    }
}

#top__instructor__A-01 .instructor__item .common__list__box {
    border-top: 2px solid var(--sub);
    border-right: 8px solid var(--sub);
    border-bottom: 8px solid var(--sub);
    border-left: 2px solid var(--sub);
    background: var(--main-Wh, #FFF);
    padding: 1rem;
}

#top__instructor__A-01 .instructor__item .common__list__box li {
    position: relative;
    padding-left: 1.25rem;
}

#top__instructor__A-01 .instructor__item .common__list__box li::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 0;
    width: 10px;
    height: 10px;
    transform: rotate(45deg) translate(-50%, -50%);
    aspect-ratio: 1/1;
    background: var(--sub);
}

#top__instructor__A-01 .instructor__item .ttl {
    font-size: 2rem;
}

/*====================================*/
/* テンプレートコーディング about__A-01パターン */
/*====================================*/
#about__A-01 .about__item {
    margin-bottom: 3rem;
}

#about__A-01 .about__item .ttl {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/*====================================*/
/* テンプレートコーディング top__beginners_A-02パターン */
/*====================================*/
#top__beginners_A-01 {
    position: relative;
    overflow: hidden;
}
#top__beginners_A-01::before{
    position: absolute;
    content: "";
    top: -21%;
    left: -50%;
    transform: translate(0%, 50%) rotate(5deg);
    width: 200%;
    height: 76%;
    background-color: var(--wh-gray);
    z-index: -1;
}
#top__beginners_A-01::after {
    content: "";
    position: absolute;
    background-image: url(./img/common/footprint_bule.webp);
    background-repeat: no-repeat;
    top: 45%;
    left: -40px;
    width: 480px;
    height: 400px;
    transform: rotate(0deg);
    z-index: -1;
}
#top__beginners_A-01 .col_1_2 {
    gap: 2.5rem;
}
#top__beginners_A-01 .ttl {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
#top__beginners_A-01 .ttl_sub {
    width: fit-content;
    color: var(--txt-wh);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%;
    border-radius: 50px;
    background: var(--main);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}
#top__beginners_A-01 .flex_box{
    display: flex;
    flex-direction: row;
    padding-top: 1rem;
    gap: 14px;
}
#top__beginners_A-01 .flex_box p {
    font-size: 14px;
    line-height: 160%;
}

#top__beginners_A-02 {
    position: relative;
}

#top__beginners_A-02::before{
    content: "";
    position: absolute;
    background-image: url(./img/common/footprint_or.webp);
    background-repeat: no-repeat;
    top: 20%;
    right: -60px;
    width: 480px;
    height: 400px;
    transform: rotate(0deg);
    z-index: -1;
}
#top__beginners_A-02 .ttl {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
#top__beginners_A-02 .beginners__item {
    gap: 2.5rem;
    margin-bottom: 5rem;
}

#top__beginners_A-02 .beginners__item .btn {
    max-width: 100%;
    margin: 1rem 0 0;
}
#top__beginners_A-02 .beginners__item .shampoosommelier_info {
    border-radius: 16px;
    border: 3px solid var(--main);
    background: var(--wh-gray);
    padding: 1.5rem;
}
#top__beginners_A-02 .beginners__item .shampoosommelier_info h4{
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
}
#top__beginners_A-02 .beginners__item .shampoosommelier_info p{
    line-height: 160%;
}

@media screen and (max-width: 768px) {
    #top__beginners_A-01::before {
        top: -25%;
        height: 82%;
    }
    #top__beginners_A-01::after, #top__beginners_A-02::before {
        display: none;
    }
    #top__beginners_A-01 .ttl, #top__beginners_A-02 .ttl{
        font-size: 20px;
        text-align: center;
        margin: 1.5rem 0;
    }
    #top__beginners_A-02 .beginners__item {
        margin-bottom: 4rem;
    }

}



/*====================================*/
/* faq */
/*====================================*/
.faq {
    max-width: 800px;
    margin: 48px auto;
    padding: 0 20px;
    display: grid;
    gap: 26px;
}

.faq__item {
    background: var(--white);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.faq__question {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 1rem;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
}

.faq__answer-wrapper {
    position: relative;
}

.faq__answer-wrapper::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 1px;
    background: var(--main);
}

.faq__badge {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: 700;
    border: 2px solid var(--main);
}

.faq__badge--q {
    color: var(--main);
    background: #fff;
    font-family: "Jost";
}

.faq__badge--a {
    color: #fff;
    background: var(--main);
    font-family: "Jost";
}

.faq__toggle {
    width: 28px;
    height: 28px;
    /* border: 2px solid var(--main); */
    border-radius: 50%;
    position: relative;
    flex: 0 0 auto;
}

.faq__toggle::before,
.faq__toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: var(--main);
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq__answer-wrapper {
    overflow: hidden;
    max-height: 0;
    transition: max-height .28s ease;
    background: linear-gradient(180deg, #fff, #f8fffe 220%);
}

.faq__answer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.5rem;
    font-size: 1rem;
}

.faq__answer p {
    margin: 0.5rem 0 0;
}

@media(min-width:880px) {
    .faq__question {
        font-size: 1.25rem;
        padding: 1.5rem;
    }

    .faq__answer {
        font-size: 1rem;
        padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    }
}

/*====================================*/
/* menu */
/*====================================*/
/* ===== 上段：カテゴリーカード（ページ内リンク） ===== */

#menu__A-01 .menu__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(18rem, 1fr));
    gap: 1.75rem 2.5rem;
    margin: 3.5rem auto 2.5rem;
    padding: 0 0;
}

@media (max-width: 768px) {
    #menu__A-01 .menu__list {
        grid-template-columns: repeat(2, minmax(18rem, 1fr));
        gap: 1.5rem 2rem;
        /* 24 / 32 */
        margin: 3rem auto 2rem;
    }

    #menu__A-01 .menu__list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        /* 20 */
        margin: 2.25rem auto 1.75rem;
        /* 36 / 28 */
    }
}

/* カード本体（内外2重の金枠＋深めの落ち影） */
#menu__A-01 .menu__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.25rem;
    padding: 1.75rem 2rem;
    background: #fff;
    text-decoration: none;
    color: #2b2b2b;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .05em;
    border: 0.125rem solid #bb9235;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%), 0 0 3rem 0.1rem rgb(214 214 214 / 10%);
    transition: transform .12s ease, box-shadow .12s ease;
}

/* 内側の細い金枠（角丸は外より少し小さく） */
#menu__A-01 .menu__item::after {
    content: "";
    position: absolute;
    inset: 0.5rem;
    border: 0.1rem solid #d0b26a;
    pointer-events: none;
}

/* テキストと矢印の見た目（↓をわずかに上げる） */
#menu__A-01 .menu__item .label {
    font-size: 1rem;
    line-height: 1;
}

#menu__A-01 .menu__item .arrow {
    font-size: 1.125rem;
    color: #9c7a1e;
    line-height: 1;
    transform: translateY(-0.0625rem);
}

/* ふわっと浮く微インタラクション（スクショの立体感維持） */
#menu__A-01 .menu__item:hover {
    transform: translateY(-0.0625rem);
    box-shadow:
        0 1.1rem 1.9rem rgba(0, 0, 0, .14),
        0 0 0 0.375rem rgba(202, 162, 77, .20);
}

#menu__A-01 .menu__item:focus-visible {
    outline: 0.1875rem solid rgba(202, 162, 77, .35);
    outline-offset: 0.125rem;
}


/* =========================
下段：詳細カード
========================= */
#menu__A-01 .menu__detail {
    margin: 3.375rem auto 6rem;
}

#menu__A-01 .menu__detail.anchor-spacer {
    scroll-margin-top: 5.25rem;
    border-radius: 2rem 0;
}

#menu__A-01 .menu__detail__box {
    background: var(--white);
    position: relative;
    padding: 2rem 1.75rem 2rem;
    box-shadow: 0 0.875rem 1.875rem rgba(0, 0, 0, .10);
    border-radius: 2rem 0;
}

#menu__A-01 .menu__detail__box::before,
.menu__detail__box::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

#menu__A-01 .menu__detail__box::before {
    border: 0.15rem solid var(--main);
    border-radius: 2rem 0;
}

#menu__A-01 .menu__detail__box::after {
    inset: 1.25rem;
    border: 0.1rem solid var(--main);
    border-radius: 1.25rem 0;
}

#menu__A-01 .menu__detail__head {
    text-align: center;
    padding: 2.125rem 0.75rem 0.625rem;
}

#menu__A-01 .menu__detail__divider {
    width: 0.125rem;
    height: 1.625rem;
    background: var(--main);
    margin: 0 auto 0.75rem;
    border-radius: 0.125rem;
}

#menu__A-01 .menu__detail__ttl {
    margin: 0 0 2rem;
    font-size: 2rem;
    line-height: 1.4;
    color: var(--main);
    font-weight: 800;
    letter-spacing: .08em;
}

#menu__A-01 .menu__detail__desc {
    margin: 0 auto 1.375rem;
    max-width: 42.5rem;
    font-size: 0.9688rem;
    letter-spacing: .02em;
}

/* グレーパネル */
#menu__A-01 .menu__detail__panel {
    background: #efefef;
    padding: 1.25rem 1.25rem 1rem;
    margin: 1rem 1rem 1rem;
}

#menu__A-01 .menu__detail__panel:not(:last-child) {
    margin-bottom: 1.75rem;
}

#menu__A-01 .menu__detail__panel.option {
    background: #fff;
    border: 2.5px solid var(--main);
}

#menu__A-01 .menu__detail__panel__ttl {
    text-align: center;
    margin: 0 0 0.5rem;
    font-weight: bold;
    font-size: 1.25rem;
    letter-spacing: .04em;
}

#menu__A-01 .menu__detail__panel__txt {
    text-align: center;
    color: #4d4d4d;
    margin: 0 0 0.75rem;
    line-height: 1.9;
}

/* 料金部分 */
#menu__A-01 .menu__detail__price__list {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 0.5rem;
}

#menu__A-01 .menu__detail__note {
    margin-top: 1rem;
    text-align: center;
}

#menu__A-01 .menu__detail__price__list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0.05rem;
    background: #8b8b8b;
    transform: translateX(-50%);
}

@media (max-width:768px) {

    #menu__A-01 .menu__detail__price__list {
        grid-template-columns: 1fr;
        border-top: 0;
    }

    #menu__A-01 .menu__detail__price__list::before {
        display: none;
    }
}

#menu__A-01 .menu__detail__price__item {
    padding: 1rem 0.75rem 1rem;
    text-align: center;
    display: grid;
    place-items: center;
}

#menu__A-01 .menu__detail__price__label {
    font-weight: 800;
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

#menu__A-01 .price__note {
    font-size: 1rem;
    color: var(--white);
    background: var(--main);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    margin: 0 1rem;
}

#menu__A-01 .menu__detail__price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: .02em;
}

#menu__A-01 .menu__detail__price .now {
    color: var(--main);
    font-weight: bold;
    font-size: 1.25rem;
}

#menu__A-01 .menu__detail__price .init {
    color: #2f2f2f;
    font-weight: 700;
    font-size: 1.025rem;
}

/*====================================*/
/* 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%);
    }
}

/*====================================*/
/* about */
/*====================================*/
#about__A-01 .table__about {
    border-collapse: collapse;
    width: 100%;
    margin: auto;
}

#about__A-01 .table__about th, .table__about td {
    border-bottom: 2px solid var(--gray);
    padding: 1em;
}

#about__A-01 .table__about th {
    border-bottom: 2px solid var(--main);
    font-weight: bold;
    text-align: center;
    width: 30%;
    min-width: 4em;
}

#about__A-01 .table__about .btn {
    width: 100%;
}

@media screen and (min-width:960px) {
    #about__A-01 .table__about th {
        width: 20%;
    }
}

/*====================================*/
/* テンプレートコーディング cv__A-01パターン */
/*====================================*/
#cv__A-01 {
    background-color: var(--sub);
    position: relative;
}
#cv__A-01 .inner {
    padding-top: 1.5rem;
    padding-bottom: 7rem;
}

#cv__A-01 .inner a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    z-index: 10;
}
#cv__A-01::before {
    content: "";
    position: absolute;
    background-image: url(./img/common/footprint_left.webp);
    background-repeat: no-repeat;
    top: 0%;
    left: 5%;
    width: 341.5px;
    height: 350px;
    z-index: 0;
}
#cv__A-01::after {
    content: "";
    position: absolute;
    background-image: url(./img/common/footprint_right.webp);
    background-repeat: no-repeat;
    top: 0%;
    right: 5%;
    width: 341.5px;
    height: 350px;
    z-index: 0;
}
@media screen and (max-width:768px) {
    #cv__A-01::before,#cv__A-01::after {
        display: none;
    }
    #cv__A-01 .inner {
        padding-bottom: 4rem;
    }
}

/*====================================*/
/* ttl__price__A-01 下層ページタイトル */
/*====================================*/
#top__price_A-01 {}

#top__price_A-01 .price__txt {
    font-weight: 500;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 180%;
}

#top__price_A-01 .price__list__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

/* #top__price_A-01 .price__list__box > * {
    flex-basis: calc(100% / 2 - .5rem);
} */

#top__price_A-01 .price__list .price__item {
    border-radius: 16px;
    border: 3px solid var(--main_blue, #008D99);
    background-color: var(--wh-gray);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.price__item__ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    position: relative;
    font-size: 1rem;
    font-weight: bold;
    background-color: var(--main);
    color: var(--white);
    text-align: center;
    padding: .25rem 2.75rem;
}

.price__item__ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    transform: translate(50%, -50%) rotate(45deg);
    background-color: var(--wh-gray);
}

.price__item__ttl::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: var(--wh-gray);
}

.price__item__ttl .price__item__ttl__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price__item__price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--main);
}

.price__item__txt {
    font-weight: 500;
    text-align: center;
}

.price__list {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

#top__price_A-01 .price__list>* {
    flex-basis: calc(100% / 2 - .5rem);
}

#top__price_A-01 .price__item {
    position: relative;
}

#top__price_A-01 .price__item__img {
    position: absolute;
    z-index: 2;
}

#top__price_A-01 .price__item__img.-left {
    width: 110px;
    left: 0;
    top: 0;
    transform: translate(0%, -65%);
}

#top__price_A-01 .price__item__img.-right {
    width: 96px;
    right: 0;
    top: 0;
    transform: translate(0%, -50%);
}

@media screen and (max-width: 767px) {
    .price__list {
        flex-direction: column;
        gap: 4rem;
    }

    #top__price_A-01 .price__item__img.-left {
        width: 100px;
    }

    #top__price_A-01 .price__item__img.-right {
        width: 80px;
    }
}

/*====================================*/
/* top__flow__A-01 */
/*====================================*/

/*====================================*/
/* top__notes__A-01 */
/*====================================*/
#top__notes__A-01 {
    position: relative;
}
#top__notes__A-01::before{
    content: "";
    position: absolute;
    background-image: url(./img/common/footprint_or.webp);
    background-repeat: no-repeat;
    top: 30%;
    left: 0;
    width: 450px;
    height: 400px;
    transform: rotate(95deg);
    z-index: -10;
}
#top__notes__A-01 .price__txt {
    text-align: center;
    line-height: 180%;
    margin-bottom: 4rem;
}
#top__notes__A-01 .notes__box__wrap{
    background-color: var(--wh-gray);
    padding: 3rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#top__notes__A-01 .notes__box__wrap .notes__box {
    border-radius: 16px;
}

.notes__list {
    list-style: disc;
    padding-left: 1.5rem;
}

.notes__list li::marker {
    font-size: 0.8em;
}

@media screen and (max-width: 767px) {
    #top__notes__A-01 .notes__box__wrap{
        padding: 2rem 1.5rem;
    }
    #top__notes__A-01::before {
        display: none;
    }
}

/*====================================*/
/* top__notes__A-01 */
/*====================================*/
#top__access__A-01 {
    position: relative;
}
#top__access__A-01::before {
    content: "";
    position: absolute;
    background-image: url(./img/common/footprint_bule.webp);
    background-repeat: no-repeat;
    top: 42%;
    right: -30px;
    width: 500px;
    height: 400px;
    transform: rotate(260deg);
    z-index: -10;
}
#top__access__A-01 .access__txt {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
}

#top__access__A-01 .map__box {
    position: relative;
    aspect-ratio: 16 / 7;
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin: auto;
}

#top__access__A-01 .map__box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.About_access::before {
    top: -2%!important;
    transform: rotate(82deg)!important;
}

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

#footer .inner {
    padding: 3.5rem 0 2rem;
}

@media screen and (max-width: 767px) {
    #footer .detail__box {
        flex-direction: column;
    }
    #top__access__A-01::before {
        display: none;
    }
}

#footer .map__box {
    position: relative;
    aspect-ratio: 16 / 9;
    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);
}

#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: space-between;
    /* margin-bottom: 3rem; */
    gap: 1rem 0;
}

#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 {
        justify-content: center;
    }
    #footer .nav__list li {
        flex-basis: calc(100% / 2 - .5rem);
        flex-grow: initial;
    }
}

@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: none;
        color: var(--txt-bl);
    }
}

#footer .nav__list li a {
    color: var(--white);
}

#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;
}