@charset "utf-8";

#wrap {
	max-width: 375px;
	width: 100%;
	margin: 0 auto;
	background: #fff;
}

#logo {
	display: block;
	padding: 25px;
}

#event {
	display: block;
}

.event01 {
	display: block;
	padding: 35px;
}

.event01 img {
	display: block;
	margin: 0 auto;
}

.event01 p {
	display: block;
	font-size: 1.6rem;
	text-align: center;
	margin-top: 30px;
	line-height: 1.6;
	font-weight: bold;
}

.event01 p span {
	display: block;
	font-size: 2.2rem;
}


.event02 {
	display: block;
	background: #9fd9f6;
	padding: 55px 40px 50px 40px;
	position: relative;
}

.event02:before {
	content: url("../images/event02_icon.svg");
	position: absolute;
	left: 25px;
	top: -60px;
	z-index: 1;
}


.event03 {
	display: block;
	background: #fff2ad;
	padding: 55px 40px 50px 40px;
	position: relative;
}

.event04 {
	padding: 55px 40px 50px 40px;
}

.event04 h2 {
	font-size: 1.6rem;
}


/*　左から右へ無限スクロール　*/
@keyframes infinity-scroll-left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

/* layout.css の中に追加・変更 */

.scroll-infinity {
	width: 100vw;
	/* margin-left: calc(50% - 50vw); */
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
	/* はみ出し防止 */
}

.scroll-infinity__wrap {
	display: flex;
	overflow: hidden;
	display: flex;
	width: 100%;
	/* 横幅いっぱいに指定 */
}

.scroll-infinity__list {
	display: flex;
	list-style: none;
	padding: 0;
	margin-bottom: 10px;
}

.scroll-infinity__list--left {
	animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
	width: calc(100vw / 1.25);
	margin: 0 3px;
}

.scroll-infinity__item>img {
	width: 100%;
}


/*　右から左へ無限スクロール　*/
@keyframes infinity-scroll-right {
	from {
		transform: translateX(-100%);
	}

	to {
		transform: translateX(0%);
	}
}

.scroll-infinity__list--right {
	animation: infinity-scroll-right 80s infinite linear 0.5s both;
}


#point_section {
	display: block;
	background: #dff2fc;
	margin-top: 30px;
	padding: 55px 0 50px 0;
	position: relative;
}

#point_section h2 {
	font-size: 1.8rem;
}


.point01 {
	display: block;
	margin-top: 50px;
	margin-bottom: 50px;
}

.point02 {
	margin-bottom: 50px;
}

.point03 {
	margin-bottom: 50px;
}

.point_title {
	display: block;
	background: #c7e1f5;
	border-radius: 10px 10px 0 0;
	padding: 10px 20px;
	width: 85%;
	margin: 0 auto;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-style: normal;
}



.point_title p {
	text-align: center;
}

.point_title p.title {
	display: block;
	font-size: 2.2rem;
	font-weight: 500;
	color: #036eb8;
	margin-bottom: 15px;
	line-height: 1;
}

.point_title p.title span {
	display: inline-block;
	padding-left: 5px;
	vertical-align: baseline;
	line-height: 1;
}

.point_title p.desc {
	display: block;
	font-size: 1.8rem;
	color: #036eb8;
}

.point_title2 {
	display: block;
	background: #c7e1f5;
	border-radius: 0 0 10px 10px;
	padding: 10px 20px;
	width: 85%;
	margin: 0 auto;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-style: normal;
}

.point_title2 p {
	text-align: center;
}

.point_title2 p.title2 {
	color: #231815;
	font-size: 1.75rem;
	font-weight: 500;
}

.point_title2 p.desc2 {
	font-size: 1.2rem;
}

h3 {
	display: block;
	font-size: 2.2rem;
	margin-bottom: 50px;
	text-align: center;
}


#reservation {
	display: block;
	padding: 55px 25px;
}

#reservation p {
	font-size: 1.4rem;
}

.reservation_title {
	display: block;
	font-size: 1.8rem !important;
	border-bottom: 1px solid #231815;
	text-align: center;
	font-family: "hiragino-kaku-gothic-pron", sans-serif !important;
	font-style: normal;
	padding-bottom: 10px;
	margin-bottom: 20px;
	position: relative;
}

.reservation_title:after {
	content: url("../images/reservation_icon.png");
	position: absolute;
	right: 0;
	top: 10px;
}

/* フォーム全体のコンテナ */
.form-container {
	width: 100%;
	max-width: 450px;
	/* 画像の縦長なバランスに合わせるための最大幅 */
	padding: 10px;
}

/* 各入力項目のグループ */
.form-group {
	margin-bottom: 32px;
	/* 項目間の余白を広めに設定 */
}

/* ラベル（見出し） */
.form-label {
	display: block;
	font-size: 18px;
	font-weight: bold;
	color: #000000;
	margin-bottom: 12px;
}

/* テキスト入力フィールド・セレクトボックス共通 */
input[type="text"],
input[type="tel"],
input[type="email"],
select {
	width: 100%;
	height: 54px;
	/* しっかりとした高さを持たせる */
	padding: 0 16px;
	font-size: 16px;
	color: #000000;
	border: 1px solid #b3b3b3;
	border-radius: 0;
	/* 画像に合わせたシャープな角 */
	background-color: #ffffff;
	outline: none;
	-webkit-appearance: none;
	/* デフォルトのスタイルをリセット */
	appearance: none;
}

select {
	padding: 0 10px;
}

/* プレースホルダー（選択してください）の色を少し薄くする場合 */
select:invalid {
	color: #1a1a1a;
}

/* セレクトボックスのカスタム矢印用のラッパー */
.select-wrapper {
	position: relative;
	width: 100%;
}

/* 画像のような黒い下向き三角形の配置 */
.select-wrapper::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid #000000;
	/* 黒い矢印 */
	pointer-events: none;
	/* 矢印部分をクリックしてもセレクトボックスが反応するようにする */
}


.reservation_icon {
	display: block;
	margin-bottom: 50px;
	text-align: right;
}

h4 {
	font-size: 1.6rem;
}

.reservation_btn {
	display: block;
	margin-top: 15px;
	text-align: center;
}

.reservation_btn a:hover {
	opacity: 0.7;
}

#reserve_select {
	display: flex;
	flex-wrap: wrap;
	font-size: 2rem;
	align-items: center;
}

#reserve_select select {
	width: calc(100% / 5);
}

#reserve_select::after {
	display: none !important;
	border: none !important;
}
/*
#reserve_time {
	width: 100% !important;
	margin-top: 15px;
}
*/
#reserve_time_wrapper::after {
	top: 60% !important;
}


#access {
	display: block;
	padding: 55px 25px 80px 25px;
	background: #e5e0dd;
}

#access h2 {
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 50px;
}

.pagebutton{
	background:none;
	border:none;
	width:100%;
}


/* コンテナ全体の幅調整 */
.info-container {
	width: 100%;
	/* 画面に合わせた最大幅 */
	margin: 0 auto;
}

/* タイトル部分 */
.info-title {
	font-size: 1.6rem;
	text-align: center;
	margin-bottom: 5px;
	letter-spacing: 0.05em;
}

/* ★変更：dl内全体を中央寄せにする
  max-widthでお好みの幅に絞り、margin: 0 auto; で中央に寄せています。
*/
.info-list {
	max-width: 500px;
	/* 囲み線の全体の横幅（必要に応じて調整してください） */
	margin: 0 auto;
	/* 全体を中央寄せ */
	border-top: 1px solid #b3b3b3;
	/* 一番上の横線 */
}

/* ★変更：下線をつなげるための新しいアプローチ（Flexboxの活用）
  dt と dd を対にするために、疑似要素（:nth-of-type）などで繋ぐ方法もありますが、
  一番綺麗に線が繋がるよう、dtとddの組み合わせをFlexboxで配置します。
*/
.info-list {
	display: flex;
	flex-wrap: wrap;
	/* 複数行に対応させる */
}

/* ラベル部分（左側） */
.info-list dt {
	width: 60px;
	/* 文字幅を揃えるための固定幅 */
	text-align: justify;
	/* 均等割付の代用 */
	text-align-last: justify;
	padding: 12px 0;
	font-size: 1.2rem;
}

/* 内容部分（右側） */
.info-list dd {
	width: calc(100% - 60px);
	/* dtの幅を引いた残りの幅すべて */
	padding: 12px 0 12px 15px;
	/* 上下パディングと、左側の余白15px */
	font-size: 1.2rem;
}

/* ★変更：下線を dt と dd で完全に一体化させる
  dtとddのどちらの底面にもかかるように、共通のボーダーを設定します。
*/
.info-list dt,
.info-list dd {
	border-bottom: 1px solid #b3b3b3;
	/* これで隙間なく1本に繋がります */
	box-sizing: border-box;
}

p.large {
	display: block;
	font-size: 1rem;
	text-align: center;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-style: normal;
	margin-bottom: 10px;
	padding-top: 20px;
	border-top: 1px solid #b3b3b3;
}

.googlemap iframe {
	display: block;
	width: 100%;
}

.error_message {
	color: #FF0000;
	font-weight: bold;
	padding: 5px;
	margin: 0;
	line-height: 1.4;
	background-color: #FFFF80;
	display: block;
	margin-top: 10px;
	font-size:16px;
}
.alert{
	color:#FF0000;
}

ul.err_navi {
	border: 2px solid #FF0000;
	color: #FF0000;
	margin: 0 0 1em;
	padding: 2px 2px 2px 30px;
}

ul.err_navi li {
	list-style: circle;
	padding: 0;
	font-size: 14px;
}

.nextbuttonbox{
	margin:50px 0 0;
}
.submitbutton {
	display: block;
	max-width: 280px;
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	background-color: #315eac;
	text-align: center;
	font-size: 16px;
	color: #fff;
	position: relative;
	cursor: pointer;
	appearance: none;
	border: none;
	border-radius: 20px;
}

.submitbutton:hover{
	transition: 0.5s;
	background-color: #8BB7DE;
}

.submitbutton.backbutton {
	background-color: #D1D1D1;
	color: #333333;
}
.submitbutton.backbutton:hover{
	transition: 0.5s;
	background-color: #E8E8E8;
}


.top_btn{
	margin: 0 auto;
	text-align: center;
}

.top_btn a{
	padding: 10px 50px;
	margin-top: 50px;
	color: #FFF;
	background-color: #e60012;
	display: block;
	width: 180px;
	margin: 50px auto 0;
}
.top_btn a:hover{
	color: #FFF;
	background-color:#FF8040;
	text-decoration:none;
}
