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

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

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

:root {
    --main: #24B9C9;
    --sub: #A67C00;
    --white: #fff;
    --wh-gray: #f8f8f8;
    --gray: #B2B2B2;
    --txt: #fff;
    --txt-wh: #fff;
    --txt-bl: #39302D;
    --point: #473838;
}

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

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

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

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

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

.tb {
    display: none;
}

.sp {
    display: block;
}

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

    .sp {
        display: none;
    }
}

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

    .tb {
        display: none;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

.color-2 {
    color: #fff;
}

.color-3 {
    color: #f1ede8;
}

.color-4 {
    color: #e3dbd0;
}

.color-5 {
    color: #d7c6af;
}

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

.color-7 {
    color: #f7f7f7;
}

.color-8 {
    color: #cec6bb;
}

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

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

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

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

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

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

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

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

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

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

.display-none {
    display: none;
}

.display-inline {
    display: inline;
}

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

/* ----inner---- */
.inner {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    padding-top: 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-top: 7rem;
        padding-bottom: 7rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

.btn-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 (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-family: "Jost";
    font-weight: 400;
    font-style: normal;
}

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

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

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

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

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

    50% {
        background-position: 0 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.header__logo img {
    width: 100%;
}

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

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

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

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

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

.header__title {
    width: 80px;
}

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

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


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

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

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

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

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

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

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

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

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

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

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

.nav__item a span.fnt-en {
    color: var(--main);
    font-size: 1.5rem;
    font-weight: 600;
}

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

.nav__item::after {
    content: none;
}

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

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

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

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

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

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

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

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

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

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

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

@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 {
        padding: rem 1.5rem;
    }

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

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

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

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

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

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

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

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

@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;
    /* z-index: 999; */
}

#top__info__A-01 .info-cnt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding: 1.5rem 0;
}

#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 .info-cnt {
        gap: 1rem;
        justify-content: initial;
    }
    #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;
}

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

.news-archive {
    background: var(--white);
    padding: .5rem 1rem;
}

.news-archive-list .news-archive .day {
    color: var(--gray);
}

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

.news-archive-list .news-archive>*>p.sp-border-t::after {
    content: none;
}

.news-archive-cnt {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.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-t::after {
    content: "";
    position: absolute;
    background: #1C1C1C;
    width: 1px;
    height: 14px;
    right: 0;
    top: calc(50% - 7px);
}

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

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

/*------------------- 下層ページ -------------------*/
/*====================================*/
/* 作品一覧ページ  */
/*====================================*/
.bg-img::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100lvh;
    background: var() url(./img/bg_bage.png) no-repeat right top;
    background-position: 0% 5%;
}

.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);
    }
}
/*====================================*/
/* about/history */
/*====================================*/
#about .history {
    position: relative;
}

#about .history.sec-mg {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#about .about-cnt .btn {
    padding: .7rem 0;
    max-width: 280px;
}

#about .about-cnt:last-child .btn {
    margin-bottom: 0;
}

.history__list::before {
    content: "";
    width: 7px;
    border-radius: 50px;
    height: 100%;
    background: #1C1C1C;
    margin-left: 0.5rem;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.history__list>li {
    position: relative;
    padding-left: 3rem;
}

.history__list>li:not(:last-child) {
    margin-bottom: 2.5rem;
}

.history__list .list-l {
    position: relative;
    display: inline-block;
    border-radius: 3px;
    background-color: #1C1C1C;
    color: #fff;
    text-align: center;
    padding: 0.3rem 1rem;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

.history__list>li dl dt {
    margin-bottom: .5rem;
}

.history__list>li .list-l::after {
    content: "";
    background: #1C1C1C;
    height: calc(tan(50deg) * 10px / 2);
    width: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    bottom: -25%;
    left: 40%;
    transform: translateY(-50%);
}

.history__list>li .list-r::before,
.history__list>li dl::after {
    content: "";
    display: block;
    position: absolute;
    top: 13px;
}

.history__list>li .list-r::before {
    width: 25px;
    height: 25px;
    margin-top: -11px;
    background: #1C1C1C;
    border: solid #fff 6px;
    border-radius: 50%;
    left: -8px;
    z-index: 100;
}

.history__list>li .list-r::before {
    width: 15px;
    height: 15px;
    margin-top: -6px;
    background: #fff;
    border: solid #1C1C1C 3px;
    border-radius: 50%;
    left: 3px;
    z-index: 100;
}

.history__list>li .list-r.find.up::before {
    background: var(--main);
    transform: scale(1.5);
    animation-duration: 0.5s;
    animation-name: findUp;
}

@keyframes findUp {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.5);
    }
}

.history__list>li dl::after {
    width: 40px;
    border-bottom: 2px dashed #1C1C1C;
    border-radius: 5px;
    position: absolute;
    left: 17px;
}

.profile-cnt {
    display: grid;
    gap: 4rem 2rem;
}

.profile-cnt.sec-mg {
    padding-bottom: 0;
}


.profile-cnt .profile-cnt-r {
    position: relative;
    order: -1;
}


.profile-cnt .profile-cnt-l .heading-block h3 {
    font-size: 2.5rem;
}

.heading-block-sub>* {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.heading-block-sub>*::after {
    content: "";
    background: #d7c6af;
    width: 50px;
    height: 1.2px;
    position: relative;
    display: inline-block;
}

/*====================================*/
/* single/作品ページ */
/*====================================*/
#single-work {
    position: relative;
}

#work-page .scrolldown {
    right: 5.5%;
}

#work-page .sec-mg {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

#work-page .work-img-area {
    height: 40vh;
    min-height: 300px;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 10px;
    z-index: 1;
}

.arrow-pencil-tag {
    display: inline-block;
    margin: 0rem 1rem 1rem 0rem;
    padding: 0 1.2rem;
    line-height: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all ease-in 0.2s;
}

.arrow-pencil-tag:last-child {
    margin-bottom: 1.8rem;
}

.arrow-pencil-tag::before {
    display: inline-block;
    background: url(./img/arrow-pencil.svg) no-repeat left;
    content: "";
    padding-left: 2.3rem;
    display: inline-block;
    vertical-align: baseline;
    height: 9px;
    width: 26px;
    transition: all ease-in 0.2s;
}

.arrow-pencil-tag:hover {
    background-color: #1C1C1C;
}

.arrow-pencil-tag:hover::before {
    background: url(./img/arrow-pencil-w.svg) no-repeat left;
}

#work-page .work-info-tag.hash-btn {
    background: var(--main) url(./img/arrow-pencil.svg) no-repeat left 1.2rem center;
    min-height: 25px;
    display: inline-block;
    padding: 1rem 1.5rem 1rem 2.8rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

#work-page .img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

#work-page .img-wrap .mv-work {
    position: relative;
    height: 100%;
    left: 0px;
    top: 0px;
    width: auto;
    animation: animationMoveWorkMv 20s 0s ease-out infinite alternate;
    animation-fill-mode: both;
    max-width: initial;
    border-radius: 10px;
}

#work-page .work-info-btn {
    position: absolute;
    display: inline-block;
    top: -33.8984px;
    border-radius: 5px 5px 0 0;
    padding: .5rem 1.5rem;
    border: 1.2px solid #f7f7f7;
    border-bottom: none;
}

#work-page .work-info-ttl {
    position: relative;
    margin-bottom: 2rem;
}

#work-page .work-info-ttl .date {
    margin-bottom: .5rem;
    font-family: "Vidaloka", serif;
}

#work-page .work-info-ttl .work-txt {
    border-bottom: #1C1C1C 1px solid;
}

#work-page .work-info-ttl .work-txt h1 {
    margin-bottom: 1.5rem;
}

#work-page .work-btn {
    display: inline-block;
}

#work-page .credit {
    position: relative;
}

#work-page .credit .sp-border-y {
    margin-right: 2.5rem;
}

#work-page .sp-border-y::after {
    background: #1C1C1C;
    margin-left: .8rem;
}

/* youtube埋め込みスタイル */
#work-page .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

#work-page .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.credit-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    border: var(--gray) 1px solid; 1px
    solid; 1px
    solid; 1px
    solid;
    border-radius: 5px;
    background: var(
    --wh-gray);
}

.credit-list .title-credit {
    border-right: var(--gray) 1px dotted; 1px
    dotted; 1px
    dotted; 1px
    dotted;
    padding: 2rem .5rem;
    writing-mode: vertical-rl;
    font-weight: initial;
}

.credit-list .credit-cnt {
    display: grid;
    gap: 0.7rem 0;
    padding: 1.2rem;
    overflow: auto;
    width: 100%;
}

.credit-box {
    display: grid;
    gap: 0 1rem;
    grid-template-columns: 80px 1fr;
    border-bottom: 1px dotted var(--gray);
}

@keyframes animationMoveWorkMv {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-30%);
    }
}

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

/*====================================*/
/* design（デザインページ） */
/*====================================*/
#design .sec-ttl::before {
    color: #d7c6af;
    content: 'design';
}

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

/*====================================*/
/* 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: 90px 1fr;
        gap: 2rem;
    }

    .news-archive-list .news-archive>*>p.sp-border-t::after {
        content: "";
        right: -10px;
    }

    /*====================================*/
    /* intro・トップページ */
    /*====================================*/
    #top-intro .inr-mg {
        padding-top: 10rem;
        padding-bottom: 7rem;
    }

    #top-intro .img-box {
        width: 300px;
    }

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

    #top-intro .intro-box .btn {
        display: block;
    }

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

    #top-works .ttl-wh {
        width: 300px;
    }

    .works-slide-cnt .tag-area {
        position: sticky;
        order: -1;
    }

    #top-works .works-links {
        max-width: initial;
        min-width: calc(100% - 280px);
        padding: initial;
    }

    #top-works .works-links .w-btn .update-date-area {
        display: block;
        position: initial;
        transform: initial;
        padding-right: 25px;
    }

    #top-works .works-links .w-btn .thumb-area {
        max-width: 55rem;
        height: 29rem;
    }

    #top-works .works-links .works-list {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    #top-works .works-links .works-list .work-parts {
        width: calc(100% - 3.5rem);
    }

    #top-works .works-links .works-list .work-parts .work-info {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }

    #top-works .works-links .w-btn .update-date-area .title-recent {
        display: block;
        font-size: .9rem;
        padding-bottom: 1rem;
        text-align: initial;
    }

    #top-works .works-links .w-btn .update-date-area .day {
        font-size: 1.2rem;
        line-height: 1.2;
        padding-top: 15px;
    }

    #top-works .work-area-bottom {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    #top-works .work-area-bottom.inner {
        max-width: initial;
        background-color: #f7f7f7;
    }

    #top-works .work-area-bottom .swiper-pagination {
        margin-bottom: 0;
    }

    #top-works .btn {
        max-width: 320px;
    }

    /*====================================*/
    /* between・トップページ */
    /*====================================*/
    #top-greeting {
        background-attachment: fixed;
        background-size: 115%;
        padding: initial;
    }

    #top-greeting .skill-txt {
        padding-top: 11rem;
        padding-bottom: 12rem;
        line-height: 3rem;
    }


    /*====================================*/
    /* about・トップページ */
    /*====================================*/
    .side-nav-wrap {
        padding: 40px 0;
    }

    #top-about .skill-ttl {
        font-size: 7rem;
        position: absolute;
        margin: 3.5rem 0 0;
    }

    #top-about .skill-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        align-content: stretch;
        overflow: hidden;
        padding-bottom: 5rem;
    }

    #top-about .skill-list .skill-img-area {
        padding: 5rem 0 0;
    }

    #top-about .skill-list .skill-img-area .skill-img-circle {
        height: 330px;
        width: 330px;
    }

    #top-about .skill-list .skill-img-area .txt-area {
        padding: 0rem 9rem;
    }

    #top-about .skill-list .skill-img-area .skill-img-circle::before {
        left: 64px;
        width: 60px;
        height: 54px;
        bottom: 1px;
    }

    #top-about .skill-list .skill-img-area .skill-img-circle::after {
        left: 100px;
        width: 25px;
        height: 20px;
        bottom: -26px;
    }

    #top-about .skill-list .skill-cnt {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        width: calc((100% - 40px) / 2);
        padding: .6rem 0;
        margin: 0;
        border-bottom: #f1ede8 1px solid;
    }

    #top-about .skill-list .skill-cnt a {
        border-bottom: none;
    }

    #top-about .skill-list .skill-cnt .skill-link {
        padding: 1.2rem 0 .6rem;
    }

    #top-about .skill-list .btn-area {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-start;
        align-content: flex-start;
        width: calc((100% - 40px) / 2);
        padding: initial;
    }

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

    /*------------------- 下層ページ -------------------*/
    /*====================================*/
    /* 作品一覧ページ  */
    /*====================================*/
    .bg-img::before {
        background-size: cover;
        background-position: -75%;
    }

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

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

    .page-ttl-en {
        width: 10%;
    }

    .page-ttl-main {
        width: 90%;
    }

    .works-cat-wrap .works-cat-list {
        font-size: .75rem;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 2rem;
    }

    #works .works-list {
        gap: 4.5rem 2rem;
    }

    #works .page-work-link .hov-gray::before,
    #works .page-work-link .thumb-area img {
        height: 220px;
    }

    /*====================================*/
    /* プロフィールページ  */
    /*====================================*/
    #about .about-cnt {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
        width: 100%;
    }

    #about .about-img {
        height: 160px;
        width: 160px;
    }

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

    #about .about-info {
        width: calc(100% - 160px);
        margin-top: initial;
        padding-left: 1.5rem;
    }

    #about .num-area {
        border: none;
        padding-bottom: initial;
    }

    .profile-cnt {
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }

    .profile-cnt .profile-cnt-l {
        grid-row: 1/2;
        grid-column: 1/2;
    }

    .profile-cnt .profile-cnt-m {
        grid-row: 2/3;
        grid-column: 1/3;
    }

    .profile-cnt .profile-cnt-r {
        grid-row: 1/2;
        grid-column: 2/3;
        max-width: calc(100% -20px);
    }

    .history__list::before {
        left: 114px;
    }

    .history__list li {
        padding-left: 0rem;
        display: flex;
        align-items: flex-start;
    }

    .history__list .list-r {
        padding-left: 6rem;
    }

    .history__list>li dl::after {
        width: 45px;
        left: 120px;
    }

    .history__list>li .list-r::before {
        left: 118px;
    }

    .history__list>li .list-l::after {
        display: inline-block;
        left: initial;
        height: calc(tan(50deg) * 20px / 2);
        width: 10px;
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        bottom: 10%;
        right: -9%;
    }

    /*====================================*/
    /* work-page/作品ページ */
    /*====================================*/
    #work-page .inner {
        padding-left: 2.5rem;
        padding-right: 3rem;
    }

    #work-page .sec-mg {
        padding-top: 4rem;
        padding-bottom: 3.5rem;
    }

    #work-page .article-area .inner {
        padding-left: 2.5rem;
        padding-right: 3rem;
        max-width: 1100px;
    }

    #work-page .work-info-ttl .date {
        font-size: 4rem;
        line-height: 5rem;
        left: 0px;
        opacity: 0.05;
        position: absolute;
        top: -25%;
        mix-blend-mode: multiply;
    }

    #work-page .work-cnt {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
    }

    #work-page .work-img-area {
        height: 500px;
        right: 0px;
        top: 0px;
        width: 50%;
        margin-bottom: initial;
    }

    #work-page .work-info-ttl {
        margin-bottom: 2rem;
    }

    #work-page .work-info-area {
        padding-right: 2.5rem;
        width: 50%;
    }

    .arrow-pencil-tag {
        background-color: var(--main);
        color: #fff;
    }

    .arrow-pencil-tag::before {
        background: url(./img/arrow-pencil-w.svg) no-repeat left;
    }

    #work-page .work-info-btn {
        top: -29.7%;
    }

    .credit-box {
        gap: 0 1.5rem;
        white-space: nowrap;
    }

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

    #top-page .top-view {
        margin-left: initial;
        background: url(./img/main-pc.jpg) no-repeat center;
        background-size: cover;
        min-height: 100vh;
    }

    #top-page .top-view .title-area h1 {
        max-width: 110px;
    }

    #top-page .top-view .bg-texts .bg-text01 {
        right: 100px;
        width: 22%;
        top: 60px;
        padding: 0 0 2rem 2rem;
    }

    #top-page .top-view .bg-texts .bg-text02 {
        top: calc((100vh / 3) * 1.8);
        width: calc(100vw / 4);
        left: 60px;
    }

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

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

    .scrolldown {
        right: 50%;
        bottom: 5%;
    }

    /*====================================*/
    /* info・トップページ */
    /*====================================*/
    #top__info__A-01 .info-cnt {
        width: 800px;
        max-width: 900px;
        transform: initial;
    }

    #top__info__A-01 .col-10 {
        flex: 0 0 40%;
        max-width: 40%;
    }

    /*====================================*/
    /* intro・トップページ */
    /*====================================*/
    #top-intro .inr-mg {
        padding-top: 14rem;
        padding-bottom: 14rem;
    }

    #top-intro .intro-cnt {
        display: flex;
        justify-content: center;
        align-items: end;
    }

    #top-intro .img-box {
        width: 340px;
        margin-right: 5rem;
    }

    #top-intro .intro-box {
        width: calc(100% - 340px);
        margin-top: initial;
    }

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

    #top-intro .intro-box .btn {
        margin-bottom: 0;
        display: inline-block;
    }

    /*====================================*/
    /* works・トップページ */
    /*====================================*/
    #top-works .works-slide-cnt {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .works-slide-cnt .tag-area {
        padding: 4rem 0 4rem 2.7rem;
    }

    .works-slide-cnt .tag-area ul .tags-parts {
        margin-bottom: 1.6rem;
    }

    #top-works .works-links .works-list {
        padding-left: 2.5rem;
    }

    #top-works .works-links .works-list .work-parts {
        width: calc(100% - 5rem);
    }

    #top-works .works-links .works-list .work-parts:only-child {
        margin: initial;
    }

    #top-works .works-links .thumb-area .work-info-ttl {
        width: calc(100% - 80px);
    }

    /*====================================*/
    /* between・トップページ */
    /*====================================*/
    #top-greeting {
        background-size: cover;
    }

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

    #top-about .skill-ttl {
        font-size: 10rem;
        left: 50%;
        position: absolute;
        top: 8%;
        transform: translateX(-50%);
        z-index: 100;
        margin: initial;
    }

    #top-about .skill-list .skill-img-area .txt-area {
        margin: 3rem 0 0;
        padding: 0rem 3.2rem;
    }

    #top-about .skill-list {
        display: grid;
        place-items: center;
        grid-template-columns: calc((100% - 390px) / 2) 390px calc((100% - 390px) / 2);
        position: relative;
        z-index: 100;
        padding: 8rem 0 7rem;
    }

    #top-about .skill-list .skill-img-area {
        grid-row: 1/4;
        grid-column: 2/3;
        padding: 0;
    }

    #top-about .skill-list .skill-img-area .skill-img-circle {
        height: 360px;
        width: 360px;
    }

    #top-about .skill-list .skill-img-area .skill-img-circle::before {
        left: 90px;
        width: 50px;
        height: 38px;
        bottom: -6px;
    }

    #top-about .skill-list .skill-img-area .skill-img-circle::after {
        left: 115px;
        width: 20px;
        height: 17px;
        bottom: -36px;
    }

    #top-about .skill-list .skill-cnt {
        width: calc(100% - 0px);
        border-bottom: none;
        padding: 0;
    }

    #top-about .skill-list .skill-cnt a {
        border-bottom: #f1ede8 1px solid;
    }

    #top-about .skill-list .skill-cnt .skill-link {
        padding: 1rem 0 .6rem;
    }

    #top-about .skill-list .skill-cnt .skill-link .num-area {
        line-height: .9rem;
        white-space: nowrap;
    }

    #top-about .skill-list .skill-cnt .skill-link .num-area .num {
        font-size: 3rem;
    }

    #top-about .skill-list .skill-cnt .skill-link .skill-name {
        line-height: 1.8;
    }

    #top-about .skill-list .skill-cnt--01 {
        grid-row: 1/2;
        grid-column: 1/2;
        padding-right: 1.9rem;
    }

    #top-about .skill-list .skill-cnt--02 {
        grid-row: 1/2;
        grid-column: 3/4;
        padding-left: 1.9rem;
        padding-right: 1.9rem;
    }

    #top-about .skill-list .skill-cnt--03 {
        grid-row: 2/3;
        grid-column: 1/2;
    }

    #top-about .skill-list .skill-cnt--04 {
        grid-row: 2/3;
        grid-column: 3/4;
        padding-left: 3rem;
    }

    #top-about .skill-list .skill-cnt--05 {
        grid-row: 3/4;
        grid-column: 1/2;
        margin-bottom: 0;
    }

    #top-about .skill-list .btn-area {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-start;
        grid-row: 3/4;
        grid-column: 3/4;
        width: initial;
    }

    #top-about .skill-list .btn-area .btn.btn-2 {
        min-width: 300px;
    }

    .side-nav .copyright {
        left: 9px;
        top: 50%;
        bottom: initial;
        writing-mode: vertical-rl;
        width: initial;
    }

    /*====================================*/
    /* footer */
    /*====================================*/
    footer {}

    footer .btn.btn-2, #cv__box .cv-cnt .btn.btn-2 {
        width: 70%;
    }

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

    #works .works-list {
        gap: 4.5rem 3rem;
    }

    #works .page-work-link .hov-gray::before,
    #works .page-work-link .thumb-area img {
        height: 320px;
    }

    /*====================================*/
    /* プロフィールページ */
    /*====================================*/
    #about .about-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        align-content: stretch;
    }

    #about .about-cnt {
        position: relative;
        width: calc((100% - 80px) / 2);
    }

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

    #about .about-img {
        height: 300px;
        width: 300px;
    }

    #about .about-info {
        width: initial;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
        margin-top: 2rem;
        padding: initial;
        padding-bottom: 6rem;
    }

    #about .num-area {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 15%;
    }

    #about .num-area .about-name {
        writing-mode: vertical-rl;
        text-orientation: upright;
        padding-left: initial;
        margin-top: .5rem;
    }

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

    #about .about-detail {
        padding: initial;
        padding-left: 2rem;
    }

    #about .about-cnt .btn {
        position: absolute;
        bottom: 0px;
        display: block;
        text-align: center;
        left: 0px;
        width: 100%;
        right: 0;
    }

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

    .history__list::before {
        left: 113px;
    }

    .history__list .list-r {
        padding-left: 6rem;
    }

    .history__list>li .list-r::before {
        left: 117px;
    }

    .history__list>li dl::after {
        width: 50px;
        left: 117px;
    }

    .profile-cnt {
        align-items: flex-end;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem 6rem;
    }

    .profile-cnt .profile-cnt-l {
        grid-row: 1/2;
        grid-column: 1/3;
    }

    .profile-cnt .profile-cnt-m {
        grid-row: 2/3;
        grid-column: 1/3;
    }

    .profile-cnt .profile-cnt-r {
        grid-row: 1/3;
        grid-column: 3/5;
        width: 365px;
        margin-left: auto;
    }

    /*====================================*/
    /* work-page・作品ページ */
    /*====================================*/
    #work-page .sec-mg {
        padding-top: 7rem;
        padding-bottom: 4.5rem;
    }

    #work-page .inner {
        padding-left: 3rem;
        padding-right: 3.5rem;
        max-width: 1100px;
    }

    #work-page .work-info-area {
        padding-right: 3.5rem;
    }

    #work-page .work-info-ttl {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        border-bottom: #1C1C1C 1px solid;
        margin-bottom: 1.8rem;
    }

    #work-page .work-info-ttl .date {
        font-size: 4rem;
        line-height: 5.5rem;
        top: -28%;
    }

    #work-page .work-info-ttl .work-txt {
        border-bottom: none;
    }

    #work-page .work-info-ttl .work-txt h1 {
        margin-bottom: 1.8rem;
    }

    #work-page .work-info-btn {
        top: -30.3%;
    }

    #work-page .article-area .inner {
        padding-left: 3rem;
        padding-right: 3.5rem;
    }

    .credit-box {
        gap: 0 2rem;
    }
}

@media screen and (min-width: 1400px) {

    #top-about .skill-list .skill-cnt--01,
    #top-about .skill-list .skill-cnt--05 {
        padding-left: 1.9rem;
    }

    #top-about .skill-list .skill-cnt--03 {
        padding-right: 2.5rem;
    }
}

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

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

.bubble__ttl {
    margin-bottom: 3rem;
}

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

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

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

.main__ttl__box {
    margin-bottom: 2rem;
}

.main__ttl {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    align-items: center; /* 横線を上下中央 */
    display: flex; /* 文字と横線を横並び */
    color: var(--main);
}

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

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

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

#mv__A .mv-txt__box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
    padding: 4rem;
}

#mv__A .mv-txt__box .ttl,#mv__A .mv-txt__box .txt {
    color: var(--main-txt, #FFF);
    text-shadow: 0 1px 3px #3A5352;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
}

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

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

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

.mv-info.bg-img {
    background-image: url(./img/top/mv-info-img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#mv__A .img__box {
    background: url(./img/top/top-mv-pc.jpg) no-repeat center;
    background-size: cover;
    min-height: 667px;
    position: relative;
    border-radius: 0 32px;
    margin: 1.5rem 1.5rem 0rem 0;
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / 40%);
}

#mv__A .img__box .logo__box {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 4px solid var(--main);
    border-right: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
    border-left: 8px solid var(--main);
    background: var(--white);
    width: 100px;
    height: 100px;
    position: absolute;
    top: -1.5rem;
    left: 0rem;
    box-shadow: 0 4px 10px 5px rgb(0 0 0 / 12%);
}
@media screen and (min-width: 768px) {
    #mv__A .img__box {
        background: url(./img/top/top-mv-pc.jpg) no-repeat center;
        background-size: cover;
        max-height: 700px;
        margin: 8rem 8rem 0;
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
    }

    #mv__A .img__box .logo__box {
        position: absolute;
        border-top: 8px solid var(--main);
        border-right: 4px solid var(--main);
        border-bottom: 4px solid var(--main);
        border-left: 16px solid var(--main);
        width: 128px;
        height: 128px;
        top: -128px;
        left: -128px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#top__beginners_A-01 .beginners__item {
    align-items: flex-end;
    justify-content: center;
}

#top__beginners_A-01 .beginners__item .num__ttl {
    display: flex;
    flex-direction: column;
    margin-top: -4.2rem;
    line-height: 1;
    margin-bottom: 1rem;
}

#top__beginners_A-01 .beginners__item:not(:last-child) {
    margin-bottom: 3rem;
}

#top__beginners_A-01 .beginners__item .num {
    font-size: 3rem;
}

#top__beginners_A-01 .beginners__item .ttl {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--txt-bl);
    font-weight: bold;
}

#top__beginners_A-01 .beginners__item .txt__box {
    background-color: var(--white);
    padding: 1.5rem;
    margin: 0 -1rem 0;
    z-index: 1;
    border-radius: 32px 0;
    background: rgb(255 255 255 / 70%);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
}

#top__beginners_A-01 .beginners__item .txt__box .txt {
    color: var(--txt-bl);
}

    #top__beginners_A-01 .beginners__item .img__box img {
        border-radius: 32px 0;
    }

@media screen and (min-width: 768px) {
    #top__beginners_A-01 .beginners__item .txt__box {
        margin: 0 -1.5rem 0;
    }
    #top__beginners_A-01 .beginners__item:not(:last-child) {
        margin-bottom: 5rem;
    }

    #top__beginners_A-01 .beginners__item .img__box {
        border-radius: 32px 0;
        background: rgba(255, 255, 255, 0.80);
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
    }

    #top__beginners_A-01 .beginners__item:last-child {
        margin-bottom: 6rem;
    }
}

/*====================================*/
/* テンプレートコーディング 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);
}

/* #top__custom__post__A-01::before, #top__service__A-01::before {
    position: absolute;
    content: "";
    top: -3rem;
    left: 0;
    height: 3rem;
    width: 100%;
    background: #2C2C2C;
    border-radius: 50px 50px 0 0;
}

#top__custom__post__A-01::after, #top__service__A-01::after {
    position: absolute;
    content: "";
    bottom: -3rem;
    left: 0;
    height: 3rem;
    width: 100%;
    background: #000;
    border-radius: 0 0 50px 50px;
    z-index: 2;
} */

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

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

/*====================================*/
/* テンプレートコーディング aservic__A-04パターン */
/*====================================*/
#service__A-04 .flow__list .flow__item {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    #service__A-04 .flow__list .flow__item {
        padding: 1rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    #service__A-04 .flow__list .flow__item .txt__box {
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }

    #service__A-04 .flow__list .flow__item .img__box {
        grid-row: 4 / 1;
        grid-column: 2 / 3;
    }
}

#service__A-04 .flow__list .flow__item:nth-child(odd) {
    background-color: var(--wh-gray);
}

#service__A-04 .flow__list .flow__item .num {
    color: var(--main-color);
    font-weight: bold;
    font-size: 1.5rem;
}

#service__A-04 .flow__list .flow__item .ttl {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#service__A-04 .flow__list .flow__item .txt {
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    #service__A-04 .flow__list .flow__item .ttl {
        margin-bottom: .5rem;
    }

    #service__A-04 .flow__list .flow__item .txt {
        grid-row: 3 / 3;
        grid-column: 1 / 3;
        margin-bottom: 0;
    }
}

#service__A-04 .flow__list .flow__item .num .large {
    font-size: 2.5rem;
}

#service__A-04 .flow__list .flow__item .img__box img {
    max-width: 200px;
    margin: auto;
}

@media screen and (max-width: 768px) {
    #service__A-04 .flow__list .flow__item .img__box img {
        max-width: 100px;
        margin: auto;
    }
}

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

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

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

#ttl__bg__A-01 .ttl__cnt .ttl__box {
    color: #fff;
}

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

#ttl__bg__A-01 .ttl__cnt .ttl__box .sub {
    line-height: 1.8;
}

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

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

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

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

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

#ttl__bg__A-01::before {
    content: "";
    position: absolute;
    display: block;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, .8);
}

#function__detail .cnt__wrap {
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}


#service__A-01 .btn__box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 7rem;
}

@media screen and (max-width: 767px) {
    #service__A-01 .btn__box {
        flex-direction: column;
        margin-bottom: 5rem;
    }
}

#service__A-01 .inner>.ttl__box {
    text-align: center;
    margin-bottom: 3.5rem;
}

#service__A-01 .inner>.ttl__box .sub__ttl {
    margin-bottom: 3rem;
}

#service__A-01 .btn-icn__box {
    transform: rotate(90deg) scale(1, 1);
}

#service__A-01 .service__item {
    color: var(--point);
}

#service__A-01 .main__txt {
    margin-bottom: .5rem;
}

#service__A-01 .recommend {
    border: 2px solid var(--main);
    border-radius: 1rem;
    padding: 1rem;
}

#service__A-01 .service__item .main__ttl {
    position: relative;
    font-size: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--gray);
    margin-bottom: 2.5rem;
}

#service__A-01 .service__item .main__ttl::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: "";
    height: 3px;
    width: 60px;
    background-color: var(--main);
}

#service__A-01 .service__item .txt {
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

#service__A-01 .recommend__ttl__box {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px dotted var(--main);
}

#service__A-01 .recommend__ttl__box>.point {
    margin-bottom: 1rem;
}

#service__A-01 .point {
    background-color: var(--main);
    color: var(--white);
    font-weight: bold;
    display: inline-block;
    padding: .2rem 1rem;
    border-radius: 50px;
}

#service__A-01 .recommend__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#service__A-01 .recommend__list .recommend__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#service__A-01 .service__cnt .service__list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/*====================================*/
/* worries */
/*====================================*/
#service__A-03 .worries__list.grid_1_3 {
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
    #service__A-03 .worries__list.grid_1_3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 468px) {
    #service__A-03 .worries__list.grid_1_3 {
        grid-template-columns: repeat(1, 1fr);
    }
}

#service__A-03 .worries__list .worries__items .worries__ttl {
    position: relative;
    background-color: var(--white);
    border: var(--gray) 1px solid;
    font-weight: bold;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.worries__ttl-sp {
    display: none;
}

@media screen and (max-width: 468px) {
    #service__A-03 .worries__list .worries__items .worries__ttl {
        display: none;
    }

    .worries__ttl-sp {
        display: block;
        position: relative;
        background-color: var(--gray);
        font-weight: bold;
        padding: 1rem;
        border-radius: 5px;
        text-align: center;
        font-size: .9rem;
    }

    .worries__ttl-sp::before {
        position: absolute;
        content: "";
        width: 0;
        top: 50%;
        transform: translateY(-50%);
        right: -12px;
        height: 0;
        border-style: solid;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 12px solid var(--gray);
        border-right: 0;
    }
}

#service__A-03 .worries__list .worries__items .worries__ttl::after {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 2px;
    height: 35px;
    border-right: 2px dotted var(--gray);
    z-index: -1;
    /* transform:rotate(90deg); */
}

#service__A-03 .worries__list .worries__items .img__box {
    padding: 1.5rem;
}

@media screen and (max-width: 468px) {
    #service__A-03 .worries__list .worries__items .img__box {
        padding: 0rem;
    }

    #service__A-03 .worries__list .worries__items .worries__box {
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }

}

#service__A-03 .worries__list .worries__items .result {
    position: relative;
    padding: 1.5rem;
    background: var(--main);
    color: #fff;
    border-radius: 0px 0px 5px 5px;
    text-align: center;
}

#service__A-03 .worries__list .worries__items .result::after {
    position: absolute;
    top: 0;
    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: 10px solid var(--white);
    border-bottom: 0;
}

#service__A-03 .worries__list .worries__items .result .ttl__box {
    font-size: .8rem;
    background-image: linear-gradient(to right, var(--white), var(--white) 1px, transparent 1px, transparent 5px);
    background-size: 5px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

#service__A-03 .worries__list .worries__items .worries__cnt {
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

/*====================================*/
/* menu__price */
/*====================================*/
.menu__price__box .menu__item {
    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(--white);
    padding: 2.5rem;
    outline: 1px solid var(--txt-bl);
    outline-offset: -1.5rem;
    display: flex;
    flex-direction: column;
}

.menu__price__box .menu__item .btn {
    margin-top: auto;
}

.menu__price__box .menu__item .txt__box {
    /* margin-bottom: 2rem; */
}

.menu__price__box .menu__item .txt__box .ttl {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.menu__price__box .menu__item .txt__box .ttl::after {
    content: "";
    display: block;
    width: 4rem;
    height: 1px;
    background-color: var(--txt-bl);
    margin-top: 1.5rem;
}

.menu__price__box .menu__item .txt__box .txt {
    font-size: 1rem;
    line-height: 1.8;
}

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

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

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

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

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

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

#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 .left__box {
    /* flex: 0 0 35%;
    max-width: 35%; */
}

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

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

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

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

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

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

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

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