@charset "utf-8";
/* @import url("https://use.fontawesome.com/releases/v5.14.0/css/all.css"); */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&Quicksand:wght@300;500;700&family=Raleway:wght@500&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");


/*===================================
基本設定
===================================*/
/* # root1 START # */
:root {
    --color01: #fff462;
    --color02: rgb(246 229 204 / 70%);
}

.cd {
    color: rgb(246, 229, 204);
}
/* # root1 END # */

/* # root2 START # */
/* :root {
--color01: #e7e383;
--color02: rgb(231 227 131 / 70%);
} */
/* # root2 END # */


/* # root3 START # */
/* :root {
--color01: #134E78;
--color02:rgb(19 78 120 / 70%);
} */
/* # root3 END # */





.wrapper {
    position: relative;
}

.js-toggle {
    cursor: pointer;
}


html {
    font-family: "Zen Kaku Gothic New",
        serif;
    font-weight: normal;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    word-break: break-word;
    -webkit-text-size-adjust: 100%;
}

.color02 {
    /*color: #fff;*/
}

.color03 {
    color: #333;
}

.bg01 {
    background-color: #f7f7f7;
}

.effect {
    position: relative;
}

.effect::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(116, 184, 141, 0.15)));
    background: linear-gradient(to left, #fff, rgba(116, 184, 141, 0.15));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.txt {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.1em;
}

.txt02 {
    font-size: 16px;
    line-height: 2.5;
    letter-spacing: 0.1em;
}

.radius {
    overflow: hidden;
    border-radius: 10px;
}


.map {
    padding-top: 90%;
}

@media (max-width:599px) {
    .txt {
        font-size: 14px;
    }

    .txt02 {
        font-size: 14px;
        line-height: 2;
    }

    .map {
        padding-top: 70%;
    }
}

/* 共通コンテンツ間隔 */
.section-my-medium {
    margin: 70px 0;
}

.section-my-large {
    margin: 90px 0;
}

.section-my-xlarge {
    margin: 100px 0;
}

.section-mt-xlarge {
    margin-top: 100px;
}

.section-pt-xlarge {
    padding-top: 100px;
}

.section-pb-large {
    padding-bottom: 90px;
}

.section-py-medium {
    padding: 70px 0;
}

.section-py-large {
    padding: 90px 0;
}

.section-py-xlarge {
    padding: 100px 0;
}


@media (max-width:1024px) {
    .section-my-medium {
        margin: 60px 0;
    }

    .section-my-large {
        margin: 80px 0;
    }

    .section-my-xlarge {
        margin: 80px 0;
    }

    .section-mt-xlarge {
        margin-top: 75px;
    }

    .section-pt-xlarge {
        padding-top: 75px;
    }

    .section-pb-large {
        padding-bottom: 70px;
    }

    .section-py-medium {
        padding: 60px 0;
    }

    .section-py-large {
        padding: 80px 0;
    }

    .section-py-xlarge {
        padding: 75px 0;
    }
}

@media (max-width:599px) {
    .section-my-medium {
        margin: 50px 0;
    }

    .section-my-large {
        margin: 70px 0;
    }

    .section-my-xlarge {
        margin: 80px 0;
    }

    .section-mt-xlarge {
        margin-top: 50px;
    }

    .section-pt-xlarge {
        padding-top: 50px;
    }

    .section-pb-large {
        padding-bottom: 60px;
    }

    .section-py-medium {
        padding: 50px 0;
    }

    .section-py-large {
        padding: 70px 0;
    }

    .section-py-xlarge {
        padding: 50px 0;
    }
}

/*********************************************
show hide
*********************************************/
.show\@pc {
    display: block;
}

.hide\@pc {
    display: none;
}

@media (max-width: 1024px) {
    .show\@tb {
        display: block;
    }
}

@media (max-width: 599px) {
    .show\@sp {
        display: block;
    }

    .hide\@sp {
        display: none;
    }
}

/*===================================
共通ブロック　block-cmn
==================================*/
/* 共通ブロック１ */
/* 左右交互に画像がべた付けのレイアウト */
.block-cmn02 .box {
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.block-cmn02 .box .pic {
    width: 45%;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
}

.block-cmn02 .box .pic figure {
    max-height: 690px;
}

.block-cmn02 .box .tbox {
    width: 50%;
}

.block-cmn02>*:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: end;
    align-items: flex-end;
    -ms-flex-align: end;
    margin-left: auto;
}

.block-cmn02>*:nth-of-type(even) .tbox {
    width: 45%;
    margin-bottom: -20px;
}

.pb-ir {
    padding-bottom: 200px;
}

.pb-ir-child {
    margin-bottom: 30px;
}

.block-cmn02>*:nth-of-type(even) .pic {
    width: 50%;
    overflow: hidden;
    margin-top: -200px;
    border-radius: 20px 0 0 20px;
}

.block-cmn02.type02 .box {
    width: 95%;
}

.block-cmn02.type02>*:nth-of-type(even) .pic {
    width: 55%;
}

.block-cmn02.type02>*:nth-of-type(even) .pic figure {
    max-height: 530px;
}

/* 左右交互のレイアウト */
.block-cmn03>* {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.block-cmn03>*+* {
    margin-top: 80px;
}

.block-cmn03>*>* {
    width: 48%;
}

.insert {
    width: 95%;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
}

.insert.mk2 {
    width: 100%;
}

.block-cmn03 .pic img {
    overflow: hidden;
    border-radius: 10px;
}

.block-cmn03>.box:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.block-cmn03.type02 .box .pic {
    width: 48%;
}

.block-cmn03.type02 .box .tbox {
    width: 50%;
}

.block-cmn03.odd .box:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.block-cmn03.odd .box:nth-of-type(even) {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
}

.block-cmn04>* {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.block-cmn04 .pic {
    width: 60%;
    max-height: 542px;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
}

.block-cmn04 .tbox {
    width: 64%;
    margin-top: -470px;
    margin-left: auto;
    padding: 4% 14% 4% 7%;
    background: var(--color01);
    position: relative;
    z-index: 1;
}

.block-cmn05 {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    background: var(--color01);
}

.block-cmn05 .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 60px 0;
}

.block-cmn05 .box .pic {
    width: 50%;
    overflow: hidden;
    margin-top: -100px;
    border-radius: 10px;
}

.block-cmn05 .box .tbox {
    width: 48%;
}

.block-cmn05 .box .tbox>* {
    /*color: #fff;*/
}

.block-cmn05 .box .tbox .list-cmn02 {
    margin-bottom: 30px;
    padding-left: 1em;
    font-weight: bold;

    /* font-family: 'Quicksand', sans-serif; */
    font-size: 32px;
    letter-spacing: 0.1em;
}

.block-cmn05 .box .tbox .txt {
    margin-bottom: 35px;
}

.block-cmn05 .box .tbox .sign {
    font-size: 16px;
    line-height: 2.5;
    letter-spacing: 0.1em;
    text-align: right;
}

.block-cmn05 .box .tbox .name {
    padding-left: 40px;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 0.1em;
}

.block-cmn06>*+* {
    margin-top: 80px;
}

.block-cmn06 .list-cmn01 {
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--color01);
}

@media (max-width: 1250px) {
    .block-cmn02>*:nth-of-type(even) .pic {
        margin-top: -40px;
    }

    .pb-ir {
        padding-bottom: 40px;
    }

    .pb-ir-child {
        margin-bottom: 20px;
    }
}

@media (max-width:1024px) {
    .block-cmn02>*:nth-of-type(even) .pic {
        margin-top: 60px;
    }

    .block-cmn03>*+* {
        margin-top: 60px;
    }

    .block-cmn06>*+* {
        margin-top: 60px;
    }

    .block-cmn04 .pic {
        width: 100%;
    }

    .block-cmn04 .tbox {
        width: 95%;
        margin-top: -40px;
        padding: 5%;
    }

    .block-cmn05 .box .tbox .list-cmn02 li {
        font-size: 24px;
    }

    .insert {
        margin-top: 40px;
    }
}

@media (max-width:1024px) {
    .block-cmn02 {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .block-cmn02 .box,
    .block-cmn02.type02 .box {
        width: 100%;
    }

    .block-cmn02 .box+.box {
        margin-top: 60px;
    }

    .block-cmn02 .box>* {
        width: 100% !important;
    }

    .block-cmn02 .box .tbox {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .block-cmn02 .box .pic {
        margin-top: 0;
        border-radius: 20px;
    }

    .block-cmn03>*>* {
        width: 100%;
    }

    .block-cmn03>*+* {
        margin-top: 40px;
    }

    .block-cmn03 .box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .block-cmn03>* .tbox {
        margin-top: 20px;
    }

    .block-cmn03 .box>* {
        width: 100% !important;
    }

    .block-cmn05 .box .pic {
        width: 100%;
    }

    .block-cmn05 .box .tbox {
        width: 100%;
        margin: 30px auto 0 auto;
    }

    .block-cmn05 .box .tbox .list-cmn02 {
        margin-bottom: 15px;
    }

    .block-cmn05 .box .tbox .list-cmn02 li {
        font-size: 20px;
    }

    .block-cmn05 .box .tbox .txt {
        margin-bottom: 20px;
    }

    .block-cmn05 .box .tbox .sign {
        font-size: 14px;
    }

    .block-cmn05 .box .tbox .name {
        padding-left: 20px;
        font-size: 16px;
    }

    .insert {
        margin-top: 20px;
    }

    .about01 .block-cmn05 .box {
        margin-left: 15px;
    }
}

@media(max-width:599px) {
    .block-cmn02 .box+.box {
        margin-top: 0px;
    }

    .block-cmn06>*+* {
        margin-top: 30px;
    }
}

.bnr-cmn01 {
    overflow: hidden;
    border-radius: 15px;
    background-image: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(246, 229, 204, 0.3)));
    background-image: linear-gradient(to left, #fff, rgba(246, 229, 204, 0.3));
    position: relative;
}


.bnr-cmn01 .tbox {
    width: 45%;
    min-height: 300px;
    margin-left: auto;
    margin-right: 7%;
    padding: 90px 0;
    z-index: 1;
}

.bnr-cmn01 .tbox .logo img {
    width: 220px;
    padding-top: 20px;
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
}


.bnr-cmn01 .box {
    min-height: 400px;
    padding-top: 100px;
    padding-bottom: 40px;
}

.bnr-cmn01 .bgimg,
.bnr-cmn02 .bgimg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.bnr-cmn01.type02 {
    border-radius: unset;
}

.bnr-cmn01.type02 .box .tbox {
    width: 50%;
    margin-left: auto;
    margin-right: 0;
}

.bnr-cmn01.type02 .left .ttl {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 22px;
    color: #333;
    letter-spacing: 0.1em;
}

.bnr-cmn03 .top {
    position: relative;
}

.bnr-cmn03 .top .pic {
    overflow: hidden;
    border-radius: 15px;
    background-color: #333;
}

.bnr-cmn03 .top .pic img {
    opacity: 0.8;
}

.bnr-cmn03 .top .ttl {
    position: absolute;
    bottom: 10%;
    right: 5%;
    z-index: 1;
}

.bnr-cmn03 .top .ttl-inner {
    font-weight: 400;

    /* font-family: 'Quicksand',
sans-serif; */
    font-size: 24px;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.1em;
    position: relative;
}

.bnr-cmn03 .top .ttl-inner>* {
    padding-right: 35px;
}

.bnr-cmn03 .top .ttl-inner::before,
.bnr-cmn03 .top .ttl-inner::after {
    content: "";
    background-color: #fff;
    position: absolute;
}

.bnr-cmn03 .top .ttl-inner::before {
    width: 15px;
    height: 1px;
    -webkit-transform: rotate(30deg);
    -webkit-transform: translateY(-50%) rotate(30deg);
    transform: translateY(-50%) rotate(30deg);
    bottom: 15px;
    right: 0;
}

.bnr-cmn03 .top .ttl-inner::after {
    width: 30px;
    height: 1px;
    background-color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    right: 0;
}

.bnr-cmn03 .bottom {
    margin-top: 15px;
}

.bnr-cmn03 .bottom .ttl {
    font-size: 20px;
    color: #333;
    line-height: 1;
    letter-spacing: 0.1em;
}

.bnr-cmn03 .bottom .desc {
    margin-top: 10px;
    font-size: 16px;
    color: #aaa;
    line-height: 1.5;
    letter-spacing: 0.1em;
    ;
}

.bnr-cmn03 .top .ttl-inner {
    position: relative;
}

.bgimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width:1024px) {
    .bnr-cmn01 .left {
        width: 100%;
    }

    .bnr-cmn01 .tbox {
        width: 100% !important;
        min-height: 0;
        padding: 50px 0 50px 15px;
    }

    .bnr-cmn03 .bottom .ttl {
        font-size: 18px;
    }
}

@media(max-width:599px) {
    .bnr-cmn01 .box {
        min-height: 60px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .bnr-cmn01.type02 .left .ttl {
        font-size: 16px;
        letter-spacing: 0.1em;
    }
}

/*===================================
共通タイトル　ttl-cmn
===================================*/
/* 共通タイトル１ */

/* 英語のサブタイトル付きの見出し */

.ttl-cmn01 {
    /* font-family: 'Quicksand',
sans-serif; */
    font-weight: 700;
    font-size: 30px;

    /*color: #fff;*/
    letter-spacing: 0.1em;
}


.ttl-cmn02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 60px;
    text-align: center;
}

.ttl-cmn02 .en {
    font-weight: 900;
    font-size: 32px;
    color: #333;
    letter-spacing: 0.1em;
}

.ttl-cmn02 .en.type02 {
    font-family: "Zen Kaku Gothic New", sans-serif;
}


.ttl-cmn02 .ja {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    line-height: 2;
    letter-spacing: 0.1em;
}


.ttl-cmn03 {
    margin-bottom: 50px;
    font-weight: bold;
    font-size: 30px;
    color: #333;
    letter-spacing: 0.1em;
    text-align: center;
}

.bnr-cmn01 .left-inner .ttl-cmn03 {
    margin-bottom: 0;
}


.ttl-cmn03 .pic {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 20%;
    left: 0;
}

.ttl-cmn03 .pic img {
    max-width: 150px;
    opacity: 0.8;
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
}

.ttl-cmn04 {
    font-weight: bold;
    font-size: 30px;
    line-height: 1.7;
    letter-spacing: 0.1em;
    text-align: center;
}

@media(max-width:599px) {
    .ttl-cmn03 .pic img {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
}

/* アンカーリンクの見出し */
.ttl-cmn07 {
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 24px;

    /*color: #fff;*/
    line-height: 1.6;
    letter-spacing: 0.1em;
    position: relative;
}

.ttl-cmn07::after {
    content: "";
    width: 85px;
    height: 1px;
    background-color: #333;
    position: absolute;
    bottom: -16px;
    left: 0;
}


.ttl-cmn08>* {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    letter-spacing: 0.1em;
}

.ttl-cmn08>*::before {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    margin-right: 15px;
    border-radius: 50%;
    background-color: var(--color01);
}

.ttl-cmn09>* {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
}

.ttl-cmn09>*>* {
    font-weight: 500;

    /* font-family: 'Quicksand',
sans-serif; */
    font-size: 24px;
    color: #333;
    letter-spacing: 0.1em;
    text-align: left;
}

.ttl-cmn09>*>.sub-ttl {
    margin-left: 5px;
    font-size: 14px;
    color: #333;
    letter-spacing: 0.1em;
}

.ttl-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
}

.ttl-mb-small {
    margin-bottom: 30px;
}

.ttl-mb-xlarge {
    margin-bottom: 100px;
}

.ttl-vertical {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.ttl-vertical>*::before {
    margin-bottom: 15px;
    margin-right: 0;
}

@media (max-width: 1024px) {
    .ttl-cmn02 {
        margin-bottom: 40px;
    }

    .ttl-cmn02 .en {
        font-size: 30px;
    }

    .ttl-cmn02 .ja {
        font-size: 16px;
    }

    .ttl-cmn03 {
        margin-bottom: 50px;
        font-size: 24px;
    }

    .ttl-cmn03 .pic {
        -webkit-transform: unset;
        transform: unset;
        position: static;
        top: unset;
    }

    .ttl-cmn04 {
        font-size: 24px;
        letter-spacing: 0.1em;
    }

    .ttl-cmn07 {
        font-size: 22px;
    }

    .ttl-mb-small {
        margin-bottom: 25px;
    }
}

@media (max-width: 599px) {
    .ttl-cmn01 {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .ttl-cmn02 {
        margin-bottom: 30px;
    }

    .ttl-cmn02 .ja {
        font-size: 14px;
    }

    .ttl-cmn02 .en {
        font-size: 24px;
    }

    .ttl-cmn03 {
        margin-bottom: 35px;
        font-size: 20px;
    }

    .ttl-cmn04 {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .ttl-cmn07 {
        font-size: 20px;
        letter-spacing: 0.1em;
    }

    .ttl-mb-small {
        margin-bottom: 20px;
    }

    .ttl-horizontal\@sp {
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
    }

    .ttl-horizontal\@sp>*:before {
        margin-bottom: 0;
        margin-right: 15px;
    }
}

/*===================================
共通リスト　list-cmn
==================================*/
/* 共通リスト１ */


.list-cmn01>* {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    font-size: 1.2em;
    color: #333;
    line-height: 1.5;
    letter-spacing: 0.1em;
    position: relative;
}


.list-cmn01>*::before {
    content: "";
    width: 16px;
    height: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 50%;
    background-color: var(--color01);
    margin-top:.3em;
}

.list-cmn01 p .sub-ttl {
    margin-left: 12px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    letter-spacing: 0.1em;
}

.list-cmn02 {
    list-style-type: disc;
    padding-left: 1.5em;
    font-weight: bold;
}

@media (max-width: 599px) {
    .list-cmn01>* {
        font-size: 18px;
        line-height: 1.5;
        letter-spacing:0em;
    }
    
}

/*===================================
共通ボタン btn-cmn
===================================*/

.btn-cmn02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 14px;
}

.btn-cmn02 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin-right: 50px;
    padding-right: 50px;

    /* left: -85px; */
    white-space: nowrap;
    position: relative;
}

.btn-cmn02 a::before {
    content: "";
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 120px;
}

.arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    left: 85px;
}

.arrow::before,
.arrow::after {
    content: "";
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    right: 20px;
}

.arrow::before {
    width: 15px;
    height: 1px;
    background-color: #333;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    bottom: 3px;
}

.arrow::after {
    content: "";
    width: 50px;
    height: 1px;
    background-color: #333;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
}

a:hover .arrow {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    left: 100px;
}

.arrow.back::before {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    bottom: 29px;
    left: 20px;
}

.arrow.back::after {
    left: 20px;
    right: auto;
}

.arrow.next::before {
    bottom: 29px;
}

.btn-slick .arrow {
    left: auto;
}

.circle {
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    border-radius: 50%;
}

.btn-cmn02.type02 a {
    /*color: #fff;*/
}

.btn-cmn02.type02 a::before {
    border-color: #333;
}

.btn-cmn02.type02 a .arrow::before,
.btn-cmn02.type02 a .arrow::after {
    background-color: #333;
}

.btn-cmn03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 70px;
}

.btn-cmn03.mt0 {
    margin-top: 0;
}

.btn-cmn03>* {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding: 15px 0 18px 15px;
    position: relative;
}

.btn-cmn03>*>* {
    font-weight: bold;
    font-size: 18px;
    color: #666;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.btn-cmn03>*::after {
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color01);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}

@media(max-width:599px) {
    .btn-cmn03>*::after {
        width: 37px;
        height: 37px;
    }

    .btn-cmn03 {
        margin-top: 40px;
    }
}


/* お問い合わせフォームのボタン */
.btn-cmn04 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-cmn04>* {
    width: 100%;
    max-width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 10px;
    font-size: 18px;
    color: #333;
    letter-spacing: 0.1em;
    border: solid 1px #333;
    background: #fff;
}

.btn-cmn04.mk2>*{
  max-width:500px;
}

.btn-cmn04.type02>* {
    /*color: #fff;*/
    border: 1px solid #fff;
    background-color: rgba(0 0 0 / 0);
}

.home-gallery .btn-cmn04.type02>* {
    color: #fff;
}

.btn-cmn05 a {
    width: 100%;
    max-width: 350px;
    display: block;
    padding: 20px;
    font-weight: bold;
    font-size: 24px;

    /*color: #fff;*/
    letter-spacing: 0.1em;
    text-align: center;
    background-color: var(--color02);
    position: relative;
}

.btn-cmn05 a::before {
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: solid 1px #333;
    background-color: rgba(0 0 0 / 0);
    position: absolute;
    top: 10px;
    left: 10px;
}

.btn-cmn06 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
}

.btn-cmn06>* {
    width: 100%;
    max-width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 0;
    font-weight: 500;
    font-size: 20px;

    /*color: #fff;*/
    letter-spacing: 0.1em;
    border-radius: 15px;
    background: var(--color01);
    -webkit-box-shadow: 2.8px 2.8px 3px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 2.8px 2.8px 3px 0 rgba(0, 0, 0, 0.16);
    position: relative;
}

.btn-cmn06>*:hover {
    /*color: #fff;*/
}

.btn-cmn06>* {
    gap: 10px;
}

.btn-cmn06>*::after {
    /* display: inline-block;
content: "\f0c4";
font-family: "Font Awesome 5 Free";
font-weight: bold;
font-size: 20px; */
    content: "";
    width: 20px;
    display: block;
    background: url('/import/tenant_1/162.43.5.238/images/scissors.webp') no-repeat;
    background-size: contain;
    filter: brightness(30%);

    aspect-ratio: 50 / 42;
}


.btn-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.btn-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 599px) {
    .btn-cmn04>* {
        padding: 10px 0;
        font-size: 14px;
    }

    .btn-cmn05 a {
        font-size: 18px;
    }
}

@media (max-width: 599px) {
    .btn-cmn02 a {
        margin-right: 0;
    }

    .btn-cmn02 a::before {
        width: 25px;
        height: 25px;
        left: 100px;
    }

    .btn-cmn02.type-big a::before {
        width: 35px;
        height: 35px;
        left: 80px;
    }

    .arrow {
        left: 60px;
    }

    a:hover .arrow {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        left: 70px;
    }

    .arrow::before,
    .arrow::after {
        right: 35px;
    }

    .arrow::after {
        width: 20px;
    }

    .circle {
        width: 25px;
        height: 25px;
    }

    .arrow.back::before {
        bottom: 16px;
        right: 20px;
    }

    .arrow.next::before {
        bottom: 16px;
        right: 20px;
    }

    .arrow.next::after {
        right: 20px;
    }
}

/*===================================
他共通エレメント -cmn
===================================*/
.anchor-cmn01 .item {
    text-align: center;
}

.anchor-cmn01 .item a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 0;
    font-weight: bold;
    font-size: 18px;

    /*color: #fff;*/
    letter-spacing: 0.1em;
    border-radius: 15px;
    background-color: var(--color01);
    -webkit-box-shadow: 2.8px 2.8px 3px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 2.8px 2.8px 3px 0 rgba(0, 0, 0, 0.16);
}

@media (max-width: 599px) {
    .anchor-cmn01 .item>* {
        width: 100%;
    }

    .anchor-cmn01 .item a {
        padding: 8px 0;
        font-size: 16px;
        border-radius: 8px;
    }
}

.gal-item01 a {
    display: block;
    position: relative;
}

.gal-item01 .desc {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.5em;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.6s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.gal-item01 a:hover {
    opacity: 1;
}

.gal-item01 a:hover .desc {
    opacity: 1;
}

.gal-item01 .st-name {
    margin: 0.5em 0;
    border-bottom: 1px solid #fff;
}

.gal-item01 .mini-cat>span {
    border: 1px solid #fff;
}

.gal-item01 .mini-cat.v2>span {
    color: #000;
    background-color: #fff;
}

.js-thumb {
    cursor: pointer;
}


/* modal */
.modal {
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 201;
}

.modal__bg {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
}

.modal__content {
    width: 60%;
    padding: 60px 40px;
    border-radius: 20px;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.modal .btn_close {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 150px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 15px 10px;
    color: #333;
    text-align: center;
    border: 2px solid #333;
    border-radius: 5px;
    background: #fff;
}

@media(max-width:599px) {
    .modal__content {
        width: 90%;
        padding: 40px 20px;
    }
}

/* modalの中のボタン */
.modal .tel-box a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 10px;

    /*color: #fff;*/
    letter-spacing: 0;
    border-radius: 5px;
    background: #f6e5cc;

    gap: 5px;
}

.modal .tel-box a::before {
    content: "\f095";
    font-family: "font awesome 5 free";
    font-weight: bold;
}

.modal .web-box a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 10px;

    /*color: #fff;*/
    letter-spacing: 0.1em;
    border-radius: 5px;
    background: var(--color01);

    gap: 5px;
}

.modal .web-box a::before {
    content: "\f0c4";
    font-family: "font awesome 5 free";
    font-weight: bold;
}

/* 店舗情報のテーブル */
.table-cmn01 .box dl {
    border-bottom: 2px solid var(--color01);
}

.table-cmn01 dl dt {
    margin-bottom: 40px;
    font-weight: bold;

    /* font-family: 'Quicksand',
sans-serif; */
    font-size: 24px;
    color: #333;
    letter-spacing: 0.1em;
}

.table-cmn01 dl dt .sub-ttl {
    font-family: "Zen Kaku Gothic New",
        sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 2.5;
    letter-spacing: 0.1em;
}

.table-cmn01 dl dd {
    padding-bottom: 30px;
    font-size: 18px;
    color: #333;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: left;
}

/* MENUのテーブル */
.table-cmn02 .box+.box {
    margin-top: 40px;
}

.table-cmn02 dl {
    padding-bottom: 7px;
    border-bottom: solid 1px var(--color01);
}

.table-cmn02 dl dt {
    width: calc(100% - 110px);
    font-weight: normal;
    font-size: 14px;
    color: #333;
    letter-spacing: 0.1em;
}

.table-cmn02 dl dt .ttl {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.1em;
}

.table-cmn02 dl dt.long .ttl {
    font-size: 1.3rem;
}

.table-cmn02 dl dd {
    width: 100px;
    font-size: 18px;
    color: #333;
    letter-spacing: 0.1em;
    text-align: right;
}

.table-cmn02.type03 dl dt {
    width: calc(100% - 130px);
    font-size: 18px;
    letter-spacing: 0.1em;
}

.table-cmn02.type03 dl dd {
    width: 130px;
}

@media (max-width: 599px) {
    .table-cmn02 dl dt .ttl {
        font-size: 16px;
    }
}

/* ギャラリー詳細 */
.table-cmn02.type02 dl dt {
    width: 120px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.table-cmn02.type02 dl dt.long {
    width: 100%;
}

.table-cmn02.type02 dl dd {
    width: calc(100% - 140px);
}

.table-cmn02.type02 .detail .txt {
    width: 100%;
    color: #333;
    letter-spacing: 0.1em;
}

.table-cmn03 dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.table-cmn03 dl+dl {
    margin-top: 30px;
}

.table-cmn03 dl dt,
.table-cmn03 dl dd {
    font-weight: 500;
    font-size: 16px;
    color: #333;
    line-height: 1.25;
    letter-spacing: 0.1em;
}

.table-cmn03 dl dt {
    width: 145px;
    font-weight: bold;
}

.table-cmn03 dl dd {
    width: calc(100% - 145px);
    font-weight: normal;
}

@media (max-width: 1024px) {
    .table-cmn01 dl dt {
        margin-bottom: 30px;
    }

    .table-cmn01 dl dd {
        padding-bottom: 24px;
        line-height: 1.5;
    }
}

@media (max-width: 599px) {
    .table-cmn03 dl {
        flex-wrap: wrap;
    }

    .table-cmn03 dl dt {
        width: 100%;
    }

    .table-cmn03 dl dd {
        width: 100%;
    }

    .table-cmn03 dl+dl {
        margin-top: 20px;
    }

    .table-cmn01 dl dt {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .table-cmn01 dl dt .sub-ttl {
        font-size: 14px;
    }

    .table-cmn01 dl dd {
        padding-bottom: 20px;
        font-size: 16px;
        line-height: 1.5;
    }
}

.access .map {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

/*===================================
共通要素
===================================*/

.logo {
    text-align: center;
}

/*h1ページタイトル */
.pagettl {
    width: 100%;
    margin: 0 auto;
    padding: 3px 20px;
    font-weight: 500;
    font-size: 12px;
}

/**
ヘッダー
header
*/
.header {
    width: 100%;
    margin: 20px 0;
    padding: 0 30px;
    transition: 0.6s;
    position: absolute;
    left: 0;
    z-index: 10;
    z-index: 200;
}


.header-inner {
    position: relative;
    z-index: 200;
}


.header .logo {
    width: 200px;
}

.header .logo a {
    display: block;
}

.header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.header .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.header .right .txt {
    margin-right: 10px;
    line-height: 120%;
}

.header .right .tel-box a {
    font-weight: bold;
    font-size: 30px;
}

.header .right .tel-box a:before {
    content: "\f879";
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 24px;
}

@media (max-width: 1024px) {
    .header .logo {
        width: 150px;
        height: 40px;
    }

    .header .right {
        display: none;
    }

    .pagettl {
        padding: 3px 5px;
    }
}

/* 下部固定コンテンツ */
.fix-bottom {
    display: none;
    height:45px;
}

[data-element-id].fix-bottom {
    height:75px;
    margin-bottom:30px;
}

.fix-bottom .item.contact {
    flex-grow:1;
    height:100%;
}

.fix-bottom .item.contact>div,
.fix-bottom .item.contact>div>div{
  height:100%;
}

.fix-bottom .item.contact a{
  height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 5px;
    background: var(--color01);
    position:relative;
    overflow: hidden;
}

.fix-bottom .item.contact .ab-b a::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 40px;
    height: 100%;
    transform: scale(2) rotate(20deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes shiny {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}


.fix-bottom .item.contact a:before {
    content: "";
    width: 20px;
    display: block;
    background: url(/import/tenant_1/162.43.5.238/images/scissors.webp) no-repeat;
    background-size: contain;
    filter: brightness(30%);
    aspect-ratio: 50 / 42;
}

.fix-bottom .item.other{
  display:flex;
  align-items: center;
}

.fix-bottom .item.other>*{
  display:block;
  width:45px;
  height:100%;
}

[data-element-id].fix-bottom .item.other>.tel-fixed{
  width:150px;
  height:100%;
}

.fix-bottom .item.other a{
  display:flex;
  align-items: center;
  justify-content: center;
  width:100%;
  height:100%;
}

.fix-bottom .item.other .contact-fixed a{
  background-color:#f6e5cc;
}

.fix-bottom .item.other .contact-fixed a::before{
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size:20px;
}

.fix-bottom .item.other .tel-fixed a{
  background-color:#333;
}

.fix-bottom .item.other .tel-fixed a::before{
    content: "\f2a0";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size:20px;
    color:#fff;
}

.fix-bottom .item.other .tel-fixed span{
  display:none;
}

[data-element-id].fix-bottom .item.other .tel-fixed span{
  display:inline-block;
  border:1px dashed #fff;
  padding:3px;
  color:#fff;
  font-size:14px;
  margin-left:5px;
}


.fix-bottom .item.other .instagram-fixed a{
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

.fix-bottom .item.other .instagram-fixed a::before{
  content:"";
    background-image:url(/upload/tenant_1/instagram.webp);
    filter:brightness(900);
    width:25px;
    height:25px;
    background-size:100% 100%;
}





@media (max-width: 1024px) {
    .fix-bottom {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10;
    }
}

/**
グローバルナビ
gnav
*/
.gnav {
    position: relative;
    z-index: 100;
}

.header {
    width: 100%;
    height: auto;
    margin-top: 0;
    padding: 10px 20px;
    background: #f6e5cc;
    -webkit-box-shadow: 0 0 5px 0 #f6e5cc;
    box-shadow: 0 0 5px 0 #f6e5cc;
    cursor: pointer;
    position: fixed;
    top: 0;
    z-index: 200;
    ;
    ;
}

.gnav .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gnav .list01 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.gnav .item01 {
    margin: 0 clamp(0.313rem, -3.198rem + 5.47vw, 1.25rem);

    /* font-family: 'Raleway',
sans-serif; */
    font-weight: 500;
    font-size: 16px;

    /*color: #fff;*/
    letter-spacing: 0.1em;
    text-align: center;
}


.gnav .item01>a,
.gnav .item01 .itemin {
    display: block;
    padding: 5px 0;
    cursor: pointer;
}

.gnav .item01.-parent {
    position: relative;
}

.gnav .item01.-parent:hover .list02 {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.gnav .item03 {
    margin-left: clamp(0.313rem, -3.198rem + 5.47vw, 1.25rem);

    /*color: #fff;*/
    border: solid 1px #333;
    background-color: rgba(0 0 0 / 0);
}

.gnav .item03 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding: 10px 20px;
    position: relative;

    gap: 10px;
}

.gnav .item03 a::after {
    /* display: inline-block;
content: "\f0c4";
font-family: "Font Awesome 5 Free";
font-weight: bold;
font-size: 20px; */
    content: "";
    width: 20px;
    display: block;
    padding-left: 20px;
    background: url('/import/tenant_1/162.43.5.238/images/scissors.webp') no-repeat;
    background-size: contain;
    filter: brightness(30%);

    aspect-ratio: 50/42;
}

.gnav .list02 {
    width: 200px;
    visibility: hidden;
    padding-top: 10px;
    background: rgba(255, 255, 255, 0.98) content-box;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 250;
}


.gnav .item02+.item02 {
    border-top: 1px solid #d5d5d5;
}

.gnav .item02 a {
    display: block;
    padding: 8px;
    color: #121212;
}

.gnav .item02 a:hover {
    /*color: #fff;*/
    background: var(--color01);
    opacity: 1;
}

@media (max-width: 1024px) {
    .gnav {
        width: 100%;
        max-width: 300px;
        height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        background: #f6e5cc;
        -webkit-transition: -webkit-transform ease 0.5s;
        transition: -webkit-transform ease 0.5s;
        transition: transform ease 0.5s;
        transition: transform ease 0.5s, -webkit-transform ease 0.5s;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        position: fixed;
        top: 0;
        right: 0;
    }

    .gnav .item02+.item02 {
        border-top: none;
    }

    .gnav .wrap {
        display: block;
        margin-right: 0;
        padding: 40px 20px 120px 20px;
    }


    .gnav .item01 {
        width: 100%;
        min-height: 40px;
        margin: 0 0 10px 0;
        text-align: left;
        border-bottom: 1px solid #fff;
    }

    .gnav .item03 {
        margin-left: 0;
    }

    .gnav .list01 {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .gnav .list02 {
        visibility: visible;
        padding-top: 0;
        padding-left: 20px;
        background: none;
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        pointer-events: auto;
        position: relative;
        top: 0;
        left: 0;
    }

    .gnav .item02 a {
        padding: 2px 0 2px 20px;
        position: relative;
    }

    .gnav .item02 a:before {
        content: "";
        width: 10px;
        height: 1px;
        display: block;
        background: #fff;
        position: absolute;
        top: 13px;
        left: 0;
    }

    .header {
        padding: 8px 8px;
    }
}

/* ハンバーガーメニュー*/
.toggle {
    width: 42px;
    height: 42px;
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 251;
}

.drawer-active .toggle .bar {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.drawer-active .toggle .bar::before,
.drawer-active .toggle .bar::after {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.toggle .bar {
    width: 40px;
    height: 1px;
    display: block;
    margin-top: -1px;
    padding: 0;
    text-indent: 9999px;
    background-color: #fff;
    -webkit-box-shadow: 2px 2px 2px #333;
    box-shadow: 2px 2px 2px #333;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    position: absolute;
    top: 50%;
    left: 1px;
}

.toggle .bar:before,
.toggle .bar:after {
    content: "";
    width: 40px;
    height: 1px;
    display: block;
    background: #fff;
    -webkit-box-shadow: 2px 2px 2px #333;
    box-shadow: 2px 2px 2px #333;
    position: absolute;
    left: 0;
}

.toggle .bar:before {
    top: -15px;
}

.toggle .bar:after {
    top: 15px;
}

.drawer-active .toggle .bar {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.drawer-active .toggle .bar:after,
.drawer-active .toggle .bar:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
    left: 0;
}

.drawer-active {
    overflow: hidden;

    -ms-touch-action: none;
    touch-action: none;
}

.drawer-active .header .gnav {
        z-index: 250;
        -webkit-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
        z-index: 9;
    }

.drawer-active .overlay:after {
    content: "";
    width: 100%;
    height: 100vh;
    background: #333;
    opacity: 0.3;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
}

/*トップへ戻る*/
.totop {
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
}

.totop:before {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}

@media (max-width: 1024px) {
    .totop {
        bottom: 60px;
        right: 10px;
    }

    .toggle {
        display: block;
        position: fixed;
    }
}

/**
フッター
footer
*/
.footer .copy {
    padding-top: 25px;

    /* font-family: 'Raleway',
sans-serif; */
    font-size: 14px;
    color: #bbb;
    letter-spacing: 0.1em;
    text-align: center;

    ;
}

.footer .logo {
    max-width: 200px;
    margin: 0 auto;
}

.footer .logo a {
    display: block;
}

@media (max-width: 1024px) {
    .footer .copy {
        padding-bottom: 50px;
    }
}

/**
フッターナビ
fnav
*/
.fnav {
    padding-top: 70px;
}


.fnav .list01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.fnav .item {
    margin: 5px 18px;
}

.fnav .item a {
    font-weight: 500;

    /* font-family: 'Raleway',
sans-serif; */
    font-size: 16px;
    color: #333;
    letter-spacing: 0.1em;
}


@media (max-width: 1024px) {}

@media (max-width: 599px) {}


/*===================================
各個別コンテンツ
===================================*/
/**
トップ
*/
/*ホームビジュアル（トップ）*/
.homevisual {
    width: 96%;
    height: 800px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 30px;
    background: #121212;
    position: relative;
}

.homevisual .img {
    height: 100%;
    min-height: 400px;
    position: relative;
}

.homevisual .uk-slidenav-position {
    height: 100% !important;
}

.homevisual .uk-slideshow {
    height: 100% !important;
}

.homevisual .uk-slideshow>li {
    height: 100% !important;
}

.homevisual .uk-slideshow>li>div {
    height: 100% !important;
}

.homevisual .uk-slideshow>li>div>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;

    /*IE対策*/
    font-family: "object-fit: cover; object-position: 50% 50%;";
    opacity: 0.7;
}


.homevisual .head {
    width: 100%;
    font-weight: bold;
    font-size: 40px;
    color: #fff;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute !important;
    top: 50%;
    left: 50%;
}

.homevisual .right,
.homevisual .bottom {
    /* font-family: 'Raleway',
sans-serif; */
    font-weight: 500;
    font-size: 12px;
    color: #fff;
}

.homevisual .right {
    position: absolute;
    bottom: 5%;
    right: 1%;
}

.homevisual .bottom {
    position: absolute;
    bottom: 2%;
    right: 1.5%;
}

@media (max-width: 1024px) {
    .homevisual {
        height: 600px;
    }

    .homevisual .right {
        display: none;
        bottom: 130px;
    }

    .homevisual .bottom {
        bottom: 110px;
    }
}

@media (max-width: 599px) {
    .homevisual .head {
        font-size: 22px;
    }

    .homevisual {
        height: 500px;
    }

    .homevisual .right {
        bottom: 130px;
    }

    .homevisual .bottom {
        bottom: 110px;
    }
}


.subimg {
    width: 96%;
    height: 41vh;
    min-height: 300px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 20px;
    background: #121212;
}

.subimg>* {
    width: 100%;
    height: 100%;
}

.subimg>* img {
    opacity: 0.7;
}


.slick01.slick-dotted {
    margin-bottom: 50px;
}

.slick01 .btn-slick {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: -75px;
    z-index: 1;
}

.slick01 .btn-slick.btn-back {
    right: 150px;
}

.slick01 .btn-slick.btn-next {
    right: 40px;
}

.slick01 .slick-dots {
    bottom: -40px;
    left: 0;
}

@media (max-width: 1024px) {
    .slick01 .btn-slick {
        top: -60px;
    }
}

@media (max-width: 599px) {
    .slick01 {
        padding: 0 10px;
    }

    .slick01 .btn-slick {
        font-size: 20px;
        top: -80px;
    }

    .slick01 .btn-slick.btn-back {
        right: 80%;
    }

    .slick01 .btn-slick.btn-next {
        left: 80%;
    }

    .slick01 .btn-slick .arrow.back::before,
    .slick01 .btn-slick .arrow.back::after {
        left: 10px;
    }

    .slick01 .btn-slick .arrow.next::before,
    .slick01 .btn-slick .arrow.next::after {
        right: 10px;
    }
}

/**
下層共通
*/

/* パンくずリスト */
.breadcrumb {
    margin-top: 30px;
}

.breadcrumb .item {
    display: inline;
    font-size: 14px;
}

.breadcrumb .item:not(:last-of-type):after {
    content: "\f054";
    display: inline-block;
    margin-left: 10px;
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}

.breadcrumb .home {
    color: #333;
}

.breadcrumb .home a {
    font-weight: bold;
}

.breadcrumb .now {
    color: #333;
}

/* ページネーション */
.pagenation {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pagenation ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagenation .item {
    margin: 0 10px;
}

.pagenation .item>*,
.pagenation .now {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagenation .prev {
    margin-right: 20px;
    position: relative;
}

.pagenation .prev a:before {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}

.pagenation .next {
    margin-left: 20px;
    position: relative;
}

.pagenation .next a:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}

.pagenation a,
.pagenation .now {
    font-weight: bold;
}

.pagenation .number a,
.pagenation .now {
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: #333;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
}

.pagenation .number a,
.pagenation .prev a,
.pagenation .next a {
    width: 50px;
    height: 50px;
    font-weight: bold;
    font-size: 18px;

    /*color: #fff;*/
    border-radius: 50%;
    background: var(--color01);
}

.pagenation .number a:hover,
.pagenation .now {
    color: #121212;
    border: 2px solid var(--color01);
    opacity: 1;
}

@media (max-width: 599px) {

    .pagenation .number a,
    .pagenation .prev a,
    .pagenation .next a,
    .pagenation .now {
        width: 30px;
        height: 30px;
    }

    .pagenation .item {
        margin: 0 5px;
    }

    .pagenation .prev {
        margin-right: 10px;
    }

    .pagenation .next {
        margin-left: 10px;
    }
}

/**
各下層ページ
*/
/* form */
.formitem button,
.formitem input,
.formitem select,
.formitem textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: 1px solid #ddd;
    background-color: #eee;
}


.formitem {
    padding: 1em 0;
    border-bottom: 2px dashed var(--color01);
}

.formitem dt {
    width: 30%;
    font-weight: 500;
}

.formitem .reqw {
    margin-left: 1em;
    padding: 0.1em 0.5em;

    /*color: #fff;*/
    text-align: center;
    background-color: var(--color01);
}

.formitem dd {
    width: 66%;
}

.formitem dd .inputlist li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin-bottom: 1em;
}

.formitem dd input {
    width: 100%;
    padding: 1em 0.5em;
}

.formitem dd textarea {
    width: 100%;
    height: 250px;
    padding: 0.25em 0.5em;
}

.formbtn li {
    text-align: center;
}

.formbtn li button,
.formbtn li input {
    width: 260px;
    max-width: 100%;
    display: inline-block;
    padding: 1.25em 0.5em;
    text-align: center;
    border: none;
    border-radius: 50px;
    background-color: var(--color01);
    -webkit-box-shadow: 0.4em 0.4em 0.8em rgba(0, 0, 0, 0.4);
    box-shadow: 0.4em 0.4em 0.8em rgba(0, 0, 0, 0.4);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.formbtn li input {
    background-color: var(--color09);
}

.formbtn li button:hover,
.formbtn li input:hover {
    opacity: 0.6;
    cursor: pointer;
}

.formbtn li {
    width: 100%;
    max-width: 320px;
    margin: auto;
}

.formbtn2 li {
    max-width: 250px;
}

@media (max-width:1024px) {
    .formitem dt {
        width: 100%;
        margin-bottom: 0.5em;
    }

    .formitem dt label {
        display: block;
    }

    .formitem dd {
        width: 100%;
    }

    .formbtn2 li {
        max-width: 200px;
    }
}

@media (max-width:599px) {

    .formbtn li button,
    .formbtn li input {
        width: 230px;
    }

    .formbtn2 li {
        max-width: 120px;
    }
}

.form01 .formlist .formitem .checkboxer label {
    display: inline-block;
    margin: 0.5em 0;
    margin-right: 15px;
    padding: 0 10px 0 24px;
    position: relative;
}

.form01 .formlist .formitem .checkboxer label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #ddd;
    border-radius: 3px;
    background-color: #eee;
    position: absolute;
    top: 3px;
    left: 0;
}

.form01 .formlist .formitem .checkboxer label:hover {
    text-decoration: underline;
    cursor: pointer;
}

.form01 .formlist .formitem .checkboxer input {
    display: none;
}

.form01 .formlist .formitem .checkboxer input:checked+label {
    text-decoration: underline;
}

.form01 .formlist .formitem .checkboxer input:checked+label::after {
    content: "\f00c";
    width: 0;
    height: 0;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: red;
    line-height: 1;
    background-color: transparent;
    position: absolute;
    top: 4px;
    left: 2px;
}



/* トップページ */
/* お知らせ */
.home-news {
    margin-top: -100px;
    position: relative;
}

.home-news .inner900 {
    overflow: hidden;
    margin-left: 0;
    border-radius: 0 10px 10px 0;
    background: var(--color01);
}

.home-news .box {
    padding: 30px 60px;
}

.home-news .table+.table {
    margin-top: 20px;
}

.home-news .table .date,
.home-news .table .ttl {
    font-weight: 500;

    /* font-family: 'Noto Sans JP', sans-serif; */
    font-size: 16px;

    /*color: #fff;*/
    letter-spacing: 0.1em;
}

.home-news .table .ttl a {
    display: block;
}

.home-news .table .date {
    font-weight: 500;
}

.mini-cat {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.mini-cat>span {
    display: inline-block;
    margin: 0 0.3em 0.1em 0;
    padding: 0.05em 0.3em;
    font-weight: 500;
    font-size: 0.7em;
    letter-spacing: -0.05em;
    border: 1.5px solid #000;
    border-radius: 0.5em;
}

.mini-cat.rec-ver>span+span {
    /*color: #fff;*/
    border: none;
    background-color: var(--color01);
}

.home-news .mini-cat>span {
    /*color: #fff;*/
    border: 1.5px solid #333;
}

.home-news .table .ttl {
    /* font-family: 'Noto Sans JP', sans-serif; */
    /*color: #fff;*/
}

.home-gallery {
    overflow: hidden;
    background-image: url('/import/tenant_1/162.43.5.238/images/AdobeStock_688432851.webp');
    background-size: cover;
    position: relative;
}

.home-gallery .tbox {
    display: block;
    padding: 100px 5%;
    position: relative;
}

.home-gallery .box {
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}


.home-gallery .left {
    width: 40%;
}

.home-gallery .right {
    width: 60%;
}

.home-gallery .tbox::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}


.home-gallery .tbox>* {
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.home-gallery .tbox .ttl {
    margin-bottom: 30px;

    /* font-family: 'Quicksand',
sans-serif; */
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 0.1em;
}


.home-gallery .tbox p {
    margin-bottom: 30px;
    font-size: 18px;
    letter-spacing: 0.1em;
}

.home-blog {
    position: relative;
}

.home-blog .inner {
    width: 85%;
    max-width: unset;
    margin-right: 0;
    padding: 50px 0 50px 50px;
    background: #fff;
}


.blog-list {
    padding-top: 80px;
}

.blog-list .pic {
    overflow: hidden;
    border-radius: 15px;
}

.home-blog .bgimg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


.home-blog .slick-list {
    padding-right: 90px;
}

.home-blog .slick-slide {
    padding-right: 30px;
}


.home-blog .ttl {
    margin-top: 0.1em;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.blog-list .item .mini-cat {
    margin-top: 5px;
}


@media (max-width: 1024px) {
    .home-blog .slick-list {
        padding-right: 45px;
    }

    .home-news .box {
        padding: 30px 30px;
    }

    .home-blog .ttl {
        font-size: 16px;
    }
}

@media (max-width: 599px) {
    .home-blog .slick-list {
        padding-right: 0;
    }

    .home-gallery .tbox>* {
        text-align: left;
    }
}

/* 入力値定義HTMLのcss */
.blog_detailarea h2 {
    margin: 1em 0;
    padding: 0.5em 0;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
}

.blog_detailarea h2::first-letter {
    color: var(--color01);
}

.blog_detailarea h3 {
    margin: 1em 0;
    padding: 0.5em;
    font-weight: 600;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    border-left: solid 10px var(--color01);
}

.blog_detailarea h4 {
    margin: 1em 0;
    padding-bottom: 0.5em;
    font-weight: 600;
    font-weight: 700;
    font-size: 18px;
    border-bottom: dotted 2px var(--color01);
}

.blog_detailarea ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

.blog_detailarea ul li::before {
    content: "■";
    color: var(--color01);
}

.blog_detailarea ol li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    list-style-type: none;
    counter-increment: cnt;
}

.blog_detailarea ol li::before {
    content: ""counter(cnt)".";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px;
    font-family: math;
    font-weight: bold;
    font-size: 120%;
    color: var(--color01);
}

.blog_detailarea iframe[src*="youtube"] {
    height: auto;
    margin-top: 1em;
    margin-bottom: 1em;

    aspect-ratio: 16 / 9;
}

.gallery-detail .uk-slideshow {
    height: 55vh !important;
}

.gallery-detail .uk-slideshow li {
    width: 100%;
    height: 100% !important;
}

.gallery-detail .uk-slideshow li div {
    width: 100%;
    height: 100% !important;
}

.gallery-detail .uk-slideshow li div img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    font-family: "object-fit: cover; object-position: 50% 50%;";
}

.gallery-detail .uk-slideshow+* ul {
    min-width: 100% !important;
    margin-left: -15px;
}

.gallery-detail .uk-slideshow+* li {
    width: 33.333% !important;
    padding-left: 15px;
}

.gallery-detail .uk-slideshow+* li div {
    width: 100%;
    height: 100% !important;
}

.gallery-detail .uk-slideshow+* li div img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    font-family: "object-fit: cover; object-position: 50% 50%;";
}

@media (max-width: 1250px) {
    .home-news .inner900 {
        max-width: 680px;
    }
}

.gallery-list .item .ttl {
    margin-top: 15px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;

    /* font-family: 'Quicksand', sans-serif; */
    letter-spacing: 0.2em;
    text-align: center;
}

@media (max-width: 1024px) {
    .gallery-list .item .ttl {
        margin-top: 15px;
        font-size: 16px;
    }

    .blog-list {
        padding-top: 60px;
    }
}

@media (max-width: 599px) {
    .gallery-list .item .ttl {
        margin-top: 10px;
        font-size: 14px;
    }

    .home-news .box {
        padding: 15px 20px;
    }

    .home-news .table .date {
        font-size: 14px;
    }

    .home-gallery .tbox .ttl {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .home-gallery .tbox p {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .home-blog .inner {
        width: 95%;
        margin: 0 auto;
        padding: 20px 0 20px 20px;
    }

    .blog-list {
        padding-top: 50px;
    }

    .home-blog .slick-slide {
        padding-right: 10px;
    }

    .home-gallery .right {
        width: 100%;
    }

    .home-gallery .left {
        width: 100%;
    }
}

.about01 {
    position: relative;
}


.about01 .sub-ttl {
    font-size: 16px;

    /*color: #fff;*/
    position: absolute;
    bottom: 20%;
    left: 1%;
    z-index: 1;
}

@media(max-width:599px){
  .about01 .sub-ttl {
    bottom: 5%;
}
}

/* ニュース・ブログ共通 */
.article-list .cate {
    display: inline-block;
    padding: 0 15px;
    font-weight: 500;

    /* font-family: 'Noto Sans JP', sans-serif; */
    font-size: 14px;

    /*color: #fff;*/
    line-height: 2;
    letter-spacing: 0.1em;
    background: var(--color01);
}

.article-list .ttl {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    letter-spacing: 0.1em;
}

.article-list .date {
    font-weight: 500;
    font-size: 16px;
    color: #333;
    line-height: 2.5;
}

/* ブログ詳細・お知らせ詳細 */
.article-list.type02 .ttl {
    padding-bottom: 15px;
    font-size: 24px;
    letter-spacing: 0.1em;
    border-bottom: solid 1px var(--color01);
}

/* お知らせのリスト型 */
.article-list.type03 .ttl {
    padding-bottom: 36px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.1em;
    border-bottom: solid 1px var(--color01);
}

.article-list.type02 .date,
.article-list.type03 .date {
    display: inline-block;
}

.article-list.type03 .item+.item {
    margin-top: 30px;
}

/* ブログ・お知らせのside */
.cate-wrap+.cate-wrap {
    margin-top: 100px;
}

.cate-wrap .ttl {
    margin-bottom: 30px;
    padding: 20px 10px;
    font-weight: bold;

    /* font-family: 'Noto Sans JP', sans-serif; */
    font-size: 18px;
    color: #333;
    letter-spacing: 0.1em;
    text-align: center;
    border: solid 1px #333;
}

.cate-wrap .list {
    list-style: disc;
    padding-left: 1.5em;
}

.cate-wrap .list .item {
    font-weight: 400;

    /* font-family: 'Noto Sans JP', sans-serif; */
    font-size: 16px;
    color: #333;
    line-height: 2;
    letter-spacing: 0.1em;
}

.big-cat {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.big-cat>span {
    display: inline-block;
    margin: 0 0.3em 0.1em 0;
    padding: 0.05em 0.5em;
    font-weight: 500;

    /*color: #fff;*/
    border-radius: 0.5em;
    background: var(--color01);
}

.big-cat.v02>span {
    color: #333;
    border: 2px solid #333;
    background: #fff;
}

.list4>*:nth-child(4) {
    display: none;
}

.news-item-t a {
    display: block;
}

.news-item-t .item-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.news-item-t .date {
    width: 110px;
    font-weight: bold;
    color: #333;
    line-height: 1.5em;
    ;
}

.news-item-t .mini-cat {
    width: calc(100% - 110px);
    flex-wrap: wrap;
}

.news-item-t .mini-cat span {
    display: inline-block;
    padding: 0 15px;
    font-weight: 500;
    font-size: 14px;

    /*color: #fff;*/
    line-height: 2;
    border: none;
    background: var(--color01);
}

.news-list-t.article-list.type03 .news-item-t .ttl {
    width: 100%;
    padding-bottom: 1em;
}

@media(max-width:1024px) {
    .news-item-t .mini-cat span {
        display: inline-block;
        margin: 0 0.3em 0.1em 0;
        padding: 0.05em 0.3em;
        font-weight: 500;
        font-size: 11.2px;
        letter-spacing: 0;
        border-radius: 0.5em;
    }

    .news-item-t .date {
        width: 100%;
    }

    .news-item-t .mini-cat {
        width: 100%;
    }

    .news-list-t.article-list.type03 .news-item-t .ttl {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .article-list.type02 .ttl {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .article-list.type03 .ttl {
        padding-bottom: 18px;
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .order .side {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order .pagenation {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order .main {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .cate-wrap+.cate-wrap {
        margin-top: 40px;
    }

    .cate-wrap .ttl {
        margin-bottom: 15px;
    }

    .list4>*:nth-child(4) {
        display: block;
    }
}

/* よくある質問 */

.faq-list .item+.item {
    padding-top: 50px;
}

.faq-list .item .datattl {
    margin-bottom: 15px;
    padding-bottom: 15px;
    padding-right: 20px;
    border-bottom: solid 1px var(--color01);
    position: relative;
}

.faq-list .item .datattl::after {
    content: "+";
    width: 20px;
    height: 20px;
    display: block;
    font-weight: bold;
    font-size: 24px;
    color: #ddd;
    line-height: 20px;
    transition: 0.6s;
    position: absolute;
    top: 10px;
    right: 0;
}

.faq-list .item .is-parent.datattl::after {
    transform: rotate(135deg);
}


.faq-list .datattl,
.faq-list .data-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
}

.faq-list .datattl .question {
    font-weight: 500;
    font-size: 18px;
    color: #333;
    letter-spacing: 0.1em;
    text-align: left;
}

.faq-list .data .answer {
    font-size: 16px;
    color: #333;
    line-height: 1.7em;
    letter-spacing: 0.1em;
}

.faq-list .label {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 20px;
    padding-bottom: 5px;
    font-weight: 400;
    font-size: 26px;

    /*color: #fff;*/
    border-radius: 50%;
    background: var(--color01);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
}

.faq-list .label.type02 {
    background: var(--color01);
}

.faq-list .data {
    display: none;
    padding-top: 20px;
}


@media (max-width: 599px) {
    .faq-list .item .datattl {
        padding-bottom: 15px;
    }

    .faq-list .label {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        font-size: 18px;
    }

    .faq-list .datattl .question {
        font-size: 16px;
    }

    .faq-list .data .answer {
        font-size: 16px;
        color: #333;
        line-height: 1.5;
        letter-spacing: 0.1em;
    }

    .faq-list .data {
        padding-top: 15px;
    }

    .faq-list .item+.item {
        padding-top: 40px;
    }

    .faq-list .item .datattl::after {
        top: 2px;
    }
}

.pro-item-inner {
    display: block;
    padding-bottom: 10px;
    border-bottom: 2px dashed var(--color01);
    position: relative;
}

.rec-item-inner {
    display: block;
    padding-bottom: 10px;
    border-bottom: 2px dashed var(--color01);
    position: relative;
}

.pro-item .mini-cat {
    width: 100%;
    padding: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.pro-item .mini-cat>* {
    /*color: #fff;*/
    border: none;
    background-color: var(--color01);
}

.pro-title {
    font-size: 18px;
}

.pro-net {
    padding: 5px 0;
    font-size: 14px;
    text-align: center;
    border: 1px solid #000;
}

.uk-lb {
    cursor: pointer;
}

/* recruit */
.recruit02area .recruitlist .item {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color01);
}

.recruit02area .recruitlist .item+.item {
    margin-top: 30px;
}

.recruit02area .recruitlist .item dl dt {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    letter-spacing: 0.1em;
}

.recruit02area .recruitlist .item dl dd dl dt {
    width: 180px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 15px;
    font-size: 16px;
    color: #333;
    position: relative;
}

.recruit02area .recruitlist .item dl dd dl dt::before {
    content: "\f0da";
    font-family: "font awesome 5 free";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 55%;
    right: 5px;
}

@media(max-width:599px) {
    .recruit02area .recruitlist .item dl dd dl dt {
        width: 160px;
    }

    .recruit02area .recruitlist .item dl dd dl dt+dd {
        width: 100%;
    }
}















[data-element-id].js-toggle+* {
    display: block !important;
}

[data-element-id] .show\@tb {
    max-width: 375px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: solid 4px green;
    position: relative;
}

[data-element-id] .show\@tb:after {
    content: "モバイル用";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    text-shadow: none;
    background: green;
}

[data-element-id] .show\@tb.indention {
    width: 30px;
    display: inline-block;
}

[data-element-id] .show\@tb.indention:after {
    content: "SP時改行";
    padding: 0;
    font-size: 10px;
    letter-spacing: 0.1em;
}

[data-element-id] .show\@pc.indention {
    width: 30px;
    display: inline-block;
}

[data-element-id] .show\@pc.indention:after {
    content: "PC時改行";
    display: block;
    padding: 0;
    font-weight: 700;
    font-size: 10px;
    color: #fff;
    letter-spacing: 0.1em;
    text-align: center;
    text-shadow: none;
    border: 2px solid blue;
    background: blue;
}

[data-element-id] .show\@sp {
    max-width: 375px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: solid 4px green;
    position: relative;
}

[data-element-id] .show\@sp .ttl-cmn02{
    margin-bottom:20px!important;
}

[data-element-id] .show\@sp:after {
    content: "モバイル用";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    text-shadow: none;
    background: green;
}

[data-element-id] .show\@sp.indention {
    width: 30px;
    display: inline-block;
}

[data-element-id] .show\@sp.indention:after {
    content: "SP時改行";
    padding: 0;
    font-size: 10px;
    letter-spacing: 0.1em;
}

/* 共通要素読み込みコメント（取り込み後削除） */
[class*="load-"] {
    min-height: 50px;
    border: 3px solid #00bcd4;
    position: relative;
}

[class*="load-"]:before {
    content: "共通要素";
    display: block;
    font-weight: bold;
    color: #ff0;
    text-align: center;
    background: #00bcd4;
    position: absolute;
    z-index: 100;
}

[data-element-id].slick02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

[data-element-id].slick03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

[data-element-id].slick02>* {
    width: 30%;
}

[data-element-id].slick03>* {
    width: 30%;
}

[data-element-id].bnr-cmn01 {
    position: relative;
    z-index: 1;
}

[data-element-id].bnr-cmn01 .tbox {
    width: 50%;
    margin-right: 0;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

[data-element-id].bnr-cmn01 .box>* {
    position: relative;
    z-index: 1;
}

[data-element-id].bnr-cmn01 .bgimg,
[data-element-id].bnr-cmn02 .bgimg {
    z-index: -1;
}

[data-element-id].bnr-cmn02 .tbox {
    width: 50%;
    margin-right: 0;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

[data-element-id] .show\@sp .ttl-cmn01 {
    font-size: 18px;
    letter-spacing: 0.1em;
}

[data-element-id] .show\@sp .ttl-cmn02 .en {
    font-size: 24px;
}

[data-element-id] .show\@sp .ttl-cmn02 .ja {
    font-size: 14px;
}

[data-element-id] .show\@sp .ttl-cmn03 {
    margin-bottom: 35px;
    font-size: 20px;
}

[data-element-id] .show\@sp .ttl-cmn04 {
    font-size: 18px;
    letter-spacing: 0.1em;
}

[data-element-id] .show\@sp .ttl-cmn05 {
    font-size: 20px;
    letter-spacing: 0.1em;
}

[data-element-id] .show\@sp .ttl-cmn06 {
    font-size: 20px;
}

[data-element-id] .show\@sp .ttl-cmn07 {
    font-size: 20px;
    letter-spacing: 0.1em;
}

[data-element-id] .show\@sp .list-cmn01>* {
    font-size: 18px;
    line-height: 1.5;
}

[data-element-id].box-type01 .item .bgimg {
    z-index: 0;
}

[data-element-id] .modal {
    height: auto;
    display: block;
    margin-top: 50px;
    position: relative;
}

[data-element-id] .js-modal-close01:after {
    width: 100%;
    min-width: 200px;
    padding: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 12px;

    /*color: #fff;*/
    border: 2px solid #555;
    background: #555;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute !important;
    bottom: 100%;
    left: 50%;
}

[data-element-id] .js-modal-close01:after {
    content: "「電話でお問い合わせ」をクリックしたときに現れる画面です";
}

[data-element-id] .js-modal-close02:after {
    content: "「WEB予約」をクリックしたときに現れる画面です";
}

[data-element-id].modal__bg {
    display: none;
}

[data-element-id] .modal__content {
    width: 90%;
    margin: 0 auto;
    border: 2px solid #555;
    border-radius: 0;
    -webkit-transform: none;
    transform: none;
    position: relative;
    top: 0;
    left: 0;
}

[data-element-id].header {
    padding-top: 40px;
    position: relative;
}

[data-element-id].gnav .wrap {
    align-items: flex-start;
}

[data-element-id].fix-bottom {
    max-width: 500px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

[data-element-id].fix-bottom::after {
    content: "PCで非表示";
    width: 100%;
    display: block;
    font-weight: 700;
    font-size: 12px;

    /*color: #fff;*/
    text-align: center;
    background: #008000;
}


[data-element-id].gnav .item01 {
    color: #121212;
}

[data-element-id].gnav .item03 {
    color: #121212;
}

[data-element-id].gnav .list02 {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

[data-element-id] .gnav.fixed {
    position: relative;
}

[data-element-id].totop {
    position: static;
}

[data-element-id].subimg {
    margin-top: 400px;
}

/*IE対策*/
/* スリックスライダー（トップ） */
[data-element-id].slick01 {
    width: 800px;
    overflow-x: auto;
}

[data-element-id].slick01>* {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

[data-element-id].slick01>*>* {
    width: 30%;
}

[data-element-id].home-gallery .box {
    transform: translate(0, 0);
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
}

[data-element-id].home-gallery .box::after {
    z-index: -1;
}


[data-element-id].home-gallery .tbox {
    z-index: 0;
}

[data-element-id] .home-gallery .tbox .show\@sp .ttl {
    margin-bottom: 15px;
    font-size: 20px;
}

[data-element-id].home-blog .inner {
    position: relative;
    z-index: 1;
}

[data-element-id].home-blog .bgimg {
    z-index: 0;
}

[data-element-id].blog-list {
    width: 100vw;
    overflow: hidden;
    z-index: 1;
}

[data-element-id].blog-list>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

[data-element-id].faq-list .data {
    display: block;
}


[data-element-id].blog-list li {
    display: block;
}

@media(max-width:599px){
  .table-cmn02 dl dt .ttl{
    letter-spacing:-.03em;
  }
  
  .table-cmn02.type03 dl dt {
    width: calc(100% - 100px);
    letter-spacing:-.03em;
}
  
  .table-cmn02.type03 dl dd {
    width: 100px;
    letter-spacing:-.03em;
}

.longer>*{
   letter-spacing: -.01em !important;;
}

.ttl-cmn03,
.ttl-cmn07{
  letter-spacing:0;
}

}





