@charset "UTF-8";
/*
Theme Name: WEB site CHIEnoWA LAB
Author: yajima
*/

/*====================================*/
/* Font Loading */
/*====================================*/

:root {
    --wh: #fff;
    --bk: #333;
    --pk: #E966A0;
    --light-pk: #FAD1D1;
    --blue: #3DADB7;
    --light-blue: #BBEAEE;
    --light-blue: #BBEAEE;
    --yellow: linear-gradient(139deg, #FFFBEB 25.85%, #FFF4CA 95.46%);
}

.blue {
    color: #3DADB7;
}

.pk {
    color: #E966A0;
}

/*====================================*/
/* base contents */
/*====================================*/
html {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    line-height: 160%;
    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;
    overflow-x: hidden;
}

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

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

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

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

.tb {
    display: none;
}

.sp {
    display: block;
}

p {
    color: var(--bk);
    font-weight: 500;
    line-height: 180%;
    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;
    }
}

/* ----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: 1080px;
    margin: 0 auto;
    padding: 4rem 20px;
}

.inner__bg {
    max-width: 1080px;
    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: 7.5rem 0;
    }
}

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

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

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

.space-80 {
    margin-bottom: 5rem;
}

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

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

.btn {
    display: block;
    color: var(--wh);
    background: var(--pk);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 160%;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
    padding: 1.5rem 0;
}

@media screen and (max-width: 768px) {

    .btn {
        font-size: 1.3rem;
        padding: 1rem 0;
    }

    .space-80 {
        margin-bottom: 3rem;
    }
}

/* ----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-1:hover {
    background-color: white;
    border: 1px solid var(--main);
    color: var(--main);
}

.btn-1::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-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-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-sub:hover {
    background-color: var(--sub);
    color: var(--white);
}

@media screen and (min-width: 768px) {
    .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: flex;
    flex-direction: row;
}

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


@media screen and (max-width: 768px) {

    .col_1,
    .col_1_2 {
        display: flex;
        flex-direction: column;
    }

    .reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}

@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-view .bg-texts.js-move.move .bg-text02,
.top-view .bg-texts.js-move.move .bg-text03 {
    opacity: 0;
    transform: translateX(-100%);
    transition: all ease-in 0.5s;
}

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

.header__nav .logo__box {
    width: 6.5%;
    margin-left: 0;
    margin-right: 2rem;
}

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

    .header__nav .logo__box {
        width: 20%;
    }
}

@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(--pk);
    font-size: 20px;
    font-weight: 500;
    text-shadow: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    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(--blue);
    transform: translateX(-50%);
}

@media screen and (max-width:959px) {
    header .nav__item:not(:last-child)>a {
        padding-left: 0;
        padding: 0.8rem 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;
    border-radius: 50px;
    margin: 0;
}

@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(--wh);
    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: 32px;
    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(--blue);
    position: relative;
    transition: ease .4s;
    display: block;
    height: 3px;
}

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

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

.hamburger span:nth-child(2) {
    margin: 8px 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;
    }

    .header__nav.active {
        padding: 1.5rem;
    }
}

.hamburger.active span:nth-child(1) {
    top: 12px;
    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: var(--bk);
    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;
}

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



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

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


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

.article-area h1 {
    font-size: 2rem;
    font-weight: 500;
}

.article-area p {
    padding-bottom: 1rem;
}



/*====================================*/
/* 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: var(--bk);
    text-align: center;
    background: var(--light-pk);
    min-width: 3em;
    transition: all .2s;
    padding: calc(1em - 1px) 1em;
    border-radius: 50px;
    font-weight: 700;
}

.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: var(--wh);
    background: #ef4991;
}

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

.pagination__list {
    display: none;
}

.pagination__item {
    margin: 0;
}

.pagination__item--current {
    background: var(--pk);
    color: var(--wh);
    font-weight: 700;
    border-radius: 50px;
}

.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;
        gap: 0.5rem;
    }

    .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) {
    .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-view .title-area h1 {
        max-width: 130px;
        margin-bottom: 2.5rem;
    }

    .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-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-view .bg-texts .bg-text01 .fnt-jp.vertical {
        writing-mode: vertical-rl;
    }

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

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

/*====================================*/
/* Common */
/*====================================*/
.main__ttl {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    display: flex;
    margin-bottom: 5rem;
    text-align: center;
}

.main__ttl::after {
    content: "";
    background-color: var(--blue);
    width: 5rem;
    height: .15rem;
}

.main__read {
    text-align: center;
    margin: -1rem auto 5rem;
}

.sub-title {
    color: var(--blue);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    line-height: 140%;
}

.sub-title__pk {
    display: inline-block;
    color: var(--bk);
    background: var(--light-pk);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 160%;
    border-radius: 50px;
    padding: 12px 2.5rem;
}

.sub-title__blue {
    display: inline-block;
    color: var(--bk);
    background: var(--light-blue);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 160%;
    border-radius: 50px;
    padding: 12px 2.5rem;
}

.caption {
    color: var(--pk);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 140%;
}

@media screen and (max-width: 768px) {
    .main__ttl {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        gap: 1rem;
    }

    .main__read {
        margin: 0 auto 3rem;
    }

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

    .sub-title__pk,
    .sub-title__blue {
        font-size: 1.3rem;
        padding: 12px 1.5rem;
        letter-spacing: 0;
        text-align: center;
    }

    .caption {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        width: 100%;
    }
}

/*====================================*/
/* CTA Common */
/*====================================*/

#cta {
    background-color: var(--light-pk);
}

#cta .inner a {
    display: block;
    max-width: 720px;
    margin: auto;
}

@media screen and (max-width:768px) {}

/*====================================*/
/* TOP MV */
/*====================================*/

#mv__A.mv-cnt {
    position: relative;
}

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

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

#mv__A .mv-txt__box h1 span {
    color: var(--pk);
}

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

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

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

@media screen and (max-width: 767px) {
    #mv__A .img-list {
        gap: 0.5rem;
    }

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

    #mv__A .mv-txt__box h1 span {
        color: var(--pk);
    }

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

    #mv__A .img__box {
        background: url(./img/top/top-mv-sp.webp) no-repeat center;
        background-size: cover;
        height: 630px;
    }
}

/*====================================*/
/* TOP 初めての方へ */
/*====================================*/

#top__about {
    position: relative;
}

.about__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about__box .right__box {
    position: relative;
}

.about__box .right__box .main__img__box {
    position: absolute;
    transform: translateY(-50%);
    left: 40px;
    width: 174%;
}

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

.category {
    margin: 5rem 0 0;
}

#top__about .grid_1_2 {
    gap: 2.5rem;
}

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

    .about__box img {
        border-radius: 10px;
    }

    .about__box .right__box .main__img__box {
        position: relative;
        transform: none;
        left: 0;
        width: 100%;
    }

    .category {
        margin: 2.5rem 0 0;
    }

    #top__about .grid_1_2 {
        gap: 1.5rem;
    }
}

/*====================================*/
/* TOP ご挨拶 */
/*====================================*/
#top__greeting {
    background: var(--yellow);
    border-radius: 5rem 5rem 0 0;
}

.greeting__main {
    margin-bottom: 5rem;
    justify-content: center;
    gap: 2rem;
}

.greeting__main .img__box {
    width: 25%;
}

.greeting__main .text__box {
    width: 72%;
}

.profile__list {
    background: var(--wh);
    padding: 1.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.profile__box {
    margin-bottom: 1rem;
}

.profile__box .grid_1_2,
.profile__box .col_3 {
    gap: 1rem;

}

.profile__box .text_box {
    flex-basis: auto;
}

.profile__box h4 {
    color: var(--blue);
    font-size: 18px;
    font-weight: 500;
}

.profile__box h5 {
    border-left: solid 2px var(--blue);
    letter-spacing: 0.5px;
    padding-left: 0.5rem;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    #top__greeting {
        border-radius: 2.5rem 2.5rem 0 0;
    }

    .greeting__main {
        margin-bottom: 3rem;
    }

    .greeting__main .img__box {
        width: 80%;
    }

    .greeting__main .text__box {
        width: 100%;
    }

    .profile__list {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
}

/*====================================*/
/* TOP メニュー */
/*====================================*/
#top__menu {}

.menu__list {
    text-align: center;
}

.menu__box {
    margin-top: 4rem;
    gap: 1.5rem;
}

.menu__item {
    background: var(--yellow);
    padding: 1rem;
    border-radius: 20px;
}

.menu__item img {
    width: 104px;
    height: 104px;
    margin-bottom: 1rem;
}

.menu__item h4 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 4px;
}

@media screen and (max-width: 767px) {
    .menu__box {
        margin-top: 2.5rem;
    }
}

/*====================================*/
/* TOP お知らせ */
/*====================================*/
#top__info .inner {
    padding: 7.5rem 0 0;
}

.news-archive-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.news-archive {
    width: calc((100% - 40px) / 3);
    /* 3段組み */
}

.btn-area {
    max-width: 50%;
    margin: auto;
}

@media (max-width: 768px) {
    #top__info .inner {
        padding: 4rem 20px 0;
    }

    .news-archive {
        width: 100%;
        /* スマホでは1枚ずつ */
    }

    .btn-area {
        max-width: 100%;
    }
}

.news-archive a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--wh);
    margin-bottom: 15px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-archive a:hover .news-img img {
    transform: scale(1.1);
}

.news-text-box .day {
    font-size: 1rem;
}

.news-title {
    font-size: 1rem;
    font-weight: 500;
}

/*====================================*/
/* TOP アクセス */
/*====================================*/
#top__access .inner {
    padding: 7.5rem 0 0;
}

.access__list h3 {
    color: var(--pk);
    font-size: 1.5rem;
    font-weight: 500;
}

.access__list h4 {
    color: var(--blue);
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 0 0.5rem;
}

@media (max-width: 768px) {
    #top__access .inner {
        padding: 4rem 20px 0;
    }

    .access__list {
        gap: 2rem;
    }

    .map__box iframe {
        width: 100%;
        height: 300px;
    }
}

/*====================================*/
/* TOP 注意事項 */
/*====================================*/
#top__notes {}

.notes__box {
    position: relative;
    border-radius: 20px;
    border: 3px solid var(--blue);
    padding: 2.5rem;
}

.notes__box::before {
    content: "";
    position: absolute;
    background-image: url(./img/common/cat_01.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: -60%;
    left: 2%;
    width: 136px;
    height: 136px;
}

.notes__box::after {
    content: "";
    position: absolute;
    background-image: url(./img/common/cat_02.webp);
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -55%;
    right: 1%;
    width: 100px;
    height: 156px;
}

@media screen and (max-width: 767px) {
    .notes__box {
        padding: 1.5rem 1rem;
    }

    .notes__box::before {
        top: -33%;
        left: 3%;
        width: 96px;
        height: 96px;
    }

    .notes__box::after {
        bottom: -35%;
        right: 3%;
        width: 71px;
        height: 112px;
    }
}

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

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

#footer .nav__list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

#footer .nav__list li a {
    font-size: 18px;
    font-weight: 500;
}

#footer .nav__list .logo__box {
    width: 18%;
    padding-right: 5rem;
}

#footer .copyright .txt {
    padding-bottom: 2rem;
    text-align: center;
    font-size: 13px;
}

@media screen and (max-width: 767px) {
    #footer .inner {
        padding: 3rem 0 1rem;
    }

    #footer .nav__list .logo__box {
        width: 30%;
        padding-right: 0;
        margin: auto;
    }

    #footer .nav__list {
        text-align: center;
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ======================================================================== */
/* 下層ページ */
/* ======================================================================== */

/*====================================*/
/* 下層ページ MV */
/*====================================*/

#lower-layer__mv {
    position: relative;
}

#lower-layer__mv .ttl__cnt {
    width: 1080px;
    position: absolute;
    text-align: right;
    top: 55%;
    right: 50%;
    font-weight: 700;
    font-size: 2rem;
    transform: translate(50%, -50%);
}

#lower-layer__mv p {
    text-align: right;
    font-size: 1rem;
    margin-top: 0.5rem;
}

@media screen and (max-width: 767px) {
    #lower-layer__mv .ttl__cnt {
        width: 100%;
        font-size: 1.2rem;
        text-align: center;
    }

    #lower-layer__mv img {
        object-fit: cover;
        object-position: 40% 0;
        width: auto;
        height: 200px;
    }

    #lower-layer__mv h1,
    #lower-layer__mv p {
        text-align: center;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.80);
        line-height: 150%;
    }
}

/*====================================*/
/* 妊活・不妊治療 伝えたいこと*/
/*====================================*/

#ninkatsu__message {
    position: relative;
    overflow: hidden;
}

#ninkatsu__message .inner {
    padding: 7.5rem 0 0;
}

#ninkatsu__message::before,
#ninkatsu__message::after {
    content: "";
    position: absolute;
    background-image: url(./img/lower-layer/message-deco.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 400px;
    height: 400px;
}

#ninkatsu__message::before {
    top: 8%;
    left: -3%;
}

#ninkatsu__message::after {
    bottom: 5%;
    right: -3%;
}

.message__box {
    text-align: center;
}

@media screen and (max-width: 767px) {
    #ninkatsu__message .inner {
        padding: 4rem 20px 0;
    }

    #ninkatsu__message::before {
        top: 3%;
        left: -10%;
        width: 140px;
        height: 140px;
        z-index: -10;
    }

    #ninkatsu__message::after {
        bottom: -3%;
        right: -7%;
        width: 140px;
        height: 140px;
        z-index: -10;
    }

    #ninkatsu__message p {
        text-align: left;
    }
}

/*====================================*/
/* 妊活・不妊治療 あなたと未来の赤ちゃんのために */
/*====================================*/
#ninkatsu__future {
    position: relative;
}


#ninkatsu__future .img__box {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.future__list {
    margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {

    #ninkatsu__future .img__box {
        margin-bottom: 1.5rem;
    }

    #ninkatsu__future .img__box img {
        object-fit: cover;
        height: 230px;
        border-radius: 16px;
    }

    .future__list {
        margin-bottom: 3rem;
    }
}

/*====================================*/
/* 妊活・不妊治療 メニュー */
/*====================================*/
#ninkatsu__menu {
    background: var(--yellow);
}

#ninkatsu__menu .menu__item {
    background: var(--wh);
}

#ninkatsu__menu .grid_1_2 {
    gap: 2.5rem;
}

#ninkatsu__menu .btn {
    margin-top: 1.5rem;
    padding: 1rem 0;
}

@media screen and (max-width: 768px) {
    #ninkatsu__menu .grid_1_2 {
        gap: 1.5rem;
        display: flex;
        flex-direction: column-reverse;
    }
}

/*====================================*/
/* 妊活・不妊治療 料金 */
/*====================================*/
#ninkatsu__price {}

.price-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.price-header {
    display: flex;
    font-weight: bold;
    text-align: center;
}

.header-item {
    width: 50%;
    padding: 15px 0;
}

.header-item h4 {
    color: var(--wh);
    font-size: 1.3rem;
    font-weight: 500;
}

.item-first {
    background: var(--pk);
}

.item-second {
    background: #E63684;
}

.price-body {
    display: flex;
    padding: 1.5rem 0;
    text-align: center;
    align-items: center;
    background: var(--wh);
}

.body-item {
    width: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--bk);
}

.body-item span {
    font-size: 0.8rem;
    font-weight: normal;
    margin-left: 2px;
}

.body-item:first-child {
    border-right: 1px solid #eee;
}

/*====================================*/
/* マタニティ ・ 産後の骨盤矯正 */
/*====================================*/

#maternity {}

.maternity__list {
    gap: 2.5rem;
}

.maternity__list .img__box,
.sango__list .img__box {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.list__ba .text__box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.list__ba .grid_1_2 {
    gap: 2.5rem;
}

.list__ba .col_1_3>* {
    display: flex;
    flex-basis: auto;
    flex-flow: row wrap;
    gap: 1rem;
}

.list__ba .col_1_3 {

    align-items: center;
    gap: 20px
}

.list__ba .col_1_3 img {
    width: 48px;
    height: 32px;
}

#lower-layer__menu {
    background: var(--yellow);
}

.menu__price {
    text-align: left;
}

.menu__price h3,
.menu__price .txt {
    margin-bottom: 1rem;
}

.menu__price .txt-t {
    margin-top: 1rem;
}

#lower-layer__menu .menu__item {
    background: var(--wh);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu__group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


@media screen and (max-width: 768px) {

    .maternity__list,
    .sango__list {
        gap: 1.5rem;
    }

    .list__ba .grid_1_2 {
        gap: 1.5rem;
    }

    .list__ba .col_1_3 {
        flex-direction: column;
    }

    .list__ba .col_1_3 img {
        transform: rotate(90deg);
    }
}

/*====================================*/
/* 赤ちゃん整体 */
/*====================================*/

#baby__about {
    position: relative;
}

#baby__about .grid_1_2,
.space__list .col_1_2 {
    gap: 2.5rem;
}

.space__list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.baby-seitai__list .img__box {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.baby__trouble {
    background: var(--light-blue);
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.10);
}

.baby__trouble p {
    text-align: center;
}

.baby__trouble h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

.baby__trouble li {
    position: relative;
    padding-left: 1.5rem;
}

#baby__about .main__img__box::before,
.baby__trouble li::before,
.baby__answer::before,
.baby__answer::after,
.helmet__box::before,
.helmet__box::after,
#touchcare__about .about__box .left__box::before,
#touchcare__about .about__box .left__box::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
}

#baby__about .main__img__box::before {
    background-image: url(./img/lower-layer/baby_deco01.webp);
    top: 0%;
    left: -6%;
    width: 18%;
    height: 28%;
}

.baby__trouble li::before {
    background-image: url(./img/lower-layer/check_blue.webp);
    top: 25%;
    left: -5%;
    width: 24px;
    height: 16px;
}

.baby__answer {
    position: relative;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    line-height: 180%;
}

.baby__answer::before {
    background-image: url(./img/lower-layer/baby_answer.webp);
    top: 0;
    left: 6%;
    width: 80px;
    height: 86px;
}

.baby__answer::after {
    background-image: url(./img/lower-layer/baby_answer.webp);
    top: 0;
    right: 7%;
    width: 80px;
    height: 86px;
    transform: scale(-1, 1);
}

.baby__5g-touch .text__box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    margin-top: 1.5rem;
    border-radius: 20px;
    border: 3px solid var(--pk);
    background: var(--yellow);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.10);
}

.baby__5g-touch .text__box h4 {
    color: var(--pk);
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

#baby__helmet .inner {
    padding-bottom: 0;
}

.helmet__box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-radius: 20px;
    padding: 2.5rem 0;
    margin-top: 2.5rem;
    background: var(--yellow);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.10);
}

.helmet__box::before {
    background-image: url(./img/lower-layer/baby_deco02.webp);
    bottom: 0;
    left: 2%;
    width: 118px;
    height: 85px;
}

.helmet__box::after {
    background-image: url(./img/lower-layer/baby_deco03.webp);
    bottom: 0;
    right: 3%;
    width: 102px;
    height: 86px;
}

.helmet__box h4 {
    color: var(--pk);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 160%;
    margin-bottom: 1.5rem;
    text-align: center;
}

.helmet__box td,
.helmet__box th {
    padding: 0 2rem 1rem 2rem;
}

.helmet__point .item__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.helmet__point .grid_1_2 {
    gap: 1.5rem;
}

.line__box-pk {
    border-radius: 20px;
    border: solid 3px var(--pk);
    padding: 1.5rem;
}

.line__box-blue {
    border-radius: 20px;
    border: solid 3px var(--blue);
    padding: 1.5rem;
}

.line__box-pk h5,
.line__box-blue h5 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
}

.helmet__continue .grid_1_2 {
    margin-top: 2.5rem;
    gap: 2.5rem;
}

.helmet__continue .grid_1_2 .item__box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.helmet__continue .grid_1_2 .item__box h5 {
    color: var(--pk);
    font-size: 18px;
    font-weight: 500;
}

#baby__direction .inner {
    padding-bottom: 0;
}

.direction__about {
    gap: 2.5rem;
}

.direction__point .menu__item {
    display: flex;
    background: var(--light-blue);
    flex-direction: column;
    align-items: center;
}

.direction__growth .grid_1_2 {
    margin-top: 2.5rem;
    gap: 1.5rem;
    text-align: center;
}

.list__ba .item__box {
    display: flex;
    flex-direction: column;
}

.list__ba h4 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 1rem;
}

.before__box {
    flex-grow: 1;
    padding: 0.5rem;
    margin-top: 1rem;
    border-radius: 8px;
    background: var(--light-blue);
}

.after__box {
    flex-grow: 1;
    padding: 0.5rem;
    margin-top: 1rem;
    border-radius: 8px;
    background: var(--light-pk);
}

#touchcare__about .inner {
    padding-bottom: 0;
}

#touchcare__about .about__box .left__box {
    position: relative;
}

#touchcare__about .about__box .left__box::before {
    background-image: url(./img/lower-layer/baby_deco04.webp);
    top: -360px;
    left: 0;
    width: 120px;
    height: 127px;
    z-index: 10;
}

#touchcare__about .about__box .left__box::after {
    background-image: url(./img/lower-layer/baby_deco05.webp);
    bottom: -300px;
    right: 10%;
    width: 100px;
    height: 120px;
}

#touchcare__about .about__box .left__box .main__img__box {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 30px;
    width: 174%;
}

#touchcare__about .baby__trouble {
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {

    #baby__about .grid_1_2,
    .space__list .col_1_2,
    .helmet__point .item__box {
        gap: 1.5rem;
    }

    .space__list {
        gap: 3rem;
    }

    .baby__trouble {
        padding: 2rem 1.3rem;
    }

    .baby__trouble h4,
    .baby__answer,
    .line__box-pk h5,
    .line__box-blue h5 {
        font-size: 20px;
        font-weight: 500;
        text-align: center;
    }

    .baby__trouble p {
        text-align: left;
    }

    .baby__answer::before {
        top: 0;
        left: -4%;
        width: 56px;
        height: 59px;
    }

    .baby__answer::after {
        top: 0;
        right: -2%;
        width: 56px;
        height: 59px;
    }

    .helmet__box {
        overflow-x: scroll;
    }

    .sp__box {
        width: 890px;
        margin: auto;
        padding: 0 1rem;
    }

    .helmet__box::before,
    .helmet__box::after {
        background-image: none;
    }

    .baby__trouble {
        padding: 1.5rem 1rem;
    }

    .line__box-pk,
    .line__box-blue {
        padding: 1rem;
    }

    .direction__growth .grid_1_2 {
        margin-top: 1.5rem;
    }

    #touchcare__about .baby__trouble {
        padding-left: 2rem;
    }

    #touchcare__about .about__box .left__box::before {
        left: 2%;
        top: -30px;
        width: 60px;
        height: 63px;
    }

    #touchcare__about .about__box .left__box::after {
        bottom: -16px;
        right: 2%;
        width: 65px;
        height: 79px;
    }

    #touchcare__about .about__box .left__box .main__img__box {
        position: relative;
        transform: none;
        left: 0;
        width: 100%;
    }

    #touchcare__about .about__box {
        flex-direction: column;
    }
}

/*====================================*/
/* タッチケア */
/*====================================*/

#touchcare__message ul {
    margin: auto;
    text-align: left;
    display: inline-block;
    font-weight: 500;
    padding: 0.5rem 0;
}

#touchcare__flow {
    background: var(--yellow);
    border-radius: 5rem;
}

#touchcare__flow .menu__item {
    background: var(--wh);
}

#touchcare__flow .menu__item p {
    text-align: left;
}

.autonomic-nerves__about .grid_1_2 {
    gap: 2.5rem;
}

.autonomic-nerves__work .col {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

#touchcare__flow .sub-title__pk,
#touchcare__flow .sub-title__blue {
    font-size: 18px;
    font-weight: 700;
    display: block;
    text-align: center;
}

.autonomic-nerves__work .item__box {
    width: 50%;
}

.autonomic-nerves__work .item__box p {
    text-align: center;
    border-radius: 20px;
    background: var(--yellow);
    padding: 1rem;
    margin-top: 1rem;
}

.autonomic-nerves__work .img__box {
    width: 5%;
}

.autonomic-nerves__balance .item__box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.autonomic-nerves__balance p {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    background: var(--light-blue);
}

#autonomic-nerves .line__box-pk {
    text-align: center;
}

@media screen and (max-width: 768px) {
    #touchcare__message .message__box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #touchcare__message .message__box p {
        text-align: left;
    }

    #touchcare__message ul {
        margin: 0;
    }

    #touchcare__flow {
        border-radius: 2rem;
    }

    .autonomic-nerves__work .col {
        flex-direction: column;
    }

    .autonomic-nerves__work .item__box {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .autonomic-nerves__work .col .img__box {
        display: none;
    }

    .autonomic-nerves__balance p {
        padding: 8px 16px;
    }

    .autonomic-nerves__balance .item__box {
        gap: 16px 8px;
    }

}