@charset "UTF-8";

body {
	color: #333;
}

.en {
	font-family: "Nothing You Could Do", cursive;
	font-weight: 400;
	font-style: normal;
}

.ja {
	font-family: "Zen Kurenaido", sans-serif;
	font-weight: 400;
	font-style: normal;
}

img {
	width: 100%;
	vertical-align: bottom;
}

a {
	text-decoration: none;
	color: #333;
}

li {
	list-style: none;
}

.container {
	margin-inline: auto;
	padding-inline: 3%;
}

h1 {
	line-height: 0;
}

/* header */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	background-color: hwb(0 100% 0% / 0.6);
	width: 100%;
	z-index: 10;
}

ul {
	display: flex;
	margin-right: 100px;
}

li {
	margin-left: 30px;
	margin-right: 30px;
	font-size: 2rem;
	letter-spacing: 0.2rem;
}

.sec-title {
	font-size: 3.5rem;
	letter-spacing: 0.4rem;
	padding-top: 150px;
	padding-bottom: 15px;
	margin-inline: auto;
	text-align: center;
}

/* mainvisual */
.main-visual {
	padding-top: 100px;
}

/* about */
.about-text {
	text-align: center;
	padding-top: 60px;
	line-height: 3rem;
	font-size: 1.5rem;
}

.glowAnime span{opacity: 0;}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span{ animation:glow_anime_on 1s ease-out forwards; }

@keyframes glow_anime_on{
	0% { opacity:0; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
	50% { opacity:1;text-shadow: 0 0 10px #fff,0 0 15px #fff; }
	100% { opacity:1; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
}

/* plan */
.other {
	display: flex;
	align-items: center;
	margin: 100px auto;
	max-width: 1500px;
}

.other-img {
	width: 55%;
}

.en-title {
	font-size: 2.5rem;
	letter-spacing: 0.2rem;
}

.other-title {
	padding: 20px 0 50px;
}

.other-text {
	padding: 0 50px;
	text-align: left;
	line-height: 3rem;
	width: 45%;
}

.slide {
	opacity: 0;
}

.slide-left {
	animation: slide-left 1s ease-out 0s 1 forwards;
}

/*
  アニメーション処理
  
  最初は「translateX(-50%);」で左側に隠しておく
  100%（0.5秒）かけて要素を表示させながら元の位置へ移動させる
  */
@keyframes slide-left {
	0% {
		transform: translateX(-50%);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.slide-right {
	animation: slide-right 1s ease-out 0s 1 forwards;
}

@keyframes slide-right {
	0% {
		transform: translateX(50%);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* access */
.access-contents {
	display: flex;
	justify-content: space-around;
}

.access-item {
	width: calc(1/2);
}

.access-img {
	width: calc(1/2);
}

.access-item p {
	text-align: left;
	line-height: 40px;
	font-size: 1.2rem;
}

.access-item p:nth-child(2),
.access-item p:nth-child(4) {
	margin-left: 50px;
}

.access-item p:nth-child(3) {
	margin-left: 100px;
}

.access-item p:nth-child(4) a {
	border-bottom: 1px dotted #333;
}

.by {
	font-size: 1.5rem;
	margin-top: 50px;
}

/* reservation */
form {
	width: 80%;
	margin: 0 auto;
}

.form-row {
	display: flex;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #f2f4f5;
}

.form-row:last-child {
	border-bottom: none;
}

.form-label {
	display: flex;
	align-items: center;
	width: 200px;
}

.form-label label {
	font-weight: bold;
	font-size: 1.5rem;
}

/* フォームパーツのデザイン */
input,
textarea {
	background-color: #f2f4f5;
	border: none;
	border-radius: 3px;
	padding: 15px 20px;
	font-size: 16px;
	color: #333;
	flex-grow: 1;
}

input::placeholder,
textarea::placeholder {
	color: #999;
	font-size: 14px;
}

select {
	background-color: #f2f4f5;
	border: none;
	border-radius: 3px;
	padding: 15px 20px;
	font-size: 16px;
	color: #333;
}

button {
	cursor: pointer;
	margin-top: 30px;
	padding: 15px 75px;
	border: none;
	border-radius: 10px;
	color: #fff;
	font-weight: bold;
	background-color: rgb(235, 184, 150);
	margin-inline: auto;
}

button:hover {
	opacity: 0.8;
}

footer {
	background-color: #000;
	color: #fff;
	font-size: 14px;
	padding: 25px 0;
	text-align: center;
	margin-top: 60px;
}



@media screen and (max-width: 959px) {

	h1 {
		padding-left: 30px;
	}

	.main-visual img {
		max-width: 100%;
	}

	p {
		padding-top: 50px;
		line-height: 40px;
		padding-right: 25px;
	}

	ul {
		margin-right: 15px;
	}

	li {
		margin-left: 10px;
		margin-right: 10px;
	}

	.other img {
		max-width: 100%;
		max-height: 300px;
		text-align: center;
	}

	.other-title {
		padding: 0;
	}

	.other p {
		display: inline-block;
	}

}

@media screen and (max-width: 559px) {

	.main-visual img {
		max-width: 100%;
	}

	p {
		padding-top: 50px;
		line-height: 30px;
		padding-right: 20px;
	}

	.other img {
		max-width: 100%;
		max-height: 300px;
	}

	.access-item img {
		max-width: 100%;
	}

}