@charset "utf-8";

/* CSS Document */

@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&display=swap");
@import url("https://use.fontawesome.com/releases/v5.14.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Antique&display=swap");


/* # root1 START # */
:root {
    --color01: #000;
    --color02: #333;
}

/* # root1 END # */

/* # root2 START # */
/* :root {
    --color01: #001750;
    --color02: #223a70;
} */
/* # root2 END # */

/* # root3 START # */
/* :root {
    --color01: #310e00;
    --color02: #661d00;
} */
/* # root3 END # */




.yuji {
    font-family: "Yuji Syuku", serif;
}

.zen-antique {
    font-family: "Zen Antique", serif;
}


.list-inner {
    height: 100%;
}

.ele+.ele {
    margin-top: 1.5em;
}

.kigou-wrap span {
    display: inline-block;
    line-height: 1;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

@media (max-width: 1024px) {
    .kigou-wrap span {
        -webkit-transform: unset;
        transform: unset;
    }
}

/*===================================
基本設定
===================================*/

/* html */

html {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    letter-spacing: 1px;
}

#wrapper {
    min-width: 375px;
    background: url("/import/tenant_1/162.43.8.114/html/images/pattern.webp") repeat;
}

dt,
dd {
    font-weight: 500;
}

.youtube iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}



/* inner */

@media (max-width: 1024px) {
    .inner500,
    .inner600,
    .inner700,
    .inner800,
    .inner900,
    .inner,
    .inner1100,
    .inner1200,
    .inner1300,
    .inner1400,
    .inner1500 {
        width: 94%;
    }
}



/* show hide */

.show\@pc {
    display: block;
}

.hide\@pc {
    display: none;
}

@media (max-width: 1024px) {
    .show\@tb {
        display: block;
    }

    .hide\@tb {
        display: none;
    }
}

@media (max-width: 599px) {
    .show\@sp {
        display: block;
    }

    .hide\@sp {
        display: none;
    }
}

/* js-toggle */
.js-toggle+* {
    display: none;
}

/* fead */
.fead-mv.mv {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.fead-up.mv {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.fead-order>* {
    opacity: 0;
}

.fead-order>.mv {
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.fead-text>* {
    opacity: 0;
}

.fead-text .mv {
    opacity: 1;
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

/* 画像 */

.img {
    text-align: center;
}

.pic img {
    width: 100%;
}

[class*="up-ofi"] {
    height: 100%;
}



/* color */

.color-type-black {
    color: #333;
}

.color-type-white {
    color: #fff;
}



/*背景カラー*/

.bg-type-black {
    background: var(--color02);
}

.bg-type-white {
    background-color: #fff;
}

.bg-type-pic {
    background: #000;
    position: relative;
}

.bg-type-pic .bg {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.bg-type-pic>* {
    color: #fff;
    position: relative;
    z-index: 5;
}

/* 縦書き */
.t-vertical {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.t-horizontal {
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
}

@media (max-width: 1024px) {
    .t-vertical\@tb {
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }

    .t-horizontal\@tb {
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
    }
}

@media (max-width: 599px) {
    .t-vertical\@sp {
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }

    .t-horizontal\@sp {
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
    }
}

/* 共通コンテンツ間隔 */
[class*="section-m"],
[class*="section-p"] {
    --section-xlarge: 140px;
    --section-large: 120px;
    --section-medium: 100px;
    --section-small: 80px;
    --section-xsmall: 60px;
}

.section-my-xlarge {
    margin-top: var(--section-xlarge);
    margin-bottom: var(--section-xlarge);
}

.section-mt-xlarge {
    margin-top: var(--section-xlarge);
}

.section-mb-xlarge {
    margin-bottom: var(--section-xlarge);
}

.section-my-large {
    margin-top: var(--section-large);
    margin-bottom: var(--section-large);
}

.section-mt-large {
    margin-top: var(--section-large);
}

.section-mb-large {
    margin-bottom: var(--section-large);
}

.section-my-medium {
    margin-top: var(--section-medium);
    margin-bottom: var(--section-medium);
}

.section-mt-medium {
    margin-top: var(--section-medium);
}

.section-mb-medium {
    margin-bottom: var(--section-medium);
}

.section-my-small {
    margin-top: var(--section-small);
    margin-bottom: var(--section-small);
}

.section-mt-small {
    margin-top: var(--section-small);
}

.section-mb-small {
    margin-bottom: var(--section-small);
}

.section-my-xsmall {
    margin-top: var(--section-xsmall);
    margin-bottom: var(--section-xsmall);
}

.section-mt-xsmall {
    margin-top: var(--section-xsmall);
}

.section-mb-xsmall {
    margin-bottom: var(--section-xsmall);
}

@media (max-width: 1024px) {
    .section-my-xlarge {
        margin-top: calc(var(--section-xlarge) * 0.8);
        margin-bottom: calc(var(--section-xlarge) * 0.8);
    }

    .section-mt-xlarge {
        margin-top: calc(var(--section-xlarge) * 0.8);
    }

    .section-mb-xlarge {
        margin-bottom: calc(var(--section-xlarge) * 0.8);
    }

    .section-my-large {
        margin-top: calc(var(--section-large) * 0.8);
        margin-bottom: calc(var(--section-large) * 0.8);
    }

    .section-mt-large {
        margin-top: calc(var(--section-large) * 0.8);
    }

    .section-mb-large {
        margin-bottom: calc(var(--section-large) * 0.8);
    }

    .section-my-medium {
        margin-top: calc(var(--section-medium) * 0.8);
        margin-bottom: calc(var(--section-medium) * 0.8);
    }

    .section-mt-medium {
        margin-top: calc(var(--section-medium) * 0.8);
    }

    .section-mb-medium {
        margin-bottom: calc(var(--section-medium) * 0.8);
    }

    .section-my-small {
        margin-top: calc(var(--section-small) * 0.8);
        margin-bottom: calc(var(--section-small) * 0.8);
    }

    .section-mt-small {
        margin-top: calc(var(--section-small) * 0.8);
    }

    .section-mb-small {
        margin-bottom: calc(var(--section-small) * 0.8);
    }

    .section-my-xsmall {
        margin-top: calc(var(--section-xsmall) * 0.8);
        margin-bottom: calc(var(--section-xsmall) * 0.8);
    }

    .section-mt-xsmall {
        margin-top: calc(var(--section-xsmall) * 0.8);
    }

    .section-mb-xsmall {
        margin-bottom: calc(var(--section-xsmall) * 0.8);
    }
}

@media (max-width: 599px) {
    .section-my-xlarge {
        margin-top: calc(var(--section-xlarge) * 0.6);
        margin-bottom: calc(var(--section-xlarge) * 0.6);
    }

    .section-mt-xlarge {
        margin-top: calc(var(--section-xlarge) * 0.6);
    }

    .section-mb-xlarge {
        margin-bottom: calc(var(--section-xlarge) * 0.6);
    }

    .section-my-large {
        margin-top: calc(var(--section-large) * 0.6);
        margin-bottom: calc(var(--section-large) * 0.6);
    }

    .section-mt-large {
        margin-top: calc(var(--section-large) * 0.6);
    }

    .section-mb-large {
        margin-bottom: calc(var(--section-large) * 0.6);
    }

    .section-my-medium {
        margin-top: calc(var(--section-medium) * 0.6);
        margin-bottom: calc(var(--section-medium) * 0.6);
    }

    .section-mt-medium {
        margin-top: calc(var(--section-medium) * 0.6);
    }

    .section-mb-medium {
        margin-bottom: calc(var(--section-medium) * 0.6);
    }

    .section-my-small {
        margin-top: calc(var(--section-small) * 0.6);
        margin-bottom: calc(var(--section-small) * 0.6);
    }

    .section-mt-small {
        margin-top: calc(var(--section-small) * 0.6);
    }

    .section-mb-small {
        margin-bottom: calc(var(--section-small) * 0.6);
    }

    .section-my-xsmall {
        margin-top: calc(var(--section-xsmall) * 0.6);
        margin-bottom: calc(var(--section-xsmall) * 0.6);
    }

    .section-mt-xsmall {
        margin-top: calc(var(--section-xsmall) * 0.6);
    }

    .section-mb-xsmall {
        margin-bottom: calc(var(--section-xsmall) * 0.6);
    }
}

.section-py-xlarge {
    padding-top: var(--section-xlarge);
    padding-bottom: var(--section-xlarge);
}

.section-pt-xlarge {
    padding-top: var(--section-xlarge);
}

.section-pb-xlarge {
    padding-bottom: var(--section-xlarge);
}

.section-py-large {
    padding-top: var(--section-large);
    padding-bottom: var(--section-large);
}

.section-pt-large {
    padding-top: var(--section-large);
}

.section-pb-large {
    padding-bottom: var(--section-large);
}

.section-py-medium {
    padding-top: var(--section-medium);
    padding-bottom: var(--section-medium);
}

.section-pt-medium {
    padding-top: var(--section-medium);
}

.section-pb-medium {
    padding-bottom: var(--section-medium);
}

.section-py-small {
    padding-top: var(--section-small);
    padding-bottom: var(--section-small);
}

.section-pt-small {
    padding-top: var(--section-small);
}

.section-pb-small {
    padding-bottom: var(--section-small);
}

.section-py-xsmall {
    padding-top: var(--section-xsmall);
    padding-bottom: var(--section-xsmall);
}

.section-pt-xsmall {
    padding-top: var(--section-xsmall);
}

.section-pb-xsmall {
    padding-bottom: var(--section-xsmall);
}

@media (max-width: 1024px) {
    .section-py-xlarge {
        padding-top: calc(var(--section-xlarge) * 0.8);
        padding-bottom: calc(var(--section-xlarge) * 0.8);
    }

    .section-pt-xlarge {
        padding-top: calc(var(--section-xlarge) * 0.8);
    }

    .section-pb-xlarge {
        padding-bottom: calc(var(--section-xlarge) * 0.8);
    }

    .section-py-large {
        padding-top: calc(var(--section-large) * 0.8);
        padding-bottom: calc(var(--section-large) * 0.8);
    }

    .section-pt-large {
        padding-top: calc(var(--section-large) * 0.8);
    }

    .section-pb-large {
        padding-bottom: calc(var(--section-large) * 0.8);
    }

    .section-py-medium {
        padding-top: calc(var(--section-medium) * 0.8);
        padding-bottom: calc(var(--section-medium) * 0.8);
    }

    .section-pt-medium {
        padding-top: calc(var(--section-medium) * 0.8);
    }

    .section-pb-medium {
        padding-bottom: calc(var(--section-medium) * 0.8);
    }

    .section-py-small {
        padding-top: calc(var(--section-small) * 0.8);
        padding-bottom: calc(var(--section-small) * 0.8);
    }

    .section-pt-small {
        padding-top: calc(var(--section-small) * 0.8);
    }

    .section-pb-small {
        padding-bottom: calc(var(--section-small) * 0.8);
    }

    .section-py-xsmall {
        padding-top: calc(var(--section-xsmall) * 0.8);
        padding-bottom: calc(var(--section-xsmall) * 0.8);
    }

    .section-pt-xsmall {
        padding-top: calc(var(--section-xsmall) * 0.8);
    }

    .section-pb-xsmall {
        padding-bottom: calc(var(--section-xsmall) * 0.8);
    }
}

@media (max-width: 599px) {
    .section-py-xlarge {
        padding-top: calc(var(--section-xlarge) * 0.6);
        padding-bottom: calc(var(--section-xlarge) * 0.6);
    }

    .section-pt-xlarge {
        padding-top: calc(var(--section-xlarge) * 0.6);
    }

    .section-pb-xlarge {
        padding-bottom: calc(var(--section-xlarge) * 0.6);
    }

    .section-py-large {
        padding-top: calc(var(--section-large) * 0.6);
        padding-bottom: calc(var(--section-large) * 0.6);
    }

    .section-pt-large {
        padding-top: calc(var(--section-large) * 0.6);
    }

    .section-pb-large {
        padding-bottom: calc(var(--section-large) * 0.6);
    }

    .section-py-medium {
        padding-top: calc(var(--section-medium) * 0.6);
        padding-bottom: calc(var(--section-medium) * 0.6);
    }

    .section-pt-medium {
        padding-top: calc(var(--section-medium) * 0.6);
    }

    .section-pb-medium {
        padding-bottom: calc(var(--section-medium) * 0.6);
    }

    .section-py-small {
        padding-top: calc(var(--section-small) * 0.6);
        padding-bottom: calc(var(--section-small) * 0.6);
    }

    .section-pt-small {
        padding-top: calc(var(--section-small) * 0.6);
    }

    .section-pb-small {
        padding-bottom: calc(var(--section-small) * 0.6);
    }

    .section-py-xsmall {
        padding-top: calc(var(--section-xsmall) * 0.6);
        padding-bottom: calc(var(--section-xsmall) * 0.6);
    }

    .section-pt-xsmall {
        padding-top: calc(var(--section-xsmall) * 0.6);
    }

    .section-pb-xsmall {
        padding-bottom: calc(var(--section-xsmall) * 0.6);
    }
}



/*===================================
共通タイトル
===================================*/

[class*="ttl-type-"] {
    --ttl-size-xlarge: 44px;
    --ttl-size-large: 40px;
    --ttl-size-medium: 36px;
    --ttl-size-small: 32px;
    --ttl-size-xsmall: 28px;
    --ttl-mb-xlarge: 70px;
    --ttl-mb-large: 60px;
    --ttl-mb-medium: 50px;
    --ttl-mb-small: 30px;
    --ttl-mb-xsmall: 20px;
}

/* ttl-type-cmn */

.ttl-type-cmn {
    margin-bottom: var(--ttl-mb-medium);
    font-size: var(--ttl-size-medium);
    line-height: 1.5;
    letter-spacing: 3px;
    text-align: center;
}

.ttl-type-cmn>* {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
}

@media (max-width: 1024px) {
    .ttl-type-cmn {
        margin-bottom: calc(var(--ttl-mb-medium) * 0.8);
        font-size: calc(var(--ttl-size-medium) * 0.8);
        letter-spacing: 2px;
    }
}

@media (max-width: 599px) {
    .ttl-type-cmn {
        margin-bottom: calc(var(--ttl-mb-medium) * 0.6);
        font-weight: bold;
        font-size: calc(var(--ttl-size-medium) * 0.6);
        letter-spacing: 1px;
    }
}



/* 共通見出し上書き */

.ttl-color-white {
    color: #fff;
}

.ttl-color-black {
    color: #333;
}

.ttl-bg-white>* {
    padding: 40px 20px;
    background-color: #fff;
}

.ttl-bg-black>* {
    padding: 40px 20px;
    color: #fff;
    background-color: #333;
}

.ttl-border {
    padding-left: 10px;
    border-left: solid 4px;
}

.ttl-left {
    text-align: left;
}

.ttl-center {
    text-align: center;
}

.ttl-right {
    text-align: right;
}

.ttl-vertical {
    word-break: keep-all;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.ttl-size-xlarge {
    font-size: var(--ttl-size-xlarge);
}

.ttl-size-large {
    font-size: var(--ttl-size-large);
}

.ttl-size-medium {
    font-size: var(--ttl-size-medium);
}

.ttl-size-small {
    font-size: var(--ttl-size-small);
}

.ttl-size-xsmall {
    font-size: var(--ttl-size-xsmall);
}

@media (max-width: 1024px) {
    .ttl-size-xlarge {
        font-size: calc(var(--ttl-size-xlarge) * 0.8);
    }

    .ttl-size-large {
        font-size: calc(var(--ttl-size-large) * 0.8);
    }

    .ttl-size-medium {
        font-size: calc(var(--ttl-size-medium) * 0.8);
    }

    .ttl-size-small {
        font-size: calc(var(--ttl-size-small) * 0.8);
    }

    .ttl-size-xsmall {
        font-size: calc(var(--ttl-size-xsmall) * 0.8);
    }
}

@media (max-width: 599px) {
    .ttl-size-xlarge {
        font-size: calc(var(--ttl-size-xlarge) * 0.6);
    }

    .ttl-size-large {
        font-size: calc(var(--ttl-size-large) * 0.6);
    }

    .ttl-size-medium {
        font-size: calc(var(--ttl-size-medium) * 0.6);
    }

    .ttl-size-small {
        font-size: calc(var(--ttl-size-small) * 0.6);
    }

    .ttl-size-xsmall {
        font-size: calc(var(--ttl-size-xsmall) * 0.6);
    }
}

.ttl-mb-xlarge {
    margin-bottom: var(--ttl-mb-xlarge);
}

.ttl-mb-large {
    margin-bottom: var(--ttl-mb-large);
}

.ttl-mb-medium {
    margin-bottom: var(--ttl-mb-medium);
}

.ttl-mb-small {
    margin-bottom: var(--ttl-mb-small);
}

.ttl-mb-xsmall {
    margin-bottom: var(--ttl-mb-xsmall);
}

.ttl-mb-none {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .ttl-mb-xlarge {
        margin-bottom: calc(var(--ttl-mb-xlarge) * 0.8);
    }

    .ttl-mb-large {
        margin-bottom: calc(var(--ttl-mb-large) * 0.8);
    }

    .ttl-mb-medium {
        margin-bottom: calc(var(--ttl-mb-medium) * 0.8);
    }

    .ttl-mb-small {
        margin-bottom: calc(var(--ttl-mb-small) * 0.8);
    }

    .ttl-mb-xsmall {
        margin-bottom: calc(var(--ttl-mb-xsmall) * 0.8);
    }

    .ttl-mb-none {
        margin-bottom: 0;
    }
}

@media (max-width: 599px) {
    .ttl-mb-xlarge {
        margin-bottom: calc(var(--ttl-mb-xlarge) * 0.7);
    }

    .ttl-mb-large {
        margin-bottom: calc(var(--ttl-mb-large) * 0.7);
    }

    .ttl-mb-medium {
        margin-bottom: calc(var(--ttl-mb-medium) * 0.7);
    }

    .ttl-mb-small {
        margin-bottom: calc(var(--ttl-mb-small) * 0.7);
    }

    .ttl-mb-xsmall {
        margin-bottom: calc(var(--ttl-mb-xsmall) * 0.7);
    }

    .ttl-mb-none {
        margin-bottom: 0;
    }
}



/*===================================
共通ボタン
===================================*/

[class*="btn-type-"] {
    --btn-mt-xlarge: 70px;
    --btn-mt-large: 60px;
    --btn-mt-medium: 50px;
    --btn-mt-small: 40px;
    --btn-mt-xsmall: 30px;
}

/* btn-type-01 */

.btn-type-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: var(--btn-mt-medium);
}

.btn-type-01>* {
    width: 150px;
    max-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: 5px 10px;
    text-align: center;
    border: solid 1px;
    background: #fff;
}

.btn-type-01.mk2>* {
    width: 200px;
}

.btn-type-01>*:after {
    content: "\f054";
    display: block;
    margin-left: 10px;
    font-family: "font awesome 5 free";
    font-weight: bold;
}

.btn-vertical {
    width: auto;
    height: 150px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.btn-vertical>* {
    width: 100%;
    height: 100%;
}

.btn-vertical>*:after {
    margin: 0;
    margin-top: 10px;
}

.btn-back>*:after {
    display: none;
}

.btn-back>*:before {
    content: "\f053";
    display: block;
    margin-right: 10px;
    font-family: "font awesome 5 free";
    font-weight: bold;
}

@media (max-width: 1024px) {
    .btn-type-01 {
        margin-top: calc(var(--btn-mt-medium) * 0.8);
    }
}

@media (max-width: 599px) {
    .btn-type-01 {
        margin-top: calc(var(--btn-mt-medium) * 0.6);
    }

    .btn-vertical {
        height: auto;
        -ms-writing-mode: initial;
        -webkit-writing-mode: initial;
        writing-mode: initial;
    }

    .btn-vertical>* {
        width: 150px;
        height: auto;
    }

    .btn-vertical>*:after {
        margin: 0;
        margin-left: 10px;
    }
}



/* btn-type-02 */

.btn-type-02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: var(--btn-mt-medium);
}

.btn-type-02>* {
    max-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;
    text-align: center;
}

.btn-type-02>*:after {
    content: "\f061";
    width: 18px;
    display: block;
    margin-left: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    border: solid 1px;
    border-radius: 100%;
}

@media (max-width: 1024px) {
    .btn-type-02 {
        margin-top: calc(var(--btn-mt-medium) * 0.8);
    }
}

@media (max-width: 599px) {
    .btn-type-02 {
        margin-top: calc(var(--btn-mt-medium) * 0.6);
    }
}



/* btn-type-03 */

.btn-type-03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: var(--btn-mt-medium);
}

.btn-type-03>* {
    width: 400px;
    max-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: 15px 10px;
    color: #fff;
    text-align: center;
    border: none;
    background: #333;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-type-03>*:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .btn-type-03 {
        margin-top: calc(var(--btn-mt-medium) * 0.8);
    }
}

@media (max-width: 599px) {
    .btn-type-03 {
        margin-top: calc(var(--btn-mt-medium) * 0.6);
    }
}



/* 共通ボタン上書き */

.btn-mt-xlarge {
    margin-top: var(--btn-mt-xlarge);
}

.btn-mt-large {
    margin-top: var(--btn-mt-large);
}

.btn-mt-medium {
    margin-top: var(--btn-mt-medium);
}

.btn-mt-small {
    margin-top: var(--btn-mt-small);
}

.btn-mt-xsmall {
    margin-top: var(--btn-mt-xsmall);
}

.btn-mt-none {
    margin-top: 0;
}

@media (max-width: 1024px) {
    .btn-mt-xlarge {
        margin-top: calc(var(--btn-mt-xlarge) * 0.8);
    }

    .btn-mt-large {
        margin-top: calc(var(--btn-mt-large) * 0.8);
    }

    .btn-mt-medium {
        margin-top: calc(var(--btn-mt-medium) * 0.8);
    }

    .btn-mt-small {
        margin-top: calc(var(--btn-mt-small) * 0.8);
    }

    .btn-mt-xsmall {
        margin-top: calc(var(--btn-mt-xsmall) * 0.8);
    }

    .btn-mt-none {
        margin-top: 0;
    }
}

@media (max-width: 599px) {
    .btn-mt-xlarge {
        margin-top: calc(var(--btn-mt-xlarge) * 0.6);
    }

    .btn-mt-large {
        margin-top: calc(var(--btn-mt-large) * 0.6);
    }

    .btn-mt-medium {
        margin-top: calc(var(--btn-mt-medium) * 0.6);
    }

    .btn-mt-small {
        margin-top: calc(var(--btn-mt-small) * 0.6);
    }

    .btn-mt-xsmall {
        margin-top: calc(var(--btn-mt-xsmall) * 0.6);
    }

    .btn-mt-none {
        margin-top: 0;
    }
}

.btn-w-full>* {
    width: 100%;
}

.btn-w-xlarge>* {
    width: 350px;
}

.btn-w-xlarge>* {
    width: 300px;
}

.btn-w-medium>* {
    width: 250px;
}

.btn-w-small>* {
    width: 200px;
}

.btn-w-xsmall>* {
    width: 150px;
}

.btn-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.btn-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}



/*===================================
チェックリスト
===================================*/

.list-type-check li {
    margin-top: 5px;
    padding-left: 1.5em;
    position: relative;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline; */
}

.list-type-check li:before {
    content: "\f00c";
    display: block;
    margin-right: 10px;
    font-family: "font awesome 5 free";
    font-weight: bold;
    color: #df1c07;
    position: absolute;
    top: 0;
    left: 0;
}

.list-type-asterisk li {
    margin-top: 5px;
    padding-left: 1.5em;
    position: relative;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline; */
}

.list-type-asterisk li:before {
    content: "\f069";
    display: block;
    margin-right: 10px;
    font-family: "font awesome 5 free";
    font-weight: bold;
    color: #df1c07;
    position: absolute;
    top: 0;
    left: 0;
}



/*===================================
カード
===================================*/

/* card-type-01 */

.card-type-01 .item .tit {
    margin-top: 20px;
    padding-top: 5px;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    text-align: center;
    position: relative;
}

/* .card-type-01 .item .tit:before {
    display: block;
    content: "";
    width: 2px;
    height: 40px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: 100%;
} */

.card-type-01 .item .txt {
    margin-top: 10px;
    color: #fff;
}

.card-type-01-rev .item .tit {
    color: #333;
}

.card-type-01-rev .item .tit:before {
    background: #333;
}

.card-type-01-rev .item .txt {
    color: #333;
}

@media (max-width: 599px) {
    .card-type-01 .item .tit {
        font-size: 18px;
    }
}



/* card-type-02 */

.card-type-02 .item>* {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.card-type-02 .item>*:before {
    content: "";
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    display: block;
    border: solid 2px #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.card-type-02 .item .pic {
    background: #000;
}

.card-type-02 .item .pic img {
    opacity: 0.6;
}

.card-type-02 .item .tit {
    height: 85%;
    font-size: 30px;
    color: #fff;
    line-height: 1.2em;
    letter-spacing: 3px;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

@media (max-width: 1024px) {
    .card-type-02 .item .tit {
        font-size: 22px;
    }
}

@media (min-width: 600px) and (max-width: 699px) {
    .card-type-02 .item .tit {
        font-size: 18px;
    }
}

@media (max-width: 599px) {
    .card-type-02 .item .pic {
        height: 180px;
    }

    .card-type-02 .item .tit {
        width: 90%;
        height: auto;
        font-size: 18px;
        text-align: center;
        -ms-writing-mode: initial;
        -webkit-writing-mode: initial;
        writing-mode: initial;
    }
}



/* card-type-03 */

.card-type-03 .item .tit {
    margin-top: 10px;
    padding: 10px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    background: #fff;
}

@media (max-width: 599px) {
    .card-type-03 .item .tit {
        font-size: 18px;
    }
}



/* card-type-04 */

.card-type-04 .item>* {
    height: 100%;
    display: block;
    padding: 10px;
    background: #fff;
}

.card-type-04 .item>*>* {
    margin-top: 5px;
    font-size: 16px;
}



/* card-type-05 */

.card-type-05 .item>* {
    height: 100%;
    display: block;
}

.card-type-05 .item .info {
    margin-top: 10px;
}

.card-type-05 .item .info>*+* {
    margin-top: 5px;
}

.card-type-05 .item .label>span {
    display: inline-block;
    margin-bottom: 2px;
    margin-right: 2px;
    padding: 0px 10px;
    font-size: 13px;
    color: #fff;
    background: #333;
}

.card-type-05 .item .tit {
    margin-top: 5px;
    font-size: 18px;
      width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: inherit;
  -webkit-line-clamp: 2;
}

/*@media (max-width: 599px) {
    .card-type-05 .item>* {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .card-type-05 .item .pic {
        width: 35%;
    }

    .card-type-05 .item .info {
        width: 60%;
        margin: 0;
    }
}*/



/*===================================
ブロック
===================================*/

/* block-type-01 */

.block-type-01 .item {
    width: 80%;
}

.block-type-01 .item+* {
    margin-top: 80px;
}

.block-type-01 .item:nth-of-type(2n+2) {
    margin-left: auto;
}

.block-type-01 .item .info {
    padding: 40px;
    background: #333;
}

.block-type-01 .item .tit {
    padding-left: 10px;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 3px;
    border-left: solid 4px;
}

.block-type-01 .item .txt {
    margin-top: 20px;
    color: #fff;
}

.block-type-01-rev .item .info {
    background: #fff;
}

.block-type-01-rev .item .tit {
    color: #333;
}

.block-type-01-rev .item .txt {
    color: #333;
}

@media (max-width: 1024px) {
    .block-type-01 .item {
        width: 85%;
    }

    .block-type-01 .item+* {
        margin-top: 60px;
    }

    .block-type-01 .item .info {
        padding: 30px;
    }
}

@media (max-width: 599px) {
    .block-type-01 .item {
        width: 90%;
    }

    .block-type-01 .item+* {
        margin-top: 40px;
    }

    .block-type-01 .item .info {
        padding: 20px;
    }
}



/* block-type-02 */

.block-type-02>.item+* {
    margin-top: 80px;
}

.block-type-02 .item .left {
    width: 50%;
}

.block-type-02 .item .right {
    width: 55%;
    margin-top: 5%;
    margin-left: -5%;
    position: relative;
}

.block-type-02 .up-fxd-rowr .right {
    width: 55%;
    margin-top: 5%;
    margin-left: auto;
    margin-right: -5%;
    position: relative;
}

.block-type-02 .item .tbox {
    padding: 40px;
    background: #fff;

    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.block-type-02 .item .tbox .tit {
    margin-bottom: 10px;
    padding-left: 10px;
    font-size: 24px;
    line-height: 1.5;
    border-left: solid 4px;
}

.block-type-02 .item:nth-of-type(2n+2) .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.block-type-02 .item:nth-of-type(2n+2) .right {
    margin-left: 0;
    margin-right: -5%;
}

@media (max-width: 1024px) {
    .block-type-02>.item+* {
        margin-top: 60px;
    }

    .block-type-02 .item .tbox {
        padding: 30px;
    }

    .block-type-02 .item .tbox .tit {
        font-size: 22px;
    }
}

@media (max-width: 599px) {
    .block-type-02>.item+* {
        margin-top: 40px;
    }

    .block-type-02 .item .left {
        width: 100%;
    }

    .block-type-02 .item .right {
        width: 100%;
        margin: 0 !important;
    }

    .block-type-02 .item .tbox {
        padding: 20px;
    }

    .block-type-02 .item .tbox .tit {
        font-size: 20px;
    }
}



/* block-type-03 */

.block-type-03 .item+* {
    margin-top: 80px;
}

.block-type-03 .item .tit {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 24px;
}

.block-type-03 .item .pri {
    margin-top: 10px;
    font-weight: bold;
    font-size: 24px;
    color: #df1c07;
}

.block-type-03 .item .pri .yen {
    font-size: 18px;
}

@media (max-width: 1024px) {
    .block-type-03 .item+* {
        margin-top: 60px;
    }

    .block-type-03 .item .tit {
        font-size: 22px;
    }
}

@media (max-width: 599px) {
    .block-type-03 .item+* {
        margin-top: 40px;
    }

    .block-type-03 .item .tit {
        font-size: 20px;
    }
}



/* block-type-04 */

.block-type-04 .item+* {
    margin-top: 80px;
}

.block-type-04 .item .tit {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 24px;
}

.block-type-04 .item .pic {
    margin-top: 10px;
    position: relative;
}

.block-type-04 .item .num {
    font-size: 40px;
    color: #df1c07;
    line-height: 1;
    letter-spacing: 3px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute !important;
    top: 0;
    left: 5%;
}

@media (max-width: 1024px) {
    .block-type-04 .item+* {
        margin-top: 60px;
    }

    .block-type-04 .item .tit {
        font-size: 22px;
    }

    .block-type-04 .item .num {
        font-size: 36px;
    }
}

@media (max-width: 599px) {
    .block-type-04 .item+* {
        margin-top: 40px;
    }

    .block-type-04 .item .tit {
        font-size: 20px;
    }

    .block-type-04 .item .num {
        font-size: 32px;
    }
}



/*===================================
ボーダー
===================================*/

.border-type-01 {
    padding: 40px;
    border: solid 2px;
    border-radius: 20px 0 20px 0;
    background: #fff;
}

@media (max-width: 1024px) {
    .border-type-01 {
        padding: 30px;
    }
}

@media (max-width: 599px) {
    .border-type-01 {
        padding: 20px;
    }
}



/*===================================
テーブル
===================================*/

/* table-type-01 */

.table-type-01 dt {
    width: 200px;
    padding: 10px;
    color: #fff;
    background: #333;
}

.table-type-01 dl+dl dt {
    border-top: solid 1px;
}

.table-type-01 dd {
    width: calc(100% - 200px);
    padding: 10px;
    background: #fff;
}

.table-type-01 dl+dl dd {
    border-top: solid 1px;
}

@media (max-width: 599px) {
    .table-type-01 dt {
        width: 100%;
    }

    .table-type-01 dd {
        width: 100%;
    }
}

/* table-type-02 */

.table-type-02 dl {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px;
}

.table-type-02 dl:last-of-type {
    margin-bottom: 0;
}

.table-type-02 dt {
    width: calc(100% - 250px);
    font-weight: bold;
    font-size: 18px;
}

.table-type-02 dd {
    width: 250px;
    font-weight: bold;
    font-size: 20px;
    color: #df1c07;
    text-align: right;
}

.table-type-02 dd.__big-text {
    font-size: 36px;
}

.table-type-02 .desc {
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

.table-type-02 .yen {
    font-size: 16px;
}

@media (max-width: 599px) {
    .table-type-02 dt {
        width: 100%;
        font-size: 16px;
    }

    .table-type-02 dd {
        width: 100%;
    }
}



/*===================================
バナー
===================================*/

.bnr-type-01>* {
    display: block;
    position: relative;
}

.bnr-type-01>*:before,
.bnr-type-01>*:after {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    color: #fff;
    position: absolute;
}

.bnr-type-01>*:before {
    border-top: solid 2px;
    border-left: solid 2px;
    top: 10px;
    left: 10px;
    z-index: 5;
}

.bnr-type-01>*:after {
    border-bottom: solid 2px;
    border-right: solid 2px;
    bottom: 10px;
    right: 10px;
    z-index: 5;
}

.bnr-type-01 .pic {
    height: 300px;
    background: #000;
}

.bnr-type-01 .pic img {
    opacity: 0.6;
}

.bnr-type-01 .tit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 94%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    font-size: 32px;
    color: #fff;
    letter-spacing: 3px;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
}

.bnr-type-01 .tit:after {
    content: "\f054";
    display: block;
    margin-left: 10px;
    font-family: "font awesome 5 free";
    font-weight: bold;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

@media (max-width: 1024px) {
    .bnr-type-01 .pic {
        height: 250px;
    }

    .bnr-type-01 .tit {
        font-size: 28px;
    }
}

@media (max-width: 599px) {
    .bnr-type-01>*:before,
    .bnr-type-01>*:after {
        width: 30px;
        height: 30px;
    }

    .bnr-type-01 .pic {
        height: 200px;
    }

    .bnr-type-01 .tit {
        font-size: 24px;
    }
}



/*===================================
共通要素
===================================*/

/* header */
#header {
    background-color: var(--color01);
    position: relative;
    z-index: 20;
}

.header-common.fixed {
    width: 100%;
    background-color: rgba(2, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

#header h1 {
    width: 94%;
    margin: auto;
    padding: 10px 40px 10px 0;
    font-size: 12px;
    color: #fff;
}

#header .left {
    width: 120px;
}

#header .logo {
    width: 100%;
    padding: 10px;
    ;
}

#header .logo a {
    display: block;
}

#header .right {
    width: calc(100% - 270px);
}

#header .add {
    margin-top: 5px;
    font-size: 14px;
}

.barger-inner>div>.up-d-flex {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}


@media (min-width: 1025px) and (max-width: 1280px) {
    #header .left {
        width: 180px;
    }
}

@media (max-width: 1024px) {
    #header {
        position: static;
    }

    #header .left {
        width: 100%;
    }

    #header .logo {
        max-width: 75px;
        margin: auto;
    }

    #header .add {
        font-size: 12px;
        text-align: center;
    }

    .barger-inner>div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 599px) {
    #header h1 {
        font-size: 10px;
    }
}



/* gnav */

#gnav li {
    margin-right: 20px;
    color: #fff;
}

#gnav li a {
    display: block;
}

#gnav .btn a {
    width: 170px;
    max-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: 25px 0;
    color: #fff;
    text-align: center;
    background: var(--color02);
}

#gnav .btn a.type-b {
    color: #fff;
    background: #777;
}

#gnav .btn a:before {
    content: "\f0e0";
    display: block;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
}

#gnav .dropdown {
    position: relative;
}

#gnav .dropdown>ul {
    width: 250px;
    visibility: hidden;
    padding: 10px;
    background: #333;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    position: absolute;
    top: 100%;
    left: 0;
}

#gnav .dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
}

#gnav .dropdown>ul li {
    margin: 0;
}

#gnav .dropdown>ul li+li {
    margin-top: 10px;
}

#gnav .dropdown>ul li a {
    color: #fff;
}

.h-add {
    color: #fff;
}

@media(max-width:1024px) {
    .h-add {
        color: #000;
        text-align: center;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    #gnav li {
        margin-right: 10px;
        font-size: 14px;
    }

    #gnav .btn a {
        width: 140px;
        font-size: 14px;
        line-height: 50px;
    }
}

@media (max-width: 1024px) {
    #gnav li {
        width: 100%;
        margin: 0 0 20px;
        color: #333;
    }

    #gnav .btn {
        width: 100%;
    }

    #gnav .btn a {
        width: 100%;
        line-height: 50px;
    }

    #gnav .dropdown>ul {
        width: 100%;
        visibility: visible;
        margin-top: 10px;
        padding: 0;
        background: none;
        opacity: 1;
        position: static;
    }

    #gnav .dropdown>ul li a {
        padding-left: 1.5em;
        color: #333;
        position: relative;
    }

    #gnav .dropdown>ul li a:before {
        content: "∟";
        line-height: 1.5;
        position: absolute;
        top: 0;
        left: 0;
    }
}



/* barger */

@media (max-width: 1024px) {
    .toggle {
        width: 42px;
        height: 42px;
        background: #333;
        cursor: pointer;
        position: fixed;
        top: 0px;
        right: 0px;
        z-index: 251;
    }

    .toggle .bar {
        width: 28px;
        height: 2px;
        display: block;
        margin-top: -1px;
        padding: 0;
        text-indent: 9999px;
        background: #fff;
        -webkit-transition: ease 0.4s;
        transition: ease 0.4s;
        position: absolute;
        top: 50%;
        left: 7px;
    }

    .toggle .bar:before,
    .toggle .bar:after {
        content: "";
        width: 28px;
        height: 2px;
        display: block;
        background: #fff;
        position: absolute;
        left: 0;
    }

    .toggle .bar:before {
        top: -10px;
    }

    .toggle .bar:after {
        top: 10px;
    }

    .toggle.active .bar {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .toggle.active .bar:after,
    .toggle.active .bar:before {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        top: 0;
        left: 0;
    }

    .barger-body {
        width: 80%;
        max-width: 350px;
        height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        /* background: #333; */
        background: url("/import/tenant_1/162.43.8.114/html/images/pattern.webp") repeat;
        -webkit-transition: 0.4s;
        transition: 0.4s;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 250;
    }

    .barger-body.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .barger-inner {
        padding: 60px 15px 100px;
    }

    .overlay {
        width: 100%;
        height: 100vh;
        visibility: hidden;
        background: #000;
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 249;
    }

    .overlay.active {
        visibility: visible;
        opacity: 0.3;
    }
}

.list-dot {
    padding-left: 1em;
}

.list-dot li {
    list-style: circle;
    list-style-position: outside;
}

/* footer */
footer .logo {
    width: 120px;
}

footer .logo a {
    display: block;
}

#footer {
    padding-top: 40px;
    color: #fff;
    /* background: #707070; */
    background: var(--color01);
}

.footerBox .left {
    width: 48%;
}

.footerBox .right {
    width: 39%;
}

.footerBox .info {
    margin-top: 30px;
}

.footerBox .info li+li {
    margin-top: 20px;
}

.footerBox .icon {
    margin-top: 30px;
}

.footerBox .icon dl+dl {
    margin-top: 20px;
}

.footerBox .icon dt {
    margin-bottom: 5px;
}

.footerBox .icon dd li {
    margin-right: 10px;
}

.footerBox .map:after {
    padding-top: 80%;
}

.footerNav {
    margin-top: 30px;
}

.footerNav li {
    margin-bottom: 10px;
}

.footerNav li a {
    padding: 0.25em;
}

.foot-line {
    margin-top: 60px;
}

.foot-line a {
    display: block;
    color: #333;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 0;
}

.foot-line a .tit {
    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: 8px 5px;
    font-weight: bold;
}

.foot-line a .txt {
    padding: 5px 5px 15px;
    font-size: 22px;
    color: #fff;
    line-height: 1.5;
    background: #00b900;
}

.foot-line a .txt .sub {
    font-size: 70%;
}

.foot-line a .tit .pic {
    width: 35px;
    height: 35px;
    display: inline-block;
    margin-right: 5px;
}

.foot-line a .subtxt {
    content: "";
    width: 70px;
    height: 70px;
    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;
    padding: 4px 10px;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    border-radius: 50%;
    background: #ff8c00;
    position: absolute !important;
    top: -30px;
    left: -20px;
    z-index: 0;
}

#footer .copy {
    margin-top: 40px;
    padding: 10px 0;
    text-align: center;
    background: var(--color02);
}

.footFix {
    width: 80px;
    position: fixed;
    top: 170px;
    right: 0;
    z-index: 50;
}

.footFix ul>div,
.footFix ul>div>div {
    width: 100%;
}

.footFix ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footFix li {
    width: calc(96% / 3);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 1%;
}

.footFix li.mail-pc {
    width: 100%;
    /*     -webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1; */
    margin-top: 1%;
}

.footFix li 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;
    border-radius: 2px;
    background: rgb(139, 137, 137, 0.8);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.footFix li a:before {
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    line-height: 1;
}

.footFix .tel,
.footFix .tel2 {
    width: 100%;
    font-size: 24px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;

    -webkit-text-orientation: upright;
    text-orientation: upright;
}

.footFix .tel a .icon-tel,
.footFix .tel2 a .txt .icon-tel {
    display: inline-block;
    margin: 10px;
}

.footFix .tel a .icon-tel:before,
.footFix .tel2 a .txt .icon-tel:before {
    content: "\f879";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 120%;
    line-height: 1;
}

.footFix .mail-pc a {
    font-size: 16px;
    line-height: 1.2;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    background: #ff8c00;
}

.footFix .mail-pc a .icon-line {
    display: inline-block;
    margin: 0.2em;
    color: #fff;
    line-height: 1;
}

.footFix .mail-pc a .icon-line:before {
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200%;
}

.footFix .mail a {
    background-color: #ff8c00;
}

.footFix .mail a .icon-mail {
    display: inline-block;
    margin-right: 0.2em;
    color: #fff;
    line-height: 1;
}

.footFix .mail a .icon-mail:before {
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 140%;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    _::-webkit-full-page-media,
    _:future,
    :root .footFix .tel {
        font-family: Yumincho, serif;
    }
}

@media (max-width: 1024px) {
  footer .logo {
    width: 100px;
}
    .foot-line a .txt {
        font-size: 18px;
    }

    .foot-line a .subtxt {
        top: -40px;
        left: -30px;
    }

    .footFix {
        width: 480px;
        top: auto;
        bottom: 15px;
    }

    .footFix ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0 5px;
    }

    .footFix li,
    .footFix li.mail-pc {
        width: calc(94% / 3);
        margin: 0;
    }

    .footFix li.mail-pc {
        margin-top: 1%;
    }

    .footFix li a {
        height: 100%;
        font-size: 14px;
        background-color: #333;
    }

    .footFix .tel,
    .footFix .tel2 {
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
    }

    .footFix .tel a,
    .footFix .tel2 a {
        font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
        font-size: 18px;
    }

    .footFix .tel a .icon-tel,
    .footFix .tel2 a .txt .icon-tel {
        margin: 5px;
    }

    .footFix .mail-pc a {
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        background-color: #333;
    }

    .footFix .mail a {
        background-color: #333;
    }

    #footer .copy {
        padding-bottom: 100px;
    }
}

@media (max-width: 599px) {
  footer .logo {
    width: 70px;
  }
    .footerBox .left {
        width: 100%;
    }

    .footerBox .right {
        width: 100%;
        margin-top: 30px;
    }

    .footerNav li {
        font-size: 11px;
        line-height: 1.2;
    }

    .foot-line a .txt {
        font-size: 17px;
    }

    .foot-line a .subtxt {
        width: auto;
        height: auto;
        display: block;
        padding: 4px 30px;
        border-radius: 0;
        top: auto;
        bottom: calc(100% + 5px);
        left: 0px;
    }

    .footFix {
        width: 100%;
        bottom: 0;
    }

    .footFix ul {
        padding: 0;
    }

    .footFix ul>div,
    .footFix li.mail-pc {
        width: 48%;
        margin: 1%;
    }

    .footFix li a {
        padding: 12px 5px;
        font-size: 12px;
        border-radius: 0;
    }

    .footFix .mail-pc a {
        font-size: 14px;
    }

    .footFix li+li a {
        border-left: 1px solid #000;
    }

    .footFix .tel a,
    .footFix .tel2 a {
        font-size: 15px;
    }

    .footFix .tel a>*,
    .footFix .tel2 a>* {
        line-height: 1;
    }

    .footFix .tel a .txt,
    .footFix .tel2 a .txt {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
    }

    .footFix .tel a .icon-tel,
    .footFix .tel2 a .txt .icon-tel {
        font-size: 15px;
    }

    .footFix .mail-pc a .icon-line {
        margin: 0;
        font-size: 12px;
    }

    .footFix .mail a .icon-mail {
        font-size: 15px;
    }

    #footer .copy {
        padding-bottom: 80px;
    }
}



/* A-BiSUスライダー用 */

.uk-slidenav-position {
    height: 100%;
}

.uk-slideshow {
    height: 100% !important;
}

.uk-slideshow>li {
    height: 100% !important;
}

.uk-slideshow>li>div {
    height: 100% !important;
}

.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%;
    font-family: "object-fit: cover; object-position: 50% 50%;";
}



/*===================================
トップページ
===================================*/

/* mainimg */

.mainimg {
    height: 85vh;
    position: relative;
}

.mainimg .lead {
    font-weight: bold;
    font-size: 18px;
    line-height: 2;
    text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff;
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 5;
}

.mainimg .catch {
    height: 100%;
    max-height: 80%;
    font-size: 48px;
    text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: 10%;
}

@media (max-width: 1024px) {
    .mainimg {
        height: 60vh;
    }

    .mainimg .lead {
        top: 75%;
        left: 5%;
    }

    .mainimg .catch {
        font-size: 32px;
        right: 5%;
    }
}

@media (max-width: 599px) {
  .mainimg {
    height: 75vh;
}
    .mainimg .lead {
        font-size: 14px;
        top: 30px;
    }

    .mainimg .catch {
        font-size: 28px;
        top: 10%;
        right: 5%;
    }
}

/* チェックボックス TOP使用 */
.checklist ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: bold;
}

.checklist ul li:before {
    content: "\f14a";
    padding-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #333;
}

/* indexNews */
.indexNews .left {
    width: 60px;
}

.indexNews .right {
    width: calc(100% - 60px);
    max-width: 600px;
}

.indexNews .ttl {
    color: #fff;
}

.indexNews .list {
    padding: 20px;
    background: #f5f5f5;
}

.indexNews .list dl {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px;
}

.indexNews .list dt {
    width: 120px;
}

.indexNews .list dd {
    width: calc(100% - 120px);
}

@media (max-width: 599px) {
    .indexNews .list dt {
        width: 100%;
        margin-bottom: 5px;
        font-size: 14px;
    }

    .indexNews .list dd {
        width: 100%;
        font-size: 14px;
    }
}



/* indexGreet */

.indexGreet {
    position: relative;
}

.indexGreet>* {
    position: relative;
    z-index: 1;
}

.indexGreet .bg {
    width: 100%;
    height: 100%;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.indexGreet .ttl {
    margin-top: -80px;
}

.indexGreet .tit {
    font-size: 24px;
}

.indexGreet .txt {
    line-height: 2.5;
}

.indexGreet .sign {
    font-size: 18px;
    text-align: right;
}

.indexGreet .btn {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .indexGreet .ttl {
        margin-top: calc(-100px * 0.8);
    }
}

@media (max-width: 599px) {
    .indexGreet .ttl {
        margin-top: calc(-100px * 0.6);
    }

    .indexGreet .tit {
        margin-bottom: 1em;
        font-size: 18px;
    }

    .indexGreet .txt {
        line-height: 2;
        word-break: break-all;
        -ms-writing-mode: initial;
        -webkit-writing-mode: initial;
        writing-mode: initial;
    }

    .indexGreet .sign {
        -ms-writing-mode: initial;
        -webkit-writing-mode: initial;
        writing-mode: initial;
    }

    .indexGreet .btn {
        width: 100%;
    }
}



/* indexVal */

.indexVal {
    position: relative;
}

.indexVal .ttl {
    -webkit-transform: translate(-50%, 15%);
    transform: translate(-50%, 15%);
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
}

.indexValBox01 .left {
    width: 50%;
}

.indexValBox01 .left .pic {
    height: 50vh;
}

.indexValBox01 .right {
    width: 50%;
    max-width: 500px;
    margin-right: auto;
}

.indexValBox01 .item .tbox {
    padding: 30px;
    background: url("/import/tenant_1/162.43.8.114/html/images/pattern.webp") repeat;
}

.indexValBox02 {
    margin-top: 30px;
}

@media (max-width: 1024px) {
}

@media (max-width: 599px) {
    .indexValBox01 .left {
        width: 100%;
    }

    .indexValBox01 .right {
        width: 100%;
    }
}



/* indexPick */

.indexPickList .item+* {
    margin-top: 40px;
}

.indexPickList .item .left {
    width: 55%;
}

.indexPickList .item .right {
    width: 45%;
    background: #fff;
}

.indexPickList .item .pic {
    height: 100%;
}

.indexPickList .item .tbox {
    max-width: 480px;
    height: 100%;
    padding: 40px;
    background: #fff;
}

.indexPickList .item .tit {
    margin-bottom: 20px;
    font-size: 30px;
}

.indexPickList .item .info {
    font-size: 18px;
}

.indexPickList .item .info {
    font-size: 20px;
}

.indexPickList .item .info>* {
    display: inline-block;
    line-height: 1.2;
}

.indexPickList .item .info .num {
    margin: 0 2px;
    font-size: 300%;
}

.indexPickList .item .info .pri {
    margin: 0 2px;
    font-weight: bold;
    font-size: 4.8vw;
    color: #df1c07;
    text-decoration: underline;

    text-decoration-thickness: 2px;
}

.indexPickList .item .info .yen {
    font-weight: bold;
    color: #df1c07;
}

.indexPickList .item .txt {
    margin-top: 20px;
}

.indexPickList .item:nth-of-type(2n+2) .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.indexPickList .item:nth-of-type(2n+2) .tbox {
    margin-left: auto;
}

@media (max-width: 1024px) {
    .indexPickList .item .left {
        width: 50%;
    }

    .indexPickList .item .right {
        width: 50%;
    }

    .indexPickList .item .tbox {
        padding: 30px;
    }

    .indexPickList .item .tit {
        font-size: 26px;
    }

    .indexPickList .item .info .num {
        font-size: 250%;
    }

    .indexPickList .item .info .pri {
        font-size: 250%;
    }
}

@media (max-width: 599px) {
    .indexPickList .item .left {
        width: 100%;
    }

    .indexPickList .item .right {
        width: 100%;
    }

    .indexPickList .item .tbox {
        max-width: 100%;
        padding: 20px;
    }

    .indexPickList .item .tit {
        font-size: 24px;
    }

    .indexPickList .item .info {
        font-size: 18px;
    }

    .indexPickList .item .info .num {
        font-size: 200%;
    }

    .indexPickList .item .info .pri {
        font-size: 200%;
    }
}


/* campaign-banner */

.campaign-banner {
    background: #fff;
}

.campaign-banner .box {
    padding: 10px;
    border: 1px solid;
    border-radius: 10px;
    background: #333;
    -webkit-box-shadow: 0 0 4px #828282;
    box-shadow: 0 0 4px #828282;
}

.campaign-banner .box .ttl {
    padding: 10px;
    font-weight: bold;
    font-size: 30px;
    color: #333;
    text-align: center;
    background: #fff;
}

.campaign-banner .box .inner-box {
    padding: 30px 50px;
    color: #fff;
    border: 1px solid #fff;
}

.campaign-banner .box .inner-box .tit {
    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: 34px;
    text-align: center;
}

.campaign-banner .box .inner-box .tit .sub {
    width: 110px;
    height: 110px;
    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;
    margin-right: 10px;
    font-size: 60%;
    color: #333;
    border-radius: 50%;
    background: #fff;
}

.campaign-banner .box .inner-box .tit .txt {
    margin-top: 0;
    font-size: 22px;
    line-height: 1.3;
}

.campaign-banner .box .inner-box .tit .off {
    font-size: 70px;
}

.campaign-banner .box .inner-box .tit .off .small {
    font-size: 50%;
}

.campaign-banner .box .inner-box .left {
    width: 40%;
}

.campaign-banner .box .inner-box .right {
    width: 55%;
    margin-left: 5%;
    background: none;
    position: relative;
    z-index: 0;
}

.campaign-banner .box .inner-box .right:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 40px;
    line-height: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: calc(100% + 2%);
    z-index: 0;
}

.campaign-banner .box .inner-box .txt {
    line-height: 1;
    text-align: center;
}

.campaign-banner .box .inner-box .right .txt {
    font-size: 24px;
}

.campaign-banner .box .inner-box .yen .small {
    font-size: 16px;
}

.campaign-banner .box .inner-box .left .yen {
    font-size: 50px;
}

.campaign-banner .box .inner-box .right .yen {
    font-weight: bold;
    font-size: 100px;
    color: #df1c07;
    line-height: 1;
    letter-spacing: -2px;
    text-decoration: underline;

    text-decoration-thickness: 2px;
}

.campaign-banner .box .inner-box .txtbox {
    font-size: 18px;
    text-align: center;
}

@media (max-width: 1024px) {
    .campaign-banner .box .ttl {
        font-size: 24px;
    }

    .campaign-banner .box .inner-box {
        padding: 30px 10px;
    }

    .campaign-banner .box .inner-box .tit .off {
        font-size: 60px;
    }

    .campaign-banner .box .inner-box .txtbox {
        font-size: 16px;
    }

    .campaign-banner .box .inner-box .left .yen {
        font-size: 40px;
    }

    .campaign-banner .box .inner-box .right .yen {
        font-size: 70px;
    }

    .campaign-banner .box .inner-box .right .txt {
        font-size: 20px;
    }

    .campaign-banner .box .inner-box .tit .sub {
        font-size: 50%;
    }
}

@media (max-width: 599px) {
    .campaign-banner .box .inner-box {
        padding: 20px 10px 30px;
    }

    .campaign-banner .box .ttl {
        font-size: 18px;
    }

    .campaign-banner .box .inner-box .tit .sub {
        width: 80px;
        height: 80px;
        font-size: 35%;
    }

    .campaign-banner .box .inner-box .tit .off {
        font-size: 36px;
    }

    .campaign-banner .box .inner-box .tit .txt {
        font-size: 16px;
    }

    .campaign-banner .box .inner-box .left {
        width: 100%;
    }

    .campaign-banner .box .inner-box .right {
        width: 100%;
        margin-top: 20px;
        margin-left: 0;
    }

    .campaign-banner .box .inner-box .txt {
        font-size: 14px;
    }

    .campaign-banner .box .inner-box .right:before {
        content: "\f0d7";
        font-size: 25px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        top: -10px;
        left: 50%;
        right: auto;
        z-index: 0;
    }

    .campaign-banner .box .inner-box .right .yen {
        font-size: 60px;
    }
}


/*===================================
下層ページ
===================================*/

/* subImg */

.subImg {
    background: #333;
    position: relative;
}

.subImg .tit {
    min-width: 400px;
    max-width: 75%;
    padding: 10px 5%;
    font-weight: bold;
    font-size: 36px;
    color: #000;
    letter-spacing: 5px;
    text-align: center;
    /* background-image: url("../upload/tenant_1/9ab1fa265c1f838f8e69a5f401a6a1d2.jpg"); */
    background-image: url("/import/tenant_1/162.43.8.114/html/images/835926d8645a51cb5fc5c21dea80975a.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgb(151 151 151 / 80%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 60%;
    left: calc(50% - 500px);
    z-index: 5;

    background-blend-mode: lighten;
    -webkit-clip-path: polygon(0 15px, 15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%);
    clip-path: polygon(0 15px, 15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%);
}

.subImg .tit.__pattern01 {
    background-image: url("../images/d8b7446bb79d6ae2367406a25f3b031c.webp");
}

.subImg .tit.__pattern02 {
    background-image: url("../images/b5bbb8b486657b7fbcb47981bdaa8312.webp");
}

.subImg .tit.__pattern03 {
    background-image: url("../images/ad6add980cab5df4b1c4d98cd8e4dfeb.webp");
}

.subImg .tit.__pattern04 {
    background-image: url("../images/f4e969b3fa403a4aafe846d28dac57d9.webp");
}

.subImg .tit.__pattern05 {
    background-image: url("../images/2d0cdeeb6809fe6da74b0dc710e6faca.webp");
}

.subImg .tit.__pattern06 {
    background-image: url("../images/61505ad88426302ac32d18b67cd152dc.webp");
}

.subImg .tit>* {
    display: inline-block;
}

.subImg .pic {
    width: 60%;
    height: 55vh;
    margin-left: auto;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .subImg .tit {
        min-width: 350px;
        max-width: 90%;
        font-size: 32px;
        top: 50%;
        left: 5%;
    }

    .subImg .pic {
        height: 35vh;
    }
}

@media (max-width: 599px) {
    .subImg .tit {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        min-width: 250px;
        font-size: 22px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        left: 50%;
    }

    .subImg .pic {
        width: 100%;
        height: 35vh;
    }

    .subImg .tit .ja {
        white-space: nowrap;
    }
}



/* pager */

.pager {
    margin-top: 60px;
}

.pager li {
    margin: 0 10px;
}

.pager li>* {
    width: 30px;
    display: block;
    font-size: 20px;
    color: #333;
    line-height: 30px;
    text-align: center;
}

.pager li.active>* {
    color: #fff;
    background: #333;
}

.pager li.prev a:before,
.pager li.next a:before {
    display: block;
    font-family: "font awesome 5 free";
    font-weight: bold;
}

.pager li.prev a:before {
    content: "\f053";
}

.pager li.next a:before {
    content: "\f054";
}

@media (max-width: 1024px) {
    .pager {
        margin-top: 50px;
    }
}

@media (max-width: 599px) {
    .pager {
        margin-top: 40px;
    }
}



/* catList */

.catList dl {
    height: 100%;
    background: #fff;
}

.catList dt {
    padding: 10px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    background: #333;
}

.catList dd {
    border-bottom: solid 1px;
}

.catList dd a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    padding: 10px;
}

.catList dd a:before {
    content: "\f054";
    display: block;
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}



/* worksList */

.slick-works {
    padding: 0 30px;
    position: relative;
}

.slick-works .item {
    height: auto;
    min-height: initial;
    float: none;
    padding: 0 10px;
}

.slick-works .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slick-works .btn-slick {
    font-size: 40px;
    color: #fff;
    text-shadow: 0 0 black;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 40%;
}

.slick-works .btn-back {
    left: 0;
}

.slick-works .btn-next {
    right: 0;
}



/* faqList */

.faqList dl {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px;
}

.faqList dl:last-of-type {
    margin-bottom: 0;
}

.faqList dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    font-size: 24px;
    cursor: pointer;
    position: relative;
}

.faqList dt:before {
    content: "\f068";
    display: block;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}

.faqList dt.is-parent:before {
    content: "\f067";
}

.faqList dd {
    display: none;
    margin-top: 10px;
    padding-left: 30px;
}

@media (max-width: 599px) {
    .faqList dt {
        font-size: 20px;
    }
}

/* ##### ページネーション pager ##### */
.pager {
    width: 100%;
    margin: clamp(1.875rem, 1.31rem + 2.42vw, 3.125rem) 0;
}

.pager-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pager-list.-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.pager-list.-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.pager-list li {
    width: 2.5em;
    height: 2.5em;
    margin: 0 0.5em;
}

.pager-list li a,
.pager-list li .now {
    width: 100%;
    height: 100%;
    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;
    padding: 0.25em;
    font-size: 1.25em;
    color: white;
    line-height: 1;
    border: 2px solid var(--color01);
    border-radius: 0.1em;
    background-color: var(--color01);
    position: relative;
}

.pager-list li a a:hover,
.pager-list li .now a:hover {
    color: var(--color-text_01);
    background-color: white;
    opacity: 1;
}

.pager-list li a:focus,
.pager-list li .now:focus {
    outline: none;
}

.pager-list li a:hover,
.pager-list li .now {
    color: var(--color-text_01);
    border: 2px solid var(--color01);
    background-color: white;
    opacity: 1;
}

.pager-list .arrow a::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border-top: 2px solid white;
    border-right: 2px solid white;
}

.pager-list .arrow a:hover {
    color: white;
}

.pager-list .arrow a:hover::before {
    border-top: 2px solid var(--color01);
    border-right: 2px solid var(--color01);
}

.pager-list .arrow.-prev a::before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.pager-list .arrow.-next a::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.pager.-circle-list li a,
.pager.-circle-list li .now {
    border-radius: 100%;
}

.pager.-deformation-list li a,
.pager.-deformation-list li .now {
    border-radius: 0.5em 0;
}

@media (max-width: 1024px) {
    .pager-list.-left\@tb {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .pager-list.-right\@tb {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .pager-list li {
        margin: 0 0.25em;
    }
}

@media (max-width: 599px) {
    .pager-list.-left\@sp {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .pager-list.-right\@sp {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

/* blog_detail */

.blogSingle {
    padding: 40px;
    background: #333;
}

.blogSingle {
    color: #333 !important;
}

.blogSingle .label>span {
    display: inline-block;
    margin-top: 10px;
    padding: 0 10px;
    font-size: 14px;
    color: #333;
    background: #fff;
}

.blogSingle .tit {
    margin-top: 20px;
    font-weight: bold;
    font-size: 24px;
}

.blogSingle .txt {
    margin-top: 30px;
}

/*記事詳細ページ用タイトル*/
.blogSingle .txt h2 {
    margin-top: 1.5em;
    margin-bottom: 1em;
    padding: 0.25em 0.75em;
    font-weight: bold;
    font-size: 1.5em;
    color: white;
    background: var(--color01);
}

.blogSingle .txt h3 {
    margin-top: 1.5em;
    margin-bottom: 1em;
    padding-left: 10px;
    font-weight: bold;
    font-size: 1.25em;
    border-left: solid 4px var(--color01);
}

.blogSingle .txt h4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    padding-left: 1.25em;
    font-weight: bold;
    font-size: 1.25em;
    position: relative;
}

.blogSingle .txt h4:before {
    content: "";
    width: 1em;
    height: 1em;
    display: inline-block;
    border-radius: 100%;
    background-color: var(--color01);
    position: absolute;
    top: 0.45em;
    left: 0;
}

.blogSingle .txt ul,
.blogSingle .txt ol {
    list-style-position: outside;
    margin: 1em 0;
    padding-left: 2em;
}

.blogSingle .txt ul>li {
    list-style: initial;
}

.blogSingle .txt ol>li {
    list-style: decimal;
}

.blogSingle .txt iframe[src*="youtube"] {
    margin-top: 1em;
    margin-bottom: 1em;

    aspect-ratio: 16 / 9;
}

@media (max-width: 1024px) {
    .blogSingle {
        padding: 30px;
    }
}

@media (max-width: 599px) {
    .blogSingle {
        padding: 20px;
    }
}



/* works_detail */

.worksSingle .left {
    width: 40%;
}

.worksSingle .right {
    width: 55%;
}

.worksSingle .picList {
    margin-top: 10px;
}

.worksSingle .tit {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 24px;
}

.worksSingle .tit:after {
    content: "";
    width: 50px;
    height: 2px;
    display: block;
    margin-top: 5px;
    background: #333;
}

.worksSingle .info dt {
    padding: 10px;
    font-size: 18px;
    color: #fff;
    background: #333;
}

.worksSingle .info dd {
    padding: 10px;
    background: #fff;
}

@media (max-width: 599px) {
    .worksSingle .left {
        width: 100%;
    }

    .worksSingle .right {
        width: 100%;
        margin-top: 20px;
    }
}



/* form */

.form dl {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px;
}

.form .border-b-none {
    padding-bottom: 0;
    border-bottom: none;
}

.form dt {
    font-weight: bold;
}

.form .explanation,
.form .dl02 .explanation {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
}

.form .dl01 dt {
    margin-bottom: 10px;
}

.form .dl02 dt {
    width: 250px;
}

.form .dl02 dd {
    width: calc(100% - 250px);
}

.form .dl02 dd select {
    padding: 10px;
}

.form .dl02 dd select [value=""] {
    display: none;
}

.form .dl03 dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form .dl03 dd>div {
    width: 49%;
}

.form .dl03 dd>div+div {
    margin-left: 2%;
}

.form .require {
    margin-left: 5px;
    color: #df1c07;
}

.form input[type="text"] {
    width: 100%;
    padding: 10px;
}

.form select {
    color: #dc143c;
}

.form input[type="text"],
.form textarea {
    border: 1px solid #767676;
    border-radius: 5px;
    background-color: #eee;
}

.form input[type="text"]:not(:placeholder-shown),
.form textarea:not(:placeholder-shown) {
    background-color: white;
}

.postal-area .postal-code {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin-bottom: 0.25em;
}

.postal-area .postal-code input {
    margin-left: 0.25em;
}

.postal-area .postal-code.-confirm {
    display: block;
}

.form textarea {
    width: 100%;
    height: 250px;
    padding: 10px;
    line-height: 1.5;
}

.form input[type=radio],
.form input[type=checkbox] {
    display: none;
}

.form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    cursor: pointer;
    position: relative;
}

.form label:before {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-right: 10px;
    border: solid 2px;
    border-radius: 4px;
    background: #fff;
}

.form input[type=radio]:checked+label:before,
.form input[type=checkbox]:checked+label:before {
    border-color: #fff;
    background: #df1c07;
}

.form .dl01 .col3 label {
    width: 31.333%;
    margin: 1%;
}

.form .dl01 .col5 label {
    width: 18%;
    margin: 1%;
}

.form .dl-img label {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form .dl-img label:before {
    margin: 0;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.form .dl-img label .img {
    height: auto;
    display: block;
}

.contact-wrap form .btn-type-03>* {
    color: white;
    border-radius: 5px;
    background-color: darkorange;
}

.radio-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.radio-wrap label {
    margin: 0.5em 0.5em 0.5em 1em;
}

@media (max-width: 1024px) {
    .form .dl01 .col5 label {
        width: 31.333%;
    }

    .form .dl01 .col2\@tb label {
        width: 48%;
    }

    .postal-area .postal-code {
        width: 50%;
    }
}

@media (max-width: 599px) {
    .form .dl01 .col3 label {
        width: 48%;
    }

    .form .dl01 .col5 label {
        width: 48%;
    }

    .form .dl01 .col1\@sp label {
        width: 98%;
    }

    .form .dl02 dt {
        width: 100%;
        margin-bottom: 5px;
    }

    .form .dl02 dd {
        width: 100%;
    }

    .postal-area .postal-code {
        width: 60%;
    }

    .radio-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .radio-wrap label {
        margin: 0;
    }

    .radio-wrap label+input+label {
        margin-top: 0.5em;
    }
}

/* 画像にopacity */
.img-opacity {
    background-color: #000;
}

.img-opacity img {
    opacity: 0.7;
}

.sekoujirei01 {
    margin-top: 20px;
}

.blogshosai01 {
    background: #fff !important;
}

.blogshosai02 {
    color: #000 !important;
}

.blogshosai03>span {
    margin-bottom: 3px;
    margin-right: 3px;
    color: #fff !important;
    background: #000 !important;
}

.sekouijireichiran01 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}



@media (max-width: 599px) {
    .after0101,
    .before0101 {
        width: 130%;
        height: 40%;
    }

    .sekoujirei01 {
        margin-top: 10px;
    }

    .sekouijireichiran01 {
        margin-bottom: 40px;
    }

    .sekounoinfo {
        width: 48% !important;
        padding-top: 80px;
        padding-left: 8px;
    }

    .sekouinner {
        width: 98%;
    }
}


.pagenai04 {
    width: 30%;
    margin: auto;
    font-weight: bold;
    font-size: 28px;
    color: #fff;
    text-align: center;
}

.pagenai04.la {
    padding: 15px;
    background: rgb(56, 146, 9);
}

.pagenai04 a {
    display: block;
    padding: 15px;
    background: rgb(56, 146, 9);
}

.pagenailink {
    width: 50%;
    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;
    margin: -15px auto 70px;
}

@media (max-width: 599px) {
    .pagenailink .pagenai04.-long {
        width: 100%;
    }

    .pagenailink .pagenai04 {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin: 1%;
    }
}


/* 20220509追記（support） */

.ttl-bg-stone>* {
    padding: 40px 20px;
    background: url("/import/tenant_1/162.43.8.114/html/images/pattern.webp") repeat;
}

.bgw50 {
    padding: 50px;
    background: #fff;
}

.block-type-02 .item.bgw50 .right {
    -webkit-box-shadow: 10px 10px 15px -10px;
    box-shadow: 10px 10px 15px -10px;
}

h4.jh4 {
    margin-bottom: 20px;
    font-size: 32px;
    text-align: center;
}

.pt50 {
    padding: 50px;
}

.youtube {
    margin: auto;
}

@media (max-width: 599px) {
    .bgw50 {
        padding: 30px;
    }

    .pt50 {
        padding: 30px;
    }

    .pagenai04 {
        font-size: 22px;
    }

    .pagenai04 a {
        padding: 10px;
    }

    .pagenai04.la {
        padding: 10px;
    }

    .pagenailink {
        width: 80%;
    }
}


/* ##### パンくずリスト breadcrumbs ##### */
.breadcrumbs {
    padding: 5px 0;
    font-weight: bold;
}

.breadcrumbs-list {
    width: 100%;
    color: #000;
}

.breadcrumbs-list li {
    display: inline;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage,
.breadcrumbs-list li.breadcrumbs-thispage {
    font-weight: bold;
    font-size: 14px;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage {
    color: #333;
}

.breadcrumbs-list li+li::before {
    content: "";
    width: 0.8em;
    height: 0.8em;
    display: inline-block;
    margin: 0 0.5em;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media(max-width:599px) {
    .breadcrumbs {
        padding: 5px;
    }
}

/*削除*/

.mainimg {
    overflow: hidden;
}

.for-sp {
    display: none;
}

.mainimg .lead.for-sp {
    font-size: 14px;
    top: 30px;
}

.mainimg .catch.for-sp {
    font-size: 28px;
    top: 10%;
    right: 5%;
}

.for-sp.ttl-size-xsmall {
    font-size: 16.8px;
}

.for-sp.ttl-type-cmn {
    font-size: 21.6px;
}

.for-sp.ttl-type-cmn.ttl-border {
    font-size: 16.8px;
}

.card-type-02 .item .tit.for-sp {
    width: 90%;
    height: auto;
    font-size: 18px;
    text-align: center;
    -ms-writing-mode: initial;
    -webkit-writing-mode: initial;
    writing-mode: initial;
}

.indexPickList .item .tit.for-sp {
    font-size: 24px;
}

.card-type-03 .item .tit.for-sp {
    font-size: 18px;
}

.subImg .tit.for-sp {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 250px;
    font-size: 22px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
}

.block-type-02 .item .tbox .tit.for-sp {
    font-size: 20px;
}

.block-type-01 .item .tit.for-sp {
    font-size: 20px;
}

.card-type-01 .item .tit.for-sp {
    font-size: 16px;
}

.block-type-03 .item .tit.for-sp {
    font-size: 20px;
}


.flow-item-01 {
    position: relative;
}

.flow-item-01::after {
    content: "⬇︎";
    display: inline-block;
    font-size: 30px;
    color: red;
    position: absolute;
    top: 95%;
    left: 0;
}

.flow-list-01 .flow-item-01:last-child::after {
    display: none;
}

.flow-title-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.flow-title-01 .num-ball {
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #333;
}

.flow-title-01 .flow-txt {
    width: calc(100% - 50px);
}

@media(max-width:599px) {
    .for-sp {
        display: block;
    }

    .for-pc {
        display: none;
    }

    .flow-item-01::after {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        left: 50%;
    }
}

@media(max-width:599px) {
    .for-sp {
        display: block;
    }

    .for-pc {
        display: none;
    }

    .flow-item-01::after {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        left: 50%;
    }

    .mainimg .catch.for-sp {
        -webkit-transform: unset;
        transform: unset;
    }

    .mainimg .lead.for-sp {
        top: auto;
        bottom: 5%;
    }
}

/* 求人連携 */
.list-recruit-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-recruit-inner+.list-recruit-inner {
    margin-top: 0.5em;
}

.list-recruit-inner dt {
    width: 25%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0;
    padding-right: 1em;
    color: inherit;
    border: unset !important;
    background-color: unset;
    position: relative;
}

.list-recruit-inner dt::after {
    content: "：";
    display: inline-block;
    position: absolute;
    right: 0;
}

.list-recruit-inner dd {
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0;
    border-top: unset !important;
}

.underlineLink a {
    text-decoration: underline;
}

/* バナー banner bnr */
.list-banner li .banner {
    height: 100%;
}

.banner a {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    border-radius: 1em;
    background-color: black;
    position: relative;
}

.banner a::after {
    content: "";
    width: 96%;
    height: 93%;
    display: block;
    margin: auto;
    border: 2px solid white;
    border-radius: 1em;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
}

.banner a .banner-img {
    height: 100%;
    margin: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
}

.banner a .banner-img img {
    opacity: 0.8;
}

.banner a .banner-content {
    height: 100%;
    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;
    padding: 3em 1.5em;
    position: relative;
    z-index: 3;
}

.banner a .banner-content .banner-title {
    font-weight: bold;
    font-size: 1.5em;
    color: white;
    text-align: center;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}

/* バナー banner bnr ここまで */

[data-element-id] .show\@tb {
    display: block;
    border: solid 4px green;
    position: relative;
}

[data-element-id] .show\@tb:after {
    content: "モバイル用";
    display: block;
    padding: 5px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background: green;
}

[data-element-id] .show\@sp {
    display: block;
    border: solid 4px green;
    position: relative;
}

[data-element-id] .show\@sp:after {
    content: "モバイル用";
    display: block;
    padding: 5px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background: green;
}

[data-element-id] .mainimg .catch.for-sp {
    font-size: 28px;
    position: absolute;
    top: 50%;
    right: 20%;
}

[data-element-id] .mainimg .lead.for-sp {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: auto;
    bottom: 0;
}

[data-element-id] .card-type-02 .item>* {
    padding-bottom: 1em;
    background-color: black;
}

[data-element-id] .card-type-02 .item .tit,
[data-element-id] .card-type-02 .item .tit.for-sp {
    height: auto;
    margin: auto;
    -webkit-transform: unset;
    transform: unset;
    position: static;
}

[data-element-id] .card-type-02 .item .tit.for-sp {
    margin-top: 2em;
    position: relative;
    left: auto;
}

[data-element-id] .mainimg .catch.for-sp::before {
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
}

[data-element-id] .js-toggle+* {
    display: block;
}

[data-element-id] .ttl-vertical {
    -ms-writing-mode: initial;
    -webkit-writing-mode: initial;
    writing-mode: initial;
}

[data-element-id] .btn-vertical {
    width: auto;
    height: auto;
    -ms-writing-mode: initial;
    -webkit-writing-mode: initial;
    writing-mode: initial;
}

[data-element-id] .btn-vertical>* {
    width: 150px;
}

[data-element-id] .btn-vertical>*:after {
    margin: 0;
    margin-left: 10px;
}

[data-element-id] .card-type-02 .item>*:before {
    display: none;
}

[data-element-id] #header {
    position: static;
}

[data-element-id] #gnav .dropdown>ul {
    width: 100%;
    visibility: visible;
    opacity: 1;
    position: static;
}

[data-element-id] .header-common>* {
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
}

[data-element-id] .barger-inner>* {
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
}

[data-element-id] .barger-inner>*>ul {
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
}

[data-element-id] .footFix {
    width: 600px;
    position: static;
}

[data-element-id] .footFix .tel,
[data-element-id] .footFix .tel2 {
    -ms-writing-mode: initial;
    -webkit-writing-mode: initial;
    writing-mode: initial;
}

[data-element-id] .footFix .mail-pc a {
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
}

[data-element-id] .indexNews .left {
    width: auto;
}

[data-element-id] .slick-works .item {
    width: 32%;
    display: inline-block;
    margin-bottom: 30px;
}

[data-element-id].for-sp {
    max-width: 375px;
    display: block;
    margin-top: 45px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #ddd;
    position: relative;
}

[data-element-id].for-sp::before {
    content: "SP時表示用";
    width: 100%;
    display: block;
    font-size: 12px;
    color: red;
    line-height: 1em;
    text-align: center;
    border: 2px solid #ddd;
    background-color: #ddd;
    position: absolute;
    top: -1.3em;
    left: 0;
}

[data-element-id] .banner a .banner-content {
    height: auto;
    margin: 3em auto;
    padding: 0.5em;
}

[data-element-id] .footFix ul>div[data-element-id] {
    width: 100%;
}

/* 04/15 追記 */

.name-area{
  padding: 10px;
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}

.gapx-55 {
  display: flex;
  gap: 55px; /* コンテンツ間の隙間 */
}

.image img {
  width: 100%; /* 画像の幅を調整 */
  height: auto; /* 画像の高さを自動調整 */
}
.comment {
  position: relative;
  overflow: hidden;
  max-height: 300px; /* 初期の高さ制限 */
}

.flex-2{
  flex: 2;
}

.flex-1{
  flex: 1;
}

.content {
  transition: max-height 0.5s ease;
}

.content.expand {
    max-height: 960px;
    height: 200vh;
}
#toggleButton {
    position: absolute;
    bottom: -7px;
    right: 50%;
    z-index: 99;
    padding: 10px 20px;
    background-color: #ffffff;
    border: none;
    transform: translateX(50%);
    cursor: pointer;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.2); */
}

.comment::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), white);
}

@media screen and (max-width:599px) {
 .gapx-55 {
  display: flex;
  flex-direction: column;
  gap: 30px; /* コンテンツ間の隙間 */
}
}

.announce-txt{
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
  color: red;
  margin-top: -40px;
}

@media screen and (max-width:1024px) {
 .comment {
    height: 130vh;
}

.content.expand {
    max-height: 1210px;
    height: 180vh;
}

.announce-txt {
    margin-top: -10px;
}
}
