@charset "UTF-8";



/* html */

html {
    color: #673d10;
}

dt, dd {
    font-weight: normal;
}

#wrapper {
    overflow: hidden;
}



/* common */

.color-white {
    color: #fff;
}

.color-red {
    color: #d90000;
}

.color-green {
    color: #54b04e;
}

.color-orange {
    color: #fe8a00;
}

.bg-gray {
    background: #f9f9f9;
}

.border-01 {
    border: 1px solid #54b04e;
}

.tel, .fax {
    font-size: 16px;
    letter-spacing: 2px;
}

.tel-item .tel {
    font-family: 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
    font-size: 44px;
}

.tel-item .tel a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.tel-item .tel a::before {
    content: "\f879";
    display: inline-block;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 80%;
    line-height: 100%;
}

@media (max-width: 1024px) {
    .tel-item .tel {
        font-size: 28px;
    }
}

@media (max-width: 599px) {
    .tel-item .tel {
        font-size: 26px;
    }
}



/* icon */

.icon-cal::before {
    content: "\f133";
    display: inline-block;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: inherit;
    color: #fe8a00;
    line-height: 100%;
}

.icon-tag::before {
    content: "\f02b";
    display: inline-block;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: inherit;
    color: #fe8a00;
    line-height: 100%;
}



/* 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%;
}

.bgWrap {
    position: relative;
}

.bgWrap .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.bgWrap .bg img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    font-family: "object-fit: cover; object-position: center center;";
    opacity: 0.4;
}

.bgWrap > * {
    position: relative;
    z-index: 5;
}



/* js-toggle */

[data-element-id] .js-toggle + * {
    display: block;
}

.js-toggle + * {
    display: none;
}



/* show hide */

.show\@pc {
    display: block;
}

.hide\@pc {
    display: none;
}

[data-element-id] .show\@tb {
    display: block;
    border: solid 4px green;
    position: relative;
}

[data-element-id] .show\@tb:after {
    display: block;
    content: "モバイル用です。";
    color: #fff;
    font-weight: 700;
    background: green;
    padding: 5px;
    text-align: center;
}

[data-element-id] .show\@sp {
    display: block;
    border: solid 4px green;
    position: relative;
}

[data-element-id] .show\@sp:after {
    display: block;
    content: "モバイル用です。";
    color: #fff;
    font-weight: 700;
    background: green;
    padding: 5px;
    text-align: center;
}

@media (max-width: 1024px) {
    .show\@tb {
        display: block;
    }

    .hide\@tb {
        display: none;
    }
}

@media (max-width: 599px) {
    .show\@sp {
        display: block;
    }

    .hide\@sp {
        display: none;
    }
}



/* effect-sonar */

.effect-sonar {
    display: block;
    border-radius: 100%;
    background-color: white;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    position: relative;
}

.effect-sonar:hover {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    -webkit-transform: scale(0.96);
    transform: scale(0.96);
}

.effect-sonar:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.effect-sonar:hover:after {
    padding: 0;
    -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-animation: sonarEffect 1.3s ease-out 75ms;
    animation: sonarEffect 1.3s ease-out 75ms;
    z-index: -1;
}

@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }

    40% {
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ccc, 0 0 0 10px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ccc, 0 0 0 10px rgba(255, 255, 255, 0.5);
        opacity: 0.5;
    }

    100% {
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ccc, 0 0 0 10px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ccc, 0 0 0 10px rgba(255, 255, 255, 0.5);
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }

    40% {
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
        opacity: 0.5;
    }

    100% {
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}



/* effect-pile */

.effect-pile {
    display: block;
    position: relative;
}

.effect-pile::before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: white;
    background: linear-gradient(315deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
    -webkit-box-shadow: -1px -1px 1px rgba(104, 61, 61, 0.4);
    box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.effect-pile:after {
    display: block;
    content: "";
    width: 25px;
    height: 25px;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #e28d41)) no-repeat top left/100% 100%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, #e28d41 50.5%) no-repeat top left/100% 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.effect-pile:hover::before {
    width: 25px;
    height: 25px;
}



/* 共通コンテンツ間隔 */

[class*="section-m"], [class*="section-p"] {
    --section-xlarge: 150px;
    --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-mb-xlarge: 70px;
    --ttl-mb-large: 60px;
    --ttl-mb-medium: 50px;
    --ttl-mb-small: 40px;
    --ttl-mb-xsmall: 30px;
}



/* ttl-type-00 */

.ttl-type-00 {
    color: #54b04e;
    font-size: 36px;
    margin-bottom: var(--ttl-mb-medium);
    text-align: center;
}

@media (max-width: 1024px) {
    .ttl-type-00 {
        font-size: 32px;
        margin-bottom: calc(var(--ttl-mb-medium) * 0.8);
    }
}

@media (max-width: 599px) {
    .ttl-type-00 {
        font-size: 26px;
        margin-bottom: calc(var(--ttl-mb-medium) * 0.6);
    }
}



/* ttl-type-01 */

.ttl-type-01 {
    margin-bottom: var(--ttl-mb-medium);
    text-align: center;
}

.ttl-type-01 > * {
    display: block;
}

.ttl-type-01 .en {
    color: #e6a164;
    font-size: 14px;
}

.ttl-type-01 .ja {
    color: #673D17;
    font-size: 36px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .ttl-type-01 {
        margin-bottom: calc(var(--ttl-mb-medium) * 0.8);
    }

    .ttl-type-01 .ja {
        font-size: 32px;
    }
}

@media (max-width: 599px) {
    .ttl-type-01 {
        margin-bottom: calc(var(--ttl-mb-medium) * 0.6);
    }

    .ttl-type-01 .ja {
        font-size: 24px;
    }
}



/* ttl-type-02 */

.ttl-type-02 {
    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;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.ttl-type-02 .icon {
    width: 100px;
    margin-bottom: 10px;
    text-align: center;
}

.ttl-type-02 .ja {
    font-size: 24px;
    font-weight: bold;
}

.ttl-type-02 .en {
    color: #e6a164;
    font-size: 14px;
    margin-top: 5px;
}

@media (max-width: 1024px) {
    .ttl-type-02 .ja {
        font-size: 22px;
    }
}

@media (max-width: 599px) {
    .ttl-type-02 .ja {
        font-size: 20px;
    }
}



/* ttl-type-03 */

.ttl-type-03 {
    color: #fe8a00;
    font-size: 30px;
    border-bottom: 1px solid #54b04e;
    padding: 0 0 15px 5px;
    margin-bottom: var(--ttl-mb-small);
}

@media (max-width: 1024px) {
    .ttl-type-03 {
        font-size: 26px;
        margin-bottom: calc(var(--ttl-mb-small) * 0.8);
    }
}

@media (max-width: 599px) {
    .ttl-type-03 {
        font-size: 22px;
        margin-bottom: calc(var(--ttl-mb-small) * 0.6);
    }
}



/* ttl-type-04 */

.ttl-type-04 {
    font-size: 24px;
    border-left: 10px solid #54b04e;
    padding-left: 10px;
    margin-bottom: var(--ttl-mb-small);
}

@media (max-width: 1024px) {
    .ttl-type-04 {
        font-size: 22px;
        margin-bottom: calc(var(--ttl-mb-small) * 0.8);
    }
}

@media (max-width: 599px) {
    .ttl-type-04 {
        font-size: 20px;
        margin-bottom: calc(var(--ttl-mb-small) * 0.6);
    }
}



/* ttl-type-05 */

.ttl-type-05 {
    color: #54b04e;
    font-size: 24px;
    border-bottom: 1px solid #54b04e;
    padding: 5px 10px;
    margin-bottom: var(--ttl-mb-medium);
}

@media (max-width: 1024px) {
    .ttl-type-05 {
        font-size: 22px;
        margin-bottom: calc(var(--ttl-mb-medium) * 0.8);
    }
}

@media (max-width: 599px) {
    .ttl-type-05 {
        font-size: 20px;
        margin-bottom: calc(var(--ttl-mb-medium) * 0.6);
    }
}



/* 共通見出し上書き */

.ttl-color-green {
    color: #54b04e;
}

.ttl-color-orange {
    color: #fe8a00;
}

.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.6);
    }

    .ttl-mb-large {
        margin-bottom: calc(var(--ttl-mb-large) * 0.6);
    }

    .ttl-mb-medium {
        margin-bottom: calc(var(--ttl-mb-medium) * 0.6);
    }

    .ttl-mb-small {
        margin-bottom: calc(var(--ttl-mb-small) * 0.6);
    }

    .ttl-mb-xsmall {
        margin-bottom: calc(var(--ttl-mb-xsmall) * 0.6);
    }

    .ttl-mb-none {
        margin-bottom: 0;
    }
}

.ttl-left {
    text-align: left;
}

.ttl-center {
    text-align: center;
}

.ttl-right {
    text-align: right;
}



/*===================================
共通ボタン
===================================*/

[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 */

[class*="btn-type-01"] {
    margin-top: var(--btn-mt-medium);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

[class*="btn-type-01"] > * {
    width: 220px;
    max-width: 100%;
    height: 100%;
    color: #fff;
    background: #66b07b;
    border: solid 1px #66b07b;
    border-radius: 5px;
    letter-spacing: 1px;
    padding: 10px;
    text-align: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    cursor: pointer;
}

[class*="btn-type-01"] > *:hover {
    color: #66b07b;
    opacity: 1;
}

[class*="btn-type-01"] > *:before {
    content: "";
    width: 100%;
    height: 0;
    margin: auto;
    background: #fff;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: -1;
}

[class*="btn-type-01"] > *:hover:before {
    height: 100%;
}

[class*="btn-type-01"] > *:after {
    display: block;
    content: "\f054";
    font-size: 80%;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 5;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

[class*="btn-type-01"] > * .btnTxt {
    position: relative;
    z-index: 5;
}

.btn-type-01-reverse > * {
    color: #66b07b;
    background: #fff;
}

.btn-type-01-reverse > *:hover {
    color: #fff;
}

.btn-type-01-reverse > *:before {
    background: #66b07b;
}

.btn-type-01-back > *:after {
    content: "\f053";
    left: 10px;
    right: auto;
}

.btn-type-01-noArrow > *:after {
    display: none;
}

@media (max-width: 1024px) {
    [class*="btn-type-01"] {
        margin-top: calc(var(--btn-mt-medium) * 0.8);
    }
}

@media (max-width: 599px) {
    [class*="btn-type-01"] {
        margin-top: calc(var(--btn-mt-medium) * 0.6);
    }

    [class*="btn-type-01"] > * {
        font-size: 14px;
    }
}



/* 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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn-type-02 > * {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn-type-02 > *:after {
    display: block;
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    margin-left: 10px;
}



/* 共通ボタン上書き */

.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-check */

.list-check .item {
    padding-left: 1.5em;
    font-weight: 500;
    position: relative;
}

.list-check .item::before {
    content: "\f14a";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #54b04e;
    position: absolute;
    top: 0;
    left: 0;
}



/* list-flat */

.list-flat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-flat dt {
    font-weight: bold;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.list-flat dd {
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 30px;
}

.list-flat.-border + .list-flat.-border {
    border-top: 1px solid #ccc;
}

@media (max-width: 1024px) {
    .list-flat dd {
        margin-left: 24px;
    }
}

@media (max-width: 599px) {
    .list-flat dt {
        width: 100%;
    }

    .list-flat dd {
        width: 100%;
        margin-top: 5px;
        margin-left: 0;
    }
}



/* list-square */

.list-square + .list-square {
    margin-top: 20px;
}

.list-square dt {
    margin-bottom: 15px;
    padding: 10px;
    color: #54b04e;
    border: 1px solid #54b04e;
    border-radius: 5px;
}

.list-square dd {
    padding: 0 10px;
}



/* list-pipe */

.list-pipe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-pipe dt {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 20px;
    position: relative;
}

.list-pipe dt::after {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    margin: 0 10px;
    background-color: black;
    position: absolute;
    top: 0;
    right: 0;
}

.list-pipe dd {
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}



/* list-interview */

.list-interview dt {
    padding-left: 40px;
    font-size: 28px;
    color: #54b04e;
    position: relative;
}

.list-interview dt::before {
    content: "Q";
    display: inline-block;
    font-family: 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
    font-size: 120%;
    color: #fe8a00;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.list-interview dd {
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .list-interview dt {
        padding-left: 32px;
        font-size: 22.4px;
    }

    .list-interview dd {
        margin-top: 5px;
    }
}

@media (max-width: 599px) {
    .list-interview dt {
        padding-left: 28px;
        font-size: 19.6px;
    }
}



/* list-dot */

.list-dot li {
    padding-left: 20px;
    position: relative;
}

.list-dot li::before {
    content: "●";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.list-dot-02 li::before {
    color: #fe8a00;
}



/* list-flow */

.list-flow .item {
    width: 85%;
}

.list-flow .item:nth-of-type(2n+2) {
    margin-left: auto;
}

.list-flow .item + .item {
    margin-top: 80px;
}

.list-flow .item .box-border-01 {
    padding-left: 90px;
    position: relative;
}

.list-flow .item .number {
    -webkit-transform: translate(-25%, -25%);
    transform: translate(-25%, -25%);
    position: absolute !important;
    top: 0;
    left: 0;
}

@media (max-width: 1024px) {
    .list-flow .item {
        width: 90%;
    }

    .list-flow .item + .item {
        margin-top: 60px;
    }

    .list-flow .item .box-border-01 {
        padding-left: 80px;
    }

    .list-flow .item .number {
        -webkit-transform: translate(-20%, -20%);
        transform: translate(-20%, -20%);
    }
}

@media (max-width: 599px) {
    .list-flow .item {
        width: 96%;
        margin-left: auto;
        margin-right: auto;
    }

    .list-flow .item + .item {
        margin-top: 40px;
    }

    .list-flow .item .box-border-01 {
        padding-left: 60px;
    }

    .list-flow .item .number {
        -webkit-transform: translate(-15%, -15%);
        transform: translate(-15%, -15%);
    }
}



/* table */

.table table {
    width: 100%;
    border-collapse: collapse;
}

.table tr + tr {
    border-top: 1px solid #ccc;
}

.table tr th, .table tr td {
    padding: 10px 5px;
    text-align: center;
}

.table tr th {
    text-align: left;
}

.table tr th + th {
    border-left: 1px solid white;
}

@media (max-width: 1024px) {
    .table tr th, .table tr td {
        font-size: 14px;
    }
}

@media (max-width: 599px) {
    .table tr th, .table tr td {
        padding: 5px;
        font-size: 12px;
    }
}



/* wing */

.wing-01 {
    padding: 0 175px;
    position: relative;
}

.wing-01::before, .wing-01::after {
    content: "";
    width: 350px;
    height: 370px;
    display: block;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
}

.wing-01::before {
    background-image: url(/import/tenant_1/160.16.222.61/html/images/common/parts_001.png);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 0;
}

.wing-01::after {
    background-image: url(/import/tenant_1/160.16.222.61/html/images/common/parts_002.png);
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    right: 0;
}

.wing-02 {
    padding: 0 160px;
    position: relative;
}

.wing-02::before, .wing-02::after {
    content: "";
    width: 294px;
    height: 251px;
    display: block;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    bottom: 0;
}

.wing-02::before {
    background-image: url(/import/tenant_1/160.16.222.61/html/images/common/parts_008.png);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 0;
}

.wing-02::after {
    background-image: url(/import/tenant_1/160.16.222.61/html/images/common/parts_009.png);
    -webkit-transform: translate(50%, 0);
    transform: translate(50%, 0);
    right: 0;
}

.sideline {
    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;
}



/* deco */

.deco {
    position: relative;
}

.deco-01::after {
    content: "";
    width: 155px;
    height: 165px;
    display: inline-block;
    background-image: url(/import/tenant_1/160.16.222.61/html/images/common/parts_003.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: translate(50%, 30px);
    transform: translate(50%, 30px);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.deco-02::before {
    content: "";
    width: 294px;
    height: 251px;
    display: inline-block;
    background-image: url(/import/tenant_1/160.16.222.61/html/images/common/parts_004.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: translate(-50%, 25%);
    transform: translate(-50%, 25%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.deco-02::after {
    content: "";
    width: 256px;
    height: 341px;
    display: inline-block;
    background-image: url(/import/tenant_1/160.16.222.61/html/images/common/parts_005.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: translate(50%, 25%);
    transform: translate(50%, 25%);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.deco-03::before {
    content: "";
    width: 405px;
    height: 674px;
    display: inline-block;
    background-image: url(/import/tenant_1/160.16.222.61/html/images/common/parts_006.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.deco-03::after {
    content: "";
    width: 252px;
    height: 349px;
    display: inline-block;
    background-image: url(/import/tenant_1/160.16.222.61/html/images/common/parts_007.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.box-border-01 {
    padding: 30px 15px;
    border: 1px solid #54b04e;
    border-radius: 10px;
    background-color: white;
}

.box-overlap-item {
    width: 80%;
    margin: -5% auto 0;
    padding: 50px 30px;
    background-color: white;
    position: relative;
    z-index: 1;
}

.triangle {
    position: relative;
}

.triangle::after {
    content: "";
    width: 25px;
    height: 25px;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #cee8cc)) no-repeat top left/100% 100%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, #cee8cc 50.5%) no-repeat top left/100% 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.number {
    width: 110px;
    height: 110px;
    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;
    font-family: 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
    font-size: 24px;
    color: white;
    line-height: 1.2;
    border-radius: 100%;
    background-color: #54b04e;
}

.number-01 {
    font-family: 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
    font-size: 42px;
    color: #54b04e;
    text-align: center;
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    position: relative;
    z-index: 1;
}

.element-arrow {
    width: 45px;
    height: 45px;
    display: inline-block;
    border: 1px solid #54b04e;
    border-radius: 5px;
}

.element-arrow-inner {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.element-arrow-inner::before,
.element-arrow-inner::after {
    content: "";
    width: 10px;
    height: 1px;
    display: inline-block;
    margin: auto;
    background-color: #54b04e;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
}

.element-arrow-inner::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media (max-width: 1024px) {
    .wing-01 {
        padding: 0 140px;
    }

    .wing-01::before,
    .wing-01::after {
        width: 280px;
        height: 296px;
    }

    .wing-02 {
        padding: 0 96px;
    }

    .wing-02::before,
    .wing-02::after {
        content: "";
        width: 176.4px;
        height: 150.6px;
    }

    .deco-01::after {
        width: 124px;
        height: 132px;
    }

    .deco-02::before {
        width: 235.2px;
        height: 200.8px;
    }

    .deco-02::after {
        width: 204.8px;
        height: 272.8px;
    }

    .deco-03::before {
        width: 202.5px;
        height: 337px;
    }

    .deco-03::after {
        width: 126px;
        height: 174.5px;
    }

    .box-overlap-item {
        width: 90%;
    }

    .number {
        width: 80px;
        height: 80px;
        font-size: 19.2px;
    }

    .element-arrow {
        width: 36px;
        height: 36px;
        border-radius: 3px;
    }
}

@media (max-width: 599px) {
    .wing-01 {
        padding: 0;
    }

    .wing-01::before,
    .wing-01::after {
        width: 105px;
        height: 111px;
    }

    .wing-01::before {
        -webkit-transform: translate(-50%, 50%);
        transform: translate(-50%, 50%);
    }

    .wing-01::after {
        -webkit-transform: translate(50%, 50%);
        transform: translate(50%, 50%);
    }

    .wing-02 {
        padding: 0 48px;
    }

    .wing-02::before,
    .wing-02::after {
        content: "";
        width: 88.2px;
        height: 75.3px;
    }

    .deco-01::after {
        width: 93px;
        height: 99px;
    }

    .deco-02::before {
        width: 88.2px;
        height: 75.3px;
    }

    .deco-02::after {
        width: 102.4px;
        height: 136.4px;
    }

    .deco-03::before {
        width: 162px;
        height: 269.6px;
    }

    .deco-03::after {
        width: 100.8px;
        height: 139.6px;
    }

    .box-overlap-item {
        width: 95%;
        padding: 15px;
    }

    .number {
        width: 60px;
        height: 60px;
        font-size: 14.4px;
    }
}



/*===================================
共通要素
===================================*/

/* header */

[data-element-id] #header {
    position: static;
}

#header {
    width: 100%;
    padding: 10px 0;
    background: #fffaef;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
}

#header.fixed {
    position: fixed;
}

#header h1 {
    font-size: 12px;
    margin-bottom: 10px;
}

#header .logo {
    width: 300px;
    max-width: 100%;
    text-align: center;
}

#header .add {
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
}

@media (max-width: 599px) {
    #header {
        padding: 10px 5px;
    }

    #header h1 {
        width: 125%;
        font-size: 10px;
        margin-bottom: 5px;
        transform: translateX(-10%) scale(0.8);
        -webkit-transform: translateX(-10%) scale(0.8);
    }

    #header .logo {
        width: 200px;
    }
}



/* gnav */

[data-element-id] #gnav {
    width: 100%;
}

#gnav {
    width: calc(100% - 350px);
}

[data-element-id] #gnav ul {
    justify-content: flex-start;
    align-items: flex-start;
}

#gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

[data-element-id] #gnav li {
    margin: 20px 20px 0 0;
}

#gnav li {
    margin-left: 30px;
}

#gnav li a {
    display: inline-block;
    text-align: center;
}

#gnav li a > * {
    display: block;
}

#gnav li a .en {
    font-size: 12px;
}

#gnav .dropdown {
    position: relative;
}

[data-element-id] #gnav .dropdown > ul {
    display: block;
    position: static;
}

#gnav .dropdown > ul {
    display: none;
    width: 250px;
    background: #fffaef;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
}

#gnav .dropdown > ul > li {
    margin: 0;
}

#gnav .dropdown > ul > li:not(:last-of-type) {
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    #gnav {
        width: auto;
    }

    #gnav li {
        width: 100%;
        margin: 0 0 20px;
    }

    #gnav li.logo {
        width: auto;
        margin: 0 auto 30px;
    }

    #gnav li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    #gnav li a .en {
        margin-left: 10px;
    }

    #gnav .dropdown:after {
        display: block;
        content: "\f067";
        font-family: 'Font Awesome 5 Free';
        font-weight: bold;
        position: absolute;
        top: 0;
        right: 0;
    }

    #gnav .dropdown.active:after {
        content: "\f068";
    }

    #gnav .dropdown > ul {
        width: 100%;
        padding: 0;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        position: static;
    }

    #gnav .dropdown > ul > li > a {
        display: inline-block;
        padding-left: 20px;
        margin-left: 10px;
        position: relative;
    }

    #gnav .dropdown > ul > li > a:before {
        display: inline-block;
        content: "∟";
        position: absolute;
        top: 0;
        left: 0;
    }
}



/* barger */

@media (max-width: 1024px) {
    .toggle {
        width: 42px;
        height: 42px;
        background: #66b07b;
        cursor: pointer;
        position: relative;
        top: 0px;
        right: 0px;
        z-index: 251;
    }

    .toggle .bar {
        width: 28px;
        height: 2px;
        background: #fff;
        display: block;
        position: absolute;
        top: 50%;
        left: 7px;
        padding: 0;
        margin-top: -1px;
        text-indent: 9999px;
        transition: ease 0.4s;
        -webkit-transition: ease 0.4s;
    }

    .toggle .bar:before,
    .toggle .bar:after {
        display: block;
        content: '';
        width: 28px;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 0;
    }

    .toggle .bar:before {
        top: -10px;
    }

    .toggle .bar:after {
        top: 10px;
    }

    .toggle.active .bar {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
    }

    .toggle.active .bar:after,
    .toggle.active .bar:before {
        top: 0;
        left: 0;
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
    }

    .barger-body {
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #fffaef;
        position: fixed;
        top: 0;
        right: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        -webkit-transition: 0.4s;
        transition: 0.4s;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 250;
    }

    .barger-body.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .barger-inner {
        padding: 100px 15px 100px;
    }

    .overlay {
        width: 100%;
        height: 100vh;
        background: #000;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 249;
        opacity: 0;
        visibility: hidden;
        transform: translate3d(0, 0, 0) !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
    }

    .overlay.active {
        opacity: 0.3;
        visibility: visible;
    }
}



/* footer */

[data-element-id] .footFix {
    padding: 30px;
}

[data-element-id] .footFix .btn {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    top: 0;
    left: 0;
    right: auto;
}

.footFix .btn {
    display: none;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: #fe8a00;
    -webkit-box-shadow: 1px 2px 10px;
    box-shadow: 1px 2px 10px;
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 100;
}

.footFix .btn:before {
    display: block;
    content: "";
    width: 25px;
    height: 25px;
    background: url(/import/tenant_1/160.16.222.61/html/images/common/footfix-open.png) no-repeat;
    background-size: 100%;
    text-align: center;
    position: absolute;
    top: 29%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.footFix .btn.active:before {
    background: url(/import/tenant_1/160.16.222.61/html/images/common/footfix-close.png) no-repeat;
    background-size: 100%;
}

.footFix .btn .txt {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
}

[data-element-id] .footFix ul {
    width: 300px;
    position: static;
}

.footFix ul {
    position: fixed;
    top: 20%;
    right: 0;
    z-index: 50;
}

.footFix ul > * + * {
    margin-top: 10px;
}

[data-element-id] .footFix li a .rotate {
    writing-mode: initial;
}

.footFix li a {
    color: #fff;
    font-size: 18px;
    background: #66b07b;
    border-radius: 5px 0 0 5px;
    letter-spacing: 4px;
    padding: 15px;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
}

.footFix li a:before {
    display: inline-block;
    content: "";
    font-size: 170%;
    font-family: 'Font Awesome 5 Free';
    letter-spacing: 0;
    line-height: 1;
}

.footFix li a .rotate {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.footFix li.line {
    margin-bottom: 30px;
}

.footFix li.line a {
    background: #d35d65;
}

.footFix li.line.type-b a {
    background: #00B900;
}

.footFix li.line a:before {
    content: "\f3c0";
    font-family: 'Font Awesome 5 Brands';
    margin-bottom: 10px;
}

.footFix li.tel a:before {
    content: "\f879";
    font-weight: bold;
}

.footFix li.mail a:before {
    content: "\f0e0";
}

.footFix li.insta a:before {
    content: "\f16d";
    font-family: 'Font Awesome 5 Brands';
    font-weight: bold;
}

.footerMap {
    position: relative;
}

.footerMap:before {
    display: block;
    content: "";
    padding-top: 350px;
}

.footerMap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.footerLogo {
    margin-bottom: 50px;
    text-align: center;
}

.footerLogo img {
    width: 350px;
    max-width: 80%;
}

.footerBox {
    margin-bottom: 50px;
}

.footerBox .left {
    width: 46%;
}

.footerBox .left > * + * {
    margin-top: 20px;
}

.footerBox .right {
    width: 46%;
}

.footerNav {
    margin-bottom: 50px;
}

.footerNav li {
    margin: 5px 20px;
}

.footerSns .list01 li a {
    display: block;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
}

.footerSns .list01 li a:before {
    display: inline-block;
    font-family: 'Font Awesome 5 Brands';
    font-weight: bold;
    margin-right: 10px;
}

.footerSns .list01 li.tiktok a {
    background: #000;
}

.footerSns .list01 li.tiktok a:before {
    content: "\e07b";
}

.footerSns .list01 li.youtube a {
    background: #ff3e3e;
}

.footerSns .list01 li.youtube a:before {
    content: "\f167";
}

.footerSns .list02 li a {
    display: block;
    color: #ca7224;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.footerSns .list02 li a:before {
    display: inline-block;
    font-family: 'Font Awesome 5 Brands';
    font-weight: bold;
}

.footerSns .list02 li.mail a:before {
    content: "\f0e0";
    font-family: 'Font Awesome 5 free';
    font-weight: normal;
}

.footerSns .list02 li.line a:before {
    content: "\f3c0";
    font-weight: normal;
}

.footerSns .list02 li.insta a:before {
    content: "\f16d";
}

.footerCopy {
    font-size: 14px;
    margin-top: 30px;
    text-align: center;
}

.totop {
    width: 80px;
    height: 80px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 50;
}

.totop a {
    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;
    color: white;
    letter-spacing: 1px;
    border: 1px solid #fe8a00;
    border-radius: 100%;
    background-color: #fe8a00;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.totop a::before {
    content: "\f062";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: inherit;
    line-height: 100%;
}

.totop a:hover {
    color: #fe8a00;
    background-color: white;
    opacity: 1;
}

@media (max-width: 1024px) {
    .totop {
        display: none;
    }

    .footFix .btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .footFix ul {
        opacity: 0;
        visibility: hidden;
        top: auto;
        right: 10px;
        bottom: 120px;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

    .footFix ul.active {
        opacity: 1;
        visibility: visible;
    }

    .footFix li a {
        font-size: 16px;
        border-radius: 5px;
        letter-spacing: 2px;
        padding: 10px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .footFix li a:before {
        font-size: 140%;
        margin: 0 !important;
        margin-right: 10px !important;
    }

    .footFix li a .rotate {
        -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
        writing-mode: inherit;
    }

    .footFix li.line {
        margin: 0;
    }
}

@media (max-width: 599px) {
    #footer {
        padding-bottom: 50px;
    }

    .footFix .btn {
        width: 70px;
        height: 70px;
    }

    .footFix .btn:before {
        width: 22px;
        height: 22px;
    }

    .footFix .btn .txt {
        margin-bottom: 8px;
    }

    .totop {
        width: 48px;
        height: 48px;
        font-size: 12px;
    }

    .footerMap:before {
        padding-top: 250px;
    }

    .footerBox .left {
        width: 100%;
    }

    .footerBox .left > * {
        font-size: 14px;
    }

    .footerBox .right {
        width: 100%;
        margin-top: 20px;
    }

    .footerNav li {
        width: 50%;
        font-size: 14px;
        margin: 0 0 10px;
    }

    .footerSns .list01 li a {
        font-size: 22px;
    }
}



/*===================================
トップページ
===================================*/

/* A-BiSUスライダー用 */

.mainimg {
    position: relative;
    overflow: hidden;
}

.mainimg .uk-slidenav-position {
    height: 100% !important;
}

.mainimg .uk-slideshow {
    height: 100% !important;
}

.mainimg .uk-slideshow > li {
    height: 100% !important;
}

.mainimg .uk-slideshow > li > div {
    height: 100% !important;
}

.mainimg .uk-slideshow > li > div > img {
    width: 100%;
    height: 100%;
    font-family: 'object-fit: cover; object-position: 50% 50%;';
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}



/* mainimg */

.mainimg {
    position: relative;
}

.mainimg .pic {
    width: 60%;
    height: 43vw;
    margin-left: auto;
}

.mainimg .tbox {
    width: 34%;
    height: 94%;
    background: #e7bf88;
    border-radius: 0 40%;
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 3%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

[data-element-id] .mainimg .tbox .tit {
    writing-mode: initial;
}

.mainimg .tbox .tit {
    color: #fff;
    font-size: 1.8vw;
    font-weight: bold;
    letter-spacing: 10px;
    line-height: 1.8;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
}

.mainimg .tbox .tit .big {
    font-size: 180%;
}

@media (max-width: 1024px) {
    .mainimg .tbox .tit {
        font-size: 16px;
    }
}

@media (max-width: 599px) {
    .mainimg .pic {
        width: 100%;
        height: 60vh;
    }

    .mainimg .tbox {
        width: auto;
        height: auto;
        background: rgba(231, 191, 136, 0.9);
        border-radius: 0 20px;
        padding: 10px 15px;
        top: 60%;
    }

    .mainimg .tbox .tit {
        font-size: 16px;
        letter-spacing: 3px;
        line-height: 1.5;
        -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
        writing-mode: initial;
    }

    .mainimg .tbox .tit .big {
        font-size: 160%;
    }
}



/* indexIntro */

.indexIntro .table {
    width: 100%;
    max-width: 530px;
    background: #fff;
    -webkit-box-shadow: 10px 10px 10px #ccc;
    box-shadow: 10px 10px 10px #ccc;
    padding: 15px;
    margin-left: auto;
    margin-top: -100px;
    position: relative;
}

@media (max-width: 1024px) {
    .indexIntro .table {
        margin-top: -50px;
    }
}

@media (max-width: 599px) {
    .indexIntro .table {
        width: 94%;
        padding: 5px;
        margin-top: -20px;
    }
}



/* indexCovid */

.indexCovidList .item {
    width: calc(100% / 7);
}

.indexCovidList .item > * {
    height: 100%;
    background: #f5e0cd;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.indexCovidList .item .icon {
    max-width: 70%;
    margin: auto;
}

.indexCovidList .item .tit {
    margin-top: 5px;
}

@media (max-width: 1024px) {
    .indexCovidList .item {
        width: calc(100% / 4);
    }
}

@media (max-width: 599px) {
    .indexCovidList .item {
        width: calc(100% / 2);
    }

    .indexCovidList .item > * {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .indexCovidList .item .icon {
        width: 50px;
    }

    .indexCovidList .item .tit {
        width: calc(100% - 50px);
        font-size: 12px;
        font-weight: bold;
        margin: 0;
    }
}



/* indexArticle */

.indexArtice .left {
    width: 230px;
}

.indexArtice .right {
    width: calc(100% - 270px);
}

.indexArtice .list dl {
    border-bottom: 1px solid #CCC;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.indexArtice .list dt {
    width: 130px;
    font-weight: bold;
}

.indexArtice .list dd {
    width: calc(100% - 130px);
}

@media (max-width: 599px) {
    .indexArtice .left {
        width: 100%;
    }

    .indexArtice .right {
        width: 100%;
        margin-top: 30px;
    }

    .indexArtice .list dt {
        width: 100%;
        margin-bottom: 5px;
    }

    .indexArtice .list dd {
        width: 100%;
    }
}



/* indexAbout */

.indexAbout .inner {
    position: relative;
}

.indexAbout .list li:nth-of-type(3n+1) {
    width: 100%;
}

.indexAbout .list li:nth-of-type(3n+2) {
    width: 35%;
}

.indexAbout .list li:nth-of-type(3n+3) {
    width: 65%;
}

.indexAbout .list li .pic {
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.8;
}

.indexAbout .list li:nth-of-type(3n+1) .pic {
    height: 400px;
}

.indexAbout .box {
    width: 450px;
    max-width: 100%;
    background: #fff;
    padding: 20px;
    -webkit-box-shadow: 0px 0px 10px #ccc;
    box-shadow: 0px 0px 10px #ccc;
    position: absolute;
    top: 50%;
    right: 5%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
}

.indexAbout .box .txt {
    line-height: 2;
}

@media (max-width: 599px) {
    .indexAbout .list li .pic {
        height: 110px;
    }

    .indexAbout .list li:nth-of-type(3n+1) .pic {
        height: 150px;
    }

    .indexAbout .box {
        width: 100%;
        margin-top: 10px;
        position: static;
        -webkit-transform: none;
        transform: none;
    }
}



/* indexStrength */

.indexStrengthList .item:nth-of-type(-n+2) {
    width: 50%;
}

.indexStrengthList .item .pic {
    height: 250px;
}

.indexStrengthList .item .num {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background: #e28d41;
    border-radius: 100%;
    margin: -20px auto 0;
    text-align: center;
    position: relative;
}

.indexStrengthList .item .tit {
    color: #673d10;
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
    text-align: center;
}

.indexStrengthList .item .txt {
    line-height: 2;
    margin-top: 15px;
}

@media (max-width: 599px) {
    .indexStrengthList .item:nth-of-type(-n+2) {
        width: 100%;
    }
}



/* indexSpecial */

.indexSpecial .box {
    border-radius: 10px;
    overflow: hidden;
}

.indexSpecial .box .left {
    width: 35%;
}

.indexSpecial .box .right {
    width: 65%;
    background: #f6dfc7;
}

.indexSpecial .box .pic {
    height: 100%;
    position: relative;
    overflow: hidden;
}

[data-element-id] .indexSpecial .box .label {
    top: 0;
    left: 0;
    transform: rotate(0);
}

.indexSpecial .box .label {
    font-weight: bold;
    position: absolute !important;
    top: -15px;
    left: -50px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #ebdc55;
    width: 150px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 5px;
}

.indexSpecial .box .tit {
    color: #fff;
    background: #673d10;
    padding: 20px;
}

.indexSpecial .box .tit > * {
    display: block;
}

.indexSpecial .box .tit .lead {
    font-size: 22px;
    font-weight: bold;
    margin-top: 5px;
}

.indexSpecial .box .tit .big {
    font-size: 120%;
}

.indexSpecial .box .list {
    margin: 20px;
}

.indexSpecial .box .list li {
    font-size: 14px;
    letter-spacing: 2px;
    padding-left: 1.5em;
    position: relative;
}

.indexSpecial .box .list li:before {
    display: block;
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
}

.indexSpecial .box .list li + li {
    margin-top: 10px;
}

.indexSpecial .box .btn {
    margin: 20px;
}

@media (max-width: 599px) {
    .indexSpecial .box .left {
        width: 100%;
    }

    .indexSpecial .box .right {
        width: 100%;
    }
}



/* indexWorry */

.indexWorryList .item .info {
    color: #e28d41;
    font-family: 'PT Serif', serif;
    text-align: center;
    position: relative;
    z-index: 1;
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
}

.indexWorryList .item .info > * {
    line-height: 1;
}

.indexWorryList .item .num {
    font-size: 40px;
}

.indexWorryList .item .icon {
    max-width: 250px;
    margin: auto;
}

.indexWorryList .item .icon img {
    opacity: 0.6;
}

.indexWorryList .item .tit {
    width: 90%;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    position: absolute !important;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.indexWorryList .item .txt {
    margin-top: 15px;
}

@media (max-width: 599px) {}



/* indexVoice */

.indexVoiceList .item > * {
    display: block;
}

.indexVoiceList .item .pic {
    border: solid 1px;
}

.indexVoiceList .item .right {
    margin-top: 10px;
}

.indexVoiceList .item .right > * + * {
    margin-top: 10px;
}

.indexVoiceList .item .right .btn {
    margin-top: 20px;
}

.indexVoiceList .item .info dd {
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
}

@media (max-width: 1024px) {
    .indexVoiceList .item .info dd {
        font-size: 18px;
    }
}

@media (max-width: 599px) {
    .indexVoiceList .item > * {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .indexVoiceList .item .left {
        width: 30%;
    }

    .indexVoiceList .item .right {
        width: 65%;
        margin-top: 0;
    }

    .indexVoiceList .item .info dd {
        font-size: 16px;
    }
}



/* indexMenu */

.indexMenuIntro {
    margin-bottom: 50px;
}

.indexMenuIntro dl {
    width: 700px;
    max-width: 100%;
    background: #fff;
    border: solid 1px #e28d41;
    border-radius: 10px;
    margin: auto;
    padding: 20px;
}

.indexMenuIntro dt {
    color: #d35d65;
    font-size: 20px;
    font-weight: bold;
    border-bottom: solid 1px #ccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.indexMenuIntro dd {
    text-align: center;
}

.indexMenuList .item > * {
    height: 100%;
    background: #fff;
    border: solid 1px #e28d41;
    border-radius: 5px;
    padding: 20px;
    overflow: hidden;
}

.indexMenuList .item .tit {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

.indexMenuList .item .txt {
    margin-top: 10px;
}

.indexMenuList .item .txt li {
    font-size: 14px;
}

.indexMenuList .item .txt li:before {
    display: inline-block;
    content: "\f00c";
    font-size: 80%;
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    margin-right: 5px;
}

@media (max-width: 599px) {
    .indexMenuIntro dl {
        padding: 10px;
    }

    .indexMenuIntro dd {
        text-align: left;
    }
}



/* indexBanner */

.indexBannerList .item > * {
    display: block;
    position: relative;
}

[data-element-id] .indexBannerList .item > *:before {
    display: none;
}

.indexBannerList .item > *:before {
    display: block;
    content: "";
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.indexBannerList .item .pic {
    height: 200px;
}

.indexBannerList .item .pic img {
    opacity: 0.7;
}

.indexBannerList .item .tit {
    width: 90%;
    color: #fff;
    font-size: 32px;
    text-align: center;
    position: absolute !important;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 5;
    text-shadow: rgb(196 160 120) 1px 1px 1px, rgb(196 160 120) 1px -1px 1px, rgb(196 160 120) -1px 1px 1px, rgb(196 160 120) -1px -1px 1px, rgb(196 160 120) 1px 1px 1px, rgb(196 160 120) 1px -1px 1px, rgb(196 160 120) -1px 1px 1px, rgb(196 160 120) -1px -1px 1px, rgb(196 160 120) 1px 1px 1px, rgb(196 160 120) 1px -1px 1px, rgb(196 160 120) -1px 1px 1px, rgb(196 160 120) -1px -1px 1px, rgb(196 160 120) 1px 1px 1px, rgb(196 160 120) 1px -1px 1px, rgb(196 160 120) -1px 1px 1px, rgb(196 160 120) -1px -1px 1px;
}

@media (max-width: 1024px) {
    .indexBannerList .item .tit {
        font-size: 30px;
    }
}

@media (max-width: 599px) {
    .indexBannerList .item .pic {
        height: 120px;
    }

    .indexBannerList .item .tit {
        font-size: 20px;
    }
}



/* indexRecruit */

.indexRecruit .tit {
    color: #fff;
    font-size: 28px;
    font-family: 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
    margin-bottom: 30px;
}

.indexRecruit .txt {
    color: #fff;
}

.indexRecruit .bg {
    background: #9c601e;
}

@media (max-width: 1024px) {
    .indexRecruit .tit {
        font-size: 26px;
    }
}

@media (max-width: 599px) {
    .indexRecruit .tit {
        font-size: 22px;
        margin-bottom: 20px;
    }
}



/*===================================
下層ページ
===================================*/

/* subimg */

.subimg {
    position: relative;
}

.subimg:before {
    display: block;
    content: "";
    width: 40%;
    height: 100%;
    /* background: url(/import/tenant_1/160.16.222.61/html/images/common/bgimg_001.png) no-repeat; */
    background: url(/import/tenant_1/160.16.222.61/html/images/common/bg2.jpg) no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.subimg .pic {
    width: 60%;
    height: 30vw;
    margin-left: auto;
}

.subimg .tit {
    position: absolute !important;
    top: 50%;
    left: calc(50% - 500px);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
}

.subimg .tit > * {
    display: block;
    color: #fff;
    text-shadow: 0px 0px 15px #555;
}

.subimg .tit .ja {
    font-size: 2.8vw;
    letter-spacing: 10px;
}

.subimg .tit .en {
    font-size: 1.2vw;
    letter-spacing: 5px;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .subimg .tit {
        width: 90%;
        left: 5%;
    }
    
    .subimg .tit .ja {
        font-size: 32px;
    }
    
    .subimg .tit .en {
        font-size: 16px;
    }
}

@media (max-width: 599px) {
    .subimg .pic {
        height: 45vw;
    }
    
    .subimg .tit .ja {
        font-size: 22px;
    }
    
    .subimg .tit .en {
        font-size: 16px;
    }
}



/* breadcrumb */

.breadcrumb li {
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
}

.breadcrumb li:first-of-type {
    color: #54b04e;
    font-weight: bold;
}

.breadcrumb li:not(:first-of-type):before {
    display: inline-block;
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    margin-right: 15px;
}



/* list-type-01 */

.list-type-01 .item + .item {
    margin-top: 50px;
}

.list-type-01 .item .left {
    width: 48%;
}

.list-type-01 .item .right {
    width: 48%;
}

@media (max-width: 1024px) {
    .list-type-01 .item + .item {
        margin-top: 40px;
    }
}

@media (max-width: 599px) {
    .list-type-01 .item + .item {
        margin-top: 30px;
    }

    .list-type-01 .item .left {
        width: 100%;
    }

    .list-type-01 .item .right {
        width: 100%;
        margin-top: 20px;
    }
}



/* list-type-02 */

.list-type-02 .item {
    width: 85%;
}

.list-type-02 .item:nth-of-type(2n+2) {
    margin-left: auto;
}

.list-type-02 .item + .item {
    margin-top: 50px;
}

.list-type-02 .item .tit {
    color: #fe8a00;
    font-size: 18px;
    border-bottom: 1px solid #54b04e;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .list-type-02 .item + .item {
        margin-top: 40px;
    }
}

@media (max-width: 599px) {
    .list-type-02 .item {
        width: 100%;
    }

    .list-type-02 .item + .item {
        margin-top: 30px;
    }
}



/* article-list-01 */

.article-list-01 .item {
    padding: 20px;
    border: 1px solid #54b04e;
    border-radius: 10px;
    background-color: white;
}

.article-list-01 .item + .item {
    margin-top: 30px;
}

.article-list-01 .item .pic {
    width: 30%;
}

.article-list-01 .item .tbox {
    width: 65%;
}

.article-list-01 .item .date {
    margin-bottom: 5px;
}

.article-list-01 .item .cate span {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
    background: #54b04e;
    padding: 2px 5px;
    margin: 0 10px 10px 0;
}

.article-list-01 .item .tit {
    color: #54b04e;
    font-size: 20px;
    border-bottom: 1px solid #ccc;
    padding: 0 0 5px 10px;
    margin-bottom: 20px;
}

@media (max-width: 599px) {
    .article-list-01 .item {
        padding: 10px;
    }

    .article-list-01 .item .pic {
        width: 100%;
    }

    .article-list-01 .item .tbox {
        width: 100%;
        margin-top: 10px;
    }

    .article-list-01 .item .tit {
        font-size: 16px;
    }
}



/* article-list-02 */

.article-list-02 .item .pic {
    width: 100%;
}

.article-list-02 .item .tbox {
    width: 100%;
    margin-top: 10px;
}

.article-list-02 .item .tit {
    color: #54b04e;
    font-size: 20px;
    margin-top: 5px;
}

@media (max-width: 599px) {
    .article-list-02 .item .pic {
        width: 35%;
    }

    .article-list-02 .item .tbox {
        width: 60%;
        margin: 0;
    }

    .article-list-02 .item .tit {
        font-size: 16px;
    }
}



/* column2 */

.column2-main {
    width: calc(100% - 300px);
}

.column2-side {
    width: 250px;
}

.column2-side .item {
    width: 100%;
}

.column2-side .item + .item {
    margin-top: 80px;
}

.column2-side .item .tit {
    color: #54b04e;
    font-size: 22px;
    border-bottom: 2px solid #54b04e;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.column2-side .item li + li {
    margin-top: 10px;
}

.column2-side .item li a {
    padding-left: 1.5em;
    position: relative;
}

.column2-side .item li a::before {
    content: "●";
    display: inline-block;
    color: #fe8a00;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 1024px) {
    .column2-main {
        width: 100%;
    }

    .column2-side {
        width: 100%;
        margin-top: 60px;
    }

    .column2-side .item {
        width: 48%;
    }

    .column2-side .item + .item {
        margin-top: 0;
    }
}

@media (max-width: 599px) {
    .column2-side {
        margin-top: 40px;
    }

    .column2-side .item {
        width: 100%;
    }

    .column2-side .item + .item {
        margin-top: 40px;
    }
}



/* pager */

.pager li {
    font-size: 18px;
    margin: 0 5px;
}

.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";
}

.pager li.active {
    color: #fff;
    background: #54b04e;
    padding: 2px 10px;
}

.pager li a {
    display: block;
    padding: 2px 5px;
}



/* blogSingle */

.blogSingle {
    border: 1px solid #54b04e;
    border-radius: 10px;
    padding: 20px;
}

.blogSingle .tit {
    color: #54b04e;
    font-size: 18px;
    border-bottom: solid 1px #ccc;
    padding: 0 0 5px 5px;
    margin-bottom: 20px;
}

.blogSingle .info {
    margin-bottom: 10px;
}

.blogSingle .info dt {
    font-size: 14px;
    margin-bottom: 5px;
}

.blogSingle .info dd {
    font-size: 14px;
}

.blogSingle .info dd span {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
    background: #54b04e;
    padding: 2px 5px;
    margin: 0 10px 10px 0;
}



/* singleBack */

.singleBack {
    position: relative;
}

.singleBack .prev, .singleBack .next {
    position: absolute;
    top: 0;
}

.singleBack .prev {
    left: 0;
}

.singleBack .next {
    right: 0;
}

.singleBack li {
    width: 30%;
    margin: auto;
}



/* faqList */

.faqList .item + .item {
    margin-top: 40px;
}

.faqList .item dt, .faqList .item dd {
    padding-top: 20px;
    padding-left: 50px;
    position: relative;
}

.faqList .item dt .label, .faqList .item dd .label {
    font-size: 42px;
    font-family: 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
    margin-right: 15px;
    position: absolute;
    top: 0;
    left: 0;
}

.faqList .item dt {
    color: #54b04e;
    font-size: 20px;
    font-weight: bold;
    padding-right: 70px;
    cursor: pointer;
}

.faqList .item dt .element-arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.faqList .item dt.is-parent .element-arrow-inner::after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.faqList .item dt .label {
    color: #54b04e;
}

.faqList .item dd {
    display: none;
    margin-top: 20px;
}

.faqList .item dd .label {
    color: #fe8a00;
}

@media (max-width: 1024px) {
    .faqList .item dt, .faqList .item dd {
        padding-left: 50px;
    }

    .faqList .item dt .label, .faqList .item dd .label {
        font-size: 38px;
    }

    .faqList .item dt {
        font-size: 18px;
    }
}

@media (max-width: 599px) {
    .faqList .item + .item {
        margin-top: 30px;
    }

    .faqList .item dt, .faqList .item dd {
        padding-left: 40px;
    }

    .faqList .item dt .label, .faqList .item dd .label {
        font-size: 34px;
    }

    .faqList .item dt {
        font-size: 16px;
        padding-right: 60px;
    }
}



/* recruitList */

.recruitList .item {
    border: solid 1px #ccc;
    border-bottom: none;
}

.recruitList .item + .item {
    border-top: none;
}

.recruitList .item:last-of-type {
    border-bottom: solid 1px #ccc;
}

.recruitList .item dt {
    width: 150px;
    color: #fff;
    background: #54b04e;
    padding: 10px;
}

.recruitList .item dd {
    width: calc(100% - 150px);
    padding: 10px;
}

.recruitList .item:not(:last-of-type) dt {
    border-bottom: solid 1px #fff;
}

.recruitList .item:not(:last-of-type) dd {
    border-bottom: solid 1px #ccc;
}

@media (max-width: 599px) {
    .recruitList .item dt {
        width: 100%;
    }

    .recruitList .item dd {
        width: 100%;
    }
}



/* entryFlow */

.entryFlow .item > * {
    height: 100%;
    background: #fff;
    border: solid 1px #54b04e;
    border-radius: 10px;
    padding: 30px 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.entryFlow .item + .item > *:before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-left: solid 8px #54b04e;
    border-top: solid 8px transparent;
    border-bottom: solid 8px transparent;
    position: absolute;
    top: 50%;
    right: calc(100% + 6px);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.entryFlow .item .tit {
    color: #54b04e;
    font-size: 20px;
}

@media (max-width: 599px) {
    .entryFlow .item + .item > *:before {
        border-top: solid 8px #54b04e;
        border-left: solid 10px transparent;
        border-right: solid 10px transparent;
        border-bottom: none;
        top: auto;
        bottom: calc(100% + 6px);
        right: 50%;
        -webkit-transform: translate(50%, 0);
        transform: translate(50%, 0);
    }
}



/* formList */

.formList dl + dl {
    margin-top: 30px;
}

.formList dt {
    width: 200px;
    color: #54b04e;
    font-weight: bold;
}

.formList dd {
    width: calc(100% - 200px);
}

.formList dd li {
    margin: 0 10px 10px 0;
}

.formList input[type=text], .formList textarea {
    width: 100%;
    padding: 10px;
}

.formList input[type=radio] {
    margin-right: 5px;
}

.formList textarea {
    height: 250px;
}

@media (max-width: 599px) {
    .formList dt {
        width: 100%;
        margin-bottom: 5px;
    }

    .formList dd {
        width: 100%;
    }
}


/* 1/31 記述 */

#gnav ul li:first-of-type{
  margin-left: 0px !important;
}



#gnav ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-start;
margin-left: 0px;
} 
