/*フォントオーサムをcssで読み込み*/
@import url("https://use.fontawesome.com/releases/v6.0.0/css/all.css");

/*Google fonts*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");

/*========== 基本設定 ==========*/
html {
    --txt-font-00: "Noto Serif JP", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
    --txt-color-00: #fff;
    --txt-color-01: #000;
    --txt-color-02: #a8352c;
    --txt-color-03: #dccab8;
    --txt-color-04: #dad8d8;
    --txt-color-05: #e7e7dd;
    --txt-color-06: #cee8e4;
    --txt-color-07: #444343;
    --txt-color-08: #a6a69e;
    --txt-color-09: #5c5b5b;
    --txt-color-10: #ffccc8;
    --txt-color-11: #afe3db;
    --ttl-color-00: #fff;
    --ttl-color-01: #000;
    --ttl-color-02: #a8352c;
    --ttl-color-03: #dccab8;
    --ttl-color-04: #dad8d8;
    --ttl-color-05: #e7e7dd;
    --ttl-color-06: #cee8e4;
    --ttl-color-07: #444343;
    --ttl-color-08: #a6a69e;
    --ttl-color-09: #5c5b5b;
    --ttl-color-10: #ffccc8;
    --ttl-color-11: #afe3db;
    --back-color-00: #fff;
    --back-color-01: #000;
    --back-color-02: #a8352c;
    --back-color-03: #dccab8;
    --back-color-04: #dad8d8;
    --back-color-05: #e7e7dd;
    --back-color-06: #cee8e4;
    --back-color-07: #444343;
    --back-color-08: #a6a69e;
    --back-color-09: #5c5b5b;
    --back-color-10: #ffccc8;
    --back-color-11: #afe3db;
    --back-color-12: #CCECCC;
    --btn-color-00: #fff;
    --btn-color-01: #000;
    --btn-color-02: #a8352c;
    --btn-color-03: #dccab8;
    --btn-color-04: #dad8d8;
    --btn-color-05: #e7e7dd;
    --btn-color-06: #cee8e4;
    --btn-color-07: #444343;
    --btn-color-08: #a6a69e;
    --btn-color-09: #5c5b5b;
    --btn-color-10: #ffccc8;
    --btn-color-11: #afe3db;
}

html {
    font-family: var(--txt-font-00);
    font-weight: 400;
    color: var(--txt-color-01);
    letter-spacing: 1px;
}

/*フォント*/

/*テキストカラー*/
.txt-color-00 {
    color: var(--txt-color-00);
}

.txt-color-01 {
    color: var(--txt-color-01);
}

.txt-color-02 {
    color: var(--txt-color-02);
}

.txt-color-03 {
    color: var(--txt-color-03);
}

.txt-color-04 {
    color: var(--txt-color-04);
}

.txt-color-05 {
    color: var(--txt-color-05);
}

.txt-color-06 {
    color: var(--txt-color-06);
}

.txt-color-07 {
    color: var(--txt-color-07);
}

.txt-color-08 {
    color: var(--txt-color-08);
}

.txt-color-09 {
    color: var(--txt-color-09);
}

.txt-color-10 {
    color: var(--txt-color-10);
}

.txt-color-11 {
    color: var(--txt-color-11);
}

.txt-color-12 {
    color: var(--txt-color-12);
}

/*背景色*/
.back-color-00 {
    background: var(--back-color-00);
}

.back-color-01 {
    background: var(--back-color-01);
}

.back-color-02 {
    background: var(--back-color-02);
}

.back-color-03 {
    background: var(--back-color-03);
}

.back-color-04 {
    background: var(--back-color-04);
}

.back-color-05 {
    background: var(--back-color-05);
}

.back-color-06 {
    background: var(--back-color-06);
}

.back-color-07 {
    background: var(--back-color-07);
}

.back-color-08 {
    background: var(--back-color-08);
}

.back-color-09 {
    background: var(--back-color-09);
}

.back-color-10 {
    background: var(--back-color-10);
}

.back-color-11 {
    background: var(--back-color-11);
}

.back-color-12 {
    background: var(--back-color-12);
}

/*スタッフの店舗毎に色変える*/
.allure店 {
    background: var(--back-color-05);
}

.Label店 {
    background: var(--back-color-06);
}

:before,
:after {
    pointer-events: none;
}

.main>* {
    position: relative;
}

button {
    border: none;
}

.up-ofi {
    height: 100%;
}

.up-h-100\% {
    height: 100%;
}

.js-toggle {
    cursor: pointer;
}

.js-toggle+* {
    display: none;
}

[data-element-id] .js-toggle+* {
    display: block;
}

[data-element-id] .up-d-none {
    display: block;
    border: solid 4px green;
    position: relative;
}

[data-element-id] .up-d-none:after {
    content: "公開画面では表示されない";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-align: center;
    background: green;
}

[data-element-id] .up-show\@tb {
    display: block;
    border: solid 4px green;
    position: relative;
}

[data-element-id] .up-show\@tb:after {
    content: "モバイル用";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-align: center;
    background: green;
}

[data-element-id] .up-show\@sp {
    display: block;
    border: solid 4px green;
    position: relative;
}

[data-element-id] .up-show\@sp:after {
    content: "モバイル用";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-align: center;
    background: green;
}

[data-element-id] .link-none-js {
    display: block;
    border: solid 4px green;
    position: relative;
}

[data-element-id] .link-none-js:after {
    content: "リンクが設定されていない場合は非表示になります。";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: green;
}

@media (min-width: 1025px) {
    .scroll-hint {
        overflow: inherit !important;
    }
}

/*リンクがある画像にhoverした際にzoom*/
.hover-img {
    overflow: hidden;
}

.hover-img a .hover-target {
    width: 100%;
    height: auto;
    -webkit-transition: transform 0.75s ease;
    -webkit-transition: -webkit-transform 0.75s ease;
    transition: -webkit-transform 0.75s ease;
    transition: transform 0.75s ease;
    transition: transform 0.75s ease, -webkit-transform 0.75s ease;
}

.hover-img a:hover .hover-target {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

@media (max-width: 599px) {
    .hover-img a:hover .hover-target {
        -webkit-transform: inherit;
        transform: inherit;
    }
}

/*パララックス*/
.para-down img {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

/*ローディング画面*/
.loading {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

[data-element-id] .loading {
    width: 400px;
    height: 400px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    border: solid 4px green;
    position: relative;
}

[data-element-id] .loading:after {
    content: "ローディング画面";
    width: 100%;
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-align: center;
    background: green;
    position: absolute;
    bottom: 0;
    left: 0;
}

.loading .pic {
    opacity: 0;
    -webkit-animation-name: fadeUpAnime;
    animation-name: fadeUpAnime;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

[data-element-id] .loading .pic {
    opacity: 1 !important;
    -webkit-animation: inherit;
    animation: inherit;
}

.loading .pic img {
    max-width: 260px;
}

@-webkit-keyframes fadeUpAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/*アイコン*/
[class*="icon-"]:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

[class*="imgicon-"]:before {
    content: "";
    display: block;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.icon-brands:before {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

.icon-insta-01:before {
    content: "\f16d";
    background: -webkit-linear-gradient(-50deg, #405de6, #eb42a1 30%, #e1306c, #fff72c);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.icon-facebook-01:before {
    content: "\f09a";
    color: #3b5998;
}

.icon-line-01:before {
    content: "\f3c0";
    color: #06c755;
}

.imgicon-mailto-01:before {
    width: 25px;
    height: 19px;
    background-image: url(/import/tenant_1/153.121.38.11/html/images/ace-icon-11.png);
}

.imgicon-tel-01:before {
    width: 28px;
    height: 28px;
    background-image: url(/import/tenant_1/153.121.38.11/html/images/ace-icon-10.png);
}

/*slick*/
.slick-slide,
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-transform: translateZ(0);
    transform: translate3d(0, 0, 0);
    transform: translateZ(0);

    -webkit-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/*fead*/


.fead-order>* {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

[data-element-id] .fead-order>* {
    opacity: 1;
}

.fead-order>.mv {
    opacity: 1;
}

.fead-up-text {
    display: block;
    overflow: hidden;
}

.fead-up-text>* {
    display: block;
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
    transform: translate3d(0, 100%, 0) skewY(12deg);
    -webkit-transform-origin: left;
    transform-origin: left;
}

[data-element-id] .fead-up-text>* {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
    transform: translate3d(0, 0, 0) skewY(0);
}

.fead-up-text.mv>* {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
    transform: translate3d(0, 0, 0) skewY(0);
}

.fead-img {
    overflow: hidden;
    position: relative;
}

.fead-img>* {
    opacity: 0;
}

[data-element-id] .fead-img>* {
    opacity: 1;
}

.fead-img.mv>* {
    opacity: 1;
}

.fead-img.mv:before {
    content: "";
    background-color: var(--back-color-10);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-animation-name: backfead;
    animation-name: backfead;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -0.1rem;
    z-index: 2;
}

@-webkit-keyframes backfead {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes backfead {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.fead-img {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}

[data-element-id] .fead-img {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.fead-img.mv {
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;

    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.fead-text {
    opacity: 1;
}

.fead-text>*.mv {
    opacity: 1;
}

/*map*/
.map-01 {
    padding-top: 100%;
}

.map-02 {
    padding-top: 40%;
}

@media (max-width: 1024px) {
    .map-01 {
        padding-top: 70%;
    }

    .map-02 {
        padding-top: 50%;
    }
}

/*inner用*/
.up-maxw-1100 {
    max-width: 1100px;
}

.up-maxw-1200 {
    max-width: 1200px;
}

.up-maxw-1300 {
    max-width: 1300px;
}

.up-maxw-1400 {
    max-width: 1400px;
}

.up-maxw-1500 {
    max-width: 1500px;
}

/*コンテンツ余白*/
[class*="section-m"],
[class*="section-p"] {
    --section-xlarge: 120px;
    --section-large: 100px;
    --section-medium: 80px;
    --section-small: 60px;
    --section-xsmall: 40px;
}

.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*="ace-ttl-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
}

.ace-ttl-01 .ttl-main {
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 2px;
}

.ace-ttl-01 .ttl-sub {
    margin-top: 10px;
    font-weight: bold;
    font-size: 18px;
}

.ace-ttl-02 .ttl-main {
    font-weight: bold;
    font-size: 20px;
}

.ace-ttl-02 .ttl-main .em {
    margin-right: 10px;
    font-size: 140%;
}

.ace-ttl-03 .ttl-main {
    font-weight: bold;
    font-size: 70px;
    font-style: italic;
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
}

.ace-ttl-04 .ttl-main {
    padding: 10px 30px;
    font-size: 36px;
    border-radius: 10px;
}

.ace-ttl-05 {
    padding: 0 10px 5px;
    position: relative;
    z-index: 0;
}

.ace-ttl-05 .ttl-main {
    font-size: 30px;
}

.ace-ttl-05 .border {
    width: 100%;
    display: block;
    border-bottom: 1px solid;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ace-ttl-06 {
    width: 100%;
    padding: 0 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.ace-ttl-06 .ttl-main {
    padding: 10px 10px;
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 2px;
    background: var(--back-color-00);
}

.ace-ttl-06 .ttl-sub {
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
}

.ace-ttl-07 .ttl-inner {
    width: 100%;
}

.ace-ttl-07 .ttl-main {
    padding: 0 10px 10px;
    font-size: 25px;
    border-bottom: 1px solid;
}

.ace-ttl-08 .ttl-main {
    font-weight: bold;
    font-size: 50px;
    line-height: 1;
    line-height: 1.2;
    letter-spacing: 2px;
}

.ace-ttl-08 .ttl-sub {
    font-size: 16px;
}

.ace-ttl-09 .ttl-main {
    font-weight: bold;
    font-size: 25px;
    line-height: 1;
    letter-spacing: 2px;
}

.ace-ttl-09 .ttl-sub {
    margin-bottom: 10px;
    font-size: 18px;
}

.ace-ttl-10 .ttl-main {
    font-size: 30px;
    position: relative;
    z-index: 0;
}

.ace-ttl-10 .ttl-main .border {
    width: 100%;
    border-bottom: 4px solid;
    position: absolute;
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.ace-ttl-10 .ttl-sub {
    margin-bottom: 10px;
    font-size: 18px;
}

@media (max-width: 1024px) {
    .ace-ttl-01 .ttl-main {
        font-size: 30px;
    }

    .ace-ttl-03 .ttl-main {
        font-size: 60px;
    }

    .ace-ttl-04 .ttl-main {
        font-size: 32px;
    }

    .ace-ttl-07 .ttl-main {
        font-size: 20px;
    }

    .ace-ttl-08 .ttl-main {
        font-size: 40px;
    }
}

@media (max-width: 599px) {
    .ace-ttl-01 .ttl-main {
        font-size: 26px;
    }

    .ace-ttl-01 .ttl-sub {
        font-size: 16px;
    }

    .ace-ttl-02 .ttl-main {
        font-size: 18px;
    }

    .ace-ttl-02 .ttl-main .em {
        font-size: 120%;
    }

    .ace-ttl-03 .ttl-main {
        font-size: 40px;
    }

    .ace-ttl-04 .ttl-main {
        font-size: 22px;
    }

    .ace-ttl-05 .ttl-main {
        font-size: 20px;
    }

    .ace-ttl-06 {
        padding: 0 10px;
    }

    .ace-ttl-06 .ttl-main {
        font-size: 20px;
    }

    .ace-ttl-06 .ttl-sub {
        font-size: 14px;
    }

    .ace-ttl-07 .ttl-main {
        padding: 0 0 10px;
        font-size: 17px;
    }

    .ace-ttl-08 .ttl-main {
        font-size: 30px;
    }

    .ace-ttl-09 .ttl-main {
        font-size: 20px;
    }

    .ace-ttl-09 .ttl-sub {
        font-size: 14px;
    }

    .ace-ttl-10 .ttl-main {
        font-size: 18px;
    }
}

/*見出し上書き用*/
.ttl-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.ttl-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.ttl-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .ttl-left\@tb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .ttl-right\@tb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .ttl-center\@tb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 599px) {
    .ttl-left\@sp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .ttl-right\@sp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .ttl-center\@sp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

[class*="ttl-mb-"] {
    --ttl-mb-xlarge: 100px;
    --ttl-mb-large: 80px;
    --ttl-mb-medium: 60px;
    --ttl-mb-small: 40px;
    --ttl-mb-xsmall: 20px;
}

.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);
    }
}

@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-color-00 {
    color: var(--ttl-color-00);
}

.ttl-color-01 {
    color: var(--ttl-color-01);
}

.ttl-color-02 {
    color: var(--ttl-color-02);
}

.ttl-color-03 {
    color: var(--ttl-color-03);
}

.ttl-color-04 {
    color: var(--ttl-color-04);
}

.ttl-color-05 {
    color: var(--ttl-color-05);
}

.ttl-color-06 {
    color: var(--ttl-color-06);
}

.ttl-color-07 {
    color: var(--ttl-color-07);
}

.ttl-color-08 {
    color: var(--ttl-color-08);
}

.ttl-color-09 {
    color: var(--ttl-color-09);
}

.ttl-color-10 {
    color: var(--ttl-color-10);
}

.ttl-color-11 {
    color: var(--ttl-color-11);
}

.ttl-color-12 {
    color: var(--ttl-color-12);
}

/*記事用見出し*/
.ace-detail-01 h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 5px 20px;
    font-size: 26px;
    text-align: center;
    text-align: left;
    background: var(--back-color-06);
}

.ace-detail-01 h3 {
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 5px 50px 10px 10px;
    font-size: 20px;
    border-bottom: 1px solid;
}

.ace-detail-01 h4 {
    margin-top: 40px;
    margin-bottom: 10px;
    padding-left: 10px;
    font-size: 20px;
    color: var(--txt-color-10);
    border-left: 3px solid;
}

@media (max-width: 599px) {
    .ace-detail-01 h2 {
        margin-top: 30px;
        padding: 5px 10px;
        font-size: 22px;
    }

    .ace-detail-01 h3 {
        margin-top: 30px;
        margin-bottom: 20px;
        padding: 5px 40px 5px 5px;
        font-size: 18px;
    }

    .ace-detail-01 h4 {
        margin-top: 30px;
        font-size: 18px;
    }
}

/*========== ボタン ==========*/
[class*="ace-btn-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
}

.ace-btn-01 .btn-inner>* {
    width: 150px;
    max-width: 100%;
    height: 100%;
    display: block;
    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;
    font-size: 18px;
    color: var(--txt-color-00);
    text-align: center;
}

.ace-btn-02 .btn-inner>* {
    width: 300px;
    max-width: 100%;
    display: block;
    padding: 25px 10px;
    font-size: 23px;
    color: var(--txt-color-00);
    text-align: center;
}

.ace-btn-02 .btn-inner>*:hover {
    border-radius: 20px;
    opacity: 1;
}

.ace-btn-03 .btn-inner>* {
    width: 220px;
    max-width: 100%;
    display: block;
    padding: 15px 10px;
    font-size: 18px;
    color: var(--txt-color-00);
    text-align: center;
}

.ace-btn-03 .btn-inner>*:hover {
    border-radius: 20px;
    opacity: 1;
}

@media (max-width: 1024px) {
    .ace-btn-02 .btn-inner>* {
        width: 260px;
        padding: 20px 10px;
        font-size: 20px;
    }
}

@media (max-width: 599px) {
    .ace-btn-01 .btn-inner>* {
        width: 120px;
        font-size: 16px;
    }

    .ace-btn-02 .btn-inner>* {
        width: 220px;
        padding: 15px 10px;
        font-size: 18px;
    }

    .ace-btn-03 .btn-inner>* {
        width: 170px;
    }
}

/*ボタン上書き用*/
.btn-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.btn-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.btn-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-mt-xlarge {
    margin-top: 50px;
}

.btn-mt-large {
    margin-top: 40px;
}

.btn-mt-medium {
    margin-top: 30px;
}

.btn-mt-small {
    margin-top: 20px;
}

.btn-mt-xsmall {
    margin-top: 10px;
}

.btn-mt-none {
    margin-top: 0;
}

@media (max-width: 1024px) {
    .btn-left\@tb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .btn-right\@tb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .btn-center\@tb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .btn-mt-xlarge\@tb {
        margin-top: 50px;
    }

    .btn-mt-large\@tb {
        margin-top: 40px;
    }

    .btn-mt-medium\@tb {
        margin-top: 30px;
    }

    .btn-mt-small\@tb {
        margin-top: 20px;
    }

    .btn-mt-xsmall\@tb {
        margin-top: 10px;
    }

    .btn-mt-none\@tb {
        margin-top: 0;
    }
}

@media (max-width: 599px) {
    .btn-left\@sp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .btn-right\@sp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .btn-center\@sp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .btn-mt-xlarge\@sp {
        margin-top: 50px;
    }

    .btn-mt-large\@sp {
        margin-top: 40px;
    }

    .btn-mt-medium\@sp {
        margin-top: 30px;
    }

    .btn-mt-small\@sp {
        margin-top: 20px;
    }

    .btn-mt-xsmall\@sp {
        margin-top: 10px;
    }

    .btn-mt-none\@sp {
        margin-top: 0;
    }
}

/*ボタン背景色*/
.btn-color-00 .btn-inner>* {
    background: var(--btn-color-00);
}

.btn-color-01 .btn-inner>* {
    background: var(--btn-color-01);
}

.btn-color-02 .btn-inner>* {
    background: var(--btn-color-02);
}

.btn-color-03 .btn-inner>* {
    background: var(--btn-color-03);
}

.btn-color-04 .btn-inner>* {
    background: var(--btn-color-04);
}

.btn-color-05 .btn-inner>* {
    background: var(--btn-color-05);
}

.btn-color-06 .btn-inner>* {
    background: var(--btn-color-06);
}

.btn-color-07 .btn-inner>* {
    background: var(--btn-color-07);
}

.btn-color-08 .btn-inner>* {
    background: var(--btn-color-08);
}

.btn-color-09 .btn-inner>* {
    background: var(--btn-color-09);
}

.btn-color-10 .btn-inner>* {
    background: var(--btn-color-10);
}

.btn-color-11 .btn-inner>* {
    background: var(--btn-color-11);
}

.btn-color-12 .btn-inner>* {
    background: var(--txt-color-12);
}

/*========== メインビジュアル ==========*/
/* TOP */
/* メインビジュアル */
.ace-mainimg-01 {
    padding: 5% 0 3%;
    position: relative;
}

.ace-mainimg-01 .pic {
    margin-right: 200px;
    border-radius: 30px;
}

.ace-mainimg-01 .uk-slidenav-position {
    overflow: hidden;
    position: relative;
}

.ace-mainimg-01 .uk-slidenav-position:after {
    content: "";
    display: block;
    padding-top: 60%;
}

.ace-mainimg-01 .uk-slideshow {
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
}

.ace-mainimg-01 .uk-slideshow li {
    height: 100% !important;
    overflow: hidden;
    border-radius: 30px;
}

[data-element-id] .uk-slideshow li {
    opacity: 1;
}

.ace-mainimg-01 .uk-slideshow .uk-flex {
    height: 100%;
}

.ace-mainimg-01 .uk-slideshow img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    /*IE対策*/
    font-family: "object-fit: cover; object-position: 50% 50%;";
}

.ace-mainimg-01 .catch {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 150px;
    z-index: 1;
}

.ace-mainimg-01 .catch .txt {
    font-size: 26px;
    letter-spacing: -2px;
    text-align: center;
}

.ace-mainimg-01 .catch .em {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-style: italic;
    letter-spacing: 1px;
}

.ace-mainimg-01 .catch .fead-text .str.mv {
    color: transparent;
    -webkit-animation: blur 10s ease-out infinite;
    animation: blur 10s ease-out infinite;
}

@-webkit-keyframes blur {
    0% {
        text-shadow: 0 0 100px var(--txt-color-01);
        opacity: 0;
    }

    5% {
        text-shadow: 0 0 90px var(--txt-color-01);
    }

    15% {
        opacity: 1;
    }

    20% {
        text-shadow: 0 0 0px var(--txt-color-01);
    }

    80% {
        text-shadow: 0 0 0px var(--txt-color-01);
    }

    85% {
        opacity: 1;
    }

    95% {
        text-shadow: 0 0 90px var(--txt-color-01);
    }

    100% {
        text-shadow: 0 0 100px var(--txt-color-01);
        opacity: 0;
    }
}

@keyframes blur {
    0% {
        text-shadow: 0 0 100px var(--txt-color-01);
        opacity: 0;
    }

    5% {
        text-shadow: 0 0 90px var(--txt-color-01);
    }

    15% {
        opacity: 1;
    }

    20% {
        text-shadow: 0 0 0px var(--txt-color-01);
    }

    80% {
        text-shadow: 0 0 0px var(--txt-color-01);
    }

    85% {
        opacity: 1;
    }

    95% {
        text-shadow: 0 0 90px var(--txt-color-01);
    }

    100% {
        text-shadow: 0 0 100px var(--txt-color-01);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .ace-mainimg-01 .pic {
        width: 80%;
        margin-left: 3%;
        margin-right: auto;
    }

    .ace-mainimg-01 .catch {
        right: 30px;
    }

    .ace-mainimg-01 .catch .txt {
        text-shadow: 0 0 6px #fff, 0 0 6px #fff, 0 0 6px #fff, 0 0 6px #fff;
    }
}

@media (max-width: 599px) {
    .ace-mainimg-01 .pic {
        width: 94%;
        margin-left: 3%;
        margin-right: 3%;
    }

    .ace-mainimg-01 .uk-slidenav-position:after {
        padding-top: 80%;
    }

    .uk-slideshow li div {
        height: 100%;
    }

    .ace-mainimg-01 .catch .txt {
        font-size: 22px;
    }
}

/*下層メインビジュアル*/
.ace-lowerimg-01 {
    position: relative;
    z-index: 0;
}

.ace-lowerimg-01 .pic {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.ace-lowerimg-01 .pic:before {
    content: "";
    display: block;
    padding-top: 35%;
}

.ace-lowerimg-01 img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    border-radius: 30px 0 30px 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.ace-lowerimg-01 .catch {
    padding: 20px 40px;
    font-size: 16px;
    color: var(--txt-color-00);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    border-radius: 10px;
    background: rgba(168, 53, 44, 0.7);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
}

.ace-lowerimg-01 .catch .em {
    display: block;
    margin-bottom: 20px;
    font-size: 40px;
}

@media (max-width: 1024px) {
    .ace-lowerimg-01 .pic {
        width: 95%;
    }

    .ace-lowerimg-01 .catch {
        padding: 15px 30px;
    }

    .ace-lowerimg-01 .catch .em {
        font-size: 32px;
    }
}

@media (max-width: 599px) {
    .ace-lowerimg-01 .pic:before {
        padding-top: 45%;
    }

    .ace-lowerimg-01 .catch {
        font-size: 14px;
    }

    .ace-lowerimg-01 .catch .em {
        margin-bottom: 10px;
        font-size: 20px;
    }
}

/*========== ヘッダー ==========*/
.ace-h1-01 {
    width: calc(100% - 270px);
    font-size: 14px;
    position: absolute;
    top: 5px;
    left: 30px;
    z-index: 1;
}

[data-element-id] .ace-h1-01 {
    position: relative;
}

.ace-header-sns-01 ul {
    height: 100%;
}

.ace-header-sns-01 li a {
    font-size: 30px;
}

.ace-header-sns-02 .item+.item {
    margin-left: 20px;
}

.ace-header-sns-02 .item a {
    font-size: 30px;
}

.ace-header-01.fixed {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.ace-header-01 .logo {
    margin-top: 30px;
    margin-left: 30px;
    position: relative;
    z-index: 1;
}

.ace-header-01 .logo img {
    max-width: 180px;
}

@media (max-width: 1024px) {
    .ace-h1-01 {
        width: calc(100% - 80px);
        position: relative;
        left: 5px;
    }

    .ace-header-01 .logo {
        margin-top: 5px;
        margin-left: 10px;
    }

    .ace-header-01 .logo img {
        max-width: 160px;
    }
}

@media (max-width: 599px) {
    .ace-h1-01 {
        font-size: 12px;
    }

    .ace-header-01 .logo img {
        max-width: 100px;
    }
}

/*ハンバーガーボタン*/
.toggle,
.toggle-element {
    width: 80px;
    height: 90px;
}

.toggle {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 0;
    z-index: 9998;
}

.toggle .bar {
    width: 38px;
    height: 2px;
    margin-top: -1px;
    padding: 0;
    text-indent: 9998px;
    border-bottom: 2px solid;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    position: absolute;
    top: 50%;
    left: 23px;
}

.toggle.active .bar {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.toggle .bar:before,
.toggle .bar:after {
    content: "";
    width: 38px;
    display: block;
    border-bottom: 2px solid;
    position: absolute;
    left: 0;
}

.toggle .bar:before {
    top: 12px;
}

.toggle .bar:after {
    top: -12px;
}

.toggle.active .bar:before,
.toggle.active .bar:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
    left: 0;
}

@media (max-width: 1024px) {
    .toggle,
    .toggle-element {
        width: 70px;
        height: 80px;
    }
  
    .toggle {
        position: fixed;
        top: 0;
        right: 0;
    }

    .toggle .bar {
        left: 16px;
    }
}

@media (max-width: 599px) {
    .toggle,
    .toggle-element {
        width: 60px;
        height: 60px;
    }

    .toggle .bar {
        left: 11px;
    }
}

/*ace-gnav-01*/
.ace-gnav-01 {
    border-top: 1px solid;
    border-bottom: 1px solid;
    position: relative;
    z-index: 1;
}

.ace-gnav-01 .dropdown::after {
    content: "";
    width: 160px;
    height: 10px;
    border: 0;
    cursor: pointer;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    pointer-events: auto;
    position: absolute;
    top: 100%;
    left: 50%;
    right: 50%;
    z-index: 2;
}

.ace-gnav-01 .dropdown {
    display: block;
    overflow: hidden;
    text-align: center;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    position: relative;
}

.ace-gnav-01 .dropdown:hover {
    cursor: pointer;
}

.ace-gnav-01 .dropdown ul {
    width: 150px;
    height: auto;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    right: auto;
    z-index: 2;
}



[data-element-id] .ace-gnav-01 .dropdown {
    overflow: visible;
    position: relative;
}

.ace-gnav-01 .dropdown:hover {
    overflow: visible;
}

[data-element-id] .ace-gnav-01 .dropdown ul {
    opacity: 1;
    -webkit-transform: inherit;
    transform: inherit;
    position: relative;
    left: 0;
}

.ace-gnav-01 .dropdown:hover ul {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

[data-element-id] .ace-gnav-01 .dropdown:hover ul {
    -webkit-transform: inherit;
    transform: inherit;
}

.ace-gnav-01 .dropdown li+li {
    margin-top: 1px;
}

.ace-gnav-01 .dropdown li a {
    display: block;
    padding: 5px 0 3px;
    font-size: 14px;
    color: #fff;
    background: var(--btn-color-02);
    ;
}

.ace-gnav-02 {
    width: 60%;
    height: 100%;
    overflow-y: scroll;
    padding: 50px 0;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9997;
}

[data-element-id] .ace-gnav-02 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    position: relative;
}

.ace-gnav-02.active {
    -webkit-box-shadow: -2px 0px 15px -5px #000;
    box-shadow: -2px 0px 25px -5px #a7a7a7;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.ace-gnav-02 .box {
    width: calc(100% - 80px);
    margin: 0;
}

.ace-gnav-02 .info .tit {
    margin-bottom: 20px;
    font-size: 20px;
}

.ace-gnav-02 .info .address {
    margin-bottom: 10px;
    font-size: 14px;
}

.ace-gnav-02 ul {
    margin-top: 20px;
}

.ace-gnav-02 li a {
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid var(--txt-color-04);
}

body.hidden {
    overflow: hidden;
}

body.hidden .ace-h1-01,
body.hidden .ace-header-01 .logo,
body.hidden .ace-gnav-01,
body.hidden .main,
body.hidden .footer {
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

.overlay {
    display: none;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 6;

    -ms-touch-action: none;
    touch-action: none;
}

.overlay.active {
    display: block;
}

@media (max-width: 1024px) {
    .ace-gnav-02 {
        width: 90%;
    }
}

@media (max-width: 599px) {
    .ace-gnav-02 .box {
        width: calc(100% - 60px);
    }

    .ace-gnav-02 .info .tit {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .ace-gnav-02 .info .address {
        font-size: 12px;
    }
}

/*固定ボタン*/
@media (max-width: 1024px) {
    .ace-fixed-01 {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background: var(--back-color-00);
        -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 9;
    }

    .ace-fixed-01>*:nth-of-type(1) {
        width: calc(100% - 150px);
    }

    .ace-fixed-01>*:nth-of-type(2) {
        width: 150px;
        height: auto;
    }

    .ace-fixed-01 ul {
        padding: 20px 20px;
    }

    .ace-fixed-01 li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
    }

    .ace-fixed-01 li+li {
        margin-top: 10px;
    }

    .ace-fixed-01 li .tit {
        margin-right: 10px;
    }

    .ace-fixed-01 li .tel {
        font-size: 20px;
    }
}

@media (max-width: 599px) {
    .ace-fixed-01>*:nth-of-type(1) {
        width: calc(100% - 120px);
    }

    .ace-fixed-01>*:nth-of-type(2) {
        width: 120px;
    }

    .ace-fixed-01 ul {
        padding: 5px 10px;
    }

    .ace-fixed-01 li+li {
        margin-top: 5px;
    }

    .ace-fixed-01 li .tit {
        font-size: 14px;
    }

    .ace-fixed-01 li .tel {
        font-size: 16px;
    }
}

/*========== フッター ==========*/
/*ace-footer-01*/
.ace-footer-01 .accessbox .logo img {
    width: 319px;
    max-width: 90%;
}

.ace-footer-01 .accessbox .tel a {
    font-size: 24px;
}

.ace-footer-01 .accessbox .tel a:before {
    content: "";
    width: 15px;
    height: 22px;
    display: inline-block;
    margin-right: 5px;
    background-image: url(#);
}

.ace-footer-01 .navbox .item:nth-of-type(1) {
    width: 50%;
}

.ace-footer-01 .navbox .item:nth-of-type(2),
.ace-footer-01 .navbox .item:nth-of-type(3) {
    width: 25%;
}

.ace-footer-01 .navbox .tit {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    border-bottom: 1px solid;
}

.ace-footer-01 .navbox li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    font-size: 14px;
}

.ace-footer-01 .navbox li a:before {
    content: "";
    width: 5px;
    height: 5px;
    display: inline-block;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--back-color-04);
}

.ace-footer-01 .infobox .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
}

.ace-footer-01 .infobox .item+.item {
    margin-top: 10px;
}

.ace-footer-01 .infobox .tit {
    width: 80px;
    margin-right: 10px;
    padding: 3px 5px;
    font-size: 14px;
    text-align: center;
    border: 1px solid;
    border-radius: 5px;
}

.ace-footer-01 .infobox .txt {
    font-size: 14px;
}

.ace-footer-01 .infobox .link-txt {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid;
}

@media (max-width: 1024px) {
    .ace-footer-01 .accessbox .logo {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .ace-footer-01 .accessbox .logo img {
        width: 250px;
    }

    .ace-footer-01 .accessbox .tel {
        margin-right: 20px;
    }

    .ace-footer-01 .navbox .item:nth-of-type(1) {
        width: 100%;
        margin-bottom: 20px;
    }

    .ace-footer-01 .navbox .item:nth-of-type(2),
    .ace-footer-01 .navbox .item:nth-of-type(3) {
        width: 50%;
    }

    .ace-footer-01 .infobox .txt {
        width: 100%;
        margin-top: 10px;
    }
}

/*コピーライト*/
.ace-copy-01 {
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .ace-copy-01 {
        padding: 30px 0 140px;
    }
}

@media (max-width: 599px) {
    .ace-copy-01 {
        padding: 20px 0 80px;
        font-size: 12px;
    }
}

/*パンクズ*/
.ace-pankuzu-01 li {
    display: inline;
}

.ace-pankuzu-01 li:first-of-type a:after {
    content: "\f015";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
}

.ace-pankuzu-01 li+li:before {
    content: "\f054";
    margin: 0 5px 0 7px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
}

@media (max-width: 599px) {
    .ace-pankuzu-01 li {
        font-size: 14px;
    }

    .ace-pankuzu-01 li:first-of-type a:after {
        font-size: 14px;
    }
}

/*背景装飾*/
.ace-deco-01 {
    width: 30%;
    height: 60%;
    border-radius: 0 30px 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.ace-deco-02 {
    width: 25%;
    height: 40%;
    border-radius: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.ace-deco-03,
.ace-deco-04,
.ace-deco-07,
.ace-deco-12,
.ace-deco-13,
.ace-deco-14 {
    opacity: 0.5;
    position: absolute;
    z-index: 0;
}

.ace-deco-03 {
    top: -50px;
    right: -10px;
}

.ace-deco-04 {
    top: -150px;
    left: -10px;
}

.ace-deco-05 {
    width: 70%;
    height: 45%;
    border-radius: 0 30px 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.ace-deco-06 {
    width: 70%;
    height: 45%;
    border-radius: 30px 0 0 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.ace-deco-07 {
    bottom: -120px;
    right: -110px;
}

.ace-deco-08 {
    width: 100%;
    height: 60%;
    border-radius: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ace-deco-09 {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 0;
}

.ace-deco-10 {
    width: 200%;
    height: 250px;
    border-radius: 0 30px 30px 0;
    position: absolute;
    top: 0;
    right: 0;
}

.ace-deco-11 {
    width: 200%;
    height: 250px;
    border-radius: 30px 0 0 30px;
    position: absolute;
    top: 0;
    left: 0;
}

.ace-deco-12 {
    top: -20px;
    left: -70px;
    z-index: 1;
}

.ace-deco-13 {
    top: -200px;
    right: -80px;
}

.ace-deco-14 {
    top: -100px;
    left: -100px;
}

.ace-deco-15 {
    width: 100vw;
    height: 70%;
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: -12;
}

.ace-deco-16 {
    width: 200%;
    height: 100%;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 0;
}

@media (max-width: 1024px) {
    .ace-deco-03,
    .ace-deco-04,
    .ace-deco-07,
    .ace-deco-12,
    .ace-deco-13,
    .ace-deco-14 {
        width: 250px;
    }
}

@media (max-width: 599px) {
    .up-order-1\@sp {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 1;
        order: 1;
    }

    .up-d-contents\@sp {
        display: contents;
    }

    .ace-deco-09 {
        display: none;
    }

    .ace-deco-01 {
        width: 40%;
    }

    .ace-deco-02 {
        width: 40%;
    }
}

/*背景有画像*/
.ace-imgdeco-01 .pic {
    position: relative;
    z-index: 0;
}

.ace-imgdeco-01 .pic:after {
    content: "";
    width: calc(100% + 10px);
    height: 100%;
    border-radius: 80px 0 0 0;
    background: var(--back-color-09);
    position: absolute;
    bottom: -10px;
    left: -10px;
    z-index: -1;
}

.ace-imgdeco-01 img {
    border-radius: 80px 0 0 0;
}

.ace-imgdeco-02 .pic {
    position: relative;
    z-index: 0;
}

.ace-imgdeco-02 .pic:after {
    content: "";
    width: calc(100% + 10px);
    height: 100%;
    border-radius: 80px 0 0 0;
    background: var(--back-color-09);
    position: absolute;
    bottom: -10px;
    left: -10px;
    z-index: -1;
}

.ace-imgdeco-02 img {
    border-radius: 80px 0 0 0;
}

/*form*/
.form select,
.form input,
.form textarea {
    width: 100%;
}

/*カテゴリー*/
.ace-cate-01 .box {
    padding: 40px 50px 0;
    border-radius: 30px;
}

.ace-cate-01 .item {
    padding: 30px;
    border-radius: 10px;
}

.ace-cate-01 .tit {
    padding: 0 30px;
    font-size: 26px;
    text-align: center;
    position: relative;
}

.ace-cate-01 .tit:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    top: 10px;
    right: 10px;
}

.ace-cate-01 .tit.is-parent:after {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.ace-cate-01 ul {
    margin-top: 10px;
}

.ace-cate-01 li {
    padding: 20px 10px;
    border-bottom: 1px solid var(--txt-color-05);
}

.ace-cate-01 li:last-of-type {
    border-bottom: none;
}

.ace-cate-01 li a {
    display: block;
}

@media (max-width: 1024px) {
    .ace-cate-01 .box {
        padding: 30px 30px 0;
    }

    .ace-cate-01 .item {
        padding: 20px 10px 20px;
    }

    .ace-cate-01 .tit {
        font-size: 20px;
    }

    .ace-cate-01 .tit:after {
        top: 3px;
    }
}

@media (max-width: 599px) {
    .ace-cate-01 li {
        padding: 15px 10px;
    }
}

.ace-cate-02 li a {
    display: block;
    padding: 20px;
    font-size: 18px;
    text-align: center;
    border-radius: 30px;
    background: var(--back-color-06);
}

.ace-cate-02 li:nth-of-type(2) a {
    background: var(--back-color-05);
}

.ace-cate-02 li a:hover {
    border-radius: 0;
    opacity: 1;
}

@media (max-width: 1024px) {
    .ace-cate-02 li a {
        padding: 15px;
    }
}

.ace-cate-03 .tit {
    margin-bottom: -20px;
    padding: 0 50px;
    font-size: 30px;
    position: relative;
    z-index: 1;
}

.ace-cate-03 .box {
    padding: 40px 50px 10px;
    border-radius: 30px;
}

.ace-cate-03 li a {
    display: block;
    position: relative;
}

.ace-cate-03 li a:before {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-animation-name: fadeInAnime;
    animation-name: fadeInAnime;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    position: absolute;
    bottom: 40px;
    left: 50%;
    z-index: 2;
}

.ace-cate-03 li a:after {
    content: "";
    display: block;
    padding-top: 100%;
}

.ace-cate-03 li a .txt {
    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: 18px;
    text-align: center;
    border-radius: 50%;
    background: var(--back-color-00);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.ace-cate-03 li a:hover .txt {
    border-radius: 0;
    opacity: 1;
}

@-webkit-keyframes fadeInAnime {
    0% {
        -webkit-transform: translate(-50%, -5px);
        transform: translate(-50%, -5px);
    }

    50% {
        -webkit-transform: translate(-50%, 5px);
        transform: translate(-50%, 5px);
    }

    100% {
        -webkit-transform: translate(-50%, -5px);
        transform: translate(-50%, -5px);
    }
}

@keyframes fadeInAnime {
    0% {
        -webkit-transform: translate(-50%, -5px);
        transform: translate(-50%, -5px);
    }

    50% {
        -webkit-transform: translate(-50%, 5px);
        transform: translate(-50%, 5px);
    }

    100% {
        -webkit-transform: translate(-50%, -5px);
        transform: translate(-50%, -5px);
    }
}

@media (max-width: 1024px) {
    .ace-cate-03 .box {
        padding: 60px 80px 10px;
    }
}

@media (max-width: 599px) {
    .ace-cate-03 .box {
        padding: 20px 20px 0;
        border-radius: 20px;
    }

    .ace-cate-03 li a:before {
        bottom: 5px;
    }

    .ace-cate-03 li a .txt {
        font-size: 14px;
    }

    .ace-cate-03 .tit {
        margin-bottom: -15px;
        padding: 0 20px;
        font-size: 22px;
    }
}

/*ページャー*/
.ace-pager-01 li+li {
    margin-left: 30px;
}

.ace-pager-01 li a {
    width: 40px;
    height: 40px;
    display: block;
    color: var(--txt-color-00);
    line-height: 40px;
    text-align: center;
    border: 1px solid;
    border-radius: 10px 0 10px 0;
    background: var(--back-color-11);
}

.ace-pager-01 li a:hover {
    border-radius: 0;
}

.ace-pager-01 li.now a {
    color: var(--txt-color-11);
    background: none;
}

.ace-pager-01 li.prev a:after {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.ace-pager-01 li.next a:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

@media (max-width: 599px) {
    .ace-cate-01 .box {
        padding: 20px 20px 0;
        border-radius: 20px;
    }

    .ace-pager-01 li+li {
        margin-left: 20px;
    }
}

/*========== コンテンツ ==========*/
/*ace-message*/
.ace-message-01 .box {
    margin-left: 150px;
    margin-right: 150px;
}

.ace-message-01 .pic {
    position: relative;
    z-index: 0;
}

.ace-message-01 .pic img {
    border-radius: 30px;
}

.ace-message-01 .name {
    width: 60%;
    padding: 30px 10px;
    text-align: center;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: -100px;
    z-index: 1;
}

.ace-message-01 .name .em {
    display: block;
    margin-top: 10px;
    font-size: 24px;
    ;
}

.ace-message-01 .txtbox .txt {
    line-height: 1.8;
}

.ace-message-01 .txtbox .txt .em {
    margin-bottom: 5px;
    font-size: 24px;
}

@media (max-width: 1024px) {
    .ace-message-01 .box {
        margin: 0;
    }

    .ace-message-01 .name {
        width: 80%;
        margin: -30px auto 0;
        padding: 10px 10px;
        font-size: 14px;
        -webkit-transform: translateX(-50%);
        transform: inherit;
        position: relative;
        top: auto;
        bottom: 0;
        left: 0;
    }

    .ace-message-01 .name .em {
        margin-top: 5px;
        font-size: 20px;
    }
}

/*ace-feature*/
.ace-feature-01 li .item {
    height: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 3px 2px 1px #bfbfbf;
    box-shadow: 3px 2px 1px #bfbfbf;
}

.ace-feature-01 li .icon {
    width: 100px;
    height: 100px;
    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: 0 auto 20px;
    padding: 15px;
    border-radius: 50%;
}

.ace-feature-01 li .icon img {
    width: auto;
    max-width: 100%;
    height: initial !important;
    max-height: 100%;
}

.ace-feature-01 li .tit {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

.ace-feature-01 li .yen {
    font-weight: 600;
    font-size: 18px;
}

.ace-feature-01 li .yen .em {
    display: inline-block;
    font-size: 40px;
    line-height: 1;
}

.ace-feature-01 li .txtbox {
    text-align: center;
}

.ace-feature-01 li .txtbox .txt {
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 599px) {
    .ace-feature-01 li .item {
        padding: 10px;
    }

    .ace-feature-01 li .icon {
        width: 70px;
        height: 70px;
    }

    .ace-feature-01 li .tit {
        font-size: 17px;
    }

    .ace-feature-01 li .yen .em {
        font-size: 30px;
    }
}

/*ace-voice*/
.ace-voice-01 ul {
    width: calc(100% - 200px);
    margin: 0 auto;
}

[data-element-id] .ace-voice-01 ul>* {
    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;
}

.ace-voice-01 li {
    margin: 0 10px;
}

[data-element-id] .ace-voice-01 li {
    width: 30%;
}

[data-element-id] .ace-voice-01 li:nth-of-type(n + 4) {
    display: none;
}

.ace-voice-01 li a {
    height: 100%;
    display: block;
    padding: 20px 20px 30px;
    border-radius: 20px;
    background: var(--back-color-00);
    -webkit-box-shadow: 3px 2px 1px #bfbfbf;
    box-shadow: 3px 2px 1px #bfbfbf;
}

.ace-voice-01 li a:hover {
    opacity: 1;
}

.ace-voice-01 li .pic {
    overflow: hidden;
}

.ace-voice-01 li:before,
.ace-voice-01 li:after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
}

.ace-voice-01 li .txtbox {
    margin-top: 10px;
}

.ace-voice-01 li .career {
    margin-bottom: 5px;
}

.ace-voice-01 li .tit {
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
}

.ace-voice-01 .slick-arrow {
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: var(--txt-color-00);
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: var(--back-color-08);
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
}

.ace-voice-01 .btn-back {
    right: calc(100% + 20px);
}

.ace-voice-01 .btn-back:after {
    content: "＜";
}

.ace-voice-01 .btn-next {
    left: calc(100% + 20px);
}

.ace-voice-01 .btn-next:after {
    content: "＞";
}

.ace-voice-01 .slick-dots {
    width: 100%;
    bottom: -40px;
}

.ace-voice-01 .slick-dots li {
    margin: 0 5px;
}

.ace-voice-01 .slick-dots li button:before {
    font-size: 14px;
    color: var(--txt-color-00);
    opacity: 0.8;
}

.ace-voice-01 .slick-dots li.slick-active button:before {
    color: var(--txt-color-08);
}

.ace-voice-01 .slick-dotted.slick-slider {
    margin-bottom: 80px;
}

@media (max-width: 599px) {
    .ace-voice-01 ul {
        width: calc(100% - 80px);
    }

    .ace-voice-01 .btn-back {
        right: calc(100% + 0px);
    }

    .ace-voice-01 .btn-next {
        left: calc(100% + 0px);
    }
}

.ace-voice-02 ul {
    margin-bottom: 50px;
}

.ace-voice-02 li+li {
    margin-top: 150px;
}

.ace-voice-02 .left {
    width: 60%;
}

.ace-voice-02 .right {
    width: 50%;
    margin-bottom: -50px;
    margin-left: -10%;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    position: relative;
    z-index: 1;
}

.ace-voice-02 .right:hover {
    border-radius: 20px;
}

.ace-voice-02 a {
    display: block;
    padding: 40px 30px 10px;
}

.ace-voice-02 a:hover {
    opacity: 1;
}

.ace-voice-02 .tit {
    margin-bottom: 20px;
    font-size: 24px;
}

.ace-voice-02 .num {
    font-size: 14px;
}

.ace-voice-02 .name {
    font-weight: bold;
    font-size: 18px;
}

.ace-voice-02 .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 20px;
    position: relative;
    z-index: 0;
}

.ace-voice-02 .btn:before {
    content: "";
    width: 10px;
    border-bottom: 1px solid;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%) rotate(35deg);
    -webkit-transform-origin: right;
    transform-origin: right;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1;
}

.ace-voice-02 .btn:after {
    content: "";
    width: 60px;
    margin-left: 10px;
    border-bottom: 1px solid;
}

.ace-voice-02 .list:not(:first-of-type) {
    display: none;
}

@media (max-width: 599px) {
    .ace-voice-02 li+li {
        margin-top: 60px;
    }

    .ace-voice-02 .left {
        width: 90%;
    }

    .ace-voice-02 .right {
        width: 90%;
        margin-top: -20px;
        margin-bottom: 0;
        margin-left: auto;
    }

    .ace-voice-02 a {
        padding: 20px 20px 10px;
    }

    .ace-voice-02 .tit {
        font-size: 20px;
    }

    .ace-voice-02 .name {
        font-size: 16px;
    }

    .ace-voice-02 .btn {
        font-size: 14px;
    }
}

.ace-voice-03 .left {
    width: 400px;
    margin-right: 50px;
}

.ace-voice-03 .right {
    width: calc(100% - 450px);
}

.ace-voice-03 .namebox .pic img {
    border-radius: 10px;
}

.ace-voice-03 .namebox .txtbox {
    margin-top: 20px;
}

.ace-voice-03 .namebox .num {
    font-size: 14px;
}

.ace-voice-03 .namebox .name {
    font-weight: bold;
    font-size: 18px;
}

.ace-voice-03 .list li {
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--txt-color-04);
}

.ace-voice-03 .list li+li {
    margin-top: 50px;
}

.ace-voice-03 .list .tit {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 20px;
}

@media (max-width: 1024px) {
    .ace-voice-03 .left {
        width: 60%;
        margin: 0 auto;
    }

    .ace-voice-03 .right {
        width: 100%;
        margin-top: 40px;
    }

    .ace-voice-03 .list li+li {
        margin-top: 30px;
    }
}

@media (max-width: 599px) {
    .ace-voice-03 .left {
        width: 80%;
    }

    .ace-voice-03 .list li+li {
        margin-top: 20px;
    }

    .ace-voice-03 .list .tit {
        margin-bottom: 10px;
        font-size: 17px;
    }

    .ace-voice-03 .list .txt {
        font-size: 14px;
    }
}

.ace-voice-04 a {
    height: 100%;
    display: block;
    padding: 20px 20px 30px;
    border-radius: 20px;
    background: var(--back-color-00);
    -webkit-box-shadow: 3px 2px 1px #bfbfbf;
    box-shadow: 3px 2px 8px #bfbfbf;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.ace-voice-04 a:hover {
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    opacity: 1;
}

.ace-voice-04 .pic {
    overflow: hidden;
}

.ace-voice-04 .pic img {
    border-radius: 10px;
}

.ace-voice-04 .txtbox {
    margin-top: 10px;
}

.ace-voice-04 .career {
    margin-bottom: 5px;
}

.ace-voice-04 li .tit {
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 599px) {
    .ace-voice-04 {
        width: 90%;
        margin: 0 auto;
    }
}

/*ace-list*/
.ace-list-01 li a {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: var(--back-color-00);
    -webkit-box-shadow: 3px 2px 1px #bfbfbf;
    box-shadow: 3px 2px 1px #bfbfbf;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.ace-list-01 li a:hover {
    opacity: 1;
}

.ace-list-01 li .pic {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.ace-list-01 li .pic img {
    -webkit-filter: opacity(0.5);
    filter: opacity(0.5);
}

.ace-list-01 li .tit {
    width: 80%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
}

.ace-list-01 li .tit .em {
    display: block;
    font-size: 26px;
}

.ace-list-01 li .txtbox {
    padding: 10px;
}

.ace-list-01 li .txtbox .txt {
    font-size: 14px;
    color: var(--txt-color-09);
}

.ace-list-02 .txtbox {
    padding: 0 20px 30px;
}

.ace-list-02 .tit {
    margin-bottom: 20px;
    font-size: 22px;
}

.ace-list-02 .address {
    margin-bottom: 20px;
    font-size: 14px;
}

.ace-list-02 .telbox {
    font-size: 22px;
}

.ace-list-02 .tel {
    margin-left: 10px;
}

@media (max-width: 1024px) {
    .ace-list-02 .txtbox {
        padding: 0 0 20px;
    }

    .ace-list-02 .tit {
        font-size: 18px;
    }
}

@media (max-width: 599px) {
    .ace-list-01 li .tit .em {
        font-size: 18px;
    }
}

/*ace-faq*/
.ace-faq-01 .left {
    padding: 30px 50px;
}

.ace-faq-01 .pic {
    border-radius: 30px;
}

.ace-faq-01 .pic img {
    border-radius: 30px;
}

.ace-faq-01 .list li .item>* {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.ace-faq-01 .list li .item>*+* {
    margin-top: 20px;
}

.ace-faq-01 .list li .mark {
    width: 35px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 30px;
    line-height: 1;
}

.ace-faq-01 .list li .txt {
    width: calc(100% - 35px);
    padding-left: 30px;
}

.ace-faq-01 .list li .faq-q .txt {
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 599px) {
    .ace-faq-01 .left {
        padding: 20px 30px;
    }

    .ace-faq-01 .list li .txt {
        padding-left: 10px;
        font-size: 14px;
    }

    .ace-faq-01 .list li .faq-q .txt {
        font-size: 16px;
    }
}

.ace-faq-02 .box {
    padding: 40px 40px;
    border-radius: 30px;
}

.ace-faq-02 .side .pic {
    border-radius: 10px;
}

.ace-faq-02 .side .explanation {
    text-align: center;
}

.ace-faq-02 .list li {
    padding: 20px 10px;
    border-bottom: 1px solid var(--txt-color-00);
}

.ace-faq-02 .list li:first-of-type {
    border-top: 1px solid var(--txt-color-00);
}

[data-element-id] .ace-faq-02 .list li:nth-of-type(n + 6) {
    display: none;
}

.ace-faq-02 .list li .faq {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    position: relative;
}

.ace-faq-02 .list li>*+* {
    margin-top: 15px;
}

.ace-faq-02 .list .faq-q {
    padding-right: 30px;
}

.ace-faq-02 .list .mark {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 30px;
    font-family: var(--txt-font-01);
    font-size: 34px;
    line-height: 1;
}

.ace-faq-02 .list .txt {
    line-height: 1.8;
}

.ace-faq-02 .list .faq-q .txt {
    font-size: 18px;
}

.ace-faq-02 .list .faq-a .mark,
.ace-faq-02 .list .faq-a .txt {
    color: var(--txt-color-02);
}

.ace-faq-02 .list .faq-q:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    top: 10px;
    right: 10px;
}

.ace-faq-02 .list .is-parent .faq-q:after {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.ace-faq-02 .list .list {
    margin-top: 10px;
    padding-left: 20px;
}

.ace-faq-02 .list .list>* {
    padding-left: 1em;
    font-size: 15px;
    text-indent: -1em;
}

.ace-faq-02 .list .list>*:before {
    content: "\f058";
    display: inline-block;
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

@media (max-width: 599px) {
    .ace-faq-02 .box {
        padding: 30px 20px;
    }

    .ace-faq-02 .list li .mark {
        margin-right: 10px;
        font-size: 24px;
    }

    .ace-faq-02 .list li>*+* {
        margin-top: 15px;
    }

    .ace-faq-02 .list .faq-q {
        padding-right: 25px;
    }

    .ace-faq-02 .list .faq-q:after {
        font-size: 14px;
        right: 2px;
    }

    .ace-faq-02 .list .faq-q .txt {
        font-size: 16px;
    }

    .ace-faq-02 .list .faq-a .txt {
        font-size: 15px;
    }
}

/*ace-blog*/
.ace-blog-01 li+li {
    margin-top: 10px;
}

.ace-blog-01 .day {
    margin-bottom: 10px;
    font-size: 14px;
}

.ace-blog-01 .tit {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ace-blog-02 .pic img {
    border-radius: 10px;
}

.ace-blog-02 .txtbox {
    margin-top: 20px;
    padding: 0 5px;
}

.ace-blog-02 .day {
    margin-right: 10px;
    font-size: 14px;
}

.ace-blog-02 .cate>* {
    margin-bottom: 5px;
    margin-right: 5px;
    font-size: 14px;
}

.ace-blog-02 .tit {
    overflow: hidden;
    margin-top: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 599px) {
    .ace-blog-02 .txtbox {
        padding: 0;
    }
}

.ace-blog-03 .tit {
    margin-top: 10px;
    font-size: 26px;
}

.ace-blog-03 li {
    list-style: inside;
}

.ace-blog-03 .titbox {
    padding-bottom: 30px;
    position: relative;
    z-index: 0;
}

.ace-blog-03 .titbox .border {
    width: 100%;
    display: block;
    border-bottom: 1px solid;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.ace-blog-03 .titbox .pic img {
    border-radius: 10px;
}

.ace-blog-03 .titbox .day {
    margin-right: 10px;
    font-size: 14px;
}

.ace-blog-03 .titbox .cate>* {
    margin-bottom: 5px;
    margin-right: 5px;
    font-size: 14px;
}

.ace-blog-03 .txtbox {
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .ace-blog-03 .tit {
        font-size: 22px;
    }
}

@media (max-width: 599px) {
    .ace-blog-03 .titbox {
        padding-bottom: 20px;
    }

    .ace-blog-03 .tit {
        font-size: 20px;
    }

    .ace-blog-03 .txtbox {
        margin-top: 20px;
    }
}


/*ace-news*/
.ace-news-01 li .item {
    padding: 35px 10px;
    border-top: 2px solid var(--txt-color-08);
}

.ace-news-01 li:last-of-type .item {
    border-bottom: 2px solid var(--txt-color-08);
}

.ace-news-01 li .day {
    width: 85px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 14px;
}

.ace-news-01 li .tit {
    width: calc(100% - 85px);
    overflow: hidden;
    padding-left: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .ace-news-01 li .item {
        padding: 25px 10px;
    }
}

.ace-news-02 li .item {
    padding-left: 10px;
    padding-right: 10px;
    border-top: 1px solid var(--back-color-04);
}

.ace-news-02 li+li .item {
    margin-top: 20px;
    padding-top: 20px;
}

.ace-news-02 li:first-of-type .item {
    border-top: none;
}

.ace-news-02 li .day {
    width: 100px;
    margin-right: 20px;
}

.ace-news-02 li .cate {
    width: 100px;
    margin-right: 20px;
}

.ace-news-02 li .cate>* {
    margin-right: 10px;
}

.ace-news-02 li .cate>*+* {
    display: none;
}

.ace-news-02 li .tit {
    width: calc(100% - 240px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .ace-news-02 li .tit {
        width: 100%;
        margin-top: 5px;
    }
}

@media (max-width: 599px) {
    .ace-news-02 li .day {
        font-size: 14px;
    }

    .ace-news-02 li .cate>* {
        font-size: 14px;
    }
}

/*ace-tour*/
.ace-tour-01 .back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.ace-tour-01 .back img {
    -webkit-filter: contrast(0.5);
    filter: contrast(0.5);
}

.ace-tour-01 .left {
    width: 48%;
}

.ace-tour-01 .right {
    width: 48%;
}

.ace-tour-01 .point ul {
    width: 90%;
    margin: 0 auto;
}

.ace-tour-01 .point li .item {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
}

.ace-tour-01 .point li .item:after {
    content: "";
    display: block;
    padding-top: 100%;
}

.ace-tour-01 .point li .item:before {
    content: "";
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.ace-tour-01 .point li .tit {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    text-align: center;
}

.ace-tour-01 .point li .txt {
    width: 100%;
    padding: 0 5px;
    font-size: 16px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
}

.ace-tour-01 .info .box {
    width: 90%;
    margin: 0 auto;
    padding: 20px 30px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.ace-tour-01 .info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
}

.ace-tour-01 .info li+li {
    margin-top: 10px;
}

.ace-tour-01 .info li .icon {
    margin-right: 20px;
}

.ace-tour-01 .info li .tel {
    margin-right: 20px;
}

.ace-tour-01 .info li .tel a {
    font-size: 40px;
    line-height: 1;
}

.ace-tour-01 .flow li+li {
    margin-top: 50px;
}

.ace-tour-01 .flow li .item {
    position: relative;
    z-index: 0;
}

.ace-tour-01 .flow li .arrow {
    content: "";
    width: 0;
    height: 0;
    border-top: 30px solid;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: -40px;
    left: 50%;
}

.ace-tour-01 .flow li .titbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
}

.ace-tour-01 .flow li .num {
    width: 100px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 50px;
}

.ace-tour-01 .flow li .icon {
    padding-right: 10px;
}

.ace-tour-01 .flow li .tit {
    width: calc(100% - 150px);
}

.ace-tour-01 .flow li .txtbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 70px;
    border-radius: 0 0 10px 10px;
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
    .ace-tour-01 .left {
        width: 100%;
    }

    .ace-tour-01 .right {
        width: 100%;
        margin-top: 50px;
    }

    .ace-tour-01 .info .box {
        width: 100%;
    }

    .ace-tour-01 .flow li .num {
        margin-right: 10px;
    }

    .ace-tour-01 .flow li .tit {
        width: calc(100% - 110px);
    }
}

@media (max-width: 599px) {
    .ace-tour-01 .point ul {
        width: 100%;
    }

    .ace-tour-01 .flow li+li {
        margin-top: 40px;
    }

    .ace-tour-01 .flow li .txtbox {
        padding: 20px 10px;
    }

    .ace-tour-01 .flow li .arrow {
        border-top: 20px solid;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        top: -30px;
    }

    .ace-tour-01 .info .box {
        width: 100%;
        padding: 20px 20px;
        font-size: 14px;
    }

    .ace-tour-01 .info li .tel a {
        font-size: 36px;
    }
}

/*ace-contact*/
.ace-contact-01 .box {
    padding: 30px 50px 20px;
    border-radius: 30px;
}

.ace-contact-01 .txtbox .txt {
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
}

.ace-contact-01 .telbox {
    margin-top: 20px;
    font-size: 24px;
    text-align: center;
}

@media (max-width: 599px) {
    .ace-contact-01 .box {
        padding: 20px 20px 20px;
    }

    .ace-contact-01 .txtbox .txt {
        font-size: 16px;
        text-align: left;
    }

    .ace-contact-01 .telbox {
        font-size: 20px;
    }
}

.ace-contact-02 .form dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.ace-contact-02 .form dl+dl {
    margin-top: 20px;
}

.ace-contact-02 .form dt {
    width: 200px;
}

.ace-contact-02 .form dd {
    width: calc(100% - 200px);
    padding-left: 20px;
}

.ace-contact-02 .form input {
    padding: 10px 15px;
    border: 1px solid var(--txt-color-04);
    border-radius: 10px;
}

.ace-contact-02 .form textarea {
    padding: 10px 15px;
    border: 1px solid var(--txt-color-04);
    border-radius: 10px;
}

.ace-contact-02 .form .form_shape li {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 20px;
}

.ace-contact-02 .form .form_shape input {
    display: none;
}

.ace-contact-02 .form .form_shape label {
    padding-left: 35px;
    line-height: 28px;
    position: relative;
    z-index: 0;
}

.ace-contact-02 .form .form_shape label:before {
    content: "";
    width: 28px;
    height: 28px;
    display: inline-block;
    border: 2px solid var(--txt-color-02);
    position: absolute;
    top: -2px;
    left: 0;
}

.ace-contact-02 .form .form_shape input:checked+label:before {
    background: var(--back-color-02);
}

.ace-contact-02 .form .form_shape label:after {
    content: "\f00c";
    width: 28px;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: var(--txt-color-03);
    line-height: 28px;
    text-align: center;
    position: absolute;
    top: -2px;
    left: 0;
}

.ace-contact-02 .form .form_shape input:checked+label:after {
    color: var(--txt-color-00);
}

.ace-contact-02 .form .essential {
    display: block;
    font-size: 14px;
}

@media (max-width: 599px) {
    .ace-contact-02 .form dt {
        width: 100%;
    }

    .ace-contact-02 .form dd {
        width: 100%;
        margin-top: 5px;
        padding: 0;
    }
}

/*ace-gallery*/
.ace-gallery-01 li a {
    display: block;
}

.ace-gallery-01 li a:hover {
    opacity: 1;
}

.ace-gallery-01 li .pic img {
    border-radius: 10px;
}

.ace-gallery-01 li .txtbox {
    margin-top: 20px;
}

.ace-gallery-01 li .tit {
    margin-bottom: 10px;
    font-size: 18px;
}

.ace-gallery-01 li .cate>* {
    margin-bottom: 10px;
    margin-right: 10px;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .ace-gallery-01 li .tit {
        font-size: 16px;
    }
}

.ace-gallery-02 .imgbox .left {
    width: 45%;
}

.ace-gallery-02 .imgbox .right {
    width: 50%;
}

.ace-gallery-02 .imgbox .pic {
    width: 100%;
}

.ace-gallery-02 .imgbox .pic img {
    border-radius: 10px;
}

.ace-gallery-02 .txtbox .left {
    width: 50%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 10px 30px 10px 0;
}

.ace-gallery-02 .txtbox .right {
    width: 50%;
    padding: 10px 0 10px 30px;
    border-left: 1px solid var(--txt-color-04);
}

.ace-gallery-02 .txtbox .pic img {
    border-radius: 30px 0 30px 0;
}

.ace-gallery-02 .txtbox .name {
    margin-top: 10px;
    text-align: center;
}

.ace-gallery-02 .txtbox dl+dl {
    margin-top: 30px;
}

.ace-gallery-02 .txtbox dt {
    margin-bottom: 10px;
    padding-left: 10px;
    font-weight: bold;
    border-left: 4px solid var(--txt-color-11);
}

@media (max-width: 1024px) {
    .ace-gallery-02 .txtbox .right {
        width: 100%;
        margin-top: 20px;
        padding: 20px 0 0;
        border-top: 1px solid var(--txt-color-04);
        border-left: none;
    }
}

@media (max-width: 599px) {
    .ace-gallery-02 .imgbox .left {
        width: 100%;
    }

    .ace-gallery-02 .imgbox .right {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-top: 10px;
    }

    .ace-gallery-02 .txtbox .left {
        width: 120px;
        margin: 0 auto 20px;
    }

    .ace-gallery-02 .txtbox .center {
        width: 100%;
    }

    .ace-gallery-02 .txtbox .right {
        padding-top: 0;
        border-top: none;
    }

    .ace-gallery-02 .txtbox .name {
        font-size: 15px;
    }

    .ace-gallery-02 .txtbox dd {
        font-size: 14px;
    }
}

.ace-gallery-03 .box {
    padding: 20px;
    padding-left: 65px;
    border: 3px solid;
    position: relative;
    z-index: 0;
}

.ace-gallery-03 .tit {
    width: 45px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 5px 7px;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.ace-gallery-03 .tit>* {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.ace-gallery-03 .left {
    width: 200px;
    margin-right: 20px;
}

.ace-gallery-03 .right {
    width: calc(100% - 220px);
}

.ace-gallery-03 .txtbox {
    width: calc(100% - 320px);
}

.ace-gallery-03 .txtbox .cate {
    margin-bottom: 10px;
}

.ace-gallery-03 .txtbox .name {
    font-size: 26px;
}

.ace-gallery-03 .txtbox .sns {
    margin-top: 10px;
}

.ace-gallery-03 .txtbox .sns .icon {
    display: inline-block;
    margin-right: 5px;
    font-size: 20px;
    line-height: 1;
}

.ace-gallery-03 .btn {
    width: 300px;
    margin: 0 10px;
}

@media (max-width: 1024px) {
    .ace-gallery-03 .txtbox {
        width: 100%;
    }

    .ace-gallery-03 .btn {
        width: 100%;
        margin: 20px 0 0;
    }
}

@media (max-width: 599px) {
    .ace-gallery-03 .left {
        width: 100%;
    }

    .ace-gallery-03 .right {
        width: 100%;
        margin-top: 20px;
    }

    .ace-gallery-03 .txtbox .cate {
        font-size: 14px;
    }

    .ace-gallery-03 .txtbox .name {
        font-size: 20px;
    }
}

/*ace-staff*/
.ace-staff-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
}

.ace-staff-01 .ttl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 3em;
}

.ace-staff-01 .box {
    max-width: 1000px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-bottom: 20px;
    position: relative;
    z-index: 0;
}

.ace-staff-01 .box+.box {
    margin-top: 100px;
}

.ace-staff-01 .tit {
    width: 220px;
    font-size: 26px;
    text-align: center;
    position: absolute;
    top: 110px;
    left: 0;
    z-index: 1;
}

[data-element-id] .ace-staff-01 li:nth-of-type(n + 7) {
    display: none;
}

.ace-staff-01 li a {
    display: block;
}

.ace-staff-01 .item {
    height: 100%;
    padding: 0 0 30px;
    position: relative;
}

.ace-staff-01 li .pic img {
    border-radius: 30px 0 30px 0;
}

.ace-staff-01 .txtbox {
    margin-top: 20px;
    text-align: center;
}

.ace-staff-01 .cate {
    margin-bottom: 5px;
}

.ace-staff-01 .name {
    margin-bottom: 5px;
    font-size: 18px;
}

.ace-staff-01 li .icon {
    display: inline-block;
    margin-right: 5px;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 1024px) {
    .ace-staff-01 .box {
        padding-left: 20px;
    }

    .ace-staff-01 .box+.box {
        margin-top: 60px;
    }

    .ace-staff-01 .tit {
        width: 100%;
        margin-bottom: 20px;
        font-size: 30px;
        text-align: left;
        position: relative;
        top: 0;
    }
}

@media (max-width: 599px) {
    .ace-staff-01 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .ace-staff-01 .box {
        width: 100%;
    }
}

.ace-staff-02 {
    padding-bottom: 50px;
}

.ace-staff-02 .pic img {
    border-radius: 10px;
}

.ace-staff-02 .titbox {
    margin-bottom: 50px;
}

.ace-staff-02 .titbox .left {
    width: 200px;
}

.ace-staff-02 .titbox .right {
    width: calc(100% - 250px);
}

.ace-staff-02 .titbox .item+.item {
    margin-top: 20px;
}

.ace-staff-02 .titbox .cate {
    margin-bottom: 10px;
}

.ace-staff-02 .titbox .name {
    font-size: 20px;
}

.ace-staff-02 .titbox .sns .icon {
    display: inline-block;
    margin-right: 5px;
    font-size: 20px;
    line-height: 1;
}

.ace-staff-02 .txtbox {
    margin: 0 50px;
}

.ace-staff-02 .txtbox .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
}

.ace-staff-02 .txtbox .item+.item {
    margin-top: 5px;
}

.ace-staff-02 .txtbox dt {
    width: 100px;
}

.ace-staff-02 .txtbox dd {
    width: calc(100% - 100px);
}

.ace-staff-02 .box {
    margin: 20px 50px 0;
    padding: 20px;
    border: 1px solid;
    border-radius: 10px;
}

.ace-staff-02 .box .tit {
    margin-bottom: 10px;
}

@media (max-width: 599px) {
    .ace-staff-02 .titbox {
        margin-bottom: 20px;
    }

    .ace-staff-02 .titbox .left {
        width: 150px;
    }

    .ace-staff-02 .titbox .right {
        width: calc(100% - 170px);
    }

    .ace-staff-02 .titbox .cate {
        margin-bottom: 5px;
        font-size: 14px;
    }
}

.ace-staff-03 .ttl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 3em;
}

.ace-staff-03 .box {
    padding-left: 220px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-bottom: 20px;
    position: relative;
    z-index: 0;
}

.ace-staff-03 .box+.box {
    margin-top: 100px;
}

.ace-staff-03 .tit {
    width: 220px;
    font-size: 26px;
    text-align: center;
    position: absolute;
    top: 110px;
    left: 0;
    z-index: 1;
}

[data-element-id] .ace-staff-03 li:nth-of-type(n + 7) {
    display: none;
}

.ace-staff-03 li a {
    display: block;
}

.ace-staff-03 .item {
    height: 100%;
    padding: 0 0 30px;
    position: relative;
}

.ace-staff-03 li .pic img {
    border-radius: 30px 0 30px 0;
}

.ace-staff-03 .txtbox {
    margin-top: 20px;
    text-align: center;
}

.ace-staff-03 .cate {
    margin-bottom: 5px;
}

.ace-staff-03 .name {
    margin-bottom: 5px;
    font-size: 18px;
}

.ace-staff-03 li .icon {
    display: inline-block;
    margin-right: 5px;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 1024px) {
    .ace-staff-03 .box {
        padding-left: 20px;
    }

    .ace-staff-03 .box+.box {
        margin-top: 60px;
    }

    .ace-staff-03 .tit {
        width: 100%;
        margin-bottom: 20px;
        font-size: 30px;
        text-align: left;
        position: relative;
        top: 0;
    }
}

@media (max-width: 599px) {
    .ace-staff-03 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .ace-staff-03 .box {
        width: 100%;
    }
}


/*ace-about*/
.ace-about-01 .left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: calc(55% - 50vw);
    margin-right: 4%;
}

.ace-about-01 .right {
    width: 70%;
    padding-right: 30px;
}

.ace-about-01 .pic img {
    border-radius: 10px;
}

.ace-about-01 .tit {
    width: 55px;
    margin-left: 20px;
    font-size: 34px;
    letter-spacing: 10px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.ace-about-01 .txtbox .txt {
    width: calc(100% - 75px);
    line-height: 2;
}

@media (max-width: 1024px) {
    .ace-about-01 .right {
        width: 100%;
        padding-right: 0;
    }

    .ace-about-01 .left {
        width: 40%;
        -webkit-box-flex: inherit;
        -ms-flex: inherit;
        flex: inherit;
        margin-bottom: 30px;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 599px) {
    .ace-about-01 .left {
        width: calc(100% - 20px);
    }

    .ace-about-01 .right {
        width: 100%;
    }

    .ace-about-01 .tit {
        width: auto;
        margin: 0;
        font-size: 24px;
        position: absolute;
        top: -10px;
        right: 10px;
    }

    .ace-about-01 .txtbox .txt {
        width: 100%;
        line-height: 1.8;
    }

    .ace-about-01 .pic img {
        opacity: 0.4;
    }
}

/*ace-about-02*/
.ace-about-02 .tit {
    width: 55px;
    margin-right: 20px;
    font-size: 34px;
    letter-spacing: 10px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.ace-about-02 .list {
    width: calc(100% - 75px);
}

.ace-about-02 .list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px dashed var(--txt-color-04);
}

.ace-about-02 .list .item+.item {
    margin-top: 20px;
}

.ace-about-02 .list dt {
    width: 200px;
    padding-right: 20px;
}

.ace-about-02 .list dd {
    width: calc(100% - 200px);
}

@media (max-width: 599px) {
    .ace-about-02 .tit {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
        font-size: 24px;
        text-align: center;
        -ms-writing-mode: inherit;
        -webkit-writing-mode: inherit;
        writing-mode: inherit;
    }

    .ace-about-02 .list {
        width: 100%;
    }

    .ace-about-02 .list dt {
        width: 100%;
        margin-bottom: 10px;
        font-weight: bold;
        font-size: 18px;
    }

    .ace-about-02 .list dd {
        width: 100%;
    }
}

/*ace-info*/
.ace-info-01 .txtbox .txt {
    line-height: 2;
    text-align: center;
}

@media (max-width: 599px) {
    .ace-info-01 .txtbox .txt {
        line-height: 1.8;
        text-align: left;
    }
}

.ace-info-02 li .txtbox .tit {
    margin-bottom: 20px;
    font-size: 30px;
}

.ace-info-02 li .txtbox .txt {
    line-height: 2;
}

.ace-info-02 li:nth-of-type(odd) .right {
    width: 40%;
}

.ace-info-02 li:nth-of-type(odd) .left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 4%;
    margin-right: calc(50% - 50vw);
}

.ace-info-02 li:nth-of-type(even) .right {
    width: 40%;
}

.ace-info-02 li:nth-of-type(even) .left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: calc(50% - 50vw);
    margin-right: 4%;
}

.ace-info-02 li:nth-of-type(odd) .fead-img,
.ace-info-02 li:nth-of-type(even) .fead-img {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}

[data-element-id] .ace-info-02 li:nth-of-type(odd) .fead-img,
[data-element-id] .ace-info-02 li:nth-of-type(even) .fead-img {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.ace-info-02 li:nth-of-type(odd) .fead-img.mv {
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;

    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
}

.ace-info-02 li:nth-of-type(even) .fead-img.mv {
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;

    -webkit-clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
}

@media (max-width: 1042px) {
    .ace-info-02 li .right {
        margin-top: 20px;
    }

    .ace-info-02 li:nth-of-type(odd) .right {
        width: 100%;
    }

    .ace-info-02 li:nth-of-type(even) .right {
        width: 100%;
    }
}

@media (max-width: 599px) {
    .ace-info-02 li .txtbox .tit {
        font-size: 20px;
    }

    .ace-info-02 li .txtbox .txt {
        line-height: 1.8;
    }
}

.ace-info-03 .logo {
    margin-bottom: 40px;
}

.ace-info-03 .logo img,
.ace-staff-01 .logo img {
    max-width: 250px;
}

.ace-staff-01 .logo.sin img {
    max-width: 200px;
}

.ace-info-03 .logo.new img {
    max-width: 150px;
}

.ace-staff-01 .logo.new img {
    width: 100%;
    max-width: 120px;
}

.ace-info-03 .logo.new img {
    width: 100%;
    max-width: 120px;
}

.ace-info-03 li+li {
    margin-top: 30px;
}

.ace-info-03 .sns {
    margin-top: 30px;
    line-height: 1;
}

.ace-info-03 .sns a {
    display: inline-block;
    font-size: 30px;
}

.ace-info-03 .tel {
    display: inline-block;
    margin-top: 20px;
}

.ace-info-03 .tel a {
    display: block;
    padding: 10px 30px;
    font-size: 24px;
}

@media (max-width: 1024px) {
    .ace-info-03 li+li {
        margin-top: 20px;
    }
}

@media (max-width: 599px) {
    .ace-info-03 .logo img {
        max-width: 150px;
    }

    .ace-info-03 .logo {
        margin-bottom: 20px;
    }

    .ace-info-03 li {
        font-size: 15px;
    }

    .ace-info-03 li+li {
        margin-top: 10px;
    }

    .ace-info-03 .sns {
        margin-top: 20px;
    }

    .ace-info-03 .tel {
        display: block;
        text-align: center;
    }
}

/*ace-menu*/
.ace-menu-01 li+li {
    margin-top: 50px;
}

.ace-menu-01 li .ttl .ttl-main {
    width: 70%;
    padding-right: 70px;
}

.ace-menu-01 li .txtbox .txt {
    line-height: 1.8;
}

.ace-menu-01 .pic {
    margin-top: -70px;
    position: relative;
    z-index: -1;
}

.ace-menu-01 .pic img {
    border-radius: 10px;
}

@media (max-width: 599px) {
    .ace-menu-01 .pic {
        margin-top: 0;
    }

    .ace-menu-01 li .ttl .ttl-main {
        width: 100%;
        padding-right: 0;
    }
}

.ace-menu-02 .box {
    padding: 80px 50px;
    border-radius: 30px;
    -webkit-box-shadow: -2px 0px 15px -5px #000;
    box-shadow: -2px 0px 10px -5px #a7a7a7;
}

.ace-menu-02 .box+.box {
    margin-top: 60px;
}

.ace-menu-02 .pic img {
    border-radius: 10px;
}

.ace-menu-02 .titbox {
    margin-bottom: 40px;
}

.ace-menu-02 .titbox .left {
    width: calc(100% - 300px);
}

.ace-menu-02 .titbox .right {
    width: 300px;
}

.ace-menu-02 .list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 10px 20px;
    border-bottom: 1px solid var(--back-color-00);
}

.ace-menu-02 .list .item+.item {
    margin-top: 20px;
}

.ace-menu-02 .list .item dt {
    width: 30%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-weight: bold;
    color: var(--txt-color-02);
}

.ace-menu-02 .list .item dd {
    width: calc(70% - 130px);
}

.ace-menu-02 .list .item .yen {
    width: 130px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-left: 20px;
    text-align: right;
}

@media (max-width: 1024px) {
    .ace-menu-02 .box {
        padding: 50px 40px;
    }

    .ace-menu-02 .list .item dt {
        width: 100%;
        margin-bottom: 5px;
    }

    .ace-menu-02 .list .item dd {
        width: calc(100% - 130px);
    }
}

@media (max-width: 599px) {
    .ace-menu-02 .box {
        padding: 30px 10px;
    }

    .ace-menu-02 .titbox {
        margin-bottom: 20px;
    }

    .ace-menu-02 .titbox .left {
        width: 100%;
    }

    .ace-menu-02 .titbox .right {
        width: 100%;
        margin-top: 20px;
    }

    /* .ace-menu-02 .list .item dd {
        width: calc(100% - 110px);
        font-size: 15px;
    } */

    .ace-menu-02 .list .item dd {
        width: 100%;
        font-size: 15px;
    }

    /* .ace-menu-02 .list .item .yen {
        width: 110px;
        padding-left: 10px;
        font-size: 15px;
    } */
    .ace-menu-02 .list .item .yen {
        width: 100%;
        font-size: 15px;
    }
}

/*ace-welfare*/
.ace-welfare-01 .tit {
    width: 55px;
    margin-left: 20px;
    font-size: 34px;
    letter-spacing: 10px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.ace-welfare-01 .list {
    width: calc(100% - 75px);
}

.ace-welfare-01 li .item {
    border-radius: 20px;
    position: relative;
}

.ace-welfare-01 li .item:after {
    content: "";
    display: block;
    padding-top: 100%;
}

.ace-welfare-01 li .txt {
    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: 20px;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.ace-welfare-02 .pic img {
    border-radius: 10px;
}

.ace-welfare-02 .txtbox .txt {
    line-height: 1.8;
}

@media (max-width: 599px) {
    .ace-welfare-01 .tit {
        width: 35px;
        font-size: 24px;
    }

    .ace-welfare-01 li .txt {
        font-size: 16px;
    }

    .ace-welfare-01 .list {
        width: calc(100% - 55px);
    }
}

/*ace-curriculum*/
.ace-curriculum-01 .explanation {
    text-align: center;
}

.ace-curriculum-01 ul+ul {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px dashed var(--txt-color-04);
}

.ace-curriculum-01 li {
    padding: 20px 40px;
}

.ace-curriculum-01 li+li {
    border-left: 1px dashed var(--txt-color-04);
}

.ace-curriculum-01 .tit {
    width: 90%;
    font-size: 22px;
    line-height: 2.5;
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 1;
}

.ace-curriculum-01 .tit>* {
    display: inline;
    padding: 5px;
}

.ace-curriculum-01 .pic {
    margin-bottom: 40px;
    position: relative;
    z-index: 0;
}

.ace-curriculum-01 .pic img {
    border-radius: 20px 0 20px 0;
}

.ace-curriculum-01 .txtbox .txt {
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .ace-curriculum-01 li {
        padding: 10px 20px;
    }

    .ace-curriculum-01 .tit {
        width: 100%;
        font-size: 17px;
        bottom: -20px;
        left: -10px;
    }

    .ace-curriculum-01 .txtbox .txt {
        font-size: 16px;
    }
}

@media (max-width: 599px) {
    .ace-curriculum-01 li {
        padding: 20px 10px;
    }

    .ace-curriculum-01 li+li {
        border-top: 1px dashed var(--txt-color-04);
        border-left: none;
    }

    .ace-curriculum-01 .pic {
        margin-bottom: 30px;
    }

    .ace-curriculum-01 .tit {
        font-size: 16px;
    }
}

.ace-curriculum-02 .item {
    height: 100%;
    border: 1px solid var(--back-color-08);
}

.ace-curriculum-02 .item>* {
    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;
}

.ace-curriculum-02.pattern-02 .item>* {
    display: block;
}

.ace-curriculum-02 .pic {
    height: 100%;
}

.ace-curriculum-02 .txtbox {
    padding: 20px;
}

.ace-curriculum-02 .tit {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
}

.ace-curriculum-02 .txtbox .txt {
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 599px) {
    .ace-curriculum-02 .tit {
        font-size: 18px;
    }
}

.ace-curriculum-03 table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.ace-curriculum-03 .label td {
    text-align: left;
}

.ace-curriculum-03 .label td>* {
    margin: 0 5px;
    padding: 5px 10px;
}

.ace-curriculum-03 .month td {
    width: 67px;
}

.ace-curriculum-03 .month .space {
    width: 100px;
}

.ace-curriculum-03 .month td {
    text-align: center;
}

.ace-curriculum-03 .month td:nth-of-type(n+2)>* {
    width: 50px;
    display: block;
    margin: auto;
    font-size: 14px;
    line-height: 50px;
}

.ace-curriculum-03 .month td .em {
    font-size: 120%;
}

.ace-curriculum-03 tbody tr {
    border-top: dashed 1px #cdcdcd;
}

.ace-curriculum-03 tbody tr td:first-of-type {
    width: 60px;
    font-size: 16px;
    text-align: center;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.ace-curriculum-03 tbody tr td:first-of-type {
    position: relative;
}

.ace-curriculum-03 tbody tr td:first-of-type:before {
    content: "▼";
    display: block;
    color: #cdcdcd;
    line-height: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: -3px;
    left: 50%;
}

.ace-curriculum-03 .flow td>* {
    width: 100%;
    height: 170px;
    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;
    vertical-align: top;
    margin: 10px 2px 10px;
    padding: 20px 5px;
    font-size: 14px;
    text-align: center;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    border-radius: 10px;
}

.ace-curriculum-03 tr:last-of-type td>* {
    margin-bottom: 0;
}

/* .ace-curriculum-03 .flow td[colspan="1"] div {
} */

.ace-curriculum-03 [class*="icon-"]:before {
    display: none;
}

@media (max-width: 1024px) {
    .ace-curriculum-03 .table-item {
        min-width: 800px;
        display: block;
        overflow: hidden;
        /* overflow-x: scroll; */
        -webkit-overflow-scrolling: touch;
    }

    .ace-curriculum-03 .flow td>* {
        width: 100%;
    }
}

@media (max-width: 599px) {
    .ace-curriculum-03 tbody tr td:first-of-type {
        width: 100px;
        font-size: 14px;
    }
}

/*ace-recruit*/
.ace-recruit-01 .box {
    padding: 30px 50px 30px;
    border-radius: 30px;
}

.ace-recruit-01 .txtbox .txt {
    font-size: 17px;
    line-height: 2;
    text-align: center;
}

.ace-recruit-01 ul {
    width: 70%;
    min-width: 630px;
    margin: 0 auto;
}

.ace-recruit-01 li {
    padding-left: 1.5em;
    font-size: 18px;
    text-indent: -1.5em;
}

.ace-recruit-01 li+li {
    margin-top: 10px;
}

.ace-recruit-01 li:before {
    content: "\f007";
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

@media (max-width: 599px) {
    .ace-recruit-01 .box {
        padding: 30px 10px 30px;
    }

    .ace-recruit-01 ul {
        width: 100%;
        min-width: 100%;
    }

    .ace-recruit-01 .txtbox .txt {
        font-size: 16px;
        text-align: left;
    }
}

.ace-recruit-02 ul {
    padding-left: 150px;
    position: relative;
}

.ace-recruit-02 li .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.ace-recruit-02 li+li .item {
    margin-top: 50px;
}

.ace-recruit-02 .left {
    width: 30%;
}

.ace-recruit-02 .right {
    width: 65%;
    margin-left: 5%;
}

.ace-recruit-02 .pic img {
    border-radius: 10px;
}

.ace-recruit-02 li .num {
    width: 80px;
    height: 80px;
    font-size: 20px;
    line-height: 80px;
    text-align: center;
    border-radius: 30px;
    -webkit-transform: translateX(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: -115px;
}

.ace-recruit-02 li:not(:last-of-type) .item:before {
    content: "";
    height: calc(100% + 50px);
    border: 1px dashed var(--txt-color-04);
    position: absolute;
    top: 55%;
    left: -75px;
}

.ace-recruit-02 li .tit {
    margin-bottom: 20px;
    font-size: 23px;
}

.ace-recruit-02 li .txtbox .txt {
    line-height: 1.8;
}

@media (max-width: 599px) {
    .ace-recruit-02 ul {
        padding-left: 80px;
    }

    .ace-recruit-02 li:not(:last-of-type) .item:before {
        left: -40px;
    }

    .ace-recruit-02 li .num {
        width: 60px;
        height: 60px;
        font-size: 16px;
        line-height: 60px;
        border-radius: 20px;
        top: 50%;
        left: -70px;
    }

    .ace-recruit-02 .left {
        width: 100%;
    }

    .ace-recruit-02 .right {
        width: 100%;
        margin-top: 10px;
    }

    .ace-recruit-02 li .tit {
        margin-bottom: 5px;
        font-size: 20px;
    }
}

.ace-recruit-03 .txtbox .txt {
    line-height: 1.8;
    text-align: center;
}

.ace-recruit-03 ul {
    display: -ms-grid;
    display: grid;

    -ms-grid-columns: 1.5fr 10px 1fr 10px 1fr 10px 3fr;
    grid-template-columns: 1.5fr 1fr 1fr 3fr;
    -ms-grid-rows: 180px 10px 100px 10px 80px 10px 120px 10px auto;
    grid-template-rows: 180px 100px 80px 120px auto;
    gap: 10px;
}

.ace-recruit-03 ul>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.ace-recruit-03 ul>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.ace-recruit-03 ul>*:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}

.ace-recruit-03 ul>*:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
}

.ace-recruit-03 ul>*:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

.ace-recruit-03 ul>*:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

.ace-recruit-03 ul>*:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
}

.ace-recruit-03 ul>*:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
}

.ace-recruit-03 ul>*:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
}

.ace-recruit-03 ul>*:nth-child(10) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
}

.ace-recruit-03 ul>*:nth-child(11) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
}

.ace-recruit-03 ul>*:nth-child(12) {
    -ms-grid-row: 5;
    -ms-grid-column: 7;
}

.ace-recruit-03 ul>*:nth-child(13) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
}

.ace-recruit-03 ul>*:nth-child(14) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
}

.ace-recruit-03 ul>*:nth-child(15) {
    -ms-grid-row: 7;
    -ms-grid-column: 5;
}

.ace-recruit-03 ul>*:nth-child(16) {
    -ms-grid-row: 7;
    -ms-grid-column: 7;
}

.ace-recruit-03 ul>*:nth-child(17) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
}

.ace-recruit-03 ul>*:nth-child(18) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
}

.ace-recruit-03 ul>*:nth-child(19) {
    -ms-grid-row: 9;
    -ms-grid-column: 5;
}

.ace-recruit-03 ul>*:nth-child(20) {
    -ms-grid-row: 9;
    -ms-grid-column: 7;
}

.ace-recruit-03 li .pic {
    height: 100%;
    position: relative;
    z-index: 0;
}

@media (max-width: 599px) {
    .ace-recruit-03 .txtbox .txt {
        text-align: left;
    }
}

.ace-recruit-04 a {
    display: block;
    position: relative;
    z-index: 0;
}

.ace-recruit-04 .pic img {
    border-radius: 10px;
}

.ace-recruit-04 .txtbox {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    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: 20px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
}

.ace-recruit-04 .txtbox .tit {
    font-size: 20px;
}

.ace-recruit-04 .txtbox .txt {
    font-size: 16px;
}

.hm-logo-btn li a {
    display: inline-block;
    margin: 0 20px;
    padding: 0;
    border-bottom: none;
}

.hm-logo-btn a .icon {
    font-size: 30px;
    line-height: 1;
}

@media (max-width: 599px) {
    .ace-recruit-04 .txtbox .tit {
        font-size: 18px;
    }
}

.ace-recruit-05 .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px dashed var(--txt-color-04);
}

.ace-recruit-05 .item+.item {
    margin-top: 20px;
}

.ace-recruit-05 .item .tit {
    width: 200px;
    padding-right: 20px;
}

.ace-recruit-05 .item .txt {
    width: calc(100% - 200px);
}

@media (max-width: 599px) {
    .ace-recruit-05 .item .tit {
        width: 100%;
    }
    
    .ace-recruit-05 .item .txt {
        width: 100%;
        margin-top: 5px;
    }
}

.salon-tour-tim {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.salon-tour-tim span {
    -webkit-transform: translateX(1em);
    transform: translateX(1em);
}

/* 20221025追記 */
.top-cc-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.top-cc-list li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

/* カリキュラムのテーブル */
.table-curriculum {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.table-curriculum tr th,
.table-curriculum tr td {
    padding: 0.4em 0.2em;
}

.table-curriculum tr td.course-name {
    width: 120px;
}

.table-curriculum tr.month td {
    width: 70px;
    text-align: center;
}

.table-curriculum tr th {
    font-size: 14px;
    text-align: left;
}

.table-curriculum tr.bordered-cell {
    border-top: dashed 1px #cdcdcd;
}

.table-curriculum tr td .table-arrow {
    padding: 0.5em 2em;
    font-weight: bold;
    color: white;
    background-color: #a8362c;
    position: relative;
}

.table-curriculum tr td .table-arrow::before {
    content: "";
    width: 1em;
    height: 100%;
    display: block;
    background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, white)) no-repeat top left/100% 50%,
    -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, white)) no-repeat bottom right/100% 50%;
    background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, white 50.5%) no-repeat top left/100% 50%,
    linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, white 50.5%) no-repeat bottom right/100% 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.table-curriculum tr td .table-arrow::after {
    content: "";
    width: 1em;
    height: 100%;
    display: block;
    background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #a8362c)) no-repeat top left/100% 50%,
    -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #a8362c)) no-repeat bottom right/100% 50%;
    background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #a8362c 50.5%) no-repeat top left/100% 50%,
    linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #a8362c 50.5%) no-repeat bottom right/100% 50%;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.table-curriculum tr td .element {
    width: 100%;
    min-height: 180px;
    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: start;
    align-items: flex-start;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1em;
    font-size: 12px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    border-radius: 1em;
    background-color: #e7e7dd;
}

.table-curriculum tr td .element.color_01 {
    color: white;
    background-color: #afe3db;
}

.table-curriculum tr td .element.horizontal {
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
}

@media (max-width: 1200px) {
    .table-curriculum {
        min-width: 1200px;
    }
}

/* 2024/01/22 */

#test #footer .hm-logo-btn a{
  margin-left: 0px;
}

#test .ace-list-02 .address {
    margin-bottom: 10px;
}

#test .bg-pink .back-color-06{
  background-color: #ffccc8 !important;
}

/* 2024/07/29追記 */

@media screen and (max-width:599px) {
 #footer{
   margin-bottom: 30px;
 }
}

.jc-c{
  justify-content: center;
}

.kyouiku{
  margin-top: 6rem;
}

.kyouiku .left{
  width: 60%;
}

.kyouiku .right{
  width: 40%;
  padding-right: 0 !important;
}

.kyouiku h3{
  margin-right: 20px;
    margin-left: 0 !important;
}

.kyouiku .ace-about-01 .txtbox .txt {
  width: calc(90% - 78px);
}

.kyouiku .ace-about-01 .txtbox .txt {
    width: calc(100% - 78px);
}


@media screen and (max-width:1024px) {
.kyouiku .left {
    width: 100%;
}

.kyouiku .ace-about-01 .txtbox .txt {
    width: calc(100% - 78px);
}
}


@media screen and (max-width:599px) {
.kyouiku h3{
top: 60rem;
    left: 10px;
    right: 88%;
}

.kyouiku .right {
    margin-top: -2rem;
    width: 96%;
}

.kyouiku .ace-about-01 .txtbox .txt {
        width: calc(105% - 78px);
    }
}
