@charset "UTF-8";

/*------------------------

header

------------------------*/
.header {
    margin: auto;
    padding-top: 16px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    font-size: 12px;
    z-index: 2;
}

.header::before {
    width: 100%;
    height: 249px;
    margin: auto;
    background-image: url(../img/header-back.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    content: "";
    top: -40px;
    right: 0;
    left: 0;
    z-index: -1;
}

@media screen and (min-width: 1921px) {
    .header {
        padding-top: 1%;
    }

    .header::before {
        height: 280px;
        background-size: cover;
    }

    .header .wrap {
        width: 60%;
        margin: auto;
    }
}

.header .main-nav {
    display: flex;
    align-items: center;
    color: #fff;
}

.header .header-nav.left .middle {
    margin-top: 8px;
    display: flex;
    align-items: center;
}

.header .header-nav .logo a {
    display: block;
}

.header .header-nav .logo a img {
    width: 200px;
    height: 41px;
    transition: filter .3s ease 0s;
}

.header .header-nav .logo a img:hover {
    filter: brightness(0%);
}

.header .header-nav.left .middle .tel {
    margin-left: 24px;
    font-family: var(--text-en);
    font-size: 24px;
    font-weight: 700;
}

.header .header-nav.left .middle .tel a {
    margin-left: 4px;
}

.header .header-nav.left .bottom {
    margin-top: 8px;
}

.header-nav.right .search {
    position: fixed;
    top: 27px;
    right: 110px;
    z-index: 999;
}

.header-nav.right .search a {
    width: 247px;
    height: 66px;
    padding: 12px;
    border: 3px solid #171717;
    border-radius: 33px;
    background-color: #fff502;
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    transition-duration: .3s;
}

.header-nav.right .search a:hover {
    background-color: #da7079;
}

/*------------------------

グローバルナビ

------------------------*/
.menu-wrap {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 999;
}

.toggle-menu {
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--black);
    position: fixed;
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: background-color .3s ease;
}

.toggle-menu:hover {
    background-color: #58bae4;
}

.toggle-menu>span {
    opacity: 1;
}

.toggle-menu>span,
.toggle-menu:before,
.toggle-menu:after {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
}

.toggle-menu>span {
    transition: opacity .2s ease;
    transform: translateX(-50%) translateY(-50%);
}

.toggle-menu::before,
.toggle-menu::after {
    content: "";
}

.toggle-menu::before {
    margin-left: -10px;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -webkit-animation: kebabLeftRev ease .4s forwards;
    animation: kebabLeftRev ease .4s forwards;
}

.toggle-menu::after {
    margin-left: 10px;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -webkit-animation: kebabRightRev ease .4s forwards;
    animation: kebabRightRev ease .4s forwards;
}

.menu-wrap.active .toggle-menu {
    background-color: rgba(0, 0, 0, 0);
}

.menu-wrap.active .toggle-menu>span {
    opacity: 0;
}

.menu-wrap.active .toggle-menu::before {
    -webkit-animation: kebabLeft ease .4s forwards;
    animation: kebabLeft ease .4s forwards;
}

.menu-wrap.active .toggle-menu::after {
    -webkit-animation: kebabRight ease .4s forwards;
    animation: kebabRight ease .4s forwards;
}

@-webkit-keyframes kebabLeft {
    0% {
        margin-left: -10px;
    }

    50% {
        margin-left: 0;
    }

    100% {
        width: 28px;
        height: 2px;
        margin-left: 0;
        border-radius: 0;
    }
}

@keyframes kebabLeft {
    0% {
        margin-left: -10px;
    }

    50% {
        margin-left: 0;
    }

    100% {
        width: 28px;
        height: 2px;
        margin-left: 0;
        border-radius: 0;
    }
}

@-webkit-keyframes kebabRight {
    0% {
        margin-left: 10px;
    }

    50% {
        margin-left: 0;
    }

    100% {
        width: 28px;
        height: 2px;
        margin-left: 0;
        border-radius: 0;
    }
}

@keyframes kebabRight {
    0% {
        margin-left: 10px;
    }

    50% {
        margin-left: 0;
    }

    100% {
        width: 28px;
        height: 2px;
        margin-left: 0;
        border-radius: 0;
    }
}

@-webkit-keyframes kebabLeftRev {
    0% {
        width: 28px;
        height: 2px;
        margin-left: 0;
        border-radius: 0;
    }

    50% {
        width: 6px;
        height: 6px;
        margin-left: 0;
        border-radius: 50%;
    }

    100% {
        width: 6px;
        height: 6px;
        margin-left: -10px;
        border-radius: 50%;
    }
}

@keyframes kebabLeftRev {
    0% {
        width: 28px;
        height: 2px;
        margin-left: 0;
        border-radius: 0;
    }

    50% {
        width: 6px;
        height: 6px;
        margin-left: 0;
        border-radius: 50%;
    }

    100% {
        width: 6px;
        height: 6px;
        margin-left: -10px;
        border-radius: 50%;
    }
}

@-webkit-keyframes kebabRightRev {
    0% {
        width: 28px;
        height: 2px;
        margin-left: 0;
        border-radius: 0;
    }

    50% {
        width: 6px;
        height: 6px;
        margin-left: 0;
        border-radius: 50%;
    }

    100% {
        width: 6px;
        height: 6px;
        margin-left: 10px;
        border-radius: 50%;
    }
}

@keyframes kebabRightRev {
    0% {
        width: 28px;
        height: 2px;
        margin-left: 0;
        border-radius: 0;
    }

    50% {
        width: 6px;
        height: 6px;
        margin-left: 0;
        border-radius: 50%;
    }

    100% {
        width: 6px;
        height: 6px;
        margin-left: 10px;
        border-radius: 50%;
    }
}

.gnav {
    width: 100%;
    height: 100%;
    background-color: #13a263;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    overflow: hidden;
    z-index: 98;
}

.gnav-inner {
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 40px;
    position: relative;
    overflow: scroll;
    color: #fff;
    z-index: 2;
}

.gnav-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gnav-container .left {
    width: 240px;
    height: calc(100% - 40px);
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.gnav-container .left .logo a {
    display: block;
}

.gnav-container .left .logo a img {
    width: calc(200px / 1.2);
    height: calc(41px / 1.2);
    transition: filter .3s ease 0s;
}

.gnav-container .left .logo a img:hover {
    filter: brightness(0%);
}

.gnav-container .left .address {
    margin-top: 16px;
}

.gnav-container .left .sns {
    margin-top: auto;
    padding-bottom: 40px;
}

.gnav-container .left .sns-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.gnav-container .left .sns-list .sns-list__item:not(:first-child) {
    margin-top: 16px;
}

.gnav-container .left .sns-list a img {
    width: 24px;
    transition: filter .3s ease 0s;
}

.gnav-container .left .sns-list a img:hover {
    filter: brightness(0%);
}

.gnav-container .right {
    width: 640px;
    height: calc(100% - 88px);
    margin-top: 88px;
    margin-left: 100px;
}

.gnav-container .is-container {
    display: flex;
}

.gnav-container .right .main-nav__list {
    width: 50%;
    list-style: none;
}

.gnav-container .right .main-nav__list a {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.gnav-container .right .main-nav__list a:before {
    width: 2rem;
    height: 1px;
    margin-right: 2.3rem;
    background-color: #fff;
    content: "";
    display: block;
    transition: width 280ms cubic-bezier(.25, .46, .45, .94);
}

.gnav-container .right .main-nav__list a:hover {
    color: #80ffc6;
}

.gnav-container .right .main-nav__list a:hover:before {
    width: 3rem;
    background-color: #80ffc6;
}

.gnav-container .right .bottom {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    align-items: center;
}

.gnav-container .right .bottom .link a {
    font-size: 12px;
    font-weight: 700;
    color: #80ffc6;
}

.gnav-container .right .bottom .link a:hover {
    text-decoration: underline;
}

.gnav-container .right .bottom .language {
    margin-left: 24px;
}

.language {
    position: relative;
    z-index: 1;
}

.language__pulldown {
    width: 100%;
    position: relative;
    display: inline-block;
}

.language__pulldown select {
    width: 200px;
    padding: 10px 15px 10px 48px;
    cursor: pointer;
    border: 0;
    border-radius: 21px;
    outline: 0;
    background: #10cc48;
    display: inline-block;
    font-weight: 700;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: background .3s ease 0s;
}

.language__pulldown select::-ms-expand {
    display: none;
}

.language__pulldown select:hover {
    background: #58bae4;
}

.language__pulldown select:disabled {
    pointer-events: none;
    opacity: .5;
}

.select-icon {
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;
    display: flex;
    align-items: center;
}

.select-icon svg {
    stroke: none;
}

/*------------------------

ページトップへ戻る

------------------------*/
.bottom-btn {
    display: none;
}

.auto-scroll-to-top {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: fixed;
    right: 30px;
    bottom: 80px;
    font-size: 16px;
    z-index: 9;
}

.top-page .auto-scroll-to-top {
    bottom: 30px;
}

.auto-scroll-to-top a {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color .3s;
}

.auto-scroll-to-top a:hover {
    background-color: #58bae4;
}

.auto-scroll-to-top img {
    width: 24px;
}

/*------------------------

トップページはこちら

------------------------*/
.go-to-toppage {
    width: 140px;
    height: 32px;
    cursor: pointer;
    position: fixed;
    right: 30px;
    bottom: 30px;
    font-size: 16px;
    z-index: 9;
}

.go-to-toppage a {
    width: 140px;
    height: 32px;
    border: 2px solid #000;
    border-radius: 30px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    transition: background-color .3s;
}

.go-to-toppage a:hover {
    border: 2px solid #58bae4;
    background-color: #58bae4;
    color: #fff;
}

.go-to-toppage a img {
    display: none;
}

.bottom-btn__tel,
.bottom-btn__access {
    display: none;
}

/*------------------------

フッター

------------------------*/
.footer {
    padding: 40px 0;
    background: #faf8ee;
    background-image: url("../img/footer-back.png");
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
}

@media screen and (min-width: 1921px) {
    .footer {
        background-size: contain;
    }
}

.footer::before {
    width: 100%;
    height: 481px;
    background-image: url("../img/footer-back_top.png");
    background-repeat: no-repeat;
    background-position: center top;
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    font-weight: 700;
    text-align: center;
    z-index: 0;
    transform: translate(-50%, 0);
}

.footer::after {
    width: 1417px;
    height: 115px;
    background-image: url("../img/footer-back_bottom.png");
    background-repeat: no-repeat;
    background-position: center top;
    position: absolute;
    content: "";
    bottom: 24px;
    left: 50%;
    font-weight: 700;
    text-align: center;
    z-index: 0;
    transform: translate(-50%, 0);
}

.footer .footer-top {
    position: relative;
    font-weight: 700;
    text-align: center;
    z-index: 1;
}

.footer .footer-top .copy {
    padding: 0 48px;
    position: relative;
    display: inline-block;
}

.footer .footer-top .copy:before,
.footer .footer-top .copy:after {
    width: 32px;
    height: 2px;
    background-color: black;
    position: absolute;
    content: "";
    top: 50%;
    display: inline-block;
}

.footer .footer-top .copy:before {
    left: 0;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}

.footer .footer-top .copy:after {
    right: 0;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

.footer .footer-top .title {
    margin-top: 8px;
    font-family: var(--text-en);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: rgb(86, 174, 82);
    text-align: center;
}

.footer .footer-top .btn-area {
    margin-top: 16px;
}

.footer .footer-top .btn {
    padding: 24px 130px;
    border: 2px solid var(--black);
    border-radius: 50px;
    background-color: #fff503;
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, .15);
    display: inline-block;
    font-size: 20px;
    color: rgb(0, 0, 0);
    text-align: center;
    transition: background-color .3s;
}

.footer .footer-top .btn:hover {
    background-color: #da7079;
}

.footer .footer-top .btn span {
    position: relative;
}

.footer .footer-top .btn span::before {
    width: 18px;
    height: 18px;
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    content: "";
    top: 50%;
    right: -32px;
    transition: transform .3s;
    transform: translate(0, -50%);
}

.footer .footer-top .btn:hover span::before {
    transform: translate(6px, -12px);
}

.footer .footer-top .sub-title {
    margin-top: 64px;
}

.footer .footer-top .tel {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--text-en);
    font-size: 40px;
    font-weight: 800;
}

.footer .footer-top .tel .tel-svg {
    fill: none;
    stroke: #000;
    stroke-width: 2px;
    fill-rule: evenodd;
}

.footer .footer-top .tel a {
    margin-left: 8px;
    text-decoration: none;
}

.footer .footer-bottom {
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.footer .footer-info {
    font-size: 14px;
    font-weight: 700;
}

.footer .footer-info .logo {
    margin-top: 8px;
}

.footer .footer-info .logo a {
    display: block;
}

.footer .footer-info .logo a img {
    transition: filter .3s ease 0s;
}

.footer .footer-info .logo a:hover img {
    filter: brightness(0%);
}

.footer .footer-info .add {
    margin-top: 48px;
    font-size: 16px;
}

.footer .footer-info .tel,
.footer .footer-info .fax {
    font-family: var(--text-en);
    font-size: 28px;
    font-weight: 700;
}

.footer .footer-info .tel {
    margin-top: 8px;
}

.footer .footer-info .tel span,
.footer .footer-info .fax span {
    margin-right: 4px;
    font-size: 18px;
}

.footer .footer-info .mail {
    margin-top: 8px;
}

.footer .footer-info .sns {
    margin-top: 40px;
}

.footer .footer-info .sns-list {
    list-style: none;
    display: flex;
}

.footer .footer-info .sns-list__item a {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.footer .footer-info .sns-list__item a:hover {
    transform: scale(1.2);
}

.footer .footer-info .sns-list .sns-list__item:nth-child(n+2) {
    margin-left: 24px;
}

.footer .footer-info .sns-list img {
    width: 22px;
}

.footer .facebook-icon a {
    background-color: #365bae;
}

.footer .instagram-icon a {
    background-image: -moz-linear-gradient(-122deg, rgb(91, 99, 207) 0%, rgb(130, 82, 194) 21%, rgb(184, 59, 173) 50%, rgb(240, 103, 67) 80%, rgb(254, 205, 109) 100%);
    background-image: -webkit-linear-gradient(-122deg, rgb(91, 99, 207) 0%, rgb(130, 82, 194) 21%, rgb(184, 59, 173) 50%, rgb(240, 103, 67) 80%, rgb(254, 205, 109) 100%);
    background-image: -ms-linear-gradient(-122deg, rgb(91, 99, 207) 0%, rgb(130, 82, 194) 21%, rgb(184, 59, 173) 50%, rgb(240, 103, 67) 80%, rgb(254, 205, 109) 100%);
}

.footer .youtube-icon a {
    background-color: #f00;
}

.footer .footer-nav .is-container {
    display: flex;
    justify-content: space-between;
}

.footer .footer-nav .box_nav:nth-child(n+2) {
    margin: 0 0 0 40px;
}

.footer .footer-nav .box_nav li {
    list-style: none;
}

.footer .footer-nav .box_nav li a {
    padding: 8px 0 8px 16px;
    position: relative;
    display: block;
    font-weight: 700;
    transition: .3s;
}

.footer .footer-nav .box_nav>li>a:after {
    width: 8px;
    height: 8px;
    margin: auto;
    border: 0;
    border-top: solid 1px var(--black);
    border-right: solid 1px var(--black);
    position: absolute;
    content: "";
    top: -1px;
    bottom: 0;
    left: -4px;
    transition: .3s;
    transform: rotate(45deg);
}

.footer .footer-nav .box_nav a:hover {
    color: #da7079;
}

.footer .footer-nav .box_nav a:hover:after {
    border-top: solid 1px #da7079;
    border-right: solid 1px #da7079;
    left: 0;
}

.footer .footer-nav .box_nav ul {
    margin: 0 0 12px 40px;
}

.footer .footer-nav .box_nav ul li a {
    padding: 4px;
    font-size: 14px;
    font-weight: 400;
}

.footer .footer-nav .box_nav ul li a::after {
    width: 12px;
    height: 1px;
    background-color: var(--black);
    position: absolute;
    content: "";
    top: 50%;
    left: -20px;
    transition: .3s;
    transform: translate(0, -50%);
}

.footer .footer-nav .box_nav ul li a:hover:after {
    left: -16px;
}

.footer .footer-nav .link {
    margin-top: 16px;
}

.footer .footer-nav .link ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

.footer .footer-nav .link a {
    padding: 4px 4px 4px 16px;
    position: relative;
    font-size: 12px;
    transition: color .3s;
}

.footer .footer-nav .link a::before {
    width: 8px;
    height: 8px;
    border: 1px solid var(--black);
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transition: border .3s;
    transform: translate(0, -50%) rotate(45deg);
}

.footer .footer-nav .link a:hover {
    color: #da7079;
}

.footer .footer-nav .link a:hover::before {
    border: 1px solid #da7079;
}

.footer .copyright {
    margin-top: 88px;
    font-size: 12px;
    color: #909090;
}

/*------------------------

空室検索・ご予約

------------------------*/
.search-box {
    width: 100%;
    height: 100%;
    background-color: #faf8ee;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    overflow: auto;
    z-index: 9999;
    animation-name: modalopen;
    animation-duration: .4s;
}

@keyframes modalopen {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.search-box-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-box-wrap {
    width: 1000px;
    margin: auto;
}

.search-box .search-box__title {
    text-align: center;
}

.search-box .search-box__title-en {
    margin-top: 8px;
    font-family: var(--text-en);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #54ba67;
    text-align: center;
}

.search-box .best-rate {
    margin-top: 16px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.search-box .best-rate strong {
    position: relative;
    display: inline-block;
}

.search-box .best-rate strong::before {
    width: 2px;
    height: 64px;
    margin: auto;
    background-color: var(--black);
    position: absolute;
    content: "";
    top: 0;
    bottom: -4px;
    left: -40px;
    transform: rotate(-40deg);
}

.search-box .best-rate strong::after {
    width: 2px;
    height: 64px;
    margin: auto;
    background-color: var(--black);
    position: absolute;
    content: "";
    top: 0;
    right: -40px;
    bottom: -4px;
    transform: rotate(40deg);
}

.search-box .best-rate span {
    display: block;
    font-size: 16px;
    color: #878787;
}

.search-box form {
    margin: 16px auto 0;
    margin-bottom: 30px;
    padding: 32px 0;
    border: 3px solid var(--black);
    border-radius: 24px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
}

.search-box form dl {
    text-align: center;
}

.search-box .date_489ban,
.search-box .date_489ban dd,
.search-box .date_489ban dd label,
.search-box .stay_489ban {
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.search-box .date_489ban {
    margin-right: 16px;
}

.search-box .date_489ban label,
.search-box .inbox_489ban label {
    margin: 0 16px 0 0;
    margin-right: 16px;
    font-weight: 700;
}

.search-box form dl dd select {
    width: 140px;
    height: 56px;
    margin-right: 16px;
    padding: 0 32px 0 8px;
    cursor: pointer;
    border: 2px solid #bababa;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 50px;
    text-align: right;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -ms-appearance: none;
}

.search-box form dl dd select:hover {
    background-color: rgba(88, 186, 228, 0.1);
}

.search-box form dl dd select::-ms-expand {
    display: none;
}

.search-box form dl dd input[name="date"] {
    border-radius: 3px 0 0 3px;
    background: url(../img/search_calendar.png) no-repeat right 13px center #fff;
}

.search-box button[name="searchButton489ban"] {
    cursor: pointer;
    -webkit-appearance: none;
}

.search-box button {
    width: 140px;
    padding: 16px;
    border: 0;
    border-radius: 50px;
    background-color: #194db2;
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, .15);
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    transition: background-color .3s;
}

.search-box button:hover {
    background-color: #58bae4;
    color: #fff;
}

.s_reserve {
    margin: 0 0 20px;
    font-size: 0;
    text-align: center;
}

.s_reserve li {
    display: inline-block;
}

.s_reserve li+li {
    margin-left: 10px;
}

.s_reserve li a {
    padding: 16px 40px 16px 72px;
    border-radius: 50px;
    background-color: #171716;
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, .15);
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    transition: background-color .3s;
}

.s_reserve li a:hover {
    background-color: #58bae4;
}

.s_reserve li a span {
    position: relative;
}

.s_reserve li:nth-child(1) a span::before {
    width: 24px;
    height: 24px;
    margin: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M8 4h13v2H8V4zm-5-.5h3v3H3v-3zm0 7h3v3H3v-3zm0 7h3v3H3v-3zM8 11h13v2H8v-2zm0 7h13v2H8v-2z' fill='rgba(255,255,255,1)'/%3E%3C/svg%3E");
    background-size: contain;
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: -32px;
}

.s_reserve li:nth-child(2) a span::before {
    width: 24px;
    height: 24px;
    margin: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M22 11v9h-2v-3H4v3H2V4h2v10h8V7h6a4 4 0 0 1 4 4zM8 13a3 3 0 1 1 0-6 3 3 0 0 1 0 6z' fill='rgba(255,255,255,1)'/%3E%3C/svg%3E");
    background-size: contain;
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: -32px;
}

.s_reserve li:nth-child(3) a span::before {
    width: 24px;
    height: 24px;
    margin: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M17 3h4a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h4V1h2v2h6V1h2v2zm3 8H4v8h16v-8zm-5-6H9v2H7V5H4v4h16V5h-3v2h-2V5zm-9 8h2v2H6v-2zm5 0h2v2h-2v-2zm5 0h2v2h-2v-2z' fill='rgba(255,255,255,1)'/%3E%3C/svg%3E");
    background-size: contain;
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: -32px;
}

.s_reserve li a:hover {
    opacity: .75;
    text-decoration: none;
}

.s_menu {
    text-align: center;
}

.s_menu a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    text-decoration: underline;
}

.s_menu a::before {
    margin-top: -.8em;
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    font-family: "Font Awesome 5 Free";
}

.s_menu a:hover {
    text-decoration: none;
}

.s_tel {
    margin-top: 16px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.s_tel h3 {
    font-size: 14px;
}

.s_tel h3 {
    margin-right: 15px;
    display: inline-block;
}

.s_tel .tel-link {
    display: inline-block;
    font-family: var(--text-en);
    font-size: 21px;
    font-weight: 700;
}

.s_tel .tel-link em {
    font-size: 48px;
}

.s_tel .tel-link a {
    font-weight: 700;
    text-decoration: none;
}

.modalClose {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 30px;
    right: 30px;
}

.modalClose:hover {
    cursor: pointer;
}

.modalClose-btn {
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--black);
    position: fixed;
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: background-color .3s ease;
}

.modalClose-btn:hover {
    background-color: #58bae4;
}

.modalClose-btn>span {
    opacity: 1;
}

.modalClose-btn>span,
.modalClose-btn:before,
.modalClose-btn:after {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
}

.modalClose-btn>span {
    transition: opacity .2s ease;
    transform: translateX(-50%) translateY(-50%);
}

.modalClose-btn::before,
.modalClose-btn::after {
    content: "";
}

.modalClose-btn::before {
    margin-left: -10px;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -webkit-animation: kebabLeftRev ease .4s forwards;
    animation: kebabLeftRev ease .4s forwards;
}

.modalClose-btn::after {
    margin-left: 10px;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -webkit-animation: kebabRightRev ease .4s forwards;
    animation: kebabRightRev ease .4s forwards;
}

.menu-wrap.active .modalClose-btn {
    background-color: rgba(0, 0, 0, 0);
}

.modalClose-btn>span {
    opacity: 0;
}

.modalClose-btn::before {
    -webkit-animation: kebabLeft ease .4s forwards;
    animation: kebabLeft ease .4s forwards;
}

.modalClose-btn::after {
    -webkit-animation: kebabRight ease .4s forwards;
    animation: kebabRight ease .4s forwards;
}

/*================================================================
# lityポップアップ
================================================================ */
#popup {
    width: 64vw;
    background: #fff;
}

#popup .inner {
    padding: 64px 80px;
}

.lity-wrap {
    padding: 0;
    outline: none !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: scroll;
    text-align: center;
    z-index: 99990;
}

.lity-content>* {
    max-height: none !important;
}

.lity-content video {
    max-height: 100vh;
}

.lity-image img {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    border: 0;
    display: block;
    line-height: 0;
}

.lity-close {
    min-height: 0;
    opacity: .7;
    top: 24px;
    right: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
    transition: .3s;
}

.lity-close:focus {
    top: 24px;
}

.lity-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lity-close:before,
.lity-close:after {
    width: 1px;
    height: 33px;
    background-color: #fff;
    position: absolute;
    content: " ";
    left: 15px;
}

.lity-close:before {
    transform: rotate(45deg);
}

.lity-close:after {
    transform: rotate(-45deg);
}

/*------------------------

中面page-title

------------------------*/
.page-title {
    padding: 100px 0;
    background-color: #faf8ee;
    background-image: url(../../common/img/page-title_back.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    position: relative;
}

.page-title .wrap {
    position: relative;
}

.page-title .container {
    display: flex;
    align-items: center;
}

.second-layer .page-title .container {
    margin-top: 300px;
}

.page-title .left {
    width: 560px;
    margin-left: 40px;
}

.page-title .right {
    width: calc(100% - 560px - 40px);
    padding-left: 40px;
}

.second-layer .page-title .left {
    width: 500px;
}

.second-layer .page-title .right {
    width: calc(100% - 500px - 40px);
    position: relative;
    z-index: 2;
}

.page-title img {
    border-radius: 40px;
}

.second-layer .page-title01 {
    position: absolute;
    top: -201px;
    left: -153px;
}

.second-layer .page-title02 {
    position: absolute;
    top: -412px;
    left: 266px;
}

.second-layer .page-title03 {
    position: absolute;
    top: -282px;
    right: -124px;
}

.page-title .title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    z-index: 1;
}

.page-title .title span {
    padding: 0 4px 3px;
    background-color: var(--black);
}

.second-layer .page-title .title span {
    padding: 0;
    background-color: transparent;
    font-size: 48px;
    font-weight: 700;
    color: var(--green);
}

.page-title .text {
    margin-top: 16px;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    z-index: 1;
}

.page-title .dotted {
    position: absolute;
    right: 0;
    bottom: -16px;
}

.page-title .dotted img {
    border-radius: 0;
}

.page-title .en-title {
    width: 100%;
    opacity: .4;
    position: absolute;
    bottom: -64px;
    left: 0;
    overflow: hidden;
    font-family: var(--text-en);
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: var(--green);
    text-align: center;
    white-space: nowrap;
}

.second-layer .page-title .en-title {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    opacity: .8;
    position: absolute;
    top: -130px;
    left: 0;
    overflow: hidden;
    font-family: var(--text-en);
    font-size: 320px;
    font-weight: 700;
    line-height: 320px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 0;
}

.page-title .en-title span {
    display: none;
}

/*================================================================
# section-wrap
================================================================ */
.section-wrap {
    padding-bottom: 100px;
    position: relative;
}

/*================================================================
#anchor
================================================================ */
.anchor .anchor__ul {
    margin-left: -16px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.anchor .anchor__list {
    width: calc(100% / 5 - 16px);
    margin-left: 16px;
}

.anchor .anchor__list:nth-child(n+6) {
    margin-top: 24px;
}

.anchor .anchor__link {
    width: 100%;
    padding: 16px;
    border: 3px solid #e0e0e0;
    border-radius: 58px;
    background-color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: background-color .3s;
}

.anchor .anchor__link:hover {
    border: 3px solid #58bae4;
    background-color: #58bae4;
    color: #fff;
}

/*================================================================
# btn
================================================================ */
.black-btn-wrap {
    margin: 24px 0 0 0;
    display: flex;
}

.black-btn-wrap.center {
    justify-content: center;
}

.black-btn-wrap .black-btn {
    padding: 16px 56px;
    border-radius: 50px;
    background-color: #171716;
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, .15);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    transition: background-color .3s;
}

.black-btn-wrap .black-btn span {
    position: relative;
}

.black-btn-wrap .black-btn span::before {
    width: 14px;
    height: 14px;
    background-image: url(../../common/img/arrow_w.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    content: "";
    top: 50%;
    right: -24px;
    transition: transform .3s;
    transform: translate(0, -50%);
}

.black-btn-wrap .black-btn:hover {
    background-color: #58bae4;
}

.black-btn-wrap .black-btn:hover span::before {
    transform: translate(5px, -10px);
}

/*================================================================
# 中面デザインテンプレ
================================================================ */

/*.section-title01
------------------------------------------------------ */
.second-layer .section-title01 {
    margin-top: 100px;
    padding: 64px 0;
    background-color: #f4f4f4;
    position: relative;
    text-align: center;
}

.second-layer .section-title01__en {
    font-family: var(--text-en);
    font-weight: 800;
    color: var(--green);
    text-transform: uppercase;
}

.second-layer .section-title01__jp {
    margin-top: 16px;
    font-size: 40px;
    font-weight: 700;
}

.second-layer .section-title01__jp span {
    display: block;
    font-size: 24px;
}

.second-layer .section-title01__jp strong {
    color: var(--green);
}

.section-title01-text {
    margin-top: 40px;
    font-weight: 700;
    line-height: 2;
    text-align: center;
}

/*.section-title02
------------------------------------------------------ */
.second-layer .section-title02 {
    margin-top: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.second-layer .section-title02 .right {
    padding-left: 80px;
}

.second-layer .section-title02 .title {
    font-size: 40px;
}

.second-layer .section-title02 .sub-title {
    font-size: 18px;
    color: var(--gray);
}

.second-layer .section-title02 .title {
    margin-top: 8px;
    font-size: 40px;
    line-height: 1.4;
}

.second-layer .section-title02 .title strong {
    color: var(--green);
}

.second-layer .section-title02 .text {
    line-height: 2;
}

.second-layer .section-title02 .circle {
    position: absolute;
    top: -349px;
    left: -108px;
    z-index: -1;
}

/*.section-title03
------------------------------------------------------ */
.second-layer .section-title03 {
    margin-top: 64px;
    position: relative;
    text-align: center;
}

.second-layer .section-title03__jp {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}

.second-layer .section-title03__jp span {
    font-size: 32px;
}

.second-layer .section-title03__jp small {
    font-size: 20px;
}

.second-layer .section-title03__jp strong {
    font-size: 40px;
    color: var(--green);
}

.second-layer .section-title03__en {
    height: 200px;
    margin: auto;
    opacity: .15;
    position: absolute;
    top: -40px;
    right: 0;
    left: 0;
    overflow: hidden;
    font-family: var(--text-en);
    font-size: 160px;
    font-weight: 800;
    line-height: 1;
    color: var(--green);
    white-space: nowrap;
    letter-spacing: 0;
    z-index: -1;
}

.section-title03-text {
    margin-top: 24px;
    font-weight: 700;
    line-height: 2;
    text-align: center;
}

/* .container01
------------------------------------------------------ */
.second-layer .container01 {
    margin-top: 64px;
    display: flex;
    align-items: center;
}

.second-layer .container01.reverse {
    flex-direction: row-reverse;
}

.second-layer .container01 .img-area {
    width: 50%;
    position: relative;
}

.second-layer .container01 .text-area {
    width: 50%;
    padding: 100px 64px;
    position: relative;
}

.second-layer .container01 .text-area:before {
    width: calc(100% + 80px);
    height: 100%;
    opacity: .2;
    border-radius: 40px 40px 40px 0;
    background-color: var(--green);
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    z-index: -1;
}

.second-layer .container01.reverse .text-area:before {
    border-radius: 40px 40px 0 40px;
    right: -80px;
}

.second-layer .container01 .number {
    opacity: .4;
    position: absolute;
    top: -56px;
    left: 55px;
    font-family: var(--text-en);
    font-size: 160px;
    font-weight: 700;
    line-height: 1;
    color: var(--green);
    letter-spacing: 0;
    z-index: 0;
}

.second-layer .container01 .sub-title {
    position: relative;
    font-weight: 700;
    color: var(--gray);
}

.second-layer .container01 .title {
    margin-top: 8px;
    position: relative;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}

.second-layer .container01 .title strong {
    color: var(--green);
}

.second-layer .container01 .text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 2;
}

.second-layer .container01 .note {
    margin-top: 16px;
    font-size: 12px;
    line-height: 2;
    color: var(--gray);
}

/* .container02
------------------------------------------------------ */
.second-layer .container02 {
    margin-top: 64px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.second-layer .container02 .img-area {
    width: 50%;
    position: relative;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.second-layer .container02 .text-area {
    width: 50%;
    padding-bottom: 64px;
    padding-left: 64px;
    position: relative;
}

.second-layer .container02 .img-area div:nth-child(2) {
    margin: 48px 48px 0 0;
}

.second-layer .container02 .img-area div:nth-child(3) {
    position: absolute;
    bottom: 24px;
    left: -130px;
}

.second-layer .container02 .sub-title {
    margin-top: 64px;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray);
}

.second-layer .container02 .title {
    margin-top: 8px;
    position: relative;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}

.second-layer .container02 .title strong {
    color: var(--green);
}

.second-layer .container02 .text {
    margin-top: 16px;
    font-weight: 700;
    line-height: 2;
}

/* .container03
------------------------------------------------------ */
.second-layer .container03 {
    margin-top: 64px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.second-layer .container03 .text-area {
    width: 50%;
    padding-bottom: 64px;
    padding-left: 64px;
    position: relative;
}

.second-layer .container03 .img-area {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.second-layer .container03 .text-area div:nth-child(1) {
    margin-left: -80px;
}

.second-layer .container03 .img-area div:nth-child(2) {
    margin: 48px 0 0 48px;
}

.second-layer .container03 .img-area div:nth-child(3) {
    position: absolute;
    right: -130px;
    bottom: 23px;
}

.second-layer .container03 .sub-title {
    margin-top: 40px;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray);
}

.second-layer .container03 .title {
    margin-top: 8px;
    position: relative;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}

.second-layer .container03 .title strong {
    color: var(--green);
}

.second-layer .container03 .text {
    margin-top: 16px;
    font-weight: 700;
    line-height: 2;
}

/* .slider01
------------------------------------------------------ */
.second-layer .slider01 {
    margin: 0;
    display: none;
}

.second-layer .slider01.slick-initialized {
    display: block;
}

.second-layer .slider01.slick-dotted {
    margin-bottom: 0;
}

.slider01 .slick-dots {
    width: 100%;
    margin: -24px 0 0 -24px;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.slider01 .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 0 0 24px;
    padding: 0;
    cursor: pointer;
    position: relative;
    display: flex;
}

.slider01 .slick-dots li span {
    padding: 2px 8px;
    background-color: var(--green);
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    transition: .2s;
}

.slider01 .slick-dots li span:before {
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    content: '';
    bottom: -4px;
    left: 0;
    transition: .2s;
}

.slider01 .slick-dots li span:hover {
    color: var(--black);
}

.slider01 .slick-dots li span:hover:before {
    background-color: var(--black);
}

.slider01 .slick-dots li.slick-active span {
    background-color: #fff;
    color: var(--green);
}

.slider01 .slick-dots li.slick-active span:before {
    background-color: var(--green);
}

.slider01 .slick-dots li.slick-active span:hover {
    cursor: default;
}

.slider01 .slick-dots li button:before {
    font-family: '游ゴシック Medium', 'YuGothic,YuGothicM', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
    font-size: 24px;
}

/* .slider02
------------------------------------------------------ */
.slider02 .slick-slide {
    margin: 0 20px;
    cursor: pointer;
}

/*.full-width
------------------------------------------------------ */
.second-layer .full-width {
    margin: 64px calc(50% - 50vw) 0;
    position: relative;
}

.second-layer .full-width .slick-slider .slick-slide img {
    border-radius: 0;
}

@media screen and (min-width: 1601px) {
    .second-layer .full-width .slick-slider {
        width: 1600px;
        display: flex;
        justify-content: center;
    }

    .second-layer .full-width .slick-slider .slick-slide img {
        border-radius: 80px;
    }
}

.full-width .slick-img .caption {
    bottom: 5vh;
    left: 3vw;
}

/*================================================================
.flow01
================================================================ */
.flow01 {
    margin: 64px 0 0;
}

.flow01 .swiper-main {
    overflow: visible;
}

.flow01 .swiper-main {
    max-width: 560px;
    margin: 40px auto 0;
}

.flow01 .swiper-pagination-main {
    width: 1170px;
    margin: auto;
}

.flow01 .swiper-pagination-main {
    display: flex;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet {
    width: auto;
    height: auto;
    padding-bottom: 2.4rem;
    cursor: pointer;
    opacity: 1;
    border-radius: 0;
    background: transparent;
    position: relative;
    display: block;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-family: var(--text-en);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    color: #ddd;
    text-align: center;
    -webkit-transition: .8s cubic-bezier(.2, 1, .2, 1);
    transition: .8s cubic-bezier(.2, 1, .2, 1);
    -webkit-box-flex: 1;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet::before,
.flow01 .swiper-pagination-main .swiper-pagination-bullet::after {
    background-color: var(--green);
    position: absolute;
    content: "";
    -webkit-transition: .8s cubic-bezier(.2, 1, .2, 1);
    transition: .8s cubic-bezier(.2, 1, .2, 1);
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet::before {
    width: 1.6rem;
    height: 1.6rem;
    margin: auto;
    border-radius: 100px;
    -webkit-box-shadow: 0 0 0 5px #f8f8f8;
    box-shadow: 0 0 0 5px #f8f8f8;
    right: 0;
    bottom: -6px;
    left: 0;
    z-index: 1;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet::after {
    width: 100%;
    height: 3px;
    right: 50%;
    bottom: 0;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet:first-child::after {
    display: none;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet .step {
    margin-bottom: 4px;
    display: block;
    font-size: 16px;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet-active {
    color: var(--green);
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet-active::before {
    -webkit-box-shadow: 0 0 0 4px #f8f8f8, 0 0 0 7px var(--green);
    box-shadow: 0 0 0 4px #f8f8f8, 0 0 0 7px var(--green);
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet-active~*::before,
.flow01 .swiper-pagination-main .swiper-pagination-bullet-active~*::after {
    background-color: #ddd;
}

.flow01 .swiper-pagination-sub {
    font-size: 0;
    text-align: center;
}

.flow01 .swiper-pagination-sub .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    cursor: pointer;
    background-color: #ddd;
    display: inline-block;
    vertical-align: top;
    -webkit-transition: .8s cubic-bezier(.2, 1, .2, 1);
    transition: .8s cubic-bezier(.2, 1, .2, 1);
}

.flow01 .swiper-pagination-sub .swiper-pagination-bullet:not(:first-child) {
    margin-left: 8px;
}

.flow01 .swiper-pagination-sub .swiper-pagination-bullet-active {
    background-color: var(--green);
}

.flow01 .swiper-button-prev,
.flow01 .swiper-button-next {
    width: 60px;
    height: 60px;
    margin: auto;
    padding: 0;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    outline: none;
    background-color: var(--black);
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    font-size: 0;
    line-height: 0;
    color: transparent;
    z-index: 9;
    transition: background-color .3s;
}

.flow01 .swiper-button-next {
    right: -56px;
}

.flow01 .swiper-button-prev {
    left: -56px;
}

.flow01 .swiper-button-prev:hover,
.flow01 .swiper-button-next:hover {
    background-color: #58bae4;
}

.flow01 .swiper-button-next:before,
.flow01 .swiper-button-prev:before {
    margin: auto;
    opacity: 1 !important;
    position: absolute;
    content: "" !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.flow01 .swiper-button-next:before {
    width: 24px;
    height: 12px;
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2099.4%2048.7%22%20style%3D%22enable-background%3Anew%200%200%2099.4%2048.7%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M98.2%2C26.7c0-0.1%2C0.1-0.1%2C0.1-0.2c0.2-0.3%2C0.3-0.6%2C0.4-0.9c0-0.1%2C0.1-0.2%2C0.1-0.3c0.8-0.8%2C0.8-1.6%2C0-2.4%20c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.3-0.2-0.6-0.4%2C3.1c0-0.7-0.1-1.5-0.1-2.2c-0.2-2.3-0.5-2.6-0.8-2.9c-0.1-0.1-0.1-0.1-0.2-0.2%20c-0.3-0.2-0.5-0.4-0.8-0.6c-0.1%2C0-0.1-0.1-0.1-0.1L56.3%2C0c-2.5%2C2-5.4-0.2-3%2C2.2c-3.4%2C0.7-4.2%2C1.4-4.2%2C2.2l0%2C14.8l-44.6%2C0%20c-2.7%2C0-4.5%2C3.7-4.5%2C4.9C0%2C27.6%2C1.7%2C29%2C4.5%2C29l0%2C0l44.7%2C0l0%2C18.6c0-1.1%2C2.3%2C1.1%2C5%2C1.1c2.1%2C0%2C1.5-0.2%2C2.2-0.5l39.9-19.7%20c0.1%2C0%2C0.1-0.1%2C0.1-0.1c0.3-0.2%2C0.6-0.3%2C0.8-0.5c0.1-0.1%2C0.1-0.1%2C0.2-0.2C97.7%2C27.4%2C98%2C30%2C98.2%2C26.7z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    background-size: contain;
}

.flow01 .swiper-button-prev:before {
    width: 24px;
    height: 12px;
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2099.4%2048.7%22%20style%3D%22enable-background%3Anew%200%200%2099.4%2048.7%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M98.2%2C26.7c0-0.1%2C0.1-0.1%2C0.1-0.2c0.2-0.3%2C0.3-0.6%2C0.4-0.9c0-0.1%2C0.1-0.2%2C0.1-0.3c0.8-0.8%2C0.8-1.6%2C0-2.4%20c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.3-0.2-0.6-0.4%2C3.1c0-0.7-0.1-1.5-0.1-2.2c-0.2-2.3-0.5-2.6-0.8-2.9c-0.1-0.1-0.1-0.1-0.2-0.2%20c-0.3-0.2-0.5-0.4-0.8-0.6c-0.1%2C0-0.1-0.1-0.1-0.1L56.3%2C0c-2.5%2C2-5.4-0.2-3%2C2.2c-3.4%2C0.7-4.2%2C1.4-4.2%2C2.2l0%2C14.8l-44.6%2C0%20c-2.7%2C0-4.5%2C3.7-4.5%2C4.9C0%2C27.6%2C1.7%2C29%2C4.5%2C29l0%2C0l44.7%2C0l0%2C18.6c0-1.1%2C2.3%2C1.1%2C5%2C1.1c2.1%2C0%2C1.5-0.2%2C2.2-0.5l39.9-19.7%20c0.1%2C0%2C0.1-0.1%2C0.1-0.1c0.3-0.2%2C0.6-0.3%2C0.8-0.5c0.1-0.1%2C0.1-0.1%2C0.2-0.2C97.7%2C27.4%2C98%2C30%2C98.2%2C26.7z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    background-size: contain;
    transform: scale(-1, 1);
}

.flow01 .swiper-button-prev.swiper-button-disabled,
.flow01 .swiper-button-next.swiper-button-disabled {
    cursor: auto;
    pointer-events: none;
    opacity: 0;
}

.flow01 .swiper-slide {
    height: auto;
    opacity: .3;
    transition: .4s;
    transform: translate(0, 40px);
}

.flow01 .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: translate(0, 0);
}

/*================================================================
#slick-slider
================================================================ */
.slider-wrap {
    position: relative;
}

.slick-slider {
    margin: 64px auto 0;
    opacity: 0;
    position: relative;
    transition: opacity .3s linear;
}

.slick-slider.slick-initialized {
    opacity: 1;
}

.slick-slider .slick-track {
    display: flex !important;
}

.slick-slider .slick-slide {
    height: auto !important;
}

.slick-slider .slick-list {
    box-shadow: var(--img-shadow);
}

.slick-slider .slick-slide img {
    border-radius: 4px;
}

.slick-img .caption {
    padding: 4px 12px;
    border-radius: 100px;
    background-color: #fff;
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.slick-slider .slick-arrow {
    width: 60px !important;
    height: 60px !important;
    z-index: 2 !important;
}

.slick-slider .slick-arrow:before {
    margin: auto;
    opacity: 1 !important;
    position: absolute;
    content: "" !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    width: 60px;
    height: 60px;
    padding: 0;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    outline: none;
    background-color: var(--black);
    position: absolute;
    display: block;
    font-size: 0;
    line-height: 0;
    color: transparent;
    transition: background-color .3s;
}

.slick-slider .slick-prev:hover,
.slick-slider .slick-next:hover {
    background-color: #58bae4;
}

.slick-slider .slick-next:before {
    width: 24px;
    height: 12px;
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2099.4%2048.7%22%20style%3D%22enable-background%3Anew%200%200%2099.4%2048.7%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M98.2%2C26.7c0-0.1%2C0.1-0.1%2C0.1-0.2c0.2-0.3%2C0.3-0.6%2C0.4-0.9c0-0.1%2C0.1-0.2%2C0.1-0.3c0.8-0.8%2C0.8-1.6%2C0-2.4%20c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.3-0.2-0.6-0.4%2C3.1c0-0.7-0.1-1.5-0.1-2.2c-0.2-2.3-0.5-2.6-0.8-2.9c-0.1-0.1-0.1-0.1-0.2-0.2%20c-0.3-0.2-0.5-0.4-0.8-0.6c-0.1%2C0-0.1-0.1-0.1-0.1L56.3%2C0c-2.5%2C2-5.4-0.2-3%2C2.2c-3.4%2C0.7-4.2%2C1.4-4.2%2C2.2l0%2C14.8l-44.6%2C0%20c-2.7%2C0-4.5%2C3.7-4.5%2C4.9C0%2C27.6%2C1.7%2C29%2C4.5%2C29l0%2C0l44.7%2C0l0%2C18.6c0-1.1%2C2.3%2C1.1%2C5%2C1.1c2.1%2C0%2C1.5-0.2%2C2.2-0.5l39.9-19.7%20c0.1%2C0%2C0.1-0.1%2C0.1-0.1c0.3-0.2%2C0.6-0.3%2C0.8-0.5c0.1-0.1%2C0.1-0.1%2C0.2-0.2C97.7%2C27.4%2C98%2C30%2C98.2%2C26.7z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') !important;
    background-size: contain !important;
}

.slick-slider .slick-prev:before {
    width: 24px;
    height: 12px;
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2099.4%2048.7%22%20style%3D%22enable-background%3Anew%200%200%2099.4%2048.7%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M98.2%2C26.7c0-0.1%2C0.1-0.1%2C0.1-0.2c0.2-0.3%2C0.3-0.6%2C0.4-0.9c0-0.1%2C0.1-0.2%2C0.1-0.3c0.8-0.8%2C0.8-1.6%2C0-2.4%20c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.3-0.2-0.6-0.4%2C3.1c0-0.7-0.1-1.5-0.1-2.2c-0.2-2.3-0.5-2.6-0.8-2.9c-0.1-0.1-0.1-0.1-0.2-0.2%20c-0.3-0.2-0.5-0.4-0.8-0.6c-0.1%2C0-0.1-0.1-0.1-0.1L56.3%2C0c-2.5%2C2-5.4-0.2-3%2C2.2c-3.4%2C0.7-4.2%2C1.4-4.2%2C2.2l0%2C14.8l-44.6%2C0%20c-2.7%2C0-4.5%2C3.7-4.5%2C4.9C0%2C27.6%2C1.7%2C29%2C4.5%2C29l0%2C0l44.7%2C0l0%2C18.6c0-1.1%2C2.3%2C1.1%2C5%2C1.1c2.1%2C0%2C1.5-0.2%2C2.2-0.5l39.9-19.7%20c0.1%2C0%2C0.1-0.1%2C0.1-0.1c0.3-0.2%2C0.6-0.3%2C0.8-0.5c0.1-0.1%2C0.1-0.1%2C0.2-0.2C97.7%2C27.4%2C98%2C30%2C98.2%2C26.7z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') !important;
    background-size: contain !important;
    transform: scale(-1, 1);
}

/* .slick-slider.slider02
------------------------------------------------------ */
.slick-slider.slider02 {
    width: 960px;
    margin: 64px auto 0;
}

.slick-slider.slider02 img {
    border-radius: 80px;
}

.slick-slider.slider02 .slick-dots {
    margin: -55px 0 0 -6px;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: center;
}

.slick-slider.slider02 .slick-dots li {
    width: calc(100px + 6px);
    height: 100px;
    margin-left: 6px;
    border-radius: 50px;
    transition: .2s;
}

.slick-slider.slider02 .slick-dots li:hover {
    cursor: pointer;
    transform: scale(.95);
}

.slick-slider.slider02 .slick-dots li:hover img {
    border: 4px solid #fff;
}

.slick-slider.slider02 .slick-dots li.slick-active:hover {
    transform: scale(1);
}

.slick-slider.slider02 .slick-dots li.slick-active:hover img {
    border: 4px solid #fff;
}

.slick-slider.slider02 .slick-dots li img {
    width: 100px;
    height: 100px;
    border: 4px solid #fff;
    border-radius: 50px;
    object-fit: cover;
    transition: .3s;
    transform: scale(.95);
}

.slick-slider.slider02 .slick-dots .slick-active img {
    transform: translate(0, -16px) scale(1.1);
}

/* .slick-slider.slider04
------------------------------------------------------ */
.slick-slider.slider04 .slick-slide {
    margin: 0 20px;
    cursor: pointer;
}

.slick-slider.slider04 .slick-prev {
    left: calc(50% - 330px);
}

.slick-slider.slider04 .slick-next {
    right: calc(50% - 330px);
}

/* .slick-slider.slider05
------------------------------------------------------ */
.slick-slider.slider05 {
    width: 1090px;
    margin: 64px auto 0;
    position: relative;
}

/*================================================================
.box01
================================================================ */
.second-layer .box01 {
    padding: 56px 64px;
    border-radius: 80px;
    background-color: rgba(86, 174, 83, 0.15);
    text-align: center;
}

.second-layer .box01 .top {
    position: relative;
}

.second-layer .box01 .middle {
    margin-top: 24px;
}

.second-layer .box01 .number {
    margin: auto;
    position: absolute;
    top: -56px;
    left: -96px;
    font-family: var(--text-en);
    font-size: 160px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0;
    z-index: 0;
}

.second-layer .box01 .sub-title {
    position: relative;
    font-weight: 700;
    color: var(--green);
}

.second-layer .box01 .title {
    position: relative;
    font-size: 32px;
    font-weight: 700;
}

.second-layer .box01 .title small {
    font-size: 20px;
}

.second-layer .box01 .title strong {
    color: var(--green);
}

.second-layer .box01 .text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 2;
}

.second-layer .box01 .middle img {
    border-radius: 24px;
}

/*================================================================
.section-plan
================================================================ */
.section-plan {
    margin-top: 100px;
}

.section-plan .wrap {
    position: relative;
}

.section-plan .wrap::before {
    width: calc(50vw + 50%);
    height: calc(100% - 80px);
    opacity: .2;
    border-radius: 0 200px 0 0;
    background-color: var(--green);
    position: absolute;
    content: "";
    bottom: 0;
    left: calc(-50vw + 50%);
    display: block;
    z-index: -1;
}

.section-plan .inner {
    padding: 0 0 64px;
    position: relative;
}

.plan__title-area .plan-title-jp {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.plan__title-area .plan-title-en {
    margin-top: 16px;
    font-family: var(--text-en);
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    color: var(--green);
    text-align: center;
}

.plan__title-area .plan-title-text {
    margin-top: 24px;
    line-height: 2;
    text-align: center;
}

.section-plan .box {
    width: 1070px;
    margin: auto;
    position: relative;
}

.section-plan .box-container {
    height: calc(100% - 16px);
    margin: 0 16px 16px 0;
    padding: 64px;
    border-radius: 40px;
    background-color: #fff;
    box-shadow: 16px 16px 0 0 rgba(0, 0, 0, .15);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.section-plan .text-link-wrap {
    margin-top: 24px;
    text-align: center;
}

.section-plan .text-link-wrap .text-link span {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.section-plan .text-link-wrap .text-link span:before {
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    content: '';
    bottom: -4px;
    left: 0;
}

.section-plan .box {
    margin-top: 40px;
}

.section-plan .box .img-area {
    width: 50%;
}

.section-plan .box .img-area>div {
    height: 100%;
}

.section-plan .box .img-area img {
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    object-position: center center;
}

.section-plan .box .text-area {
    width: 50%;
    padding-left: 40px;
}

.section-plan .box .box__tag {
    font-weight: 700;
    color: var(--green);
}

.section-plan .box .box__sub-title {
    margin-top: 24px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray);
}

.section-plan .box .box__title {
    margin-top: 8px;
    position: relative;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}

.section-plan .box .box__text {
    margin-top: 16px;
    line-height: 2;
}

.section-plan .box .box__price-title {
    margin-top: 24px;
    font-size: 14px;
}

.section-plan .box .box__price-title span {
    width: 80px;
    margin: 0 16px 0 0;
    padding: 2px;
    border-radius: 4px;
    background-color: #000;
    display: inline-block;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.section-plan .box .box__price {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    text-align: right;
}

.section-plan .box .box__price span {
    margin-left: 8px;
    font-size: 24px;
}

.section-plan .box-container__inner {
    margin-top: 24px;
    padding: 24px;
    border-radius: 24px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
}

.section-plan .box-container__inner .img-area02 {
    width: 50%;
}

.section-plan .box-container__inner .text-area02 {
    width: 50%;
    margin-top: 0;
    padding-left: 24px;
}

.section-plan .box-container__inner .text-area02 .box__sub-title {
    margin-top: 0;
    font-size: 16px;
}

.section-plan .box-container__inner .text-area02 .box__title {
    font-size: 24px;
}

.section-plan .box-container__inner .text-area02 .box__text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.618;
}

/*================================================================
.plan-wrap .inner
================================================================ */
.plan-wrap .inner .box,
.plan-wrap .inner .slider {
    width: 1070px;
    margin: auto;
    position: relative;
}