@charset "UTF-8";

/*********************************************************************
*  Main css
*********************************************************************/
#wrap { overflow: hidden }

.content { padding-top: 85px }
@media screen and (max-width: 767px) {
    .content { padding-top: 12rem }
}

.container {
    width: min(1200px, 92%);
    padding-right: 4%;
    padding-left: 4%;
    margin-right: auto;
    margin-left: auto;
    box-sizing: content-box;
}


/*********************************************************************
*  Common Parts
*********************************************************************/
/**
 * Title tags.
 */
.stroke-title {
    position: relative;
    height: 1em;
    margin-bottom: 48px;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .04em;
    text-align: center;
    overflow: hidden;
}
h1.stroke-title {
    font-size: 4rem;
    margin-bottom: 1em;
}
.stroke-title--twoLines { margin-bottom: 48px }
.stroke-title--twoLines .stroke-title {
    height: calc(1em * (8 / 6));
    margin-bottom: 0;
    line-height: calc(1em * (8 / 6));
}
.stroke-title__svg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}
.stroke-title__text {
    fill: transparent;
    stroke: var(--black);
    stroke-width: 1px;
}
.stroke-title__text--shadow { fill: var(--white) }
.stroke-title__text tspan,
.stroke-title__text--shadow tspan { font-size: calc(1em * (2 / 3)) }
@media screen and (max-width: 767px) {
    .stroke-title { margin-bottom: 4.8rem }
    h1.stroke-title { font-size: 6rem }
    .stroke-title--twoLines { margin-bottom: 4.8rem }
}

.stroke-title--red .stroke-title__text--shadow {
    fill: #e14e60;
    fill-opacity: .8;
}
.stroke-title--yellow .stroke-title__text--shadow { fill: #fdc066 }
.stroke-title--orange .stroke-title__text--shadow { fill: #ee9263 }
.stroke-title--orange2 .stroke-title__text--shadow { fill: #fcb040 }
.stroke-title--purple .stroke-title__text--shadow { fill: #9e85be }
.stroke-title--blue .stroke-title__text--shadow { fill: #00abbd }
.stroke-title--blue2 .stroke-title__text--shadow { fill: #2bbcb5 }



/**
 * Text contents.
 */
.text-shadow { text-shadow: .1rem .2rem 0 var(--white) }


/**
 * The presence or absence of display is determined.
 */

/* Aspect ratio */
@media screen and (orientation: landscape) {
    .portrait { display: none !important }
}
@media screen and (orientation: portrait) {
    .landscape { display: none !important }
}

/* iPad */
@media screen and (min-width: 768px) {
    .less768 { display: none !important }
}
@media screen and (max-width: 767px) {
    .over768 { display: none !important }
}

/* iPad Pro */
@media screen and (min-width: 1024px) {
    .less1024 { display: none !important }
}
@media screen and (max-width: 1023px) {
    .over1024 { display: none !important }
}

/* laptop */
@media screen and (min-width: 1280px) {
    .less1280 { display: none !important }
}
@media screen and (max-width: 1279px) {
    .over1280 { display: none !important }
}


/*********************************************************************
*  Trigger Event
*********************************************************************/
.slide-in {
    position: relative;
    top: 10vh;
    opacity: 0;
    transition:
        top .3s var(--easeOutQuart),
        opacity .3s var(--easeOutSine);

}
.slide-in.active {
    top: 0;
    opacity: 1;
}

.fade-in {
    opacity: 0;
    transition: opacity .3s var(--easeOutSine);
}
.fade-in.active { opacity: 1 }


/*********************************************************************
*  header
*********************************************************************/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background-color: var(--headerColor);
    color: var(--white);
    z-index: 9999;
}
@media screen and (max-width: 767px) {
    .header { height: 12rem }
}

.header__color,
.header__color--bar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--headerColor);
}
.header__color {
    left: 0;
    z-index: -1;
}
.header__color--bar { right: 100% }
.header__color--bar.active {
    right: 0;
    transition: right 6s linear;
}

.header__content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-left: 26px;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .header__content {
        padding-left: 4%;
        padding-right: 4%;
    }
}

.logo {
    font-family: var(--fontSubJP);
    font-size: 3.6rem;
    font-weight: 300;
    line-height: 0.75;
    letter-spacing: .06em;
    white-space: nowrap;
}
.logo span {
    font-size: 1.2rem;
    letter-spacing: .4em;
}
.logo__link { display: block }

.header__nav__content,
.header__nav__list {
    display: flex;
    align-items: center;
}
.header__nav__list { padding-right: 72px }
.header__nav__item {
    margin-right: 25px;
    margin-left: 25px;
}
@media screen and (max-width: 1280px) {
    /* Nav main */
    .header__nav {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
    .header__nav__content {
        position: absolute;
        top: 100%;
        right: 0;
        transform: translateX(100%);
        display: block;
        width: min(100%, 375px);
        max-height: calc(100vh - 85px);
        background-color: var(--white);
        color: var(--black);
        overflow: auto;
        transition: transform .3s var(--easeOutQuart);
        pointer-events: visible;
    }
    .header__nav__btn.active + .header__nav__content { transform: translateX(0) }
    .header__nav__content::-webkit-scrollbar { display: none }
    .header__nav__list {
        display: block;
        padding-right: 0;
    }
    .header__nav__item {
        margin-right: 0;
        margin-left: 0;
        border-bottom: 1px solid var(--black);
    }

    /* Nav child */
    .header__nav__list--child,
    .header__nav__list--grandchild {
        display: block;
        max-height: 0;
        overflow: auto;
        transition: max-height .6s var(--easeOutQuart);
    }
    .header__nav__list--child::-webkit-scrollbar,
    .header__nav__list--grandchild::-webkit-scrollbar { display: none }
    .header__nav__link.active + .header__nav__list--child,
    .header__nav__link--child.active + .header__nav__list--grandchild {
        max-height: 100vh;
        transition-duration: 3s;
    }
    .header__nav__item--child,
    .header__nav__item--grandchild {
        display: block;
        border-top: 1px solid #adadad;
    }
}
@media screen and (max-width: 767px) {
    /* Nav main */
    .header__nav__content {
        transform: translateX(0);
        width: 100%;
        max-height: 0;
        transition: max-height .6s var(--easeOutQuart);
    }
    .header__nav__btn.active + .header__nav__content { max-height: calc(100vh - 12rem) }
    .header__nav__item { border-bottom-width: .2rem }

    /* Nav child */
    .header__nav__item--child,
    .header__nav__item--grandchild { border-top-width: .2rem }
}

/* Nav btn */
.header__nav__btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 85px;
    height: 85px;
    background: linear-gradient(90deg, var(--white) 0%, var(--white) 100%) no-repeat center center / 50% calc(100% * (7 / 120));
    pointer-events: visible;
    transition: background-size .15s var(--easeOutQuart);
}
.header__nav__btn.active { background-size: 0% calc(100% * (7 / 120)) }
.header__nav__btn::before,
.header__nav__btn::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 50%;
    height: calc(100% * (7 / 120));
    background-color: var(--white);
    transition: transform .3s var(--easeOutQuart);
}
.header__nav__btn::before { top: calc(100% * (34 / 120)) }
.header__nav__btn::after { bottom: calc(100% * (34 / 120)) }
.header__nav__btn.active::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.header__nav__btn.active::after {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
    /* Nav btn */
    .header__nav__btn {
        width: 12rem;
        height: 12rem;
    }
}


.header__nav__link {
    position: relative;
    display: block;
    padding-left: .01em;
    font-weight: var(--fontSubEN);
    font-size: 2.4rem;
    font-weight: 200;
    line-height: calc(41 / 24);
    letter-spacing: .02em;
    white-space: nowrap;
}
.header__nav__link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
}
.header__nav__link:hover:before {
    width: 100%;
    transition: width .15s linear;
}
@media screen and (max-width: 1280px) {
    .header__nav__link,
    .header__nav__link--child,
    .header__nav__link--grandchild {
        position: relative;
        display: block;
        width: 100%;
        padding: 15px 4%;
        font-weight: var(--fontMain);
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: .06em;
        text-align: left;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .header__nav__link--child,
    .header__nav__link--grandchild { padding-left: calc(4% + 2em) }
    .header__nav__link--grandchild { background-color: #efefef }
    .header__nav__link::before {
        top: 50%;
        right: 4%;
        bottom: unset;
        left: unset;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background-color: transparent;
        background-image: url(../images/icon_arrow.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: contain;
    }
    .header__nav__link:hover:before {
        width: 12px;
        transition: unset;
    }
    .header__nav__link--child::before,
    .header__nav__link--child::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 4%;
        transform: translateY(-50%);
        width: .75em;
        height: 2px;
        background-color: var(--black);
    }
    .header__nav__link--child::after { transform: translateY(-50%) rotate(90deg) }
    .header__nav__link--child.active::after { display: none }
}
@media screen and (max-width: 767px) {
    .header__nav__link,
    .header__nav__link--child,
    .header__nav__link--grandchild {
        padding-top: 2.9rem;
        padding-bottom: 2.9rem;
        font-size: 2.8rem;
    }
    .header__nav__link::before {
        width: 2.4rem;
        height: 2.4rem;
    }
    .header__nav__link:hover:before { width: 2.4rem }
    .header__nav__link--child::before,
    .header__nav__link--child::after { height: .3rem }
}


.header__share {
    padding: 30px 20px 30px 26px;
    background-color: #d8d8d8;
}
.header__share__list {
    display: flex;
    justify-content: space-between;
}
.header__share__item {
    width: 25px;
    height: 25px;
    margin-right: 14px;
    margin-left: 14px;
}
.header__share__link {
    display: block;
    width: 100%;
    height: 100%;
    transition: filter .3s var(--easeOutQuart);
    filter: brightness(0) invert(1);
}
.header__share__link:hover { filter: none }
@media screen and (max-width: 1280px) {
    .header__share {
        height: 92px;
        padding: 0 4%;
    }
    .header__share__list {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: 100%;
    }
    .header__share__item {
        width: min(30px, 8%);
        height: 30px;
        margin-right: 0;
        margin-left: 0;
    }
    .header__share__image { object-fit: contain }
}
@media screen and (max-width: 767px) {
    .header__share { height: 18.5rem }
    .header__share__item {
        width: min(6rem, 8%);
        height: 6rem;
    }
}



/*********************************************************************
*  footer
*********************************************************************/
footer { background-color: var(--footerColor) }

.footer__content {
    padding-top: 54px;
    padding-bottom: 18px;
    color: var(--white);
}
@media screen and (max-width: 767px) {
    .footer__content {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.footer__hotel__list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 330px;
}
.footer__hotel__item {
    margin-right: 48px;
    margin-bottom: 48px;
}
.footer__hotel__title {
    position: relative;
    padding-left: 22px;
    margin-bottom: 4px;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: .04em;
    white-space: nowrap;
}
.footer__hotel__title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background: url(../images/icon_arrow_footer.svg) no-repeat center center / contain;
}
.footer__hotel__list--child { padding-left: 22px }
.footer__hotel__link {
    position: relative;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: calc(25 / 14);
}
.footer__hotel__link::before {
    content: "";
    position: absolute;
    top: calc(50% + .5em);
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white);
}
@media screen and (max-width: 1023px) {
    .footer__hotel__list { max-height: 440px }
}


.footer__nav__list {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: -26px;
}
.footer__nav__item {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: .04em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.footer__nav__item:not(:first-of-type):before {
    content: "/";
    display: inline-block;
    padding-right: .5em;
    padding-left: .5em;
}
@media screen and (max-width: 767px) {
    .footer__nav__list {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100vw;
        margin-top: 0;
        border-top: .2rem solid #6bcfd7;
    }
    .footer__nav__item {
        position: relative;
        width: 50%;
        border-bottom: .2rem solid #6bcfd7;
        font-size: 2.4rem;
        font-weight: 500;
        letter-spacing: 0;
    }
    .footer__nav__item:nth-of-type(odd) { border-right: .2rem solid #6bcfd7 }
    .footer__nav__item:last-of-type,
    .footer__nav__item:nth-of-type(odd):nth-last-of-type(2) { border-bottom: none }
    .footer__nav__item:before {
        content: "" !important;
        position: absolute;
        top: 50%;
        left: 2.7rem;
        transform: translateY(-50%);
        display: block;
        width: 1.2rem;
        height: 1.2rem;
        padding-right: 0 !important;
        padding-left: 0 !important;
        background: url(../images/icon_arrow.svg) no-repeat center right / contain;
        filter: brightness(0) invert(1);
    }
    .footer__nav__link {
        display: block;
        width: 100%;
        padding: 2.2rem 3rem 2.2rem 6rem
    }
}


.copyright {
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: .02em;
    background-color: #d8d8d8;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .04em;
    text-align: center;
}
.copyright small {
    display: block;
    padding-left: .02em;
}
@media screen and (max-width: 767px) {
    .copyright {
        padding-top: 5.5rem;
        padding-bottom: 6.4rem;
        font-size: 2rem;
        letter-spacing: 0;
    }
    .copyright small { padding-left: 0 }
}

.footer__logo {
    margin-bottom: 1.6rem;
    padding-left: .03em;
    font-family: var(--fontSubJP);
    font-size: 4rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: .06em;
    text-align: center;
}
.footer__logo strong { font-weight: 400 }


/*
 * Fix it down.
 */
.share {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, .8);
    z-index: 998;
}
.share__content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}
.share__title {
    margin-right: 20px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    opacity: 0.6;
}
.share__list {
    display: flex;
    align-items: center;
}
.share__item {
    margin-right: 20px;
    margin-left: 20px;
}
.share__link {
    display: flex;
    align-items: center;
}
.share__image {
    width: 26px;
    height: 26px;
    margin-right: 5px;
    object-fit: contain;
}
.share__name {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .share__content {
        justify-content: flex-start;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .share__title {
        margin-right: 2.5rem;
        font-size: 2.4rem;
    }
    .share__item {
        margin-right: 4.5rem;
        margin-left: 0;
    }
    .share__item:last-of-type { margin-right: 0 }
    .share__image {
        width: 5.2rem;
        height: 5.2rem;
        margin-right: 1rem;
    }
    .share__name { font-size: 2.8rem }
}


.page-top {
    position: fixed;
    bottom: 5px;
    right: 30px;
    width: 40px;
    height: 40px;
    z-index: 999;
}
.page-top__link {
    display: block;
    width: 100%;
    height: 100%;
}
.page-top__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width: 767px) {
    .page-top {
        bottom: 1rem;
        right: 4%;
        width: 8rem;
        height: 8rem;
    }
}



/*********************************************************************
*  Index
*********************************************************************/
.slider {
    position: relative;
    width: 100%;
    height: 914px;
    overflow: hidden;
}
.slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .15);
    z-index: 10;
}
@media screen and (max-width: 767px) {
    .slider { height: 74.9rem }
}

.slider__list,
.slider__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slider__item { opacity: 0 }
.slider__item.active { opacity: 1 }
.slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slider__text__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 12;
}
.slider__text {
    height: 2.5em;
    font-size: min(4.8rem, calc(100vw * (48 / 1200)));
    font-weight: 700;
    line-height: 2.5;
    letter-spacing: .1em;
    text-align: right;
    white-space: nowrap;
}
.slider__text span {
    font-family: var(--fontSubJP);
    font-size: calc(1em * (55 / 48));
    font-weight: 100;
    line-height: calc(120 / 55);
    letter-spacing: .06em;
}
.slider__text span strong { font-weight: 400 }
.slider__text.slider__text--second {
    margin-right: -1.4em;
    letter-spacing: .16em;
}
.slider__text mark {
    position: relative;
    display: inline-block;
    background-color: transparent;
    background-image: linear-gradient(var(--white), var(--white));
    background-repeat: no-repeat;
    background-position: bottom 0.3125em left;
    background-size: 100% 3px;
    color: var(--white);
}
@media screen and (orientation: portrait) {
    .slider__text__content {
        width: 100%;
        padding-right: 4%;
        padding-left: 4%;
    }
    .slider__text {
        height: 10rem;
        font-size: 4.8rem;
        line-height: calc(100 / 48);
        letter-spacing: .16em;
        text-align: left;
    }
    .slider__text span {
        font-size: 5.5rem;
        line-height: calc(100 / 55);
    }
    .slider__text.slider__text--second {
        margin-right: 0;
        margin-left: .5em;
    }
    .slider__text.slider__text--third { margin-left: 1em }
    .slider__text mark {
        background-position: bottom left;
        background-size: 100% .6rem;
    }
}


.slider__animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation-duration: 1.2s;
    animation-timing-function: linear;
    animation-fill-mode: both;
    opacity: 0;
    z-index: 11;
}
.slider__animation.slider__animation--1 {
    opacity: 1;
    animation-name: slider01;
}
.slider__animation.slider__animation--2 {
    transform: translateX(100%);
    opacity: 1;
}
.slider__animation.slider__animation--2::before,
.slider__animation.slider__animation--2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    animation-duration: inherit;
    animation-timing-function: inherit;
    animation-fill-mode: inherit;
}
.slider__animation.slider__animation--2::before { animation-name: slider02_top }
.slider__animation.slider__animation--2::after { animation-name: slider02_bottom }
.slider__animation.slider__animation--3 {
    transform: translateY(100%);
    opacity: 1;
}
.slider__animation.slider__animation--3::before,
.slider__animation.slider__animation--3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    animation-duration: inherit;
    animation-timing-function: inherit;
    animation-fill-mode: inherit;
}
.slider__animation.slider__animation--3::before { animation-name: slider03_right }
.slider__animation.slider__animation--3::after { animation-name: slider03_left }

@keyframes slider01 {
    0% { transform: translateX(100%) }
    40% { transform: translateX(0) }
    60% { transform: translateX(0) }
    100% { transform: translateX(-100%) }
}

@keyframes slider02_top {
    from { transform: translate(-100%, -100%) }
    to { transform: translate(-100%, 100%) }
}
@keyframes slider02_bottom {
    from { transform: translate(-100%, 100%) }
    to { transform: translate(-100%, -100%) }
}

@keyframes slider03_right {
    from { transform: translate(-100%, -100%) }
    to { transform: translate(100%, -100%) }
}
@keyframes slider03_left {
    from { transform: translate(100%, -100%) }
    to { transform: translate(-100%, -100%) }
}



/* Content1 */
.content__top01 {
    padding-top: 95px;
    padding-bottom: 149px;
    background: #fcedef url(../images/home/bg01.jpg) no-repeat top center / 100%;
}

.content__top01 .text-shadow {
    padding-left: .03em;
    font-size: 1.8rem;
    line-height: calc(40 / 18);
    letter-spacing: .06em;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .content__top01 {
        padding-top: 12rem;
        padding-bottom: 15.6rem;
    }

    .content__top01 .text-shadow {
        font-size: 2.8rem;
        line-height: calc(50 / 28);
    }
}
@media screen and (orientation: portrait) {
    .content__top01 { background-image: url(../images/home/bg01_sp.jpg) }
    .content__top01 .text-shadow {
        padding-left: 0;
        letter-spacing: 0;
        text-align: left;
    }
}



/* Content2 */
.content__top02 {
    padding-top: 169px;
    margin-top: -91px;
    background: #00abbd url(../images/home/bg02.jpg) no-repeat top center / 2000px;
}
@media screen and (max-width: 1200px) {
    .content__top02 { background-size: calc(100vw * (2000 / 1200)) }
}
@media screen and (orientation: portrait) {
    .content__top02 {
        padding-top: 15rem;
        margin-top: -4.4rem;
        background-image: url(../images/home/bg02_sp.jpg);
        background-size: 100%;
    }
}

.content__top02 .text-shadow {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: .04em;
}
.content__top02 .text-shadow.text-shadow--main {
    position: relative;
    width: min(100%, 900px);
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 33px;
    z-index: 1;
}
.content__top02 .text-shadow.text-shadow--main strong {
    color: #ee9263;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
}
.content__top02 .text-shadow.text-shadow--main strong span { font-size: 1.6rem }
.content__top02 .text-shadow.text-shadow--main::before {
    content: "";
    position: absolute;
    bottom: -33px;
    right: -30px;
    width: 194px;
    height: 210px;
    background: url(../images/home/image01.png) no-repeat bottom right / contain;
}
@media screen and (max-width: 767px) {
    .content__top02 .text-shadow {
        font-size: 2.4rem;
        line-height: calc(46 / 24);
        letter-spacing: 0;
    }
    .content__top02 .text-shadow.text-shadow--main { margin-bottom: 6.5rem }
    .content__top02 .text-shadow.text-shadow--main strong {
        font-size: 3.2rem;
        line-height: 1.4375;
    }
    .content__top02 .text-shadow.text-shadow--main strong span { font-size: 1em }
    .content__top02 .text-shadow.text-shadow--main::before {
        top: 44.8rem !important;
        bottom: unset;
        right: 10.2rem !important;
        transform: none !important;
        width: 19.4rem;
        height: 21rem;
    }
}
@media screen and (orientation: portrait) {
    .content__top01 .text-shadow {
        padding-left: 0;
        letter-spacing: 0;
        text-align: left;
    }
    .content__top02 .text-shadow.text-shadow--main::before {
        top: 50%;
        bottom: unset;
        right: 4%;
        transform: translateY(-50%);
        z-index: -1;
    }
}

.content__top02__box1 {
    padding-right: 174px;
    margin-bottom: 164px;
}
.content__top02__box1__inner {
    position: relative;
    width: 570px;
    height: 570px;
    padding-top: 70px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 100%;
    background-color: #fff2e0;
    text-align: center;
}
.content__top02__box1__inner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% - 31px);
    transform: translateY(-50%);
    width: 206px;
    height: 199px;
    background: url(../images/home/image02.png) no-repeat top left / contain;
}
@media screen and (max-width: 767px) {
    .content__top02__box1 {
        position: relative;
        height: 80rem;
        padding-right: 0;
        margin-bottom: 12rem;
    }
    .content__top02__box1__inner {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80rem;
        height: 80rem;
        padding-top: 12.7rem;
        padding-right: 5.5rem;
        padding-left: 5.5rem;
    }
    .content__top02__box1__inner::before { display: none }
}

.content__top02__box1 .stroke-title { margin-bottom: 30px }
.content__top02__box1 .text-shadow { text-shadow: .1rem .1rem 0 var(--white) }
.content__top02__box1 .text-shadow.text-shadow--sub {
    margin-bottom: 14px;
    line-height: 2.25;
    letter-spacing: 0;
}
.content__top02__box1 .text-shadow.text-shadow--sub strong {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.5;
}
.content__top02__box1 .text-shadow.text-shadow--sub span {
    font-size: 2rem;
    line-height: 1.8;
}
@media screen and (max-width: 767px) {
    .content__top02__box1 .stroke-title { margin-bottom: 4.4rem }
    .content__top02__box1 .text-shadow { line-height: 1.875 }
    .content__top02__box1 .text-shadow.text-shadow--sub {
        margin-bottom: 1.7rem;
        line-height: 1.875;
    }
    .content__top02__box1 .text-shadow.text-shadow--sub strong {
        font-size: 2.8rem;
        line-height: calc(45 / 28);
    }
    .content__top02__box1 .text-shadow.text-shadow--sub span {
        font-size: 2.4rem;
        line-height: 1.875;
    }
}


.content__top02__box2 { margin-bottom: 135px }
.content__top02__box2 .stroke-title { margin-bottom: 60px }
.content__top02__box2 .box__list {
    display: flex;
    justify-content: space-between;
}
.content__top02__box2 .box__item {
    width: calc(100% * (365 / 1200));
    padding-top: 40px;
    padding-bottom: 45px;
    background-color: var(--white);
    border-radius: 50px;
    filter: drop-shadow(5px 9px 30px rgba(0, 0, 0, .2));
}
@media screen and (orientation: portrait) {
    .content__top02__box2 .box__list { display: block }
    .content__top02__box2 .box__item {
        width: min(100%, 750px);
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 10%;
    }
    .content__top02__box2 .box__item:last-of-type { margin-bottom: 0 }
}
@media screen and (max-width: 767px) {
    .content__top02__box2 { margin-bottom: 10.2rem }
    .content__top02__box2 .box__list { display: block }
    .content__top02__box2 .box__item {
        width: 100%;
        padding-top: 6rem;
        padding-bottom: 5rem;
        border-radius: 5rem;
        filter: drop-shadow(.5rem .9rem 3rem rgba(0, 0, 0, .2));
    }
    .content__top02__box2 .box__item:last-of-type { margin-bottom: 0 }
}

.content__top02__box2 .box__image {
    margin-right: 42px;
    margin-left: 42px;
    margin-bottom: 20px;
}
.content__top02__box2 .box__image__inner {
    position: relative;
    padding-bottom: calc(100% * (180 / 280));
}
.content__top02__box2 .box__image__inner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content__top02__box2 .box__title {
    margin-bottom: 16px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: calc(40 / 24);
    text-align: center;
    white-space: nowrap;
}
.content__top02__box2 .box__text {
    padding-right: 30px;
    padding-left: 30px;
    font-size: 1.4rem;
    line-height: calc(25 / 14);
    letter-spacing: .04em;
}
@media screen and (max-width: 767px) {
    .content__top02__box2 .box__image {
        margin-right: 6rem;
        margin-left: 6rem;
        margin-bottom: 2.4rem;
    }
    .content__top02__box2 .box__image__inner { padding-bottom: calc(100% * (360 / 570)) }
    .content__top02__box2 .box__title {
        margin-bottom: 1.5rem;
        font-size: 4.8rem;
    }
    .content__top02__box2 .box__text {
        padding-right: 3rem;
        padding-left: 3rem;
        font-size: 2.4rem;
        line-height: 1.875;
        letter-spacing: 0;
    }
}

.content__top02__box3 {
    padding-top: 9px;
    padding-bottom: 19px;
    background-color: #33bcca;
}
.content__top02__box3 .content__btn {
    padding-left: .02em;
    margin-right: auto;
    margin-left: auto;
    color: var(--white);
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 3;
    letter-spacing: .04em;
}
.content__top02__box3 .content__btn span {
    display: inline-block;
    background: linear-gradient(var(--white), var(--white)) no-repeat bottom 9px left / 100% 1px;
}
@media screen and (max-width: 767px) {
    .content__top02__box3 {
        padding-top: .7rem;
        padding-bottom: 2.3rem;
    }
    .content__top02__box3 .content__btn {
        font-size: 2.8rem;
        line-height: calc(60 / 28);
        word-wrap: break-word;
    }
    .content__top02__box3 .content__btn span {
        background-position: bottom .1rem left;
        background-size: 100% .2rem;
        white-space: nowrap;
    }
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--easeOutQuart);
}
.popup.active {
    opacity: 1;
    pointer-events: visible;
}
.popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    cursor: pointer;
}
.popup__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: min(1000px, calc(100% * (1000 / 1200)));
    height: auto;
    max-height: 92%;
}
@media screen and (max-width: 767px) {
    .popup__image { max-width: 92% }
}



/* Content3 */
.content__top03 {
    padding-top: 92px;
    padding-bottom: 129px;
    border-top: 10px solid var(--white);
    background-image: linear-gradient(0deg, rgba(252, 176, 64, .1) 0%, rgba(43, 188, 181, .1) 20%, rgba(0, 171, 189, .1) 40%, rgba(158, 133, 190, .1) 60%, rgba(225, 78, 96, .1) 80%, rgba(238, 146, 99, .1) 100%);
}
@media screen and (max-width: 767px) {
    .content__top03 {
        padding-top: 11.5rem;
        padding-bottom: 4.5rem;
        border-top-width: 1rem;
    }
}


.hotel { position: relative }
.hotel__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-right: 10px;
    padding-left: 10px;
}
.hotel__item {
    width: 100%;
    margin-bottom: 80px;
}
.hotel__item.hotel__item--only {
    width: calc(100% * (575 / 1180));
}
.hotel__list--child {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hotel__item--child {
    width: calc(100% * (575 / 1180));
    margin-bottom: 30px;
    border-radius: 25px;
    background-color: var(--white);
    filter: drop-shadow(5px 9px 30px rgba(0, 0, 0, .2));
}
.hotel__item.hotel__item--only .hotel__item--child { width: 100% }
@media screen and (max-width: 767px) {
    .hotel__list {
        padding-right: 0;
        padding-left: 0;
    }
    .hotel__item { margin-bottom: 8rem }
    .hotel__item.hotel__item--only { width: 100% }
    .hotel__item--child {
        width: 100%;
        margin-bottom: 6rem;
        border-radius: 2.5rem;
        filter: drop-shadow(.5rem .9rem 3rem rgba(0, 0, 0, .2));
    }
}

.hotel__caution {
    padding-right: 10px;
    padding-left: calc(10px + 1.04em);
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: .04em;
    text-indent: -1.04em;
}
@media screen and (max-width: 767px) {
    .hotel__caution {
        padding-right: 0;
        padding-left: 1.04em;
        font-size: 1.2rem;
    }
}

.hotel__prefectures {
    width: 200px;
    padding-left: .05em;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
    border-radius: 20px;
    background-color: #9e85be;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: calc(40 / 24);
    letter-spacing: .1em;
    text-align: center;
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
    .hotel__prefectures {
        width: 40rem;
        margin-bottom: 6rem;
        border-radius: 1em;
        font-size: 4rem;
        line-height: 2;
    }
}


.hotel__link {
    display: block;
    padding: 20px 30px 30px;
}
.hotel__name {
    margin-bottom: 11px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
}
@media screen and (max-width: 767px) {
    .hotel__link { padding: 1.2rem 3rem 3rem }
    .hotel__name {
        margin-bottom: 1px;
        font-size: 3.6rem;
    }
}

.hotel__description__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.hotel__image-box { width: calc(100% * (220 / 515)) }
.hotel__text {
    width: calc(100% * (280 / 515));
    margin-top: -5px;
    font-size: 1.2rem;
    line-height: 1.5;
}
.hotel__info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-right: -4px;
    margin-left: -4px;
}
.hotel__status__box {
    display: flex;
    margin-bottom: 20px;
}
.hotel__status__box:nth-of-type(odd) { margin-right: 5px }
.hotel__status__title {
    width: calc(1em * (65 / 12));
    height: calc(1em * (20 / 12));
    padding-left: .04em;
    margin-right: 8px;
    background-color: #9e85be;
    border-radius: calc(1em * (10 / 12));
    color: var(--white);
    font-size: 1.2rem;
    line-height: calc(20 / 12);
    letter-spacing: .04em;
    text-align: center;
    white-space: nowrap;
}
.hotel__status__content {
    font-size: 1.3rem;
    line-height: calc(20 / 13);
    letter-spacing: .04em;
}
.hotel__set {
    margin-right: -4px;
    margin-left: -4px;
}
.hotel__set__list {
    display: flex;
    flex-wrap: wrap;
}
.hotel__set__item {
    position: relative;
    width: calc((100% - 12px) / 4);
    padding-right: .5em;
    padding-left: .54em;
    margin-right: 4px;
    margin-bottom: 3px;
    border: 1px solid var(--white);
    border-radius: 2px;
    background-color: #cbcbcb;
    color: var(--white);
    font-size: 1.2rem;
    line-height: calc(20 / 12);
    letter-spacing: .04em;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.hotel__set__item.active {
    border-color: #9e85be;
    background-color: var(--white);
    color: var(--black);
}
.hotel__set__item.active.non-all { border-color: #00abbd }
.hotel__set__item:nth-of-type(4n) { margin-right: 0 }
@media screen and (max-width: 767px) {
    .hotel__description {
        display: flex;
        flex-wrap: wrap;
    }
    .hotel__description__top {
        width: 50%;
        margin-bottom: 2rem;
    }
    .hotel__image-box { width: 100% }
    .hotel__text {
        width: 100%;
        margin-top: 0;
        font-size: 2.4rem;
    }
    .hotel__info {
        display: block;
        width: 50%;
        padding-left: 2rem;
        margin-right: 0;
        margin-left: 0;
    }
    .hotel__status__box {
        display: block;
        margin-bottom: 2.6rem;
    }
    .hotel__status__box:nth-of-type(odd) { margin-right: 0 }
    .hotel__status__title {
        display: inline-block;
        width: auto;
        height: 3rem;
        padding-left: 1.1em;
        padding-right: 1.1em;
        margin-right: 1.2rem;
        border-radius: 1.5rem;
        color: var(--white);
        font-size: 2.4rem;
        line-height: 1.25;
        letter-spacing: 0;
    }
    .hotel__status__content {
        display: inline;
        font-size: 2.4rem;
        line-height: calc(40 / 24);
    }
    .hotel__set {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: .6rem;
    }
    .hotel__set__item {
        width: calc((100% - 1rem) / 2);
        padding-left: .5em;
        margin-right: 1rem;
        margin-bottom: .9rem;
        border-radius: .4rem;
        font-size: 2rem;
        line-height: 1.75;
        letter-spacing: 0;
    }
    .hotel__set__item:nth-of-type(5n) { margin-right: 1rem }
    .hotel__set__item:nth-of-type(2n) { margin-right: 0 }
}



.hotel-tab {
    position: absolute;
    top: 10%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s var(--easeOutQuart);
}
.hotel-tab.active { opacity: 1 }
.hotel-tab__list {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
}
.hotel-tab__item {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 100%;
    background-color: var(--white);
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, .2));
    transition:
        width .3s var(--easeInSine),
        height .3s var(--easeInSine),
        background-color .3s var(--easeOutQuart);
}
.hotel-tab.active { pointer-events: visible }
.hotel-tab__item.active {
    width: 70px;
    height: 70px;
    background-color: #9e85be;
}
.hotel-tab__link {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: .05em;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 3.125;
    letter-spacing: .1em;
    text-align: center;
    transition:
        color .3s var(--easeOutQuart),
        font-size .3s var(--easeInSine),
        line-height .3s var(--easeInSine);
}
.hotel-tab__item.active .hotel-tab__link {
    color: var(--white);
    font-size: 1.8rem;
    line-height: calc(70 / 18);
}
@media screen and (orientation: portrait) {
    .hotel-tab { top: 100vw }
}
@media screen and (max-width: 767px) {
    .hotel-tab__list {
        position: fixed;
        top: 18rem;
        right: 2rem;
        transform: none;
        width: 9rem;
    }
    .hotel-tab__item {
        width: 7rem;
        height: 7rem;
        margin-bottom: 2rem;
        filter: drop-shadow(0 0 2rem rgba(0, 0, 0, .4));
    }
    .hotel-tab__item.active {
        width: 9rem;
        height: 9rem;
    }
    .hotel-tab__link {
        font-size: 2.4rem;
        line-height: calc(70 / 24);
    }
    .hotel-tab__item.active .hotel-tab__link {
        font-size: 2.8rem;
        line-height: calc(90 / 28);
    }
}


/* Content4 */
.content__top04 {
    padding-top: 96px;
    padding-bottom: 113px;
    background: url(../images/home/bg03.jpg) no-repeat top center / 100% 100%;
}
@media screen and (max-width: 767px) {
    .content__top04 {
        padding-top: 10.3rem;
        padding-bottom: 13.1rem;
        background-image: url(../images/home/bg03_sp.jpg);
    }
}

.content__top04__box {
    padding-right: 30px;
    padding-left: 30px;
}
.content__top04__box__container { display: flex }
@media screen and (max-width: 767px) {
    .content__top04__box {
        padding-right: 0;
        padding-left: 0;
    }
    .content__top04__box__container {
        display: block;
        margin-bottom: 6rem;
    }
}

.content__top04__title {
    margin-bottom: 4rem;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: .1em;
    text-align: center;
}
.content__top04__title span {
    display: inline-block;
    padding-right: 10px;
    padding-left: calc(10px + 0.05em);
    padding-bottom: 20px;
    background: linear-gradient(var(--black), var(--black)) no-repeat bottom center / 100% 6px;
}
@media screen and (max-width: 767px) {
    .content__top04__title {
        margin-bottom: 6rem;
        font-size: 4rem;
    }
    .content__top04__title span {
        padding-right: .5rem;
        padding-left: .55rem;
        padding-bottom: 1.8rem;
        background-size: 100% 1rem;
    }
}

.content__top04 .box {
    position: relative;
    flex-grow: 1;
    width: 100%;
    padding-top: 80px;
    margin-bottom: 64px;
}
.content__top04 .box__title {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 200px;
    padding-right: 16px;
    padding-left: calc(16px + .05em);
    border-radius: 9999px;
    background-color: #ee9263;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: calc(40 / 24);
    letter-spacing: .1em;
    text-align: center;
    white-space: nowrap;
}
.content__top04 .box__title.box__title--twoLines {
    padding-top: 11px;
    padding-bottom: 11px;
    font-size: 2rem;
    line-height: 1.2;
}
@media screen and (max-width: 767px) {
    .content__top04 .box {
        padding-top: 14rem;
        margin-bottom: 5rem;
    }
    .content__top04 .box:last-of-type { margin-bottom: 0 }
    .content__top04 .box__title {
        position: absolute;
        top: 4rem;
        min-width: 40rem;
        padding-right: 4.4rem;
        padding-left: 4.4rem;
        font-size: 4rem;
        line-height: 2;
        letter-spacing: 0;
    }
    .content__top04 .box__title.box__title--twoLines {
        padding-top: 0;
        padding-bottom: 0;
        font-size: 4rem;
        line-height: 2;
    }
}


.content__top04 .box__list {
    display: flex;
    justify-content: space-evenly;
}
.content__top04 .box__item { width: min(200px, 96%) }
.content__top04 .box__list.box__list--number .box__item {
    position: relative;
    width: min(200px, calc(100% * (200 / 570)));
}
.content__top04 .box__list.box__list--number .box__item::before {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 45px;
    height: 45px;
    background-color: var(--black);
    color: var(--white);
    font-family: var(--fontSubEN);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    z-index: 10;
}
.content__top04 .box__list.box__list--number .box__item:nth-child(1)::before { content: "1" }
.content__top04 .box__list.box__list--number .box__item:nth-child(2)::before { content: "2" }
@media screen and (max-width: 767px) {
    .content__top04 .box__list { justify-content: space-around }
    .content__top04 .box__item { width: 100% }
    .content__top04 .box__list:not(.box__list--number) .box__item {
        display: flex;
        padding-right: 3rem;
        padding-left: 3rem;
        padding-bottom: 1rem;
    }
    .content__top04 .box__list.box__list--number .box__item { width: calc(100% * (280 / 690)) }
    .content__top04 .box__list.box__list--number .box__item::before {
        top: -2rem;
        left: -1.6rem;
        width: 7rem;
        height: 7rem;
        font-size: 4.7rem;
        line-height: calc(70 / 47);
    }
}

.content__top04 .box__image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    margin-bottom: 14px;
}
.content__top04 .box__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content__top04 .box__list:not(.box__list--number) .box__image span { display: block }
@media screen and (max-width: 767px) {
    .content__top04 .box__list:not(.box__list--number) .box__image {
        width: calc(100% * (280 / 630));
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .content__top04 .box__list:not(.box__list--number) .box__image span {
        position: relative;
        width: 100%;
        padding-bottom: 100%;
    }
}

.content__top04 .box__text {
    margin-right: -5px;
    margin-left: -5px;
    font-size: 1.6rem;
    line-height: 1.875;
}
@media screen and (max-width: 767px) {
    .content__top04 .box__text {
        margin-right: -1rem;
        margin-left: -1rem;
        font-size: 2.4rem;
        line-height: calc(40 / 24);
    }
    .content__top04 .box__list:not(.box__list--number) .box__text {
        width: calc(100% - (100% * (280 / 630)));
        padding-left: 3.4rem;
        margin-right: 0;
        margin-left: 0;
    }
}


/* Content5 */
.content__top05 {
    position: relative;
    padding-top: 100px;
    padding-bottom: 267px;
    background-color: #fcedef;
}
.content__top05::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 33px;
    background: url(../images/home/bg04.png) repeat-x bottom center / contain;
}
@media screen and (max-width: 767px) {
    .content__top05 {
        padding-top: 12rem;
        padding-bottom: 12.6rem;
    }
    .content__top05::before { height: 3.3rem }
}


.content__top05 .box { padding-top: 80px }
.content__top05 .box__item {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 175px;
    z-index: 1;
}
.content__top05 .box__item:last-of-type { margin-bottom: 0 }
.content__top05 .box__item:nth-of-type(odd) { padding-left: 85px }
.content__top05 .box__item:nth-of-type(even) {
    flex-direction: row-reverse;
    padding-right: 85px;
}
.content__top05 .box__main {
    position: relative;
    width: calc(100% * (580 / 1115));
}
.content__top05 .box__main::before {
    content: "";
    position: absolute;
    top: -92px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% * (750 / 580));
    padding-bottom: calc(100% * (750 / 580));
    border-radius: 100%;
    background-color: var(--white);
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .content__top05 .box { padding-top: 6rem }
    .content__top05 .box__item {
        display: block;
        margin-bottom: 17.3rem;
    }
    .content__top05 .box__item:nth-of-type(odd) { padding-left: 0 }
    .content__top05 .box__item:nth-of-type(even) { padding-right: 0 }
    .content__top05 .box__main {
        width: 63rem;
        margin-right: auto;
        margin-left: auto;
    }
    .content__top05 .box__main::before {
        top: -7.3rem;
        width: 80rem;
        height: calc(100% + 41.3rem);
        padding-bottom: 0;
        border-radius: 40rem;
    }
}


.content__top05 .box__title {
    padding-left: .02em;
    margin-bottom: 31px;
    color: #e14e60;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .04em;
    text-align: center;
}
.content__top05 .box__text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(26 / 14);
    letter-spacing: .04em;
}
.content__top05 .box__image {
    position: relative;
    width: calc(100% * (480 / 1115));
    height: 0;
    padding-bottom: calc(100% * (345 / 1115));
    margin-top: 15px;
}
.content__top05 .box__item:nth-of-type(odd) .box__image { right: 20px }
.content__top05 .box__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 25px;
}
.content__top05 .box__image::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: repeating-linear-gradient(45deg, var(--white) 0, var(--white) .6rem, transparent .6rem, transparent 1.2rem ) no-repeat center center / contain;
}
@media screen and (max-width: 767px) {
    .content__top05 .box__title {
        margin-bottom: 4.3rem;
        font-size: 4rem;
    }
    .content__top05 .box__text {
        margin-bottom: 3.2rem;
        font-size: 2.4rem;
        font-weight: 400;
        line-height: calc(40 / 24);
        letter-spacing: 0;
    }
    .content__top05 .box__image {
        position: relative;
        right: 2rem;
        width: 48rem;
        padding-bottom: 50%;
        margin-top: 0;
        margin-right: auto;
        margin-left: auto;
    }
    .content__top05 .box__item:nth-of-type(odd) .box__image { right: 2rem }
    .content__top05 .box__image img { border-radius: 2.5rem }
    .content__top05 .box__image::before {
        top: 2rem;
        left: 2rem;
        border-radius: 2.5rem;
    }
}



/* Content6 */
.content__top06 {
    padding-top: 93px;
    padding-bottom: 120px;
    background-color: #d5f2f0;
}
@media screen and (max-width: 767px) {
    .content__top06 {
        padding-top: 11.7rem;
        padding-bottom: 10.2rem;
    }
}


.content__top06 .box {
    padding-top: 8px;
    padding-bottom: 6px;
}
.content__top06 .box__item { margin-bottom: 100px }
@media screen and (max-width: 767px) {
    .content__top06 .box {
        padding-top: .7rem;
        padding-bottom: 0;
    }
    .content__top06 .box__item { margin-bottom: 4rem }
}


.content__top06 .box__item:nth-child(even) .accordion__title { text-align: right }
.content__top06 .accordion__title h3 {
    position: relative;
    display: inline-block;
    padding-left: 100px;
    margin-bottom: 6px;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: calc(40 / 28);
    letter-spacing: .04em;
    z-index: 1;
}
.content__top06 .accordion__title h3 span {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    color: var(--white);
    font-family: var(--fontSubEN);
    font-size: 10rem;
    font-weight: 400;
    letter-spacing: .02em;
    white-space: nowrap;
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .content__top06 .accordion__title {
        position: relative;
        border-bottom: 1rem solid #809190;
        background-color: #55bfcb;
    }
    .content__top06 .accordion__title::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 3rem;
        transform: translateY(-50%);
        width: 3.3rem;
        height: 3.3rem;
        background: url(../images/home/arrow.svg) no-repeat center center / contain;
    }
    .content__top06 .accordion__title.active::before { transform: translateY(-50%) rotate(180deg) }
    .content__top06 .box__item:nth-child(even) .accordion__title { text-align: left }
    .content__top06 .accordion__title h3 {
        padding: 3rem;
        padding-right: 7rem;
        margin-bottom: 0;
        color: var(--white);
        font-weight: 500;
        letter-spacing: 0;
    }
    .content__top06 .accordion__title h3 span { display: none }
}

.content__top06 .accordion__content {
    display: flex;
    justify-content: space-between;
}
.content__top06 .box__item:nth-child(even) .accordion__content { flex-direction: row-reverse }
.content__top06 .accordion__image {
    position: relative;
    width: 25%;
    height: 0;
    padding-bottom: 25%;
    margin-top: 40px;
    margin-right: 20px;
    z-index: 1;
}
.content__top06 .accordion__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}
.content__top06 .accordion__image::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: repeating-linear-gradient(45deg, var(--white) 0, var(--white) .6rem, transparent .6rem, transparent 1.2rem) no-repeat center center / contain;
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .content__top06 .accordion__content {
        display: block;
        max-height: 0;
        background-color: var(--white);
        overflow: hidden;
        transition: max-height .3s var(--easeInSine);
    }
    .content__top06 .accordion__title.active + .accordion__content {
        max-height: 200vh;
        transition-duration: 1s;
        transition-timing-function: var(--easeOutQuart);
    }
    .content__top06 .accordion__image {
        right: 2rem !important;
        width: calc(100% * (480 / 690)) !important;
        padding-bottom: 50% !important;
        margin-top: 6rem !important;
        margin-right: auto !important;
        margin-left: auto !important;
        margin-bottom: 5.2rem !important;
    }
    .content__top06 .accordion__image img { border-radius: 2.5rem !important }
    .content__top06 .accordion__image::before {
        display: block !important;
        top: 2rem !important;
        left: 2rem !important;
        border-radius: 2.5rem !important;
        background-image: repeating-linear-gradient(45deg, #d5f2f0 0, #d5f2f0 .6rem, transparent .6rem, transparent 1.2rem) !important;
    }
}


.content__top06 .accordion__text {
    width: 70%;
    height: 100%;
    padding: 35px 40px 38px 45px;
    background-image:
        linear-gradient(#00abbd, #00abbd),
        linear-gradient(#00abbd, #00abbd),
        linear-gradient(#00abbd, #00abbd),
        linear-gradient(#00abbd, #00abbd);
    background-repeat: no-repeat;
    background-position: top right, top right, bottom left, bottom left;
    background-size: 160px 4px, 4px 160px, 160px 4px, 4px 160px;
}
.content__top06 .box__item:nth-of-type(even) .accordion__text {
    background-position: top left, top left, bottom right, bottom right;
}
.content__top06 .accordion__text h4 {
    color: #0a6e78;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.625;
    letter-spacing: .04em;
}
.content__top06 .accordion__text p + h4 { margin-top: 1.625em }
.content__top06 .accordion__text p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(26 / 14);
}
@media screen and (max-width: 767px) {
    .content__top06 .accordion__text {
        width: 100%;
        padding: 0 3rem 5.2rem;
        background: none;
    }
    .content__top06 .accordion__text h4 {
        color: #0a6e78;
        font-size: 2.4rem;
        line-height: calc(40 / 24);
        letter-spacing: 0;
    }
    .content__top06 .accordion__text p + h4 { margin-top: 4rem }
    .content__top06 .accordion__text p {
        font-size: 2.4rem;
        font-weight: 400;
        line-height: calc(40 / 24);
    }
}



.content__top06 .box--change > h3 {
    position: relative;
    padding-left: 100px;
    margin-bottom: 76px;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: calc(40 / 28);
    letter-spacing: .04em;
    text-align: center;
    z-index: 1;
}
.content__top06 .box--change > h3 span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    padding-right: 100px;
    color: var(--white);
    font-family: var(--fontSubEN);
    font-size: 10rem;
    font-weight: 400;
    letter-spacing: .02em;
    white-space: nowrap;
    z-index: -1;
}
.content__top06 .box--change .box__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-right: 20px;
}
.content__top06 .box--change .box__item {
    position: relative;
    width: calc(100% * (550 / 1200));
    padding: 32px 24px 30px;
    border-radius: 25px;
    background-color: var(--white);
    z-index: 1;
}
.content__top06 .box--change .box__item::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: repeating-linear-gradient(45deg, var(--white) 0, var(--white) 6px, transparent 6px, transparent 12px);
    z-index: -1;
}
.content__top06 .box__item:nth-child(even) .accordion__title { text-align: left }
.content__top06 .box--change .accordion__title h3 {
    display: block;
    padding-left: 0;
    margin-bottom: 20px;
    font-size: 2.4rem;
    line-height: calc(40 / 24);
}
.content__top06 .box--change .accordion__content { display: block }
.content__top06 .box--change .accordion__image {
    width: 100%;
    height: 160px;
    padding-bottom: 0;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 16px;
}
.content__top06 .box--change .accordion__image img {
    position: static;
    width: auto;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    border-radius: 0;
    object-fit: unset;
}
.content__top06 .box--change .accordion__image::before { display: none }
.content__top06 .box--change .accordion__text {
    width: 100%;
    padding: 0;
    background: none;
}
@media screen and (max-width: 767px) {
    .content__top06 .box--change .box__list {
        display: block;
        padding-right: 0;
    }
    .content__top06 .box--change .box__item {
        width: 100%;
        padding: 0;
        border-radius: 0;
    }
    .content__top06 .box--change .box__item::before { display: none }
    .content__top06 .box--change .accordion__title h3 {
        padding: 3rem;
        padding-right: 7rem;
        margin-bottom: 0;
        font-size: 2.8rem;
        line-height: calc(40 / 28);
    }
    .content__top06 .box--change .accordion__image {
        width: 100%;
        height: 160px;
        padding-bottom: 0;
        margin-top: 6rem;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 5.2rem;
    }
    .content__top06 .box--change .accordion__image img {
        position: absolute;
        width: 100%;
    }
    .content__top06 .box--change .accordion__text {
        width: 100%;
        padding: 0 3rem 5.2rem;
    }
}


/*********************************************************************
*  Pages
*********************************************************************/
/* Main frames */
.pages {
    padding-top: 100px;
    padding-bottom: 150px;
}
.pages.pages--yellow { background-color: rgba(252, 176, 64, 0.2) }
.pages.pages--orange { background-color: rgba(238, 146, 99, 0.2) }
.pages.pages--blue { background-color: rgba(43, 188, 181, 0.2) }

.pages .container { width: min(1000px, 92%) }

.pages__frame {
    padding: 36px;
    border: 4px solid var(--black);
}
.pages.pages--yellow .pages__frame { border-color: #fcb040 }
.pages.pages--orange .pages__frame { border-color: #ee9263 }
.pages.pages--blue .pages__frame { border-color: #2bbcb5 }

.pages__container {
    padding: 53px 58px 58px;
    background-color: var(--white);
}

@media screen and (max-width: 767px) {
    .pages {
        padding-top: 10rem;
        padding-bottom: 20rem;
    }
    .pages__frame {
        padding: 3.2rem;
        border-width: .4rem;
    }
    .pages__container { padding: 4rem 3rem 6rem }
}

/* content */
.pages__text {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: .04em;
}
.pages__text.pages__text--spread { line-height: 2.5 }
.pages__text strong { font-weight: 700 }
.pages.pages--yellow .pages__text strong,
.pages.pages--yellow .pages__text span { color: #b26f0d }
.pages.pages--orange .pages__text strong,
.pages.pages--orange .pages__text span { color: #d35211 }
.pages.pages--blue .pages__text strong,
.pages.pages--blue .pages__text span { color: #0a6e78 }
@media screen and (max-width: 767px) {
    .pages__text {
        font-size: 2.8rem;
        line-height: calc(50 / 28);
        letter-spacing: 0;
    }
    .pages__text.pages__text--spread { line-height: calc(50 / 28) }
}



/* Form parts */
.input {
    width: 100%;
    height: 60px;
    padding-right: 1.125em;
    padding-left: 1.125em;
    border: 1px solid #c1c1c1;
    background-color: #efefef;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: .04em;
}
.input.input--textarea {
    resize: none;
    height: 120px;
    padding-top: 1em;
    padding-bottom: 1em;
    line-height: 1.5;
}
.input::placeholder { color: rgba(49, 49, 49, .5) }
@media screen and (max-width: 767px) {
    .input {
        height: 8rem;
        padding-right: .5em;
        padding-left: .5em;
        border-width: .2rem;
        font-size: 2.8rem;
        letter-spacing: 0;
    }
    .input.input--textarea {
        height: 24rem;
        padding-top: 1.8rem;
        padding-bottom: 1.8rem;
    }
}

.pages__text + .form { margin-top: 46px }
.form__input:not(:last-of-type) { margin-bottom: 34px }
.form__input:last-of-type { margin-bottom: 53px }
.form__input__title { margin-bottom: 13px }
.form__input__content p {
    padding: 1.125em;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: .04em;
}
.form__btn {
    display: flex;
    justify-content: space-evenly;
    margin-top: 33px;
}
.form__btn button {
    width: 300px;
    height: 80px;
    padding-left: .02em;
    border-radius: 25px;
    background-color: #d8d8d8;
    color: var(--white);
    font-size: 1.8rem;
    letter-spacing: .04em;
    pointer-events: none;
}
.form__btn button.active {
    background-color: #ee9263;
    pointer-events: visible;
}
.form__btn button.active.button--gray { background-color: #d8d8d8 }
@media screen and (max-width: 767px) {
    .pages__text + .form { margin-top: 6rem }
    .form__input:not(:last-of-type) { margin-bottom: 4.8rem }
    .form__input:last-of-type { margin-bottom: 7rem }
    .form__input__title { margin-bottom: .9rem }
    .form__input__content p {
        padding: .9em .5em;
        font-size: 2.8rem;
        letter-spacing: 0;
    }
    .form__btn {
        flex-direction: column-reverse;
        margin-top: 4.8rem;
    }
    .form__btn button {
        width: 100%;
        height: 10rem;
        border-radius: 2.5rem;
        font-size: 3.6rem;
    }
    .form__btn button:last-of-type:not(:only-child) { margin-bottom: 2em }
}
