@charset "utf-8";

/************************************
 * Reset
************************************/
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
	line-height: 1.1;
}

a:not([class]) {
	color: currentColor;
}

img,
picture {
	max-width: 100%;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
}

textarea:not([rows]) {
	min-height: 10em;
}

:target {
	scroll-margin-block: 5ex;
}

em {
	font-style: normal;
}

/************************************
 * Base
 ************************************/
:root {
	--base-width: 375;
	/* 基準幅 */
	--max-width: 640;
	/* 最大幅 */
	--base-font-size: 10;
	/* 基準フォントサイズ (10px) */
	/* 最大横幅サイズ時の最大フォントサイズ */
	--max-font-size: calc((var(--base-font-size) / var(--base-width)) * var(--max-width) * 1px);
}

html {
	/** 以下指定で、横幅が --base-width 時に 1rem が 10pxとなる */
	font-size: min(calc((var(--base-font-size) / var(--base-width)) * 100vw), var(--max-font-size));
	scroll-behavior: smooth;
}

body {
	background: #fff;
	font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
	font-style: normal;
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
	-webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 1.4rem;
}

img,
video {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s;
}

@media (hover: hover) {
	a:hover {
		opacity: 0.6;
		transition: opacity 0.2s;
	}

	button:hover {
		cursor: pointer;
	}

	label:hover {
		cursor: pointer;
	}
}

fieldset {
	border: none;
}

input,
textarea,
select,
button {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	font-size: 1.4rem;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	background-color: #fff;
	border: 1px solid #959595;
	border-radius: 0.7rem;
	padding: .6rem 1rem;
	background-image: url(../img/ver2/icon_arrow_down.svg);
	background-repeat: no-repeat;
	background-position: calc(100% - 0.5rem) center;
	background-size: 1rem;
	font-size: 1.2rem;
	color: #000;
}

select:disabled {
	background-color: #efefef;
	border: 1px solid #c4c4c4;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
	outline: none;
}

button {
	border: none;
	border-radius: 0.7rem;
	cursor: pointer;
}

/************************************
 * Utility
************************************/
.u-align-center {
	text-align: center;
}
.u-fs-1 {
	font-size: 1rem !important;
}

.u-fs-2 {
	font-size: 2rem !important;
}

.u-color-red {
	color: #2fb8ff !important;
}

.u-mr-1 {
	margin-right: 1rem !important;
}

.u-mb-1 {
	margin-bottom: 1rem !important;
}

.u-mb-2 {
	margin-bottom: 2rem !important;
}

.u-mb-3 {
	margin-bottom: 3rem !important;
}

.u-mb-4 {
	margin-bottom: 4rem !important;
}

.u-mb-5 {
	margin-bottom: 5rem !important;
}

/************************************
 * Page
************************************/
.page-wrap {
	width: 100%;
	max-width: calc(var(--max-width) * 1px);
	margin: 0 auto;
	overflow-x: hidden;
	/* border-top: 1rem solid #3D4355; */
}

.page-footer {
	padding: 4rem 2rem;
	text-align: center;
	font-size: .85rem;
}

.page-footer a {
	margin: 0 0.5rem;
	color: #6A6A6A;
}

/******** Nav ********/
.csl__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	align-items: flex-end;
	column-gap: .5rem;
	margin-bottom: 1rem;
	padding: 1.5rem 1.2rem 0 1.2rem;
}

.csl__nav-item {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	column-gap: .5rem;
}

.csl__nav-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.csl__nav-inner img {
	width: 2rem;
	height: auto;
	margin-bottom: .3rem;
}

.csl__nav-inner span {
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	line-height: 1.6rem;
	border: 1px solid transparent;
	border-radius: 100%;
	text-align: center;
	background-color: #1c499c;
	color: #fff;
	font-size: 1rem;
	text-align: center;
	opacity: .3;
}

.csl__nav-item.coupon .csl__nav-inner span {
	background-color: #e4eaf2;
	border-color: #1c499c;
	color: #1c499c;
	opacity: 1 !important;
}

.csl__nav-item:not(.csl__nav-item:first-child):before {
	content: '';
	display: block;
	width: .7rem;
	height: 1px;
	background-color: #0E2C66;
	opacity: .3;
	transform: translateY(-.8rem);
}

.csl__nav-item.is-active .csl__nav-inner span {
	border: 1px solid transparent;
	background-color: #1c499c;
	color: #fff;
	opacity: 1 !important
}

.csl__nav-item.is-active:before {
	opacity: 1 !important;
}

/******** / Nav ********/
/******** Coupon ********/
.csl__coupon-notice {
	text-align: center;
}

.csl__coupon-notice-inner {
	display: inline-block;
	background-color: #FFFFE6;
	text-align: center;
	padding: 0 6.5rem;
	margin: 0 auto 1rem auto;
	font-size: 1.1rem;
}

.csl__coupon-notice-num {
	color: #FF3866;
	font-size: 1.3rem;
	font-weight: bold;
}

.csl__coupon-notice-complete {
	font-weight: bold;
	color: #FF3866;
	font-size: 1.5rem;
}

/******** / Coupon ********/
/******** Carousel ********/
.csl__inner {
	padding: 0rem 3.5rem 3rem;
	background-color: #f0faff;
}

.csl__border {
	width: 100%;
	padding-bottom: .7rem;
	margin-bottom: 2rem;
	border-bottom: dotted 4px #d1b058;
	display: flex;
	align-items: flex-start;
	-moz-column-gap: 2%;
	column-gap: 2%;
	line-height: 1.3;
}

.csl__box {
	margin-bottom: 1.5rem;
	border-radius: 0.7rem;
}

.csl__head {
	width: 100%;
	padding-bottom: .7rem;
	margin-bottom: 0rem;
	display: flex;
	align-items: flex-start;
	-moz-column-gap: 2%;
	column-gap: 2%;
	line-height: 1.3;
}

.csl__head h2 {
	font-weight: normal;
	line-height: 1.4;
	font-size: 1.4rem;
	letter-spacing: 0;
	display: contents;
}

.csl__head h2 img {
	width: 50px;
	display: inline-block;
}

@media screen and (max-width:540px) {
	.csl__head h2 img {
		width: 38px;
		margin-right: 15px;
	}
}

.csl__head-number {
	width: 12%;
}

.csl__foot-btn-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5%;
}

.csl__foot-btn-box .csl__prev-btn,
.csl__foot-btn-box div {
	width: 22%;
}

.csl__foot-btn-box .csl__next-btn {
	width: 60%;
}

.csl__btn-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 3rem;
}

.csl__next-btn {
	display: block;
	padding: 1rem 1rem;
	background-color: #50aef3;
	color: #fff;
	line-height: 1.3;
	transition: all 0.2s;
	font-size: 1.5rem;
	margin: 0 auto;
}

.csl__next-btn:disabled {
	opacity: .6;
	cursor: not-allowed;
}

@media (hover: hover) {
	.csl__next-btn:hover:not(.csl__next-btn:disabled) {
		opacity: .6;
		transition: all 0.2s;
	}
}

.csl__btn-wrap.column-one .csl__select-btn {
	width: 100%;
}

.csl__btn-wrap.column-two .csl__select-btn {
	width: 48.5%;
}

.csl__btn-wrap.column-three .csl__select-btn {
	width: 31.5%;
	padding: 1rem .5rem;
	font-size: 1.3rem;
}

.csl__place-btn-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 3rem;
}

.csl__place-btn-wrap .csl__select-btn {
	width: 48.5%;
	padding: .7rem .5rem;
	font-size: 1.3rem;
}

.csl__place-area-name {
	text-align: center;
	margin-bottom: 1rem;
	font-size: 1.6rem;
}

.csl__select-btn {
	padding: 1rem;
	margin-bottom: 3%;
	border-radius: .7rem;
	line-height: 1.3;
	transition: all 0.2s;
	text-align: center;
	font-size: 1.5rem;
	background-color: #cbe9ff;
	color: #50aef3;
}

.csl__select-btn:hover {
	color: #cbe9ff;
	background-color: #50aef3;
}

.white_pad {
	background: transparent;
	padding: 0.5rem;
}

.csl__select-btn:disabled {
	opacity: .6;
	cursor: not-allowed;
}

.csl__select-btn input {
	display: none;
}

.csl__select-checkbox {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
  column-gap: 4px;
  width: 32%;
	min-height: 4rem;
	padding: .5rem;
	margin-bottom: 2%;
  line-height: 1;
  cursor: pointer;
  font-size: 1.1rem;
  letter-spacing: 0;
	border-radius: .7rem;
	line-height: 1.3;
	transition: all 0.2s;
	background-color: #ffffff;
	color: #50aef3;
}

.csl__select-checkbox > span {
  flex: 1;
}

.csl__select-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: .4rem;
  border: 1px solid #50aef3;
  cursor: pointer;
}

.csl__select-checkbox input[type="checkbox"]:checked {
  background-color: #50aef3;
}

.csl__select-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: .17rem;
  left: .1rem;
  width: .9rem;
  height: .4rem;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.csl__select-checkbox.full {
	width: 100%;
}

@media (hover: hover) {
	.csl__prev-btn:hover {
		opacity: .6;
		transition: all 0.2s;
	}
}

/******** / Carousel ********/
.csl__select-btn.bkg_blue:has(input:checked) {
	background-color: #50aef3;
	color: #cbe9ff;
	opacity: 1;
}

.csl__select-btn.white_pad:hover {
	border: none;
	background: transparent;
	opacity: .5;
}

.csl__select-btn:has(input:checked) {
	opacity: .5;
}

/* 地図 */
.map_list__item:hover {
	opacity: .5;
}

.map_list__item.noopa:hover,
.map_list__item.noopa:has(input:checked) {
	opacity: 1;
}

.map_list__item:has(input:checked) {
	opacity: .5;
}
.map_list__item:has(input:disabled) {
	cursor: not-allowed;
}
.map_list__item:has(input:disabled):hover {
	opacity: 1;
}
.map_list__item:has(input:disabled) img {
	filter: grayscale(95%);
}

/******** CTA ********/
.cta-btn {
	width: 100%;
	padding: 2rem;
	margin: 0 auto;
}
/******** /CTA ********/
/************************************
 * JS
************************************/
/******** Carousel ********/
.js-csl__item {
	display: none;
	animation: fadeOut 2.5s ease-out forwards;
}

.js-csl__item.is-active {
	display: block;
	animation: fadeIn.5s ease-out forwards;
}

/******** / Carousel ********/

/************************************
 * Animation
************************************/
@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}
.js-csl__item {
	display: none;
	transition: all 0.3s ease;
}

.js-csl__item.is-active {
	display: block;
}


.is-hidden {
	display: none;
}

.br10 img {
	border-radius: 10px;
}

.map_list__item input {
	display: none;
}

.map_list_wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
}

.map_list_wrap li {
	cursor: pointer;
}

.map_kyuusyuu .map_list_wrap {
	margin-bottom: 7%;
}

.js-map-back-btn {
	width: calc((100% - 6%) / 3);
	padding: 1rem;
	margin-bottom: 3%;
	border-radius: 0.7rem;
	border: 2px solid transparent;
	line-height: 1.3;
	text-align: center;
	background-color: #cbe9ff;
	color: #50aef3;
	font-size: 1.2rem;
}

.js-map-back-btn:hover {
	background-color: #50aef3;
	color: #cbe9ff;
}

.map_chubu ul {
	aspect-ratio: 3 / 3;
}

.map ul img {
	cursor: pointer;
}

.map_list {
	position: absolute;
}

.map_list.hokkaidou {
	top: 1%;
	right: 4%;
	width: 20%;
}

.map_list.touhoku {
	top: 27%;
	right: 12%;
	width: 17%;
}

.map_list.kantou {
	top: 56%;
	right: 16%;
	width: 17%;
}

.map_list.chubu {
	top: 37%;
	right: 28%;
	width: 21%;
}

.map_list.kinki {
	top: 34%;
	right: 43.5%;
	width: 16%;
}

.map_list.chugoku {
	top: 37%;
	right: 54%;
	width: 21%;
}

.map_list.shikoku {
	top: 59%;
	right: 59%;
	width: 20%;
}

.map_list.kyuusyuu {
	top: 49%;
	right: 75%;
	width: 20%;
}

.map_list.okinawa {
	top: 5%;
	right: 77%;
	width: 11%;
}

.map_list.okinawaBorder {
	top: 7%;
	right: 60%;
	width: 36%;
}

.map_list.aomori {
	top: 5%;
	right: 36%;
	width: 27%;
}

.map_list.akita {
	top: 22%;
	right: 52%;
	width: 15%;
}

.map_list.iwate {
	top: 22%;
	right: 38%;
	width: 15%;
}

.map_list.yamagata {
	top: 47%;
	right: 56%;
	width: 15%;
}

.map_list.miyagi {
	top: 47%;
	right: 42%;
	width: 15%;
}

.map_list.hukushima {
	top: 72%;
	right: 46%;
	width: 27%;
}

.map_list.gunma {
	top: 11%;
	right: 57%;
	width: 18%;
}

.map_list.tochigi {
	top: 11%;
	right: 41%;
	width: 18%;
}

.map_list.ibaragi {
	top: 11%;
	right: 24%;
	width: 18%;
}

.map_list.saitama {
	top: 34%;
	right: 43%;
	width: 33%;
}

.map_list.tokyo {
	top: 54%;
	right: 46%;
	width: 33%;
}

.map_list.kanagawa {
	top: 75%;
	right: 49%;
	width: 33%;
}

.map_list.chiba {
	top: 34%;
	right: 27%;
	width: 20%;
}

.map_list.niigata {
	top: 6%;
	right: 17%;
	width: 24%;
}

.map_list.toyama {
	top: 29%;
	right: 41%;
	width: 16%;
}

.map_list.ishikawa {
	top: 21%;
	right: 55%;
	width: 16%;
}

.map_list.hukui {
	top: 43%;
	right: 62%;
	width: 21%;
}

.map_list.yamanashi {
	top: 65%;
	right: 22%;
	width: 18%;
}

.map_list.nagano {
	top: 54%;
	right: 37%;
	width: 23%;
}

.map_list.gihu {
	top: 57%;
	right: 57%;
	width: 20%;
}

.map_list.shizuoka {
	top: 81%;
	right: 30%;
	width: 24%;
}

.map_list.aichi {
	top: 81%;
	right: 53%;
	width: 24%;
}

.map_list.shiga {
	top: 8%;
	right: 18%;
	width: 17%;
}

.map_list.kyouto {
	top: 8%;
	right: 35%;
	width: 33%;
}

.map_list.hyougo {
	top: 8%;
	right: 66%;
	width: 16%;
}

.map_list.mie {
	top: 36%;
	right: 21%;
	width: 21%;
}

.map_list.nara {
	top: 30%;
	right: 36%;
	width: 20%;
}

.map_list.oosaka {
	top: 30%;
	right: 52.5%;
	width: 20%;
}

.map_list.wakayama {
	top: 74%;
	right: 42%;
	width: 32%;
}

.map_list.tottori {
	top: 11%;
	right: 7%;
	width: 43%;
}

.map_list.shimane {
	top: 10%;
	right: 49%;
	width: 43%;
}

.map_list.okayama {
	top: 39%;
	right: 9%;
	width: 29%;
}

.map_list.hiroshima {
	top: 39%;
	right: 37%;
	width: 29%;
}

.map_list.yamagudhi {
	top: 39%;
	right: 65%;
	width: 29%;
}

.map_list.kagawa {
	top: 9%;
	right: 16%;
	width: 32%;
}

.map_list.ehime {
	top: 9%;
	right: 48%;
	width: 32%;
}

.map_list.tokushima {
	top: 39%;
	right: 20%;
	width: 32%;
}

.map_list.koudhi {
	top: 39%;
	right: 52%;
	width: 32%;
}

.map_list.ooita {
	top: 3%;
	right: 13%;
	width: 19%;
}

.map_list.hukuoka {
	top: 3%;
	right: 31%;
	width: 19%;
}

.map_list.saga {
	top: 3%;
	right: 49%;
	width: 19%;
}

.map_list.nagasaki {
	top: 4%;
	right: 67%;
	width: 16%;
}

.map_list.miyazaki {
	top: 28%;
	right: 17%;
	width: 30%;
}

.map_list.kumamoto {
	top: 27%;
	right: 43%;
	width: 31%;
}

.map_list.kagoshima {
	top: 80%;
	right: 24%;
	width: 54%;
}