@charset "utf-8";

/*フォント読み込み*/
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap');

/*フォントオーサムをcssで読み込み*/
@import url("https://use.fontawesome.com/releases/v6.2.0/css/all.css");
.sawarabi {
  font-family: 'Sawarabi Gothic', sans-serif;
}
html {
    --txt-font-00: "M PLUS Rounded 1c", sans-serif;
    --txt-font-01: "Zen Maru Gothic", sans-serif;
    --txt-font-02: "IBM Plex Sans JP", sans-serif;
    --txt-font-03:'Sawarabi Gothic', sans-serif;
    --txt-color-00: #fff;
    --txt-color-01: #515151;
    --txt-color-02: #fabf5b;
    --txt-color-03: #fcfbf5;
    --txt-color-04: #b6b6b6;
    --txt-color-05: #6ac370;
    --txt-color-06: #b9debc;
    --txt-color-07: #fcdda5;
    --txt-color-08: #f5f5f5;
    --txt-color-09: #f08979;
    --back-color-00: #fff;
    --back-color-01: #515151;
    --back-color-02: #fabf5b;
    --back-color-03: #fcfbf5;
    --back-color-04: #b6b6b6;
    --back-color-05: #6ac370;
    --back-color-06: #b9debc;
    --back-color-07: #fcdda5;
    --back-color-08: #f5f5f5;
    --back-color-09: #f08979;
    --ttl-color-00: #fff;
    --ttl-color-01: #515151;
    --ttl-color-02: #fabf5b;
    --ttl-color-03: #fcfbf5;
    --ttl-color-04: #b6b6b6;
    --ttl-color-05: #6ac370;
    --ttl-color-06: #b9debc;
    --ttl-color-07: #fcdda5;
    --ttl-color-08: #f5f5f5;
    --ttl-color-09: #f08979;
    --btn-color-00: #fff;
    --btn-color-01: #515151;
    --btn-color-02: #fabf5b;
    --btn-color-03: #fcfbf5;
    --btn-color-04: #b6b6b6;
    --btn-color-05: #6ac370;
    --btn-color-06: #b9debc;
    --btn-color-07: #fcdda5;
    --btn-color-08: #f5f5f5;
    --btn-color-09: #f08979;
}

/*===================================
基本設定
===================================*/
html {
    font-family: var(--txt-font-03);
    font-size: 16px;
    color: var(--txt-color-01);
    letter-spacing: 2px;
    
}

/* a, blockquote, body, button, dd, div, dl, dt, figcaption, figure, form, h1, h2, h3, h4, h5, h6, hr, input, li, ol, p, pre, time, ul{
transform: rotate(0.03deg);
    -moz-transform: rotate(0.03deg);
    -ms-transform: rotate(0.03deg);
    -o-transform: rotate(0.03deg);
    -webkit-transform: rotate(0.03deg);
} */

.wrapper {
    overflow: hidden;
}

/*radiusパターン追加*/
.radius-pattern-01 {
  position: relative;
　z-index: 1;
    overflow: hidden;
    border-radius: 49% 51% 47% 53% / 57% 47% 53% 43% ;
}
.up-circle{
    position: relative;
　z-index: 1;
}

.radius-pattern-02 {
    max-width: 100%;

    -webkit-mask-image: url('/import/tenant_1/160.16.146.185/html/images/deco-15.webp');
    mask-image: url('/import/tenant_1/160.16.146.185/html/images/deco-15.webp');
    mask-size: cover;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.radius-pattern-03 {
    max-width: 100%;

    -webkit-mask-image: url('/import/tenant_1/160.16.146.185/html/images/deco-16.webp');
    mask-image: url('/import/tenant_1/160.16.146.185/html/images/deco-16.webp');
    mask-size: cover;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

/*エフェクト*/
.fead-mv.mv {
    -webkit-transition: 1s ease-out;
    transition: 1s ease-out;
}

.fead-left {
    -webkit-transform: translateX(12%);
    transform: translateX(12%);
}

.fead-right {
    -webkit-transform: translateX(-12%);
    transform: translateX(-12%);
}

/*装飾エフェクト*/
.deco-effect-01 {
    -webkit-transform-origin: bottom left 32px;
    transform-origin: bottom left 32px;
    -webkit-animation: swing01 linear 6s infinite;
    animation: swing01 linear 6s infinite;
}

.deco-effect-01.pattern-01 {
    -webkit-transform-origin: bottom left 32px;
    transform-origin: bottom left 32px;
    -webkit-animation: swing01 linear 10s infinite;
    animation: swing01 linear 10s infinite;
}

@-webkit-keyframes swing01 {
    0%,
    50%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    75% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
}

@keyframes swing01 {
    0%,
    50%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    75% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
}

.deco-effect-02 {
    -webkit-transform-origin: bottom left 32px;
    transform-origin: bottom left 32px;
    -webkit-animation: swing02 linear 6s infinite;
    animation: swing02 linear 6s infinite;
}

.deco-effect-02.pattern-01 {
    -webkit-transform-origin: bottom left 32px;
    transform-origin: bottom left 32px;
    -webkit-animation: swing02 linear 10s infinite;
    animation: swing02 linear 10s infinite;
}

@-webkit-keyframes swing02 {
    0%,
    50%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0vw);
        transform: rotate(0deg) translateX(0vw);
    }
    25% {
        -webkit-transform: rotate(5deg) translateX(-1vw);
        transform: rotate(5deg) translateX(-1vw);
    }
    75% {
        -webkit-transform: rotate(-5deg) translateX(1vw);
        transform: rotate(-5deg) translateX(1vw);
    }
}

@keyframes swing02 {
    0%,
    50%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0vw);
        transform: rotate(0deg) translateX(0vw);
    }
    25% {
        -webkit-transform: rotate(5deg) translateX(-1vw);
        transform: rotate(5deg) translateX(-1vw);
    }
    75% {
        -webkit-transform: rotate(-5deg) translateX(1vw);
        transform: rotate(-5deg) translateX(1vw);
    }
}

.deco-effect-03 {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-name: swing03;
    animation-name: swing03;
    -webkit-animation-duration: 4000ms;
    animation-duration: 4000ms;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    -webkit-animation-timing-function: steps(2, end);
    animation-timing-function: steps(2, end);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes swing03 {
    0%,
    100% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
}

@keyframes swing03 {
    0%,
    100% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
}

[data-element-id] .deco-effect-01,
[data-element-id] .deco-effect-02,
[data-element-id] .deco-effect-03 {
    animation: inherit;
}

/*ボタンエフェクト*/
.btn-hover-01 a {
    -webkit-box-shadow: 0px 6px 0px -2px var(--back-color-07);
    box-shadow: 0px 6px 0px -2px var(--back-color-07);
    -webkit-transition: shadow 0.3s ease,transform 0.3s ease;
    -webkit-transition: shadow 0.3s ease,-webkit-transform 0.3s ease;
    transition: shadow 0.3s ease,-webkit-transform 0.3s ease;
    transition: shadow 0.3s ease,transform 0.3s ease;
    transition: shadow 0.3s ease,transform 0.3s ease,-webkit-transform 0.3s ease;
}

.btn-hover-02 a {
    -webkit-box-shadow: 0px 6px 0px -2px var(--back-color-06);
    box-shadow: 0px 6px 0px -2px var(--back-color-06);
    -webkit-transition: shadow 0.3s ease,transform 0.3s ease;
    -webkit-transition: shadow 0.3s ease,-webkit-transform 0.3s ease;
    transition: shadow 0.3s ease,-webkit-transform 0.3s ease;
    transition: shadow 0.3s ease,transform 0.3s ease;
    transition: shadow 0.3s ease,transform 0.3s ease,-webkit-transform 0.3s ease;
}

.btn-hover-01 a:hover,
.btn-hover-02 a:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
    -webkit-transform: translate3d(0px, 3px, 0);
    transform: translate3d(0px, 3px, 0);
}

[data-element-id] .btn-hover-01 a:hover,
[data-element-id] .btn-hover-02 a:hover {
    -webkit-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0);
}

.btn-hover-03 .btn-inner>* {
    position: relative;
    z-index: 0;
}

.btn-hover-03 .btn-inner>* .btn-hover-item {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scale(0,0);
    transform: scale(0,0);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.btn-hover-03 .btn-inner>*:hover .btn-hover-item {
    opacity: 0.6;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
}

/*フォント*/
.txt-font-00 {
    font-family: var(--txt-font-00);
}

.txt-font-01 {
    font-family: var(--txt-font-01);
}

.txt-font-02 {
    font-family: var(--txt-font-02);
}

.txt-font-03 {
    font-family: var(--txt-font-03);
}

/*アイコン*/
.icon-01,
.icon-01:before,
.icon-01:after {
    margin: 0 auto;
}

.icon-01 {
    width: 30px;
    display: inline-block;
    border-bottom: solid 5px;
}

.icon-01:before {
    content: "";
    width: 10px;
    display: block;
    border-bottom: solid 15px;
}

.icon-01:after {
    content: "";
    width: 20px;
    display: block;
    border-bottom: solid 10px;
}

/*カラー指定*/
/*テキストカラー*/
.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);
}

.txt-color-13 {
    color: var(--txt-color-13);
}

.txt-color-14 {
    color: var(--txt-color-14);
}

.txt-color-15 {
    color: var(--txt-color-15);
}

.txt-color-16 {
    color: var(--txt-color-16);
}

.txt-color-17 {
    color: var(--txt-color-17);
}

.txt-color-18 {
    color: var(--txt-color-18);
}

.txt-color-19 {
    color: var(--txt-color-19);
}

.txt-color-20 {
    color: var(--txt-color-20);
}

/*背景色*/
.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);
}

.back-color-13 {
    background: var(--back-color-13);
}

.back-color-14 {
    background: var(--back-color-14);
}

.back-color-15 {
    background: var(--back-color-15);
}

.back-color-16 {
    background: var(--back-color-16);
}

.back-color-17 {
    background: var(--back-color-17);
}

.back-color-18 {
    background: var(--back-color-18);
}

.back-color-19 {
    background: var(--back-color-19);
}

.back-color-20 {
    background: var(--back-color-20);
}

/*見出しカラー*/
.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);
}

/*ボタンカラー*/
.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);
}

/*ボタンhover背景*/
[class*="hovertxt-color-"] a:hover {
    opacity: 1;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.hovertxt-color-00 a:hover {
    color: var(--btn-color-00);
}

.hovertxt-color-01 a:hover {
    color: var(--btn-color-01);
}

.hovertxt-color-02 a:hover {
    color: var(--btn-color-02);
}

.hovertxt-color-03 a:hover {
    color: var(--btn-color-03);
}

.hovertxt-color-04 a:hover {
    color: var(--btn-color-04);
}

.hovertxt-color-05 a:hover {
    color: var(--btn-color-05);
}

.hovertxt-color-06 a:hover {
    color: var(--btn-color-06);
}

.hovertxt-color-07 a:hover {
    color: var(--btn-color-07);
}

.hovertxt-color-08 a:hover {
    color: var(--btn-color-08);
}

.hovertxt-color-09 a:hover {
    color: var(--btn-color-09);
}

.hovertxt-color-10 a:hover {
    color: var(--btn-color-10);
}

/*ボタンhover背景*/
.hoverbtn-color-00 .btn-inner>*:hover {
    background: var(--btn-color-00);
}

.hoverbtn-color-01 .btn-inner>*:hover {
    background: var(--btn-color-01);
}

.hoverbtn-color-02 .btn-inner>*:hover {
    background: var(--btn-color-02);
}

.hoverbtn-color-03 .btn-inner>*:hover {
    background: var(--btn-color-03);
}

.hoverbtn-color-04 .btn-inner>*:hover {
    background: var(--btn-color-04);
}

.hoverbtn-color-05 .btn-inner>*:hover {
    background: var(--btn-color-05);
}

.hoverbtn-color-06 .btn-inner>*:hover {
    background: var(--btn-color-06);
}

.hoverbtn-color-07 .btn-inner>*:hover {
    background: var(--btn-color-07);
}

.hoverbtn-color-08 .btn-inner>*:hover {
    background: var(--btn-color-08);
}

.hoverbtn-color-09 .btn-inner>*:hover {
    background: var(--btn-color-09);
}

.hoverbtn-color-10 .btn-inner>*:hover {
    background: var(--btn-color-10);
}

/*装飾*/
.cmn-deco-01 {
    padding-top: 90px;
    padding-bottom: 94px;
    position: relative;
    z-index: 1;
}

.cmn-deco-01.pattern-01 {
    padding-top: 306px;
}

.cmn-deco-01:after {
    content: "";
    width: 100%;
    height: calc(100% - 184px);
    background: var(--back-color-05);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -2;
}

.cmn-deco-01.pattern-01:after {
    content: "";
    width: 100%;
    height: calc(100% - 400px);
    background: var(--back-color-05);
    -webkit-transform: none;
    transform: none;
    position: absolute;
    top: auto;
    bottom: 94px;
    left: 0;
    z-index: -2;
}

.cmn-deco-01 .deco-top {
    width: 100%;
    height: 157px;
    background-image: url('/import/tenant_1/160.16.146.185/html/images/deco-01.webp');
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.cmn-deco-01.pattern-01 .deco-top {
    width: 106%;
    height: 306px;
    background-image: url('/import/tenant_1/160.16.146.185/html/images/deco-17.webp');
    background-size: 100% 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
}

.cmn-deco-01 .deco-bottom {
    width: 100%;
    height: 94px;
    background-image: url('/import/tenant_1/160.16.146.185/html/images/deco-02.webp');
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.cmn-deco-02 {
    position: relative;
    z-index: 0;
}

.cmn-deco-02 .deco-top {
    max-width: 400px;
    position: absolute;
    top: -8%;
    right: -12%;
    z-index: -1;
}

.cmn-deco-03 {
    position: relative;
    z-index: 0;
}

.cmn-deco-03 .deco-top {
    max-width: 400px;
    position: absolute;
    top: -8%;
    left: -170px;
    z-index: -1;
}

.cmn-deco-03.pattern-01 .deco-top {
    top: -230px;
}

.cmn-deco-04 {
    padding: 0 185px;
    position: relative;
}

.cmn-deco-04 .cmn-deco-left {
    max-width: 165px;
    position: absolute;
    top: -57px;
    left: 0;
}

.cmn-deco-04 .cmn-deco-right {
    max-width: 165px;
    position: absolute;
    top: -50px;
    right: 0;
}

.cmn-deco-05 {
    position: relative;
}

.cmn-deco-05 .cmn-deco-deco01 {
    max-width: 100px;
    position: absolute;
    top: -15%;
    left: 5%;
    z-index: 1;
}

.cmn-deco-05 .cmn-deco-deco02 {
    max-width: 90px;
    position: absolute;
    top: 10%;
    left: -9%;
    z-index: 1;
}

.cmn-deco-05 .cmn-deco-deco03 {
    max-width: 120px;
    position: absolute;
    bottom: -22%;
    right: 31%;
    z-index: 1;
}

.cmn-deco-05 .cmn-deco-deco04 {
    max-width: 120px;
    position: absolute;
    bottom: -20%;
    right: 10%;
    z-index: 1;
}

.cmn-deco-06 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.lower .cmn-deco-06 {
    z-index: 1;
}

.cmn-deco-07 {
    position: absolute;
    bottom: 0px;
    right: -90px;
    z-index: 1;
}

.cmn-deco-07>*:nth-of-type(1) {
    max-width: 99px;
    margin-bottom: -20px;
    margin-left: -70px;
}

.cmn-deco-07>*:nth-of-type(2) {
    max-width: 116px;
}

.cmn-deco-08 {
    position: relative;
}

.cmn-deco-08 .cmn-deco-deco01 {
    max-width: 146px;
    position: absolute;
    top: -80px;
    right: -60px;
    z-index: 1;
}

@media (max-width: 1024px) {
    .cmn-deco-02 .deco-top {
        max-width: 300px;
        top: -30px;
        right: -12%;
    }

    .cmn-deco-03 .deco-top {
        max-width: 300px;
    }

    .cmn-deco-03.pattern-01 .deco-top {
        top: -190px;
    }

    .cmn-deco-04 {
        padding: 0 105px;
    }

    .cmn-deco-04 .cmn-deco-left,
    .cmn-deco-04 .cmn-deco-right {
        max-width: 100px;
    }

    .cmn-deco-05 .cmn-deco-deco01 {
        top: -3%;
        left: 10%;
    }

    .cmn-deco-05 .cmn-deco-deco02 {
        top: 15%;
        left: 0%;
    }

    .cmn-deco-05 .cmn-deco-deco03 {
        bottom: 0%;
        right: 30%;
    }

    .cmn-deco-05 .cmn-deco-deco04 {
        bottom: 1%;
        right: 12%;
    }
    
    .cmn-deco-06 {
        position: relative;
    }

    .cmn-deco-07 {
        right: -70px;
    }

    .cmn-deco-07>*:nth-of-type(1) {
        max-width: 79px;
        margin-bottom: -10px;
        margin-left: -50px;
    }

    .cmn-deco-07>*:nth-of-type(2) {
        max-width: 76px;
    }
}

@media (max-width: 599px) {
    .cmn-deco-01 {
        padding-top: 47px;
        padding-bottom: 44px;
    }

    .cmn-deco-01.pattern-01 {
        padding-top: 86px;
    }

    .cmn-deco-01:after {
        height: calc(100% - 80px);
    }

    .cmn-deco-01.pattern-01:after {
        height: calc(100% - 120px);
        bottom: 40px;
    }

    .cmn-deco-01 .deco-top {
        height: 47px;
    }

    .cmn-deco-01.pattern-01 .deco-top {
        height: 86px;
    }

    .cmn-deco-01 .deco-bottom {
        height: 44px;
    }

    .cmn-deco-02 .deco-top {
        max-width: 150px;
    }

    .cmn-deco-03 .deco-top {
        max-width: 150px;
    }

    .cmn-deco-03.pattern-01 .deco-top {
        top: -100px;
    }

    .cmn-deco-04 {
        padding: 0;
    }

    .cmn-deco-04 .cmn-deco-left,
    .cmn-deco-04 .cmn-deco-right {
        max-width: 70px;
    }

    .cmn-deco-04 .cmn-deco-left {
        bottom: 20px;
    }

    .cmn-deco-04 .cmn-deco-right {
        bottom: 25px;
    }

    .cmn-deco-05 .cmn-deco-deco01 {
        width: 60px;
        top: -8%;
        left: 14%;
    }

    .cmn-deco-05 .cmn-deco-deco02 {
        width: 60px;
    }

    .cmn-deco-05 .cmn-deco-deco03 {
        width: 70px;
        bottom: -2%;
    }

    .cmn-deco-05 .cmn-deco-deco04 {
        width: 70px;
        bottom: 0%;
        right: 6%;
    }

    .cmn-deco-06:before {
        content: "";
        width: 100%;
        height: 50px;
        display: block;
        background: #b4dedb;
    }

    .cmn-deco-07 {
        right: -60px;
    }

    .cmn-deco-07>*:nth-of-type(1) {
        max-width: 59px;
        margin-left: -40px;
    }

    .cmn-deco-07>*:nth-of-type(2) {
        max-width: 56px;
    }

    .cmn-deco-08 .cmn-deco-deco01 {
        max-width: 96px;
        top: -50px;
        right: -40px;
    }
}

/*テキストにライン引く*/
.cmn-line-01 {
    border-bottom: 4px dotted var(--txt-color-02);
}

.cmn-line-02 {
    border-bottom: 4px dotted var(--txt-color-05);
}

/*画像にhoverした時にズーム*/
.hover-img-01 a,
.hover-img-02 a .pic {
    display: block;
    overflow: hidden;
}

.hover-img-01 a:hover,
.hover-img-02 a:hover {
    opacity: 1;
}

.hover-img-01 a img,
.hover-img-02 a img {
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.hover-img-01 a:hover img,
.hover-img-02 a:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.hover-img-03 a .pic {
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.hover-img-03 a:hover .pic {
    border-radius: 80px;
}

.hover-txt-01 a .pic .hover-txt {
    width: 70%;
    visibility: hidden;
    text-align: center;
    opacity: 0;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
}

.hover-txt-01 a:hover .pic .hover-txt {
    visibility: visible;
    opacity: 1;
}

.hover-txt-01 a:hover .pic img {
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
}

@media (max-width: 1024px) {
    .hover-txt-01 a .pic .hover-txt {
        visibility: visible;
        opacity: 1;
    }

    .hover-txt-01 a .pic img {
        -webkit-filter: brightness(0.6);
        filter: brightness(0.6);
    }
}

/*タグ*/
.cmn-tag-01>* {
    display: inline-block;
    margin-right: 10px;
    padding: 2px 10px;
    font-weight: bold;
    color: var(--txt-color-00);
    letter-spacing: 2px;
    background: var(--back-color-02);
}

.cmn-tag-02>* {
    display: inline-block;
    margin-right: 10px;
    padding: 2px 10px;
    font-weight: bold;
    letter-spacing: 2px;
}

.cmn-tag-02>*:before {
    content: "\f02c";
    margin-right: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/*ページャー*/
.cmn-pager-01 li {
    margin: 0 10px;
}

.cmn-pager-01 li>* {
    width: 38px;
    height: 38px;
    display: block;
    padding: 0 5px;
    font-weight: 500;
    font-size: 16px;
    color: var(--txt-color-02);
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background: var(--back-color-00);
    -webkit-box-shadow: 4px 4px 0px 0px var(--txt-color-06);
    box-shadow: 4px 4px 0px 0px var(--txt-color-06);
    -webkit-transition: transform 0.2s ease,box-shadow 0.2s ease;
    -webkit-transition: -webkit-transform 0.2s ease,-webkit-box-shadow 0.2s ease;
    transition: -webkit-transform 0.2s ease,-webkit-box-shadow 0.2s ease;
    transition: transform 0.2s ease,box-shadow 0.2s ease;
    transition: transform 0.2s ease,box-shadow 0.2s ease,-webkit-transform 0.2s ease,-webkit-box-shadow 0.2s ease;
    position: relative;
}

.cmn-pager-01 li>*:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
    -webkit-transition: transform 0.2s ease,box-shadow 0.2s ease;
    -webkit-transition: -webkit-transform 0.2s ease,-webkit-box-shadow 0.2s ease;
    transition: -webkit-transform 0.2s ease,-webkit-box-shadow 0.2s ease;
    transition: transform 0.2s ease,box-shadow 0.2s ease;
    transition: transform 0.2s ease,box-shadow 0.2s ease,-webkit-transform 0.2s ease,-webkit-box-shadow 0.2s ease;
    -webkit-transform: translate3d(3px, 3px, 0);
    transform: translate3d(3px, 3px, 0);

    -moz-opacity: 1;
}

.cmn-pager-01 li.prev>*,
.cmn-pager-01 li.next>* {
    font-size: 14px;
}

.cmn-pager-01 li.prev>*:after {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.cmn-pager-01 li.next>*:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.cmn-pager-01 li.now>* {
    color: var(--txt-color-00);
    background: var(--back-color-02);
}

/*電話番号*/
.cmn-tel-01 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    font-weight: 500;
    line-height: 1;
}

.cmn-tel-01 .icon {
    width: 50px;
    height: 50px;
    display: inline-block;
    font-size: 25px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
}

/*共通日付*/
.cmn-day-01 {
    font-size: 14px;
    letter-spacing: 1px;
}

.cmn-day-01.pattern-01 {
    font-size: 16px;
}

.cmn-day-02>* {
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 15px;
    padding-left: 16px;
    position: relative;
}

.cmn-day-02>*:before {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: var(--back-color-02);
    position: absolute;
    top: 8px;
    left: 0;
}

@media (max-width: 599px) {
    .cmn-day-01.pattern-01 {
        font-size: 14px;
    }

    .cmn-day-02>* {
        margin-bottom: 10px;
        margin-right: 10px;
        font-size: 14px;
    }

    .cmn-day-02>*:before {
        top: 6px;
    }
}

/*共通カテゴリ*/
.cmn-cate-01 .box {
    padding: 20px;
    border-radius: 10px;
}

.cmn-cate-01 .tit {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

.cmn-cate-01 li+li {
    margin-top: 10px;
}

.cmn-cate-01 li a {
    padding-left: 20px;
    font-weight: 500;
    position: relative;
}

.cmn-cate-01 li a:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: var(--txt-color-02);
    position: absolute;
    top: 2px;
    left: 0;
}

/*画像を家形に切り抜き*/
.pic-cut-01 {
    -webkit-clip-path: polygon(50% 0%, 100% 30%, 90% 30%, 90% 100%, 10% 100%, 10% 30%, 0 30%);
    clip-path: polygon(50% 0%, 100% 30%, 90% 30%, 90% 100%, 10% 100%, 10% 30%, 0 30%);
}

/*===================================
  共通タイトル　ttl-cmn
===================================*/
/* タイトル */
.cmn-ttl-01 {
    position: relative;
}

.cmn-ttl-01 .icon {
    height: 60px;
    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-bottom: 10px;
}

.cmn-ttl-01 .icon img {
    width: auto;
    max-width: 100%;
    height: initial !important;
    max-height: 100%;
}

.cmn-ttl-01 .ttl-main {
    font-size: 36px;
    line-height: 1;
    letter-spacing: 4px;
}

.cmn-ttl-02 {
    font-size: 36px;
}

.cmn-ttl-02.pattern-01 {
    font-size: 26px;
}

.cmn-ttl-02 .icon {
    height: 60px;
    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-bottom: -33px;
}

.cmn-ttl-02 .icon img {
    width: auto;
    max-width: 100%;
    height: initial !important;
    max-height: 100%;
}

.cmn-ttl-02 .ttl-main {
    width: 550px;
    padding: 40px 10px;
    line-height: 1;
    background-image: url('/import/tenant_1/160.16.146.185/html/images/deco-06.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.cmn-ttl-02 .ttl-sub {
    margin-top: 10px;
    font-weight: bold;
    font-size: 50%;
    letter-spacing: 7px;
}

.cmn-ttl-03 .ttl-main {
    font-size: 30px;
}

.cmn-ttl-04 .ttl-main {
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 80px;
    font-size: 30px;
    position: relative;
}

.cmn-ttl-04 .border {
    width: 100%;
    border-bottom: 5px solid;
    border-radius: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.cmn-ttl-04 .deco {
    max-width: 68px;
    position: absolute;
    bottom: -10px;
    right: 10px;
    z-index: 1;
}

.cmn-ttl-05 .ttl-main {
    padding-left: 50px;
    font-size: 20px;
    position: relative;
}

.cmn-ttl-05 .deco {
    max-width: 30px;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    position: absolute;
    top: 19px;
    left: 21px;
    z-index: 1;
}

.cmn-ttl-05 .num {
    width: 40px;
    height: 40px;
    font-weight: 500;
    line-height: 34px;
    text-align: center;
    border: 3px solid;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: 0;
}

@media (max-width: 1024px) {
    .cmn-ttl-04 .ttl-main {
        font-size: 22px;
    }
}

@media (max-width: 599px) {
    .cmn-ttl-01 .ttl-main {
        font-size: 22px;
    }

    .cmn-ttl-01 .icon {
        height: 45px;
    }

    .cmn-ttl-02 {
        font-size: 22px;
    }

    .cmn-ttl-02.pattern-01 {
        font-size: 18px;
    }

    .cmn-ttl-02 .icon {
        height: 45px;
        margin-bottom: -20px;
    }

    .cmn-ttl-02 .ttl-main {
        width: 300px;
        padding: 20px 10px;
    }

    .cmn-ttl-03 .ttl-main {
        font-size: 22px;
    }

    .cmn-ttl-04 .ttl-main {
        padding-left: 0;
        padding-right: 30px;
        font-size: 20px;
    }

    .cmn-ttl-04 .deco {
        max-width: 48px;
        bottom: -20px;
        right: 0px;
    }
}

/*見出し上書き用*/
[class*="ttl-mb-"] {
    --ttl-mb-xlarge: 80px;
    --ttl-mb-large: 60px;
    --ttl-mb-medium: 40px;
    --ttl-mb-small: 20px;
    --ttl-mb-xsmall: 10px;
}

.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);
    }
}

/*記事詳細見出し*/
.detail-ttl-01 .ttl-main {
    padding-left: 65px;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 4px;
    position: relative;
}

.detail-ttl-01 .ttl-main .deco {
    max-width: 50px;
    position: absolute;
    top: -10px;
    left: 0;
}

@media (max-width: 599px) {
    .detail-ttl-01 .ttl-main {
        padding-left: 50px;
        font-size: 22px;
    }

    .detail-ttl-01 .ttl-main .deco {
        max-width: 40px;
        top: -8px;
    }
}

/*記事内容見出し*/
.detail-content {
    margin-bottom: 20px;
    padding: 30px 30px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 4px 10px -1px rgb(0 0 0 / 30%);
    box-shadow: 0px 4px 10px -1px rgb(0 0 0 / 30%);
}

.detail-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 20px;
    color: var(--txt-color-00);
    background: var(--txt-color-02);
}

.detail-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 0 20px 10px;
    font-weight: 500;
    font-size: 20px;
    color: var(--txt-color-01);
    border-bottom: 2px solid;
}

.detail-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 5px 0px 5px 15px;
    font-weight: 500;
    font-size: 20px;
    color: var(--txt-color-01);
    border-left: 3px solid var(--txt-color-02);
}

@media (max-width: 599px) {
    .detail-content {
        margin-bottom: 0px;
        padding: 30px 20px;
    }

    .detail-content h2 {
        padding: 8px 10px;
        font-size: 18px;
    }

    .detail-content h3 {
        padding: 0 5px 10px;
        font-size: 18px;
    }

    .detail-content h4 {
        padding: 5px 0px 5px 10px;
        font-size: 18px;
    }
}

/*===================================
  共通ボタン btn-cmn
===================================*/
/*ボタン*/
.cmn-btn-01 .btn-inner>* {
    width: 240px;
    max-width: 100%;
    display: block;
    padding: 20px 10px;
    font-size: 18px;
    letter-spacing: 4px;
    text-align: center;
    border-radius: 100px;
}

.cmn-btn-02 .btn-inner>* {
    width: 450px;
    max-width: 100%;
    display: block;
    padding: 15px 10px;
    font-size: 18px;
    letter-spacing: 4px;
    text-align: center;
    border-radius: 100px;
}

.cmn-btn-03 .btn-inner>* {
    display: block;
    font-size: 20px;
    border-bottom: 1px solid;
}

.cmn-btn-04 .btn-inner>* {
    width: 450px;
    max-width: 100%;
    display: block;
    padding: 25px 10px;
    font-size: 22px;
    letter-spacing: 4px;
    text-align: center;
    border-radius: 100px;
}

.cmn-btn-05 .btn-inner>* {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    font-weight: 500;
    font-size: 16px;
}

.cmn-btn-05 .btn-inner>*:before {
    content: "▶︎";
    margin-right: 5px;
    font-size: 14px;
}

.cmn-btn-06 .btn-inner>* {
    width: 300px;
    max-width: 100%;
    display: block;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    border-radius: 100px;
}

@media (max-width: 599px) {
    .cmn-btn-01 .btn-inner>* {
        padding: 10px 10px;
    }

    .cmn-btn-02 .btn-inner>* {
        width: 280px;
    }

    .cmn-btn-04 .btn-inner>* {
        width: 280px;
        padding: 15px 10px;
        font-size: 20px;
    }
}

/*お問い合わせフォームボタン*/
.contact-btn-01 .btn-inner>* {
    width: 300px;
    display: block;
    padding: 20px 10px;
    font-size: 16px;
    color: var(--txt-color-00);
    text-align: center;
    border-radius: 100px;
    background: var(--btn-color-02);
    -webkit-box-shadow: 0px 6px 0px -2px var(--back-color-07);
    box-shadow: 0px 6px 0px -2px var(--back-color-07);
    -webkit-transition: shadow 0.3s ease,transform 0.3s ease;
    -webkit-transition: shadow 0.3s ease,-webkit-transform 0.3s ease;
    transition: shadow 0.3s ease,-webkit-transform 0.3s ease;
    transition: shadow 0.3s ease,transform 0.3s ease;
    transition: shadow 0.3s ease,transform 0.3s ease,-webkit-transform 0.3s ease;
    position: relative;
}

.contact-btn-01 .btn-inner>*:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
    -webkit-transform: translate3d(0px, 3px, 0);
    transform: translate3d(0px, 3px, 0);
}

@media (max-width: 599px) {
    .contact-btn-01.pattern-01 .btn-inner>* {
        width: 170px;
    }
}

/*ボタン上書き用*/
[class*="btn-mt-"] {
    --btn-mt-xlarge: 80px;
    --btn-mt-large: 60px;
    --btn-mt-medium: 40px;
    --btn-mt-small: 20px;
    --btn-mt-xsmall: 10px;
}

.btn-mt-xlarge {
    margin-top: var(--btn-mt-xlarge);
}

.btn-mt-large {
    margin-top: var(--btn-mt-large);
}

.btn-mt-medium {
    margin-top: var(--btn-mt-medium);
}

.btn-mt-small {
    margin-top: var(--btn-mt-small);
}

.btn-mt-xsmall {
    margin-top: var(--btn-mt-xsmall);
}

.btn-mt-none {
    margin-top: 0;
}

@media (max-width: 1024px) {
    .btn-mt-xlarge {
        margin-top: calc(var(--btn-mt-xlarge) * 0.8);
    }

    .btn-mt-large {
        margin-top: calc(var(--btn-mt-large) * 0.8);
    }

    .btn-mt-medium {
        margin-top: calc(var(--btn-mt-medium) * 0.8);
    }

    .btn-mt-small {
        margin-top: calc(var(--btn-mt-small) * 0.8);
    }

    .btn-mt-xsmall {
        margin-top: calc(var(--btn-mt-xsmall) * 0.8);
    }
}

@media (max-width: 599px) {
    .btn-mt-xlarge {
        margin-top: calc(var(--btn-mt-xlarge) * 0.6);
    }

    .btn-mt-large {
        margin-top: calc(var(--btn-mt-large) * 0.6);
    }

    .btn-mt-medium {
        margin-top: calc(var(--btn-mt-medium) * 0.6);
    }

    .btn-mt-small {
        margin-top: calc(var(--btn-mt-small) * 0.6);
    }

    .btn-mt-xsmall {
        margin-top: calc(var(--btn-mt-xsmall) * 0.6);
    }
}

/*===================================
  共通要素
===================================*/
/*h1ページタイトル */
.cmn-h1-01 {
    margin-bottom: 5px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-align: center;
}

[data-element-id] .home .cmn-h1-01 {
    padding: 40px 0 20px;
}

.lower .cmn-h1-01 {
    width: calc(100vw - 440px);
    text-align: left;
    margin-bottom: 0;
    margin-left: 20px;
}

[data-element-id] .lower .cmn-h1-01 {
    padding: 50px 0 30px;
}

@media (max-width: 1024px) {
    .lower .cmn-h1-01 {
        width: 100%;
        margin-bottom: 20px;
        margin-left: 10px;
        margin-top: 10px;
    }
}

@media (max-width: 599px) {
    .cmn-h1-01 {
        font-size: 10px;
    }
}

/*ヘッダーheader*/
body.hidden {
    overflow: hidden;
}

body.hidden .h1,
body.hidden .mainimg,
body.hidden .main,
body.hidden .footer {
    -webkit-filter: blur(3px);
    filter: blur(3px);
}

.overlay {
    width: 100%;
    height: 100%;
    display: none;
    overflow: hidden;
    background-color: rgb(0 0 0 / 50%);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;

    -ms-touch-action: none;
    touch-action: none;
}

.overlay.active {
    display: block;
}

/*cmn-header*/
.cmn-header-01 {
    position: absolute;
    top: 30px;
    left: 10px;
    z-index: 1;
}

[data-element-id] .cmn-header-01 {
    position: relative;
    top: 0;
    left: 0;
    width: 600px;
    margin-left: 50px;
    margin-bottom: 50px;
}

.cmn-header-01 .icon {
    max-width: 107px;
    margin-right: 10px;
}

.cmn-header-01 .logo img {
    /* width: 200px; */
    width: 300px;
    max-width: 100%;
}

[data-element-id] .cmn-header-01 .nav {
    background: var(--back-color-00);
}

.cmn-header-01 .nav>ul>li+li {
    border-top: 1px solid var(--txt-color-04);
}

.cmn-header-01 .nav>ul>li>*:not(.toggle-box) {
    display: block;
    padding: 20px 55px 20px 25px;
    font-weight: 500;
    font-size: 18px;
    position: relative;
}

.cmn-header-01 .nav .toggle-box li+li {
    border-top: 1px solid var(--txt-color-04);
}

.cmn-header-01 .nav .toggle-box li>* {
    display: block;
    padding: 20px 25px 20px 25px;
    font-weight: 500;
    font-size: 18px;
}

.cmn-header-01 .nav li .arrow {
    width: 30px;
    height: 30px;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    position: absolute;
    top: 18px;
    right: 20px;
}

.cmn-header-01 .nav li .is-parent .arrow {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.cmn-header-01 .nav li .arrow:before {
    content: "";
    width: 100%;
    border-bottom: 5px solid;
    border-radius: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}

.cmn-header-01 .nav li .arrow:after {
    content: "";
    height: 100%;
    border-left: 5px solid;
    border-radius: 30px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
}

.cmn-header-01 .nav li .is-parent .arrow:after {
    opacity: 0;
}

.cmn-header-01 .infobox {
    padding: 50px 50px;
    text-align: center;
    position: relative;
}

.cmn-header-01 .infobox ul {
    position: absolute;
    top: 10px;
    right: 10px;
}

.cmn-header-01 .infobox li+li {
    margin-left: 5px;
}

.cmn-header-01 .infobox li>* {
    width: 40px;
    height: 40px;
    display: block;
    font-size: 23px;
    color: var(--txt-color-00);
    line-height: 41px;
    text-align: center;
    border-radius: 50%;
    background: var(--back-color-02);
}

.cmn-header-01 .infobox .tel>* {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 38px;
    letter-spacing: 1px;
}

.cmn-header-01 .infobox .tel .icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 44px;
}

.cmn-header-01 .infobox .info {
    font-size: 18px;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .cmn-header-01 {
        width: 100%;
        height: calc(100% - 70px);
        background: var(--back-color-00);
        -webkit-transition: 0.8s ease;
        transition: 0.8s ease;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        z-index: 9997;
    }

    .header-inner.active .cmn-header-01 {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .cmn-header-01 .nav-inner {
        height: 100%;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .cmn-header-01 .imgbox {
        margin: 50px 0;
    }
}

@media (max-width: 599px) {
    .cmn-header-01 {
        height: calc(100% - 50px);
    }

    .cmn-header-01 .imgbox {
        margin: 20px 0 10px;
    }

    .cmn-header-01 .icon {
        max-width: 80px;
        margin-right: 5px;
    }

    .cmn-header-01 .nav>ul>li>*:not(.toggle-box) {
        padding: 10px 35px 10px 15px;
        font-size: 16px;
    }

    .cmn-header-01 .nav .toggle-box li>* {
        padding: 10px 15px 10px 15px;
        font-size: 16px;
    }

    .cmn-header-01 .nav li .arrow {
        width: 25px;
        height: 25px;
        top: 10px;
        right: 6px;
    }

    .cmn-header-01 .infobox {
        padding: 30px 20px;
    }

    .cmn-header-01 .infobox ul {
        top: 5px;
        right: 5px;
    }

    .cmn-header-01 .infobox li>* {
        width: 30px;
        height: 30px;
        font-size: 19px;
        line-height: 33px;
    }

    .cmn-header-01 .infobox .tit {
        font-size: 15px;
    }

    .cmn-header-01 .infobox .tel>* {
        font-size: 30px;
    }

    .cmn-header-01 .infobox .tel .icon {
        width: 30px;
        height: 30px;
        font-size: 17px;
        line-height: 34px;
    }

    .cmn-header-01 .infobox .info {
        font-size: 14px;
    }
}

.cmn-header-02 {
    position: relative;
    z-index: 10;
}

.cmn-header-02.fixed {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-box-shadow: 0px 4px 2px -2px rgb(0 0 0 / 20%);
    box-shadow: 0px 4px 2px -2px rgb(0 0 0 / 20%);    
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
}

[data-element-id] .cmn-header-02>*>ul {
    flex-wrap: wrap;
}

.cmn-header-02>*>ul>li {
    width: calc(100% / 7);
    border-left: 4px dotted var(--txt-color-04);
}

[data-element-id] .cmn-header-02>*>ul>li {
    width: calc(100% / 4);
}

.cmn-header-02>*>ul>li:last-of-type {
    border-right: 4px dotted var(--txt-color-04);
}

.cmn-header-02>*>ul>li>*:not(.dropdown-box) {
    height: 100%;
    display: block;
    padding: 10px 10px;
    font-weight: 500;
    text-align: center;
}

[data-element-id] .cmn-header-02>*>ul>li>*:not(.dropdown-box) {
    height: auto;
}

.cmn-header-02>*>ul>li>* .icon {
    height: 50px;
    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-bottom: 10px;
    -webkit-transition: .5s ease-out;
    transition: .5s ease-out;    
}

.cmn-header-02.fixed>*>ul>li>* .icon {
    height: 40px;
}

.cmn-header-02>*>ul>li>* .icon img {
    width: auto;
    max-width: 100%;
    height: initial !important;
    max-height: 100%;
}

.cmn-header-02 li.dropdown {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

[data-element-id] .cmn-header-02 li.dropdown {
    overflow: visible;
}

.cmn-header-02 li.dropdown:hover {
    overflow: visible;
}

.cmn-header-02 li.dropdown .dropdown-box {
    width: 280px;
    visibility: hidden;
    margin: 0 auto;
    padding-top: 15px;
    opacity: 0;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    -webkit-transform: translate(0, -10%);
    transform: translate(0, -10%);
    position: absolute;
    top: 100%;
    left: -150px;
    right: -150px;
    z-index: 10;
}

[data-element-id] .cmn-header-02 li.dropdown .dropdown-box {
    width: auto;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: static;
}

.cmn-header-02 li.dropdown:hover .dropdown-box {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.cmn-header-02 li.dropdown ul {
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 2px -2px rgb(0 0 0 / 20%);
    box-shadow: 0px 1px 10px 1px rgb(0 0 0 / 20%);
    position: relative;
}

.cmn-header-02 li.dropdown li+li {
    border-top: 1px dotted var(--txt-color-04);
}

.cmn-header-02 li.dropdown li>* {
    display: block;
    padding: 10px;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
}

@media (max-width: 1024px) {
    .cmn-header-02>*>ul>li>*:not(.dropdown-box) {
        padding: 10px 5px;
    }
}

/*ハンバーガーボタン*/
.cmn-hamburger-01 {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    opacity: 0.8;
    cursor: pointer;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 9999;
}

[data-element-id] .cmn-hamburger-01 {
    width: 200px;
    height: 150px;
    margin-left: auto;
    margin-right: 50px;
    top: 0;
    right: 0;
}

.cmn-hamburger-01 .bar {
    width: 39px;
    height: 4px;
    margin-top: -1px;
    padding: 0;
    text-indent: 9998px;
    border-bottom: 4px solid;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    position: absolute;
    top: 50%;
    left: 10px;
}

.cmn-hamburger-01.active .bar {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.cmn-hamburger-01 .bar:before,
.cmn-hamburger-01 .bar:after {
    content: "";
    width: 40px;
    display: block;
    border-bottom: 4px solid;
    position: absolute;
    left: 0;
}

.cmn-hamburger-01 .bar:before {
    top: 15px;
}

.cmn-hamburger-01 .bar:after {
    top: -15px;
}

.cmn-hamburger-01.active .bar:before,
.cmn-hamburger-01.active .bar:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
    left: 0;
}

@media (max-width: 599px) {
    .cmn-hamburger-01 {
        width: 50px;
        height: 50px;
        bottom: 5px;
        right: 5px;
    }

    .cmn-hamburger-01 {
        width: 40px;
        height: 40px;
        bottom: 5px;
        right: 5px;
    }

    .cmn-hamburger-01 .bar {
        width: 32px;
        height: 3px;
        border-bottom: 3px solid;
        left: 4px;
    }

    .cmn-hamburger-01 .bar:before,
    .cmn-hamburger-01 .bar:after {
        width: 32px;
        border-bottom: 3px solid;
    }

    .cmn-hamburger-01 .bar:before {
        top: 12px;
    }

    .cmn-hamburger-01 .bar:after {
        top: -12px;
    }
}

/*上に戻るボタン*/
.cmn-return-01 {
    width: 60px;
    height: 60px;
    visibility: hidden;
    border-radius: 50%;
    -webkit-box-shadow: 0px 4px 2px -2px rgb(0 0 0 / 20%);
    box-shadow: 0px 4px 2px -2px rgb(0 0 0 / 20%);
    opacity: 0;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    position: fixed;
    /* bottom: 110px; */
    bottom: 8%;
    right: 10px;
    z-index: 10;
}

[data-element-id] .cmn-return-01 {
    position: relative;
}

.cmn-return-01.scroll-addition {
    visibility: visible;
    opacity: 1;
}

.cmn-return-01>* {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.cmn-return-01 .icon {
    margin-bottom: 5px;
    font-size: 26px;
}

@media (max-width: 599px) {
    .cmn-return-01 {
        width: 50px;
        height: 50px;
        bottom: 50px;
        right: 5px;
    }

    .cmn-return-01>* {
        font-size: 14px;
    }

    .cmn-return-01 .icon {
        margin-bottom: 3px;
        font-size: 20px;
    }
}

/*===================================
フッター footer
===================================*/
/*cmn-footer*/
.cmn-footer-01 .logo img {
    max-width: 300px;
}

@media (max-width: 599px) {
    .cmn-footer-01 .logo img {
        max-width: 280px;
    }
}

.cmn-footer-02 .tit {
    padding: 20px;
}

.cmn-footer-02 .tel-box {
    padding: 15px;
}

@media (max-width: 599px) {
    .cmn-footer-02 .tit {
        padding: 10px;
    }

    .cmn-footer-02 .tel .icon {
        width: 35px;
        height: 35px;
        display: inline-block;
        font-size: 19px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
    }
}

.cmn-footer-03 .tit {
    padding-left: 25px;
    font-weight: 500;
    font-size: 20px;
    position: relative;
}

.cmn-footer-03 .tit:before {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
    background: var(--back-color-02);
    position: absolute;
    top: 8px;
    left: 0;
}

.cmn-footer-03 .list li+li {
    margin-top: 10px;
}

.cmn-footer-03 .list li a {
    padding-left: 15px;
    font-weight: 500;
    position: relative;
}

.cmn-footer-03 .list li a:before {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    background: var(--back-color-02);
    position: absolute;
    top: 8px;
    left: 0;
}

.cmn-footer-03 .list li.sub a {
    padding-left: 35px;
}

.cmn-footer-03 .list li.sub a:before {
    content: "";
    width: 6px;
    height: 2px;
    display: block;
    border-radius: 0;
    background: var(--back-color-04);
    position: absolute;
    top: 11px;
    left: 15px;
}

/*固定ボタン*/
.cmn-fixed-01 {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    position: fixed;
    bottom: 20%;
    right: 0;
    z-index: 10;
    z-index: 9998;

    -webkit-text-orientation: upright;
    text-orientation: upright;
}

[data-element-id] .cmn-fixed-01 {
    position: relative;
    bottom: 0;
}

.cmn-fixed-01 .logo {
    line-height: 1;
}

.cmn-fixed-01 .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cmn-fixed-01 .item {
    overflow: hidden;
    border-radius: 30px 0 0 30px;
}

.cmn-fixed-01 .item>* {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding: 20px;
    font-weight: 500;
    font-size: 20px;
    white-space: nowrap;
    letter-spacing: 3px;
}

.cmn-fixed-01 .item .icon {
    width: 35px;
    height: 35px;
    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-bottom: 10px;
    font-size: 23px;
    border-radius: 50%;
}

.cmn-fixed-01 .tel {
    margin-bottom: 20px;
    border-radius: 30px 0 0 30px;
    -webkit-transition: 1s ease;
    transition: 1s ease;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

[data-element-id] .cmn-fixed-01 .tel {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.cmn-fixed-01.scrolled .tel {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);  
}

.cmn-fixed-01 .tel:hover {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.cmn-fixed-01 .tel>* {
    width: 100%;
    height: 80px;
    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;
    flex-direction: column-reverse;
    font-size: 30px;
}

.cmn-fixed-01 .tel .icon {
    display: inline-block;
    margin: 0 15px;
}

.cmn-fixed-01 .tel .txt {
    width: 200px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    font-weight: 500;
    font-size: 26px;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
}

@media (max-width: 1024px) {
    .cmn-fixed-01 {
        width: 100%;
        height: 70px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-left: 20px;
        padding-right: 70px;
        -ms-writing-mode: initial;
        -webkit-writing-mode: initial;
        writing-mode: initial;
        background-color: rgba(255, 255, 255, 0.6);
        -webkit-box-shadow: 0px 4px 2px -2px rgb(0 0 0 / 20%);
        box-shadow: 0px 4px 2px -2px rgb(0 0 0 / 20%);
        position: fixed;
        top: 0;
        bottom: auto;
        left: 0;
    }

    .cmn-fixed-01 .item {
        border-radius: 50px;
    }

    .cmn-fixed-01 .item>* {
        padding: 10px 20px;
    }

    .cmn-fixed-01 .item .icon {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .cmn-fixed-01 .logo img {
        max-width: 210px;
    }

    .cmn-fixed-01 .tel {
        margin-bottom: 0;
        margin-right: 10px;
        border-radius: 50%;
        -webkit-transform: inherit;
        transform: inherit;
    }
    
    .cmn-fixed-01.scrolled .tel {
        -webkit-transform: translateX(0);
        transform: translateX(0);  
    }    

    .cmn-fixed-01 .tel>* {
        width: 55px;
        height: 55px;
        font-size: 27px;
    }

    .cmn-fixed-01 .tel .txt {
        display: none;
    }
}

@media (max-width: 599px) {
    .cmn-fixed-01 {
        height: 50px;
        padding-left: 10px;
        padding-right: 50px;
    }

    .cmn-fixed-01 .logo img {
        max-width: 120px;
    }

    .cmn-fixed-01 .tel {
        margin-right: 7px;
    }

    .cmn-fixed-01 .tel>* {
        width: 40px;
        height: 40px;
        padding: 5px;
        font-size: 20px;
    }

    .cmn-fixed-01 .item>* {
        padding: 5px 10px;
        font-size: 14px;
    }

    .cmn-fixed-01 .item .icon {
        width: 30px;
        height: 30px;
        margin-bottom: 0;
        margin-right: 7px;
        font-size: 18px;
    }
}

.cmn-fixed-02 {
    -webkit-transition: 1s ease;
    transition: 1s ease;
    position: fixed;
    top: 0;
    right: 70px;
    z-index: 10;
}

[data-element-id] .cmn-fixed-02 {
    position: relative;
    right: 0;
}

.cmn-fixed-02.scrolled {
    top: -120px;
}

.cmn-fixed-02 .box {
    padding: 10px 30px 10px;
    text-align: center;
    border-radius: 0 0 30px 30px;
    -webkit-box-shadow: 0 0 4px #858585;
    box-shadow: 0 0 4px #858585;
}

.cmn-fixed-02 .box .tit {
    font-weight: 500;
    font-size: 14px;
}

.cmn-fixed-02 .box .tel>* {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 31px;
    letter-spacing: 1px;
}

.cmn-fixed-02 .box .tel .icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 34px;
}

.cmn-fixed-02 .box .info {
    font-size: 14px;
    letter-spacing: 1px;
}

/*パンクズ*/
.cmn-pankuzu-01 li {
    display: inline;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
}

.cmn-pankuzu-01 li+li:before {
    content: "\f0da";
    margin: 0 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-weight: bold;
    font-size: 14px;
}

@media (max-width: 599px) {
    .cmn-pankuzu-01 li {
        font-size: 12px;
    }

    .cmn-pankuzu-01 li+li:before {
        margin: 0 5px;
    }
}

/*テーブル表*/
.cmn-table-01 table {
    width: 100%;
}

.cmn-table-01 table tr {
    position: relative;
}

.cmn-table-01 table tr:after {
    content: "";
    width: 100%;
    border-bottom: 3px dotted var(--txt-color-02);
    position: absolute;
    bottom: 0;
    left: 0;
}

.cmn-table-01 table th,
.cmn-table-01 table td {
    padding: 10px;
    font-weight: 500;
}

@media (max-width: 599px) {
    .cmn-table-01 table th,
    .cmn-table-01 table td {
        padding: 10px 5px;
        font-size: 14px;
    }

    .cmn-table-01 table th:first-of-type {
        width: 130px;
    }
}

.cmn-table-02 table {
    width: 100%;
}

.cmn-table-02 thead th {
    padding: 5px 10px;
}

.cmn-table-02 table thead th+th {
    border-left: 1px solid;
}

.cmn-table-02 table tbody tr+tr {
    border-top: 1px solid var(--txt-color-02);
}

.cmn-table-02 table tbody tr>*+* {
    border-left: 1px solid var(--txt-color-02);
}

.cmn-table-02 table tbody th,
.cmn-table-02 table tbody td {
    padding: 10px 20px;
}

.cmn-table-02 table .yen {
    font-weight: 500;
    font-size: 26px;
    line-height: 1;
}

.cmn-table-02 table .yen .small {
    font-size: 50%;
}

@media (max-width: 1024px) {
    .cmn-table-02 table .yen {
        font-size: 24px;
    }
}

@media (max-width: 599px) {
    .cmn-table-02 .table-inner {
        min-width: 700px;
    }
}

/*===================================
  TOPページ
===================================*/
/*メインビジュアルの高さをpadding-topで取る*/
/* メインビジュアル */
.cmn-mainimg-01 {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.cmn-mainimg-01 .imgbox {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.cmn-mainimg-01 .catch {
    width: calc(100% - 510px);
    margin: 0 auto;
    font-size: 40px;
    text-align: center;
    text-shadow: 0 0 6px #000;
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
}

.cmn-mainimg-01 .catch-main {
    letter-spacing: 7px;
}

.cmn-mainimg-01 .catch-sub {
    font-size: 70%;
}

.cmn-mainimg-01 .deco-01,
.cmn-mainimg-01 .deco-02,
.cmn-mainimg-01 .deco-03,
.cmn-mainimg-01 .deco-04 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    z-index: 1;
}

.cmn-mainimg-01 .deco-01 {
    top: 0%;
    right: 0%;
}

.cmn-mainimg-01 .deco-01>*:nth-of-type(1) {
    max-width: 99px;
    margin-top: 90px;
    margin-right: -20px;
}


.cmn-mainimg-01 .deco-01>*:nth-of-type(2) {
    max-width: 116px;
}

.cmn-mainimg-01 .deco-02 {
    bottom: -1%;
    left: 0%;
}

.cmn-mainimg-01 .deco-02>*:nth-of-type(1) {
    max-width: 194px;
}


.cmn-mainimg-01 .deco-02>*:nth-of-type(2) {
    max-width: 116px;
    margin-top: 90px;
    margin-left: -50px;
}

.cmn-mainimg-01 .deco-03 {
    bottom: 0%;
    right: 0%;
}

.cmn-mainimg-01 .deco-03>*:nth-of-type(1) {
    max-width: 173px;
    margin-top: 110px;
    margin-right: -45px;
    position: relative;
}


.cmn-mainimg-01 .deco-03>*:nth-of-type(2) {
    max-width: 156px;
}

@media (max-width: 1024px) {
    .cmn-mainimg-01 .catch {
        width: calc(100% - 250px);
        font-size: 30px;
    }

    .cmn-mainimg-01 .deco-01>*:nth-of-type(1) {
        max-width: 79px;
        margin-top: 70px;
        margin-right: -30px;
    }

    .cmn-mainimg-01 .deco-01>*:nth-of-type(2) {
        max-width: 86px;
    }

    .cmn-mainimg-01 .deco-02 {
        bottom: 1%;
        left: -3%;
    }

    .cmn-mainimg-01 .deco-02>*:nth-of-type(1) {
        max-width: 104px;
    }

    .cmn-mainimg-01 .deco-02>*:nth-of-type(2) {
        max-width: 66px;
        margin-top: 50px;
        margin-left: -30px;
    }

    .cmn-mainimg-01 .deco-03 {
        right: -3%;
    }

    .cmn-mainimg-01 .deco-03>*:nth-of-type(1) {
        max-width: 93px;
        margin-top: 80px;
        margin-right: -25px;
    }

    .cmn-mainimg-01 .deco-03>*:nth-of-type(2) {
        max-width: 106px;
    }
}

@media (max-width: 599px) {
    .cmn-mainimg-01 .catch {
        width: calc(100% - 0px);
        font-size: 22px;
        bottom: 75px;
    }

    .cmn-mainimg-01 .deco-01>*:nth-of-type(1) {
        max-width: 39px;
        margin-top: 35px;
        margin-right: -10px;
    }

    .cmn-mainimg-01 .deco-01>*:nth-of-type(2) {
        max-width: 46px;
    }

    .cmn-mainimg-01 .deco-02 {
        bottom: 0%;
        left: -5%;
    }

    .cmn-mainimg-01 .deco-02>*:nth-of-type(1) {
        max-width: 64px;
    }

    .cmn-mainimg-01 .deco-02>*:nth-of-type(2) {
        max-width: 46px;
        margin-top: 15px;
        margin-left: -11px;
    }

    .cmn-mainimg-01 .deco-03 {
        right: -5%;
    }

    .cmn-mainimg-01 .deco-03>*:nth-of-type(1) {
        max-width: 63px;
        margin-top: 25px;
        margin-right: -5px;
    }

    .cmn-mainimg-01 .deco-03>*:nth-of-type(2) {
        width: 56px;
    }
}

/*===================================
  下層
===================================*/
/*下層メインビジュアル*/
.cmn-lowerimg-01 {
    position: relative;
}

.cmn-lowerimg-01 .pic {
    width: 100%;
    display: block;
    margin-top: -100px;
    margin-bottom: -40px;
    position: relative;
}

.cmn-lowerimg-01 .pic img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.cmn-lowerimg-01 .pic:after {
    content: "";
    display: block;
    padding-top: 550px;
}

.cmn-lowerimg-01 .catch {
    padding: 15px 40px 15px 20px;
    font-size: 40px;
    line-height: 1;
    position: absolute;
    bottom: calc(15% + 40px);
    left: 10%;
    z-index: 1;
}

.cmn-lowerimg-01 .catch .back {
    width: 100vw;
    height: 100%;
    border-radius: 0 100px 100px 0;
    -webkit-box-shadow: 0px 4px 10px -1px rgb(0 0 0 / 30%);
    box-shadow: 0px 4px 10px -1px rgb(0 0 0 / 30%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.cmn-lowerimg-01 .catch .catch-sub {
    margin-top: 10px;
    font-weight: bold;
    font-size: 50%;
    letter-spacing: 7px;
}

@media (max-width: 1024px) {
    .cmn-lowerimg-01 .pic:after {
        padding-top: 400px;
    }

    .cmn-lowerimg-01 .catch {
        font-size: 34px;
        bottom: calc(5% + 40px);
        left: 1%;
    }
}

@media (max-width: 599px) {
    .cmn-lowerimg-01 .pic:after {
        padding-top: 350px;
    }

    .cmn-lowerimg-01 .catch {
        max-width: 90%;
        font-size: 26px;
        bottom: calc(10% + 40px);
        left: 0%;
    }
}

/*cmn-access*/
.cmn-access-01 .logo img {
    max-width: 400px;
}

.cmn-access-01 dl dt {
    display: inline-block;
    padding: 5px 20px;
    font-size: 16px;
    border-radius: 30px;
}

.cmn-access-01 dl dd {
    margin-top: 5px;
    font-size: 18px;
    line-height: 2;
    font-weight: 500;
}

@media (max-width: 599px) {
    .cmn-access-01 .logo img {
        max-width: 280px;
    }

    .cmn-access-01 dl dt {
        padding: 5px 10px;
        font-size: 14px;
    }

    .cmn-access-01 dl dd {
        font-size: 16px;
        line-height: 1.8;
    }
}

.cmn-access-02 .tit {
    padding: 10px 20px;
    font-size: 20px;
    text-align: center;
}

.cmn-access-02 .tel a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 599px) {
    .cmn-access-02 .tit {
        font-size: 18px;
    }

    .cmn-access-02 .tel a {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .cmn-access-02 .tel .icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
        line-height: 45px;
    }
}

/*cmn-faq*/
[data-element-id] .cmn-faq-01 .box:nth-of-type(n + 7) {
    display: none;
}

.cmn-faq-01 .box>* {
    position: relative;
}

.cmn-faq-01 .box .q-item {
    padding: 25px 90px;
    font-weight: 500;
    font-size: 24px;
    border-radius: 100px;
}

.cmn-faq-01 .box .a-item {
    width: calc(100% - 80px);
    margin: 0px auto;
    padding: 20px 50px;
    font-weight: 500;
    font-size: 24px;
    border-radius: 0 0 5px 5px;
}

.cmn-faq-01 .box .mark {
    font-weight: 500;
    font-size: 28px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: calc(50% + -2px);
    left: 40px;
}

.cmn-faq-01 .box .arrow {
    width: 30px;
    height: 30px;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: calc(50% + -2px);
    right: 30px;
}

.cmn-faq-01 .box .is-parent .arrow {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: center;
    transform-origin: bottom;
    top: calc(50% + -15px);
}

.cmn-faq-01 .box .arrow:before {
    content: "";
    width: 100%;
    border-bottom: 5px solid;
    border-radius: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}

.cmn-faq-01 .box .arrow:after {
    content: "";
    height: 100%;
    border-left: 5px solid;
    border-radius: 30px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
}

.cmn-faq-01 .box .is-parent .arrow:after {
    opacity: 0;
}

@media (max-width: 1024px) {
    .cmn-faq-01 .box .q-item {
        padding: 20px 70px;
        font-size: 20px;
    }

    .cmn-faq-01 .box .a-item {
        padding: 10px 30px;
        font-size: 20px;
    }

    .cmn-faq-01 .box .mark {
        font-size: 26px;
        left: 30px;
    }

    .cmn-faq-01 .box .arrow {
        right: 24px;
    }
}

@media (max-width: 599px) {
    .cmn-faq-01 .box .q-item {
        padding: 10px 50px;
        font-size: 18px;
    }

    .cmn-faq-01 .box .mark {
        font-size: 24px;
        left: 15px;
    }

    .cmn-faq-01 .box .arrow {
        width: 25px;
        height: 25px;
        right: 14px;
    }

    .cmn-faq-01 .box .a-item {
        width: calc(100% - 70px);
        font-size: 18px;
    }

    .cmn-faq-01 .box .a-item {
        padding: 10px 20px;
    }
}

/*cmn-menu*/
.cmn-menu-01 li .pic {
    width: 200px;
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    padding: 10px;
    border: solid 1px;
    border-radius: 50%;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.cmn-menu-01 li a:hover .pic {
    border-radius: 10px;
}

[data-element-id] .cmn-menu-01 li a:hover .pic {
    border-radius: 50%;
}

.cmn-menu-01 li .pic img {
    width: auto;
    max-width: 100%;
    height: initial !important;
    max-height: 100%;
}

.cmn-menu-01 li .tit {
    margin-top: 10px;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 1024px) {
    .cmn-menu-01 li .pic {
        padding: 40px;
    }
}

@media (max-width: 599px) {
    .cmn-menu-01 li .pic {
        width: 150px;
        height: 150px;
        padding: 30px;
    }

    .cmn-menu-01 li .tit {
        font-size: 16px;
    }
}

/*cmn-worries*/
.cmn-worries-01 .box {
    padding: 40px 80px 20px;
}

.cmn-worries-01.pattern-01 .box {
    padding: 0;
}

.cmn-worries-01 li>* {
    padding-bottom: 10px;
    padding-left: 50px;
    font-weight: 500;
    font-size: 22px;
    border-bottom: 4px dotted var(--txt-color-04);
    position: relative;
}

.cmn-worries-01.pattern-01 li>* {
    padding-left: 40px;
    font-size: 18px;
}

.cmn-worries-01 li>*:before {
    content: "";
    width: 30px;
    height: 30px;
    border: 2px solid var(--txt-color-06);
    border-radius: 10px;
    background: var(--txt-color-08);
    position: absolute;
    top: 3px;
    left: 0;
}

.cmn-worries-01.pattern-01 li>*:before {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    top: 2px;
}

.cmn-worries-01 li>*:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 30px;
    color: var(--txt-color-05);
    position: absolute;
    top: -5px;
    left: 5px;
    z-index: 1;
}

.cmn-worries-01.pattern-01 li>*:after {
    font-size: 27px;
    top: -5px;
}

@media (max-width: 1024px) {
    .cmn-worries-01 .box {
        padding: 30px 20px 10px;
    }

    .cmn-worries-01 li>* {
        padding-left: 35px;
        font-size: 18px;
    }

    .cmn-worries-01 li>*:before {
        width: 25px;
        height: 25px;
        top: 1px;
    }

    .cmn-worries-01 li>*:after {
        font-size: 24px;
    }
}

@media (max-width: 599px) {
    .cmn-worries-01 li>* {
        font-size: 16px;
    }

    .cmn-worries-01.pattern-01 li>* {
        padding-left: 35px;
        font-size: 16px;
    }

    .cmn-worries-01 li>*:before,
    .cmn-worries-01.pattern-01 li>*:before {
        width: 22px;
        height: 22px;
        border-radius: 5px;
        top: 2px;
    }

    .cmn-worries-01 li>*:after,
    .cmn-worries-01.pattern-01 li>*:after {
        font-size: 22px;
        top: -3px;
        left: 3px;
    }
}

/*cmn-features*/
.cmn-features-01 .list>* {
    padding-left: 25px;
    font-weight: 500;
    position: relative;
}

.cmn-features-01 .list>*:before {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
    background: var(--back-color-02);
    position: absolute;
    top: 8px;
    left: 0;
}

.cmn-features-01 .imgbox {
    position: relative;
}

.cmn-features-01 .imgbox .deco {
    max-width: 77px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.cmn-news-01 li+li {
    margin-top: 20px;
}

.cmn-news-01 li>* {
    display: block;
    padding-bottom: 10px;
    padding-left: 60px;
    border-bottom: 2px solid var(--txt-color-04);
    position: relative;
}

.cmn-news-01 li .icon {
    max-width: 40px;
    position: absolute;
    top: 5px;
    left: 0;
}

.cmn-news-01 li .day {
    font-weight: 500;
}

.cmn-news-01 li .tit {
    margin-top: 5px;
    font-weight: 500;
}

.cmn-news-02 li+li {
    border-top: 4px dotted;
}

.cmn-news-02 li a {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 80px;
    position: relative;
}

.cmn-news-02 li .icon {
    max-width: 50px;
    position: absolute;
    top: 20px;
    left: 10px;
}

.cmn-news-02 li .tit {
    margin-top: 5px;
}

/*cmn-info*/
.cmn-info-01 .tit {
    padding: 10px 20px;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 599px) {
    .cmn-info-01 .tit {
        font-size: 18px;
    }
}

/*cmn-contact*/
.cmn-contact-01 input,
.cmn-contact-01 textarea {
    padding: 10px 10px;
    border-radius: 5px;
}

.cmn-contact-01 .form textarea {
    height: 300px;
}

.cmn-contact-01 .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;
    padding-bottom: 20px;
}

.cmn-contact-01 .form dl+dl {
    padding-top: 20px;
    border-top: 1px solid var(--txt-color-04);
}

.cmn-contact-01 .form dt {
    width: 270px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding-right: 20px;
}

.cmn-contact-01 .form dt .tit {
    width: 170px;
    padding-right: 10px;
}

.cmn-contact-01 .form dt .label {
    width: 50px;
    font-size: 14px;
    text-align: center;
    border-radius: 70px;
}

.cmn-contact-01 .form dd {
    width: calc(100% - 270px);
}

.cmn-contact-01 .form dd.radiobtn label {
    display: inline-block;
    padding: 5px 10px 5px 35px;
    position: relative;
}

.cmn-contact-01 .form dd.radiobtn label::before {
    content: "";
    width: 25px;
    height: 25px;
    border: 2px solid var(--txt-color-07);
    border-radius: 5px;
    background: var(--txt-color-00);
    position: absolute;
    top: 5px;
    left: 0;
}

.cmn-contact-01 .form dd.radiobtn label:hover {
    cursor: pointer;
}

.cmn-contact-01 .form dd.radiobtn input {
    display: none;
}

.cmn-contact-01 .form dd.radiobtn input:checked+label::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 21px;
    color: var(--txt-color-02);
    position: absolute;
    top: 3px;
    left: 2px;
    z-index: 1;
}

.cmn-contact-01 .form dd.radiobtn input+label {
    margin-left: 10px;
}

@media (max-width: 599px) {
    .cmn-contact-01 .form {
        margin-left: 10px;
        margin-right: 10px;
    }

    .cmn-contact-01 .form textarea {
        height: 200px;
    }

    .cmn-contact-01 .form dt {
        width: 100%;
        padding-right: 0;
    }

    .cmn-contact-01 .form dt .tit {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .cmn-contact-01 .form dd {
        width: 100%;
        margin-top: 10px;
    }

    .cmn-contact-01 .form dd.radiobtn label {
        padding: 5px 10px 5px 30px;
    }

    .cmn-contact-01 .form dd.radiobtn input+label {
        margin-left: 0;
    }

    .cmn-contact-01 .form dd.radiobtn label::before {
        width: 20px;
        height: 20px;
        top: 9px;
    }

    .cmn-contact-01 .form dd.radiobtn input:checked+label::after {
        font-size: 18px;
        color: var(--txt-color-02);
        position: absolute;
        top: 6px;
        left: 2px;
    }
}

/*cmn-recruit*/
.cmn-recruit-01 .box {
    overflow: hidden;
    border: 1px solid;
    border-radius: 30px;
}

.cmn-recruit-01 dl>* {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cmn-recruit-01 dl dt {
    width: 200px;
    padding: 20px 25px;
}

.cmn-recruit-01 dl>*+* dt {
    border-top: 1px solid var(--txt-color-00);
}

.cmn-recruit-01 dl dd {
    width: calc(100% - 200px);
    padding: 20px 25px;
}

.cmn-recruit-01 dl>*+* dd {
    border-top: 1px solid var(--txt-color-02);
}

@media (max-width: 599px) {
    .cmn-recruit-01 dl dt {
        width: 120px;
        padding: 20px 15px;
    }

    .cmn-recruit-01 dl dd {
        width: calc(100% - 120px);
        padding: 20px 15px;
    }
}

/*cmn-blog*/
.cmn-blog-01 li+li {
    border-top: 4px dotted;
}

.cmn-blog-01 li a {
    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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 20px;
}

.cmn-blog-01 li+li a {
    padding-top: 20px;
}

.cmn-blog-01 li .pic {
    width: 30%;
}

.cmn-blog-01 li .txtbox {
    width: 65%;
}

/*cmn-staff*/
.cmn-staff-02 .box {
    padding: 30px;
    border-radius: 10px;
}

.cmn-staff-02 .tit {
    margin-bottom: 20px;
    padding-left: 40px;
    font-size: 22px;
    position: relative;
}

.cmn-staff-02 .tit .deco {
    max-width: 30px;
    position: absolute;
    top: 2px;
    left: 0;
}

.cmn-staff-02 li {
    padding: 0 5px 10px;
    font-size: 14px;
    border-bottom: 1px dotted;
}

.cmn-staff-02 li+li {
    margin-top: 10px;
}

@media (max-width: 599px) {
    .cmn-staff-02 .box {
        padding: 30px 10px;
    }

    .cmn-staff-02 .tit {
        margin-bottom: 10px;
        padding-left: 30px;
        font-size: 18px;
    }

    .cmn-staff-02 .tit .deco {
        max-width: 25px;
        top: 3px;
    }
}

.cmn-staff-03 li+li {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 4px dotted var(--txt-color-06);
}

@media (max-width: 599px) {
    .cmn-staff-03 li+li {
        margin-top: 30px;
        padding-top: 30px;
    }
}

/*cmn-clinic*/
.cmn-clinic-01 .pic {
    position: relative;
}

.cmn-clinic-01 .pic .tit {
    max-width: 90%;
    padding: 15px 30px;
    font-size: 22px;
    border-radius: 0 10px 0px 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (max-width: 599px) {
    .cmn-clinic-01 .pic .tit {
        padding: 10px 20px;
        font-size: 20px;
    }
}

/*cmn-general*/
.cmn-general-01 .item {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding: 30px 20px 30px 70px;
    font-size: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0px 4px 10px -1px rgb(0 0 0 / 30%);
    box-shadow: 0px 4px 10px -1px rgb(0 0 0 / 30%);
    position: relative;
}

.cmn-general-01 .item .deco {
    max-width: 40px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 20px;
}

@media (max-width: 599px) {
    .cmn-general-01 .item {
        padding: 20px 20px 20px 60px;
        font-size: 18px;
    }

    .cmn-general-01 .item .deco {
        max-width: 30px;
    }
}

/*cmn-price*/
.cmn-price-01 .tit {
    padding: 10px 10px;
    font-size: 24px;
}

.cmn-price-01 dl {
    padding: 20px;
}

.cmn-price-01 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;
    padding-left: 10px;
    padding-right: 10px;
}

.cmn-price-01 dl>*+* {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 3px dotted var(--txt-color-02);
}

.cmn-price-01 .yen {
    font-weight: 500;
    font-size: 30px;
}

.cmn-price-01 .yen .small {
    font-size: 50%;
}

@media (max-width: 599px) {
    .cmn-price-01 .tit {
        font-size: 20px;
    }
}

/* 2025/05/01 */
.sp-br{
  display: none;
}

@media(max-width:599px) {
.sp-br{
  display: block;
}   
}

.gishi-banar{
  width: 55%;
    margin: -4rem auto 5rem;
}

.gishi-banar02{
  width: 60%;
    margin: 0 auto 3rem;
}


@media(max-width:599px) {
  .gishi-banar {
    width: 90%;
    margin: -4rem auto 4rem;
}

.gishi-banar02 {
    width: 97%;
}
}
