@charset "utf-8";
/* ==============================================

	body

================================================= */
body {
	color: #5d5c5c;
	font-size: 1.5rem;
	background-color: #FFFDFD;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	letter-spacing: 0.1rem;
}
* {
	font-family: 'Noto Serif JP', serif;
}

#wrapper {
	max-width: 500px;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 14%);
	min-height: 100vh;
	position: relative;
}
img {
	max-width: 100%;
	height: auto;
}
@media screen and (max-width:500px){
	body {
		background: #fff;
	}
	#wrapper {
		box-shadow: none;
		overflow: hidden;
	}
}
@media screen and (max-width:480px){
	body {
		font-size: 1.4rem;
	}
}

/* ==============================================

	header

================================================= */
#header h1 {
	position: absolute;
	z-index: 1;
	top: 16px;
}
@media screen and (max-width:480px){
	#header h1 {
		top: 5px;
	}
}

/* ==============================================

	mv

================================================= */
#mv {
	max-width: 500px;
	/*
	height: calc(var(--vh,1vh)*100);
	*/
	position: relative;
	margin-bottom: 10%;
}
.slide-wrap {
	position: absolute;
	top: 0;
	max-width: 500px;
	height: 100vh;
	height: calc(var(--vh,1vh)*100);
	width: 100%;
}
.slide-wrap img {
	width: 100%;
	height: 100vh;
	height: calc(var(--vh,1vh)*100);
	-o-object-fit: cover;
	object-fit: cover;
	min-height: webkit-fill-available;
}



/* ==============================================

	intro

================================================= */
#intro {
	margin-bottom: 10%;
}
#intro h2 {
	margin-bottom: 8%;
}
#intro ul li:not(:last-child) {
	margin-bottom: 2%;
}


/* ==============================================

	eventDates

================================================= */
#eventDates {
	margin-bottom: 10%;
}
#eventDates h2 {
	margin-bottom: 8%;
}


/* ==============================================

	event

================================================= */
#event {
	background: #e5f1f9;
	padding-bottom: 10%;
}
.event_img {
	margin-bottom: 8%;
}

/* ==============================================

	cta

================================================= */
.cta {
	background: #e5f1f9;
	padding: 7.8% 4.5%;
}
.ctaArea {
	background: #fff;
	padding: 7% 0 8%;
}
.cta h2 {
	margin-bottom: 10%;
}
.cta ul li:not(:last-child) {
	margin-bottom: 8%;
}

/* ==============================================

	rec_contents

================================================= */
#rec_contents {
	margin-bottom: 7%;
}
#rec_contents h2 {
	margin-bottom: 10%;
	background: url("images/rec_contents_ttl_bg.png") center top no-repeat;
}
#rec_contents ul li:not(:last-child) {
	margin-bottom: 10%;
}

/* ==============================================

	exp_contents

================================================= */
#exp_contents {
	background: url("images/exp_contents_bg.jpg") center top;
	padding: 8% 3.5%;
	background-size: 74%;
}
.exp_contentsArea {
	background: #fff;
	padding: 8% 3.5%;
}
#exp_contents h2 {
	margin-bottom: 8%;
}
#exp_contents ul {
	display: flex;
	flex-flow: row wrap;
	gap: 25px 0;
}
#exp_contents ul li {
	width: 47.5%;
}
#exp_contents ul li:nth-child(odd) {
	margin-right: 5%;
}

/* ==============================================

	access

================================================= */
#access {
	padding: 12% 0;
}
#access h2 {
	margin-bottom: 8%;
}
.access_img {
	margin-bottom: 8%;
}
.access_map {
	padding: 0 5%;
}
.access_map iframe {
	width: 100%;
}
/* ==============================================

	faq

================================================= */
#faq {
	background: #F7F7F7;
	padding: 12% 5%;
}
#faq h2 {
	margin-bottom: 10%;
}
.faq_area {
	background: #fff;
}
.faq_area section {
	border-bottom: 1px solid #a0a0a0;
}
.faq_area section:first-child {
	border-top: 1px solid #a0a0a0;
}
.faq_area h3 {
	padding: 18px 50px 18px 10px;
	font-size: 1.5rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	line-height: 130%;
	position: relative;
	cursor: pointer;
}
.faq_area h3::before {
	content: "Q";
	font-size: 3rem;
	margin-right: 15px;
	font-family: "EB Garamond", serif;
	font-weight: 400;
	color: #e0eef9;
}
.faq_area h3::after {
	content: "";
	position: absolute;
	right: 20px;
	background: url(images/list_open.png) center no-repeat;
	width: 20px;
	height: 20px;
}
.faq_area h3.open::after {
	background: url(images/list_close.png) center no-repeat;
}
.faq_area section > div {
	padding: 0 10px 18px 10px;
	display: none;
}
.faq_area section > div div {
	display: flex!important;
}
.faq_area section > div div::before {
	content: "A";
	font-size: 3rem;
	margin-right: 15px;
	font-family: "EB Garamond", serif;
	font-weight: 400;
	color: #e0eef9;
}
.faq_area div p {
	line-height: 157%;
}

@media screen and (max-width: 480px) {
	.faq_area h3 {
		font-size: 1.4rem;
	}
}

/* ==============================================

	form

================================================= */
#form {
	background: #e5f1f9;
	padding: 6% 5% 12%;
}
.form_ttl {
	margin: 0 auto 9%;
}
.form_msg {
	margin-bottom: 9%;
}
.form_msg, .form_tel {
	line-height: 170%;
	text-align: center;
}
.txt_pink,
.error_msg {
	color: #C8B173;
}
.must {
	font-size: 1.1rem;
	margin-left: 5px;
	color: #bf6960;
}
.form_table {
	border-collapse: collapse;
	margin-bottom: 6%;
	width: 100%;
}
.form_table tr:not(:last-child) td {
	margin-bottom: 20px;
}
.form_table tr > * {
	display: block;
	width: 100%;
}
.form_table tr th {
	text-align: left;
	margin-bottom: 6px;
	font-weight: 600;
}
.form_plan {
	display: flex;
	flex-flow: row wrap;
	gap: 10px 0;
}
.form_plan label {
	display: flex;
}
.form_time:not(:last-child) {
	margin-bottom: 30px;
}
.form_time p {
	margin-bottom: 5px;
	font-size: 1.5rem;
}
.form_time > div {
	border-left: 1px solid #aaaaaa;
	margin-left: 8px;
	padding-left: 10px;
}

.form_time dl:not(:last-child) {
	margin-bottom: 10px;
}
.form_time dl {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.form_time dl dt {
	width: 50px;
	font-size: 1.5rem;
}
.form_time dl dd {
	width: calc(100% - 70px);
}
input[type="image"] {
	max-width: 100%;
	height: auto;
}
.privacy_txt {
	font-size: 1.4rem;
	line-height: 150%;
	letter-spacing: 0.05rem;
	margin-bottom: 4%;
}
#privacy {
	text-decoration: underline;
	color: #d27c6f;
	cursor: pointer;
}
.privacy_box {
	display: none;
	max-width: 800px;
	margin: 0 auto 6%;
	font-size: 15px;
	background: #fff;
	padding: 30px;
	line-height: 130%;
	border: 1px solid #a0a0a0;
	height: 300px;
	overflow-y: scroll;
	scrollbar-width: 10px;
	scrollbar-color: #D19F9A;
}
.privacy_box::-webkit-scrollbar {
  width: 10px;
}

.privacy_box::-webkit-scrollbar-track {
  background-color: #fff;
}
.privacy_box::-webkit-scrollbar-thumb {
  background-color: #D19F9A;
  border-radius: 5px;
}
.privacy_box dl:not(:last-child) {
	margin-bottom: 8%;
}
.privacy_box dl dt {
	font-size: 1.3rem;
	padding: 4% 0 0 0;
	font-weight: normal;
	margin-bottom: 5%;
	position: relative;
}
.privacy_box dl dt:before {
	content: "";
	display: block;
	border-top: 2px solid #D19F9A;
	width: 100px;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
}
.privacy_box dl dd {
	font-size: 1.2rem;
	line-height: 160%;
}
.privacy_list {
	list-style-type: decimal;
	margin-left: 20px;
}
#privacy_close {
	text-align: center;
	font-size: 1.2rem;
	margin-top: 30px;
	text-decoration: underline;
	cursor: pointer;
	color: #d27c6f;
}
#privacy_close:hover {
	opacity: 0.7;
}
.form_privacy_check {
	background: #b6dbf4;
	padding: 10px;
	text-align: center;
	letter-spacing: 0;
}

.form_btn {
	margin-top: 4%;
}
.form_btn_two {
	margin-top: 10%;
}
.form_send {
	margin-top: 5%;
}
.form_btn input {
	border: 0;
	cursor:pointer;
	font-size: 2rem;
	letter-spacing: 0.15em;
	width: 100%;
	height: 70px;
	font-family: 'Noto Serif JP', serif;
	-webkit-appearance: none;
	font-weight: 500;
	border-radius: 10px;
}
.form_btn input:hover {
	opacity: 0.7;
}
.form_chk input, .form_send input {
	background: #61a4d2;
	color: #fff;
}
.form_back input {
	background: #fff;
	color: #61a4d2;
}
.form_chk, .form_back, .form_send {
	position: relative;
}
.form_chk::after, .form_send::after {
	content: "";
	background: url("images/form_arrow_01.png") no-repeat;
	width: 10px;
	height: 16px;
	position: absolute;
	right: 5%;
	top: 50%;
	background-size: 100%;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.form_back::after {
	content: "";
	background: url("images/form_arrow_02.png") no-repeat;
	width: 10px;
	height: 16px;
	position: absolute;
	left: 5%;
	top: 50%;
	background-size: 100%;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}


.form_confirm td {
	background: #c2e4f9;
	padding: 15px 12px;
	border-radius: 5px;
	min-height: 44px;
}
.form_confirm_error {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 5px;
	margin-bottom: 10%;
}
.error_messe {
	font-size: 1.3rem;
	color: #fff;
	background: #61a4d2;
	padding: 5px;
}


.confirm #wrapper, .confirm #form {
	background: #e5f1f9;
}
.complete #wrapper, .complete #form {
	background: #e5f1f9;
}
.complete_txt {
	width: 100%;
}
.complete_btn {
	margin-top: 30px;
	display: flex;
	flex-flow: column;
	gap: 15px;
}
.complete_btn a {
	font-weight: 500;
	border-radius: 10px;
	letter-spacing: 0.1em;
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.complete_btn_pnk a {
	background: #61a4d2;
	color: #fff;
}
.complete_btn_wht a {
	background: #fff;
	color: #61a4d2;
	border: 1px solid #61a4d2;
	box-sizing: border-box;
}


/* 送信ボタン */
.form_btn .submitBtn {
	/* buttonタグのリセットCSS */
	border: none;
	cursor: pointer;
	outline: none;
	appearance: none;
	color: #fff;
	padding: 8px 24px;
	background: #61a4d2;
}

.form_btn .submitBtn[disabled] {
	background: #ccc;
	cursor: not-allowed; /* クリック不可のカーソルを表示 */
}


@media screen and (max-width:480px){
	.form_btn input {
		height: 55px;
		font-size: 1.8rem;
	}
	.form_privacy_check {
		font-size: 1.3rem;
	}
}



/* ==============================================

	fix_btn

================================================= */
#fix_btn {
	max-width: 500px;
	position: fixed;
	bottom: 0;
	padding: 0 3% 20px;
	z-index: 100;
	display: none;
}
#fix_btn ul {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
#fix_btn ul li {
	width: 48.5%;
}
@media screen and (max-width:768px){
	#fix_btn {
		padding: 0 3% 2%;
	}
}

/* ==============================================

	footer

================================================= */
#footer {
	background: #61a4d2;
}
#home #footer {
	padding-bottom: 20%;
}
