@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&display=swap');
/*******************************************
*** Custom prop
********************************************/
:root {
    --main-color: #23afb7;
    --sub-color01: #6fb9ad;
    --sub-color02: #91c2a3;
    --sub-color03: #99bf82;
    --sub-color04: #c6cc86;
    --sub-color05: #f1d065;
    --sub-color06: #e9ad7b;
    --sub-color07: #e18675;
    --point-color: #00479d;
    --bg-color: #eff9fa;
}

/*******************************************
*** CSS Document - RESET
********************************************/
/*html {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}*/

.contents {
    position: relative;
    word-wrap: break-word;
    margin: 0;
    padding: 0;
    background: #fff;
    overflow-x: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}
.contents img{
    max-width: 100%;
}
/* box-sizing */
/** {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

dl,
dt,
dd,
ol,
ul,
li {
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    list-style: none;
}*/

.contents h1,
.contents h2,
.contents h3,
.contents h4,
.contents h5,
.contents section {
    font-size: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/*table {
    border-collapse: collapse;
    border-spacing: 0;
}*/

/* input */
/*input,
select,
textarea,
button {
    vertical-align: middle;
}

label {
    display: inline-block;
    margin-bottom: 0.8rem;
}*/

/* link */

.contents a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}

.contents a,
.contents a:link {
    color: #000;
}

.contents ::selection {
    background: rgba(51,185,213,.5);
}

/*******************************************
*** Utillity Setting
********************************************/
.contents .center {
    text-align: center;
}

.contents .sp_only {
    display: none;
}

.contents .sp_fluid {
    width: 100%;
    max-width: 768px;
}

.contents .img-fluid {
    width: 100%;
}
.contents .google-map {
    height: 0;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
}

.contents .google-map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
/* 全幅ラップ */
.contents .overall_wrap {
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
    overflow: hidden;
}

@media screen and (max-width:768px) {
    .contents .sp_only {
        display: block !important;
    }

    .contents .pc_only {
        display: none !important;
    }
}
/*******************************************
*** Font Style
***(*****************************************/
/*:is(html, body) {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}*/

.contents h1,
.contents h2 {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 3.2rem;
    text-align: center;
}

.contents h3 {
    font-size: 2rem;
    font-weight: 700;
    font-style: normal;
}
.contents .sans-serif{
    font-family: "sans-serif";
}
.contents .numeric {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
}
.contents .italic {
    font-style: italic;
}
.contents .size-2 {
    font-size: 120%;
}
.contents #problem h2 span,
.contents #contact h2 span{
    color: rgba(0,159,193,.3);
    font-size: 9rem;
    line-height: .2;
}

.contents p {
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    margin: 0;
}
.contents p.lead {
    text-align: center;
    font-weight: 700;
}
/*@media screen and (max-width: 768px) {
    .contents {
        font-size: 3vw;
    }
}*/
.contents .scale-down{
    font-size: 80%;
}
.contents .highlight{
    background: linear-gradient(transparent 40%, #f9e165 40%);
}

.contents .bold{
    font-weight: bold!important;
}

.contents .normal {
    font-weight: normal!important;
}

.contents .left{
    text-align: left!important;
}

.contents .right{
    text-align: right!important;
}

.contents .center{
    text-align: center!important;
}
.contents .wordmark{
    font-family: "Oswald", sans-serif !important;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.contents .point-color{
    color: var(--point-color);
}
@media screen and (max-width: 768px) {
  .contents h1,
  .contents h2 {
    font-size: 2.2rem;
  }
  .contents h3 {
    font-size: 1.4rem;
  }
  
}
/*******************************************
*** Layout Style
********************************************/
.contents .inner_wrap {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

.contents .contents_wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.contents .flex_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.6rem;
}

.contents .reverse_row_wrap {
    flex-direction: row-reverse;
}

.contents .reverse_col_wrap {
    flex-direction: column-reverse;
}

.contents .col2,
.contents .col3,
.contents .col4,
.contents .col5,
.contents .col6,
.contents .col7,
.contents .onethird,
.contents .twothird {
    flex-wrap: wrap;
}

.contents .col2 > * {
    width: calc((100% / 2) - (1.6rem / 2));
}

.contents .col3 > * {
    width: calc((100% / 3) - (3.2rem / 3));
}

.contents .col4 > * {
    width: calc((100% / 4) - (4.8rem / 4));
}

.contents .col5 > * {
    width: calc((100% / 5) - (6.4rem / 5));
}

.contents .col6 > * {
    width: calc((100% / 6) - (8rem / 6));
}

.contents .col7 > * {
    width: calc((100% / 7) - (9.6rem / 14));
}

.contents .onethird > *:first-child {
    width: calc((100% / 3) - (1.6rem / 2));
}

.contents .onethird > *:last-child {
    width: calc((100% * (2 / 3)) - (1.6rem / 2));
}

.contents .twothird > *:first-child {
    width: calc((100% * (2 / 3)) - (1.6rem / 2));
}

.contents .twothird > *:last-child {
    width: calc((100% / 3) - (1.6rem / 2));
}

@media screen and (max-width: 1200px) {
    .contents .inner_wrap {
        padding: 0 1.125rem;
    }
}

@media screen and (max-width: 768px) {
    .contents .col2 > *,
    .contents .col3 > * {
        width: 100%;
    }
    .contents .col4 > * {
        width: calc(100% / 2);
    }
    .contents .onethird > *:first-child,
    .contents .onethird > *:last-child,
    .contents .twothird > *:first-child,
    .contents .twothird > *:last-child {
        width: 100%;
    }
}

@media screen and (max-width: 460px) {
    .contents .col5 {
        width: calc(100% / 2);
    }
}

/*******************************************
*** Animation Settings
********************************************/
@keyframes delighter-top_in {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	}
	75% { opacity: 0.5; }
	100% {
		transform: none;
		opacity: 1;
	}
}

.contents .animate-top_in.delighter{
	transform: translateY(-100%);
	opacity: 0;
	will-change: transform, opacity;
}

.contents .animate-top_in.delighter.started {
	animation: delighter-top_in 1.2s ease-out both;
}

@keyframes delighter-bottom_in {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}
	75% {
		opacity: 0.5;
	}
	100% {
		transform: none;
		opacity: 1;
	}
}

.contents .animate-bottom_in.delighter{
	transform: translateY(100%);
	opacity: 0;
	will-change: transform, opacity;
}

.contents .animate-bottom_in.delighter.started {
	animation: delighter-bottom_in 1.2s ease-out both;
}

@keyframes delighter-pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

/*******************************************
*** Header & Footer
********************************************/

.contents .header_wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    z-index: 3;
    box-shadow: 0 0 8px rgba(0,0,0,.2);
    background: #fff;
}

.contents footer {
    background: top center / cover no-repeat url(../images/bg_footer.webp);
    padding: 9.6rem 0 1.6rem;
}
.contents .footer_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3.2rem;
}
/*******************************************
*** Contents Style
********************************************/
.contents #intro,
.contents #merit,
.contents #hotel,
.contents #faq {
    padding: 6.4rem 0 9.6rem;
}
.contents h2.section_title {
    position: relative;
    text-align: center;
    overflow: visible;
    margin: 8rem 0 4.8rem;
}
.contents h2.section_title:before {
    position: absolute;
    content: "";
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
}
.contents #merit h2.section_title:before {
    background: url(../images/ttl_merit.webp) no-repeat center/contain;
    width: min(100%, 632px);
    aspect-ratio: 632 / 144;
}  
.contents #hotel h2.section_title:before {
    background: url(../images/ttl_hotel.webp) no-repeat center/contain;
    width: min(100%, 646px);
    aspect-ratio: 646 / 144;
    top: -4.8rem;
} 
.contents #faq h2.section_title:before {
    background: url(../images/ttl_faq.webp) no-repeat center/contain;
    width: min(100%, 440px);
    aspect-ratio: 440 / 160;
}
@media screen and (max-width: 768px) {
  .contents #intro,
  .contents #merit,
  .contents #hotel,
  .contents #faq {
      padding: 4.5rem 0 6.75rem;
  }
    .contents h2.section_title {
        margin: 3.375rem 0;
        line-height: 1.4;
    }
    .contents #hotel h2.section_title {
        margin: 1.125rem 0 2.25rem;
    }
    .contents #merit h2.section_title:before {
        top: -100%;
    }
    .contents #hotel h2.section_title:before {
        top: -20%;
    }
    .contents #faq h2.section_title:before {
        width: min(70%, 440px);
        top: -100%;
    }
}

.contents a.btn,
.contents button.btn {
    position: relative;
    background-image: linear-gradient(-45deg, rgb(19,181,177) 0%, rgb(179,212,101) 100%);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    text-align: center;
    color: #fff;
    padding: 1.6rem 3.2rem;
    border: 2px solid #fff;
    outline: none;
    border-radius: 100vh;
}
.contents a.btn:before,
.contents button.btn:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: repeat url(../images/btn-ptn.webp);
    width: 100%;
    height: 100%;

}
.contents section:is(#firstview) {
    position: relative;
}
.contents #firstview>.fv_main {
    background: center / cover no-repeat url(../images/bg_fv.webp);
    line-height: 0;
}
.contents #firstview h1 {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.contents #firstview>.fv_p p {
    color: var(--point-color);
    padding-top: 1.6rem;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .contents #firstview>.fv_main {
        background: center / cover no-repeat url(../images/bg_fv_sp.webp);
    }
}
.contents #intro {
    background: center / cover no-repeat url(../images/bg_intro.webp);
    position: relative;
    overflow: hidden;
}
.contents .intro_box_outside {
    position: relative;
    background: #fff;
    padding: 1.6rem;
    margin-top: 200px;
}
.contents .intro_box_outside:before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 340px;
    background: #fff;
    border-radius: 100vw 100vw 0 0;
}
/* 内側のライン付きボックス */
.contents .intro_box {
  position: relative;
  background: #fff;
  padding: 1.6rem;
  border: 6px solid #e9f7f8;
  z-index: 2;
}
/* 内側：同じ半円形のラインを上に重ねる */
.contents .intro_box_outside:after {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 340px;
  border: 6px solid #e9f7f8;
  border-bottom: none;
  border-radius: 100vw 100vw 0 0;
  background: #fff;
  z-index: 1;
}
.contents .intro_box:before {
  content: "";
  position: absolute;
  top: -174px;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 340px;
  background: #fff;
  border-radius: 100vw 100vw 0 0;
  z-index: 3;
  border-bottom: none;
}
.contents .intro_content {
    position: relative;
    z-index: 5;
}
.contents .intro_head h2 {
    position: absolute;
    z-index: 10;
    color: var(--point-color);
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.contents .intro_head h2:before {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 118px;
    height: 68px;
    display: inline-block;
    content: "";
    background: url(../images/intro_ttl_icon.webp) no-repeat;
    background-size: contain;
}
.contents .intro_head h2:after {
    background-color: var(--main-color);
    bottom: -12px;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 60px;
}
.contents .intro_text {
    padding: 6.4rem 0;
    text-align: center;
    position: relative;
    margin-top: 120px;
    line-height: 2;
    font-size: 1.8rem;
}
.contents .intro_text span {
    color: var(--main-color);
    font-weight: 700;
    font-size: 2.4rem;
}
.contents .intro_text:before {
    position: absolute;
    content: "";
    background: url(../images/intro_icon.webp) no-repeat;
    background-size: contain;
    width: 90px;
    height: 35px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
}
@media (max-width: 768px) {
  .contents .intro_box_outside{
    padding: 1.125rem;
  }
    .contents .intro_box_outside:before {
        width: 31.5rem;
        height: 15.75rem;
        top: -13.5rem;
    }
    .contents .intro_box_outside:after {
        width: 28.6875rem;
        height: 14.0625rem;
        top: -12.375rem;
    }
  .contents .intro_box{
    padding: 1.125rem;
  }
    .contents .intro_box:before {
        width: 28.6875rem;
        height: 14.0625rem;
        top: -12.375rem;
    }
    .contents .intro_box_outside {
        margin-top: 13.5rem;
    }
    .contents .intro_head h2 {
        font-size: 2rem;
        top: -6.75rem;
        line-height: 1.4;
    }
    .contents .intro_text {
        margin-top: 6.75rem;
      padding: 4.5rem 0;
      font-size: 1.28rem;
    }
  .contents .intro_text span{
    font-size: 1.7rem;
  }
}
 /*
@media (max-width: 768px) {
    .intro_content {
        flex-direction: column;
    }
    .contents .intro_content img {
        width: 100%;
    }
    .contents .intro_box {
        margin-top: 12.8rem;
        padding: 3.2rem;
    }
    .contents .intro_head {
        top: -14.4rem;
        width: 38.4rem;
        height: 19.2rem;
    }
    .contents .intro_head h2 {
        font-size: 2rem;
        top: 9.6rem;
    }
    .contents .intro_head h2:after {
        width: 4.8rem;
    }
    .contents .intro_text {
        margin-top: 80px;
    }
}
    */
@media (max-width: 640px) {
    .contents .intro_head h2:before {
        width: 94px;
        top: -56px;
    }
    .contents .intro_text:before {
        width: 72px;
    }
}

.contents .link_wrap {
    display: flex;
    gap: 0.8rem;
    padding: 1.6rem 0;
}
.contents .link_wrap>li a {
    position: relative;
    display: block;
    padding: 2.4rem 0.4rem;
    text-align: center;
    border: #fff solid 2px;
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
}
.contents .link_wrap>li a:before {
    position: absolute;
    content: url(../images/btn_icon.webp);
    width: 17px;
    height: auto;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.contents .link_wrap>li.btn_01 {
    background: linear-gradient(180deg, var(--sub-color01) 0%, var(--sub-color01) 50%, #68ada3 50%, #68ada3 100%);
    box-shadow: 0 0 4px var(--sub-color01);
}
.contents .link_wrap>li.btn_02 {
    background: linear-gradient(180deg, var(--sub-color02) 0%, var(--sub-color02) 50%, #88b598 50%, #88b598 100%);
    box-shadow: 0 0 4px var(--sub-color02);
}
.contents .link_wrap>li.btn_03 {
    background: linear-gradient(180deg, var(--sub-color03) 0%, var(--sub-color03) 50%, #8fb379 50%, #8fb379 100%);
    box-shadow: 0 0 4px var(--sub-color03);
}
.contents .link_wrap>li.btn_04 {
    background: linear-gradient(180deg, var(--sub-color04) 0%, var(--sub-color04) 50%, #babf7e 50%, #babf7e 100%);
    box-shadow: 0 0 4px var(--sub-color04);
}
.contents .link_wrap>li.btn_05 {
    background: linear-gradient(180deg, var(--sub-color05) 0%, var(--sub-color05) 50%, #e5c660 50%, #e5c660 100%);
    box-shadow: 0 0 4px var(--sub-color05);
}
.contents .link_wrap>li.btn_06 {
    background: linear-gradient(180deg, var(--sub-color06) 0%, var(--sub-color06) 50%, #dba374 50%, #dba374 100%);
    box-shadow: 0 0 4px var(--sub-color06);
}
.contents .link_wrap>li.btn_07 {
    background: linear-gradient(180deg, var(--sub-color07) 0%, var(--sub-color07) 50%, #d6887a 50%, #d6887a 100%);
    box-shadow: 0 0 4px var(--sub-color07);
}
.contents .link_wrap a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
    .contents .link_wrap {
      flex-wrap: wrap;
      justify-content: center;
      padding: 1.1250rem 0;
      gap: 0.55rem;
    }
    .contents .col7 > * {
        flex: 0 0 calc(50% - 0.3rem);
    }
    .contents .col7 > *:first-child {
        flex: 0 0 100%;
    }
    .contents .link_wrap>li a {
        font-size: 1.28rem;
        padding: 2.5313rem 1.1250rem;
    }

}
.contents #merit .flex_wrap {
    gap: 3.2rem;
}
.contents #merit .col2 > * {
    width: calc((100% / 2) - (3.2rem / 2));
}
.contents .merit_content {
    position: relative;
    padding: 4.8rem 0;
}
.contents .bg_white {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 66%;
    height: 100%;
    background: #fff;
    z-index: 0;
}
.contents .merit_inner {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
    z-index: 1;
}
.contents #merit h3 {
    display: inline-block;
    color: var(--main-color);
    font-weight: 500;
    border: solid var(--main-color);
    border-width: 0 0px 1px 3px;
    padding: 0 0 0.4rem 0.8rem;
    margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .contents #merit h3 {
    padding: 0 0 0.2813rem 0.5625rem;
    margin-bottom: 0.5625rem;
  }
    .contents #merit .flex_wrap {
        gap: 1.125rem;
        margin-bottom: 3.3750rem;
    }
    .contents #merit .flex_wrap:last-child {
        margin-bottom: 0;
    }
    .contents #merit .col2 > * {
        width: 100%;
    }
  .contents .merit_content {
    padding: 3.3750rem 0;
  }
}
.contents .flex_wrap .img_wrap,
.contents .flex_wrap .text_wrap {
    flex: 1;
}
.contents .hotellist>.area {
    position: relative;
    padding-top: 9.6rem;
}
.contents .area h3 {
    font-size: 4rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    line-height: 1.2;
    padding: 0.8rem 1.6rem;
}
.contents .area>.area_ttl.flex_wrap {
    align-items: start;
}
.contents .area .area_ttl>.text_wrap {
    margin-top: 60px;
}
.contents .area .area_ttl>.text_wrap p>span {
    display: block;
    margin: 0.4rem 0;
    font-family: "Noto Serif JP", serif;
}
.contents .area_contents {
    margin-top: 12.8rem;
    padding: 6.4rem 3.2rem 9.6rem;
    position: relative;
    overflow: hidden;
    transition: max-height 0.6s ease;
    max-height: inherit;
}
.contents .area_contents>ul li.space_block {
    position: relative;
    content: "";
    background: url(../images/logo.webp) no-repeat;
    background-size: contain;
    width: 85px;
    height: 122px;
}
/* グラデーションのフェード */
.contents .fade_overlay {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 50%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}
/* 展開後の状態 */
.contents .area_contents.expanded {
    max-height: none;
}
.contents .area_contents.expanded .fade_overlay {
    opacity: 0;
    pointer-events: none;
}
.contents .viewmore_wrap {
    position: relative;
    text-align: center;
    margin-top: -20px;
    transition: opacity 0.4s ease, transform 0.3s ease;
}
.contents .viewmore_btn {
    position: relative;
    z-index: 2;
    background: #c8e9ea;
    color: var(--main-color);
    font-family: 'Oswald' , 'Noto Sans JP' , sans-serif;
    border: none;
    width: 280px;
    height: 60px;
    padding: 0.4rem 2.4rem 1.2rem 1.6rem;
    font-size: 2rem;
    cursor: pointer;
}
.contents .viewmore_btn:before {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 1px;
    height: 40px;
    top: -30px;
    left: 50%;
}
.contents .viewmore_btn:after {
    content: "";
    position: absolute;
    width: 280px;
    height: 60px;
    border: 1px solid var(--main-color);
    top: -0.8rem;
    left: -0.8rem;
}
.contents .viewmore_btn:hover {
    background: var(--main-color);
    color: #fff;
}
.contents .viewmore_btn:hover:after {
    border: 1px solid #c8e9ea;
}
.contents .area_contents>ul.flex_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 6.4rem 3.2rem;
    justify-items: flex-start;
    box-sizing: border-box;
}
@media screen and (max-width: 768px){
  .contents .area h3 {
    font-size: 2.8rem;
    padding: 0.5625rem 1.125rem;
  }
  .contents .hotellist>.area {
    padding-top: 6.75rem;
  }
    .contents .area_contents>ul.flex_wrap {
        justify-items: center;
      gap: 4.4rem 3.2rem;
    }
  .contents .viewmore_btn {
    font-size: 1.4rem;
  }
}

.contents .area_contents_block {
    max-width: 344px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
}

.contents .area_contents_block .detail {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.contents .area_contents_block h4 {
    line-height: 1.2;
    font-weight: bold;
}
.contents .area_contents_block h4>span {
    font-size: 1.2rem;
    font-weight: 400;
}
.contents .area_contents_block p {
    font-size: 1.4rem;
}
.contents .area_contents_block p.price {
    font-weight: 700;
}
.contents .area_contents_block p.price>span {
    font-size: 2.6rem;
    font-weight: 500;
    font-family: 'Oswald' , 'Noto Sans JP' , sans-serif;
}
.contents .area_contents_block ul.tag {
    justify-content: start;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.contents .area_contents_block ul.tag>li {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    padding: 0.4rem 0.8rem;
    border-radius: 100vw;
}
.contents .area_contents_block .cta {
    margin-top: 1.6rem;
}
.contents .cta_area {
    font-weight: 700;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.8rem;
}
.contents .cta_area .cta_01 {
    background: var(--main-color);
    padding: 0.8rem 1.6rem;
    border-radius: 0.8rem;
    display: block;
}
.contents .cta_area .cta_01 a {
    display: block;
    color: #fff;
}
.contents .cta_area .cta_02 {
    background: #fff;
    padding: 0.4rem 1.6rem;
    border: var(--main-color) solid 1px;
    border-radius: 0.8rem;
    display: block;
}
.contents .cta_area .cta_02 a {
    display: block;
    color: var(--main-color);
}
@media screen and (max-width: 1000px){
    .contents .area_contents {
        margin-top: 6.4rem;
    }
}
@media screen and (max-width: 768px){

    .contents .hotellist .text_wrap {
        margin-top: 40px;
    }
    .contents .hotellist .area_ttl.flex_wrap {
        display: block;
    }
    .contents .area_contents {
        margin-top: 3.3750rem;
      padding: 4.5rem 2.2500rem 6.75rem;
    }
    .contents .area .area_ttl>.text_wrap {
        margin-top: 3.3750rem;
    }
    .contents .area_contents>ul.flex_wrap {
        gap: 6.4rem 1.6rem;
    }
  .contents .area_contents_block p {
    font-size: 0.98rem;
  }
  .contents .area_contents_block ul.tag>li{
    font-size: 0.98rem;
    padding: 0.2813rem 0.5625rem;
  }
  .contents .area_contents_block h4>span {
    font-size: 0.876rem;
  }
  .contents .area_contents_block .detail {
    gap: 0.5rem;
  }
  .contents .area_contents_block .cta {
    margin-top: 1.1250rem;
  }
  .contents .area_contents_block p.price>span {
    font-size: 1.85rem;
  }
}
@media screen and (max-width: 640px){
    .contents .cta_area .cta_01 {
        padding: 1.125rem;
    }
    .contents .cta_area .cta_02 {
        padding: 0.5625rem;
    }
}
/*******************************************
*** 色変更
********************************************/
/* 画像影 */
.contents #area01 .area_ttl .img_wrap>img {
    box-shadow: 11.2rem 4rem 0 0 #d4eae6;
}
.contents #area02 .area_ttl .img_wrap>img {
    box-shadow: 11.2rem 4rem 0 0 #cce3d5;
}
.contents #area03 .area_ttl .img_wrap>img {
    box-shadow: 11.2rem 4rem 0 0 #d9e7d0;
}
.contents #area04 .area_ttl .img_wrap>img {
    box-shadow: 11.2rem 4rem 0 0 #eef0da;
}
.contents #area05 .area_ttl .img_wrap>img {
    box-shadow: 11.2rem 4rem 0 0 #fbf1d0;
}
.contents #area06 .area_ttl .img_wrap>img {
    box-shadow: 11.2rem 4rem 0 0 #f8e6d7;
}
.contents #area07 .area_ttl .img_wrap>img {
    box-shadow: 11.2rem 4rem 0 0 #f9e7e3;
}
@media screen and (max-width: 768px){
  .contents #area01 .area_ttl .img_wrap>img {
    box-shadow: 8rem 2.8rem 0 0 #d4eae6;
  }
  .contents #area02 .area_ttl .img_wrap>img {
      box-shadow: 8rem 2.8rem 0 0 #cce3d5;
  }
  .contents #area03 .area_ttl .img_wrap>img {
      box-shadow: 8rem 2.8rem 0 0 #d9e7d0;
  }
  .contents #area04 .area_ttl .img_wrap>img {
      box-shadow: 8rem 2.8rem 0 0 #eef0da;
  }
  .contents #area05 .area_ttl .img_wrap>img {
      box-shadow: 8rem 2.8rem 0 0 #fbf1d0;
  }
  .contents #area06 .area_ttl .img_wrap>img {
      box-shadow: 8rem 2.8rem 0 0 #f8e6d7;
  }
  .contents #area07 .area_ttl .img_wrap>img {
      box-shadow: 8rem 2.8rem 0 0 #f9e7e3;
  }
  
}
/* タイトル */
.contents #area01 h3 {
    background: var(--sub-color01);
}
.contents #area02 h3 {
    background: var(--sub-color02);
}
.contents #area03 h3 {
    background: var(--sub-color03);
}
.contents #area04 h3 {
    background: var(--sub-color04);
}
.contents #area05 h3 {
    background: var(--sub-color05);
}
.contents #area06 h3 {
    background: var(--sub-color06);
}
.contents #area07 h3 {
    background: var(--sub-color07);
}
/* ホテルリスト背景 */
.contents #area01 .area_contents {
    background-color: rgb(from var(--sub-color01) r g b / 0.1);
}
.contents #area02 .area_contents {
    background-color: rgb(from var(--sub-color02) r g b / 0.1);
}
.contents #area03 .area_contents {
    background-color: rgb(from var(--sub-color03) r g b / 0.1);
}
.contents #area04 .area_contents {
    background-color: rgb(from var(--sub-color04) r g b / 0.1);
}
.contents #area05 .area_contents {
    background-color: rgb(from var(--sub-color05) r g b / 0.1);
}
.contents #area06 .area_contents {
    background-color: rgb(from var(--sub-color06) r g b / 0.1);
}
.contents #area07 .area_contents {
    background-color: rgb(from var(--sub-color07) r g b / 0.1);
}
/* タイトル装飾・金額 */
.contents #area01 .area_ttl>.text_wrap p>span,
.contents #area01 p.price {
    color: var(--sub-color01);
}
.contents #area02 .area_ttl>.text_wrap p>span,
.contents #area02 p.price {
    color: var(--sub-color02);
}
.contents #area03 .area_ttl>.text_wrap p>span,
.contents #area03 p.price {
    color: var(--sub-color03);
}
.contents #area04 .area_ttl>.text_wrap p>span,
.contents #area04 p.price {
    color: var(--sub-color04);
}
.contents #area05 .area_ttl>.text_wrap p>span,
.contents #area05 p.price {
    color: var(--sub-color05);
}
.contents #area06 .area_ttl>.text_wrap p>span,
.contents #area06 p.price {
    color: var(--sub-color06);
}
.contents #area07 .area_ttl>.text_wrap p>span,
.contents #area07 p.price {
    color: var(--sub-color07);
}
.contents #area01 p.price>span {
    color: #426e67;
}
.contents #area02 p.price>span {
    color: #587563;
}
.contents #area03 p.price>span {
    color: #5c734e;
}
.contents #area04 p.price>span {
    color: #7c8054;
}
.contents #area05 p.price>span {
    color: #a68f46;
}
.contents #area06 p.price>span {
    color: #9c7352;
}
.contents #area07 p.price>span {
    color: #94584d;
}
/* タグ */
.contents #area01 .area_contents_block ul.tag>li {
    background: var(--sub-color01);
}
.contents #area02 .area_contents_block ul.tag>li {
    background: var(--sub-color02);
}
.contents #area03 .area_contents_block ul.tag>li {
    background: var(--sub-color03);
}
.contents #area04 .area_contents_block ul.tag>li {
    background: var(--sub-color04);
}
.contents #area05 .area_contents_block ul.tag>li {
    background: var(--sub-color05);
}
.contents #area06 .area_contents_block ul.tag>li {
    background: var(--sub-color06);
}
.contents #area07 .area_contents_block ul.tag>li {
    background: var(--sub-color07);
}


/* faq */
.contents #faq,
.contents #merit {
    background: repeating-linear-gradient(90deg, #eff9fa, #eff9fa 8px, #f3fafb 8px, #f3fafb 16px);
}
.contents .faq_contents {
    border-bottom: 1px solid var(--main-color);
    padding: 2.4rem 1.6rem 3.2rem;
}
.contents .faq_contents:last-child {
    border-bottom: none;
}
.contents .faq_question,
.contents .faq_answer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.contents .faq_question {
    font-weight: bold;
    margin-bottom: 2.4rem;
}
.contents .faq_question:before,
.contents .faq_answer:before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.contents .faq_question:before {
    background: url("../images/question_icon.webp") no-repeat center center / contain;
}
.contents .faq_answer:before {
    background: url("../images/answer_icon.webp") no-repeat center center / contain;
}
@media screen and (max-width: 768px){
  .contents .faq_contents {
    padding: 1.6875rem 1.1250rem;
  }
  .contents .faq_question{
    margin-bottom: 1.6875rem;
  }
    .contents .faq_question:before,
    .contents .faq_answer:before {
        width: 28px;
        height: 28px;
    }
}

/*******************************************
*** slider
********************************************/
.contents .hotellist .image {
  position: relative;
  overflow: hidden;
}
.contents .swiper {
  width: 100%;
  height: auto;
}
.contents .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.contents .swiper-pagination {
  position: absolute;
  bottom: 4px;
  text-align: center;
}
.contents .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.contents .swiper-pagination-bullet-active {
  background: #fff;
}
.contents .swiper-button-next, .swiper-button-prev{
    color: #fff;
}
.contents .swiper-button-next:after, .swiper-button-prev:after{
    font-size: 1.6rem;
}