@charset "utf-8";
/* CSS Document */
/* キャンペーンモーダル 親ページ *******************************************/
.modal {
	display: none;
}
.modal.is-open {
	display: block;
}
.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
#modal-campaign .modal__container {	
	border-radius: 20px;	
	display: flex;
	flex-direction: column;	
	height: 95vh;
	width: 90%;
	max-width: 1200px;
	margin: auto;
	padding: 1em;	
}
@media (width >= 960px) {
	#modal-campaign .modal__container {
		padding: 1.5em;	
	}
}
.modal__container.theme-default {
	background: #FFF;
}
#modal-campaign .modal__header {
	/*display: flex;
	justify-content: space-between;*/
	position: relative;
}
#modal-campaign .modal__title {
	/*flex: 1;*/	
}
#modal-campaign .modal__title,
.entry-title {
    font-size: clamp(1.25rem, 3vw, 2rem);
	text-align: center;
}
#modal-campaign .modal__close {
	background: #FFF;
	border-radius: 50%;
	border-radius: 20px;
	box-shadow: 0 0 3px 2px rgba(0,0,0,.5);
	font-size: 2em;
	line-height: 1;
	align-self: flex-start;	
	position: absolute;
	top: -.5em;
	right: -.5em;
}
#modal-campaign .modal__content,
.entry-content {
	background: #FFF;
	border-radius: 20px;
	/*height: 100%;*/
	flex: 1;
	min-height: 0;
	height: auto;
	margin-top: 1em;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}


/* キャンペーンモーダル テーマ別指定 */

.modal__container.theme-monthly {
	background: linear-gradient(to bottom, #00BFE6 0%, #BFF0FF 100%);
}
.theme-monthly h2 {
	color: #FFFF00;
}
.modal__container.theme-friend {
	background: #004E9B;	
}
.theme-friend h2 {
	color: #FFF;
}
.modal__container.theme-norikae {
	background: #FFF000;	
}
.theme-norikae h2 {
	color: #000;
}

/* コンテンツ */

.modal__container .camp-contents {
	border-radius: 20px;
	padding: 1em;
}
@media (width >= 960px) {
	.modal__container .camp-contents {
		display: flex;
		justify-content: space-between;
		padding: 2em;
	}
	.modal__container .camp-img {
		width: 40%;
	}
	.modal__container .camp-detail {
		width: 60%;
		padding-left: 1.5em;
	}
}
@media (width < 960px) {
	.modal__container .camp-img {
		display: none;
	}
}
.modal__container .camp-detail {
	text-align: left;
}
.benefit-list {
	padding: 1em;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
	}
.benefit-list dt {
    width: 20%;
	padding-bottom: .5em
}
.benefit-list dd {
	font-size: 1.1em;
	width: 80%;
	padding: 0 0 .5em 1em;
}
@media (width >= 768px) {
	.benefit-list dt {
		width: 10%;
		padding-bottom: .5em
	}
	.benefit-list dd {
		width: 90%;
	}
}
.benefit-list .benefit-price {
	color: #FF26A6;	
	font-weight: bold;
	padding-left: 5px;
}
.benefit-list .benefit-price span {
	font-size: 1.5em;
}
.benefit-info {
	width: 100%;
}
.benefit-info .note-list {
	padding: .5em 1em .5em 2em;
}
.info-detail > .note-list {
	background: #F5F5F5;
	padding: 1em;
	padding-left: 2em;
	font-size: .8em;
}


/* キャンペーン 子ページ */

.wrapper {
	padding: 1em;
	text-align: center;
}
@media (width < 768px) {
	#campaign .modal__container {
		width: 100%;
	}
}



/* 安心パックモーダル ******************************************************/

#modal-campaign .modal__container.theme-apack {
	background: linear-gradient(to bottom, #FEF5E9 0%, #FFAE5D 100%);
}
.theme-apack h2 {
	color: #005A96;
}
.theme-apack h2 span {
	font-size: .6em;
	padding-right: 1em;
}
@media (width < 768px) {
	.theme-apack h2 span {
		display: block;
	}
}
.theme-apack .modal__content {
	padding: 2em 1em 3em;
}
.info-contents {
	
}
.info-contents > dt {
	background:radial-gradient(closest-side, #FFF 0%, #EFFFDF 100%);
	font-weight: 700;
	font-size: 1.1em;
	text-align: center;
	padding: .5em;
}
.info-contents > dt h3 {
	font-size: clamp(1.1rem, 2.2vw, 1.5rem);
	text-align: center;
}
@media (width >= 768px) {
	.info-contents > dt h3 {
		display: inline-block;
		padding-left: 5px;
	}
}
.info-contents > dd {
	padding: 1em 0 3em;
	text-align: left;
}
@media (width >= 768px) {
	.info-contents > dd {
		text-align: center;
	}
}

/* 安心パックについて */
.about-img {
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1em 0;
	margin-bottom: 1em;
}
.heart {
	display: block;
	width: 100px;
	height: 100px;
	position: relative;
}
@media (width >= 768px) {
	.heart {
		display: block;
		width: 150px;
		height: 150px;
		position: relative;
	}
}
.heart::before,
.heart::after {
	content: "";	
	background:#FF60AA;
	border-radius: 50px 50px 0 0;
	display: block;
	width: 50%;
	height: 80%;
	position: absolute;
	top: 10%;
}
.heart::before {
	transform: rotate(-45deg);
	transform-origin: left bottom;
	left: 50%;
}
.heart::after {
	transform: rotate(45deg);
	transform-origin: right bottom;
	right: 50%;
}
.heart span {
	z-index: 2;
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
}
.circle {
	background: #00B9DC;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
}
@media (width >= 768px) {
	.circle {
		background: #00B9DC;
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 130px;
		height: 130px;
	}
}
.heart span, .circle span {
	color: #FFF;
	font-size: 1.4em;
}
.and {
	font-size: 1.6em;
	padding: 0 .5em;
}
@media (width >= 768px) {
	.and {
		font-size: 2em;
	}
}
.theme-apack  .price {
	text-align: center;
}
.theme-apack  .price span {
	font-size: 1.5em;
	font-weight: 700;
}

/* お見舞い */
.icon-img {
    display: flex;
    justify-content: space-around;
    column-gap: 1em;
    max-width:600px;
    margin: 1em auto;
	padding: .5em;
}
.icon-img figure img {
	max-width: 120px;
}
.icon-img figure figcaption {
	font-size: .8em;
}
@media (width < 768px) {
	.icon-img figure figcaption {
		display: none;
	}
}
.dot-list.trouble {
	font-size: .8em;
	padding: 0 1em 1em 0;
}
.down-arrow {
	text-align: center;
	padding-bottom: 1em;
}
.down-arrow span {
	background: #ff4500;
	display: inline-block;
	height: 30px;
	width: 40px;
	margin: auto;
	position: relative;
}
.down-arrow span::before {
	content: "";
	background: #ff4500;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	display: block;
	height: 30px;
	width: 100px;
	position: absolute;
	top: 25px;
	left: 50%;
	transform: translateX(-50%);
}
@media (width >= 768px) {
	.compensation {
		display: flex;
		justify-content: space-between;
		column-gap: 1em;
	}
	.compensation dl {
		width: calc((100% - 2em) / 3);
	}
}
.compensation dl {
	border: 1px solid #000042;
	padding: 5px;
	margin-bottom: 1em;
}
.compensation dt {
	background: #ffba66;
	padding: .5em;
	text-align: center;
}
.compensation dd {
	padding: .5em;
	text-align: center;
}


/* 優待 */
.yutai {
	margin-top: 1em;
}
@media (width >= 768px) {
	.yutai {
		display: flex;
		flex-wrap: wrap;
		gap: 1em; 
	}
}
.yutai li {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
	box-shadow: 3px 3px 2px 2px rgba(0,0,66,.2);
}
@media (width >= 768px) {
	.yutai li {
		width: calc((100% - 1em) / 2) ;
		padding: 1em;
	}
}
.yutai li figure {
	width: 30%;
	max-width: 120px;
}
.fc-orange {
	color:#ff4500;
}
.f-big {
	font-size: clamp(1.2rem, 2.2vw, 1.5rem);
	font-weight: 500;
}
.yutai li p {
	width: 70%;
	padding-left: 1em;
}
.theme-apack .more-btn {
	background: #ff8c00;
	border-radius: 50px;
	color: #FFF!important;
	font-weight: 700;
	display: inline-block;
	padding: .5em 2em;
	margin-top: 1em;
}

.more-wrap {
	text-align: center;
	padding: 1em 0;
}


/* 予約前確認モーダル ******************************************************/

body#add {
	background: #FFF;
}

#modal-admission {
	width: 100vw;
	height: 100vh;
	max-width: 100vw;
	max-height: 100vh;
	border-radius: 0;
	padding: 1em;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#modal-admission .modal__container {
	background: #FFFFDC;
	width: 100%;
	height: 100%;
	padding: 2em 1em;
	overflow-y: auto;
}
#modal-admission .modal__content {
	max-width: 1200px;
	margin: auto;
}
#modal-admission .modal__title {
	font-size: clamp(1.25rem, 3vw, 2rem);
	text-align: center;
	padding-bottom: .3em;
}
.read {
	padding: 1em;
}
@media (width >= 768px) {
	.read {
		text-align: center;
	}
}
.admission-iframe-wrapper {
	height: 300px;
	border: 1px solid #DDD;
	margin-top: .5em;
	margin-bottom: 1em;
	overflow-y: auto;
	position: relative;
}
.admission-iframe-wrapper iframe {
	width: 100%;
	height: 100%;
	display: block;
}
.scroll-hint {
	background: rgba(0,90,150,.5);
	border-radius: 5px;
	color: #FFF;
	padding: 0 2px;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	animation: bounce 1.5s infinite ease-in-out;
	transition: opacity .3s ease;
	opacity: 1;
}
.scroll-hint.is-hidden {
	opacity: 0;
}
@keyframes bounce {
	0%, 100% {
		transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, 6px);
	}
}
.admission-cate {
	padding: 1.5em 0 2em;
}
.admission-cate h3 {
	background: #005A96;
	border-radius: 10px;
	color: #FFF;
	font-size: clamp(1.1rem, 2.2vw, 1.5rem);
	padding: 5px 10px;
}
.printout {
	text-align: right;
	padding-right: 1em;
}
.printout a {
	color: #E30003;
	text-decoration: underline;
	
}
.agreement-check-block {
	
}
@media (width >= 960px) {
	.check-list,
	.check-all {
		padding: 1em 1.5em;
	}
}
.check-list,
.check-all {
	background: #FFF;
	border: 1px solid #ff8c00;
	margin-bottom: 1em;
	padding: 1em;
	
}
.check-list li,
.check-all li {
	padding-bottom: .5em;
	line-height: 1.4;
}
.check-list label,
.check-all label {
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	gap: .5em;
}
#modal-admission .btn-wrap {
	display: flex;
	justify-content: center;
}
.entry-btn,
.back-btn {
	border-radius: 10px;
	max-width: 300px;
	padding: 1em 2em;
}
.entry-btn {	
	background: linear-gradient(#00B9DC 0, #005A96 100%);
	border: 3px solid #FFF500;
	/*box-shadow: 1px 1px 2px 2px rgba(0,0,0,.1);*/
	color: #FFF;
	margin-right: 1em;
	opacity: 1;
}
@media (width >= 768px) {
	.entry-btn {
		margin-right: 1.5em;
	}
}
.entry-btn:disabled {
	opacity: 0.5;
}
.back-btn {
	background: linear-gradient(#F5F5F5 0, #CCC 100%);
	border: 1px solid #666;
}