@charset "UTF-8";

body {
	margin: 0 auto;
	text-align: center;
	font-family: "Noto Serif JP", serif;
	box-sizing: border-box;
}
body * {
	box-sizing: inherit;
}
h2,
h3,
.sub_text,
h5 {
	letter-spacing: 0.1rem;
	line-height: 1.5rem;
}
p {
	font-size: 14px;
	letter-spacing: 0.1rem;
	line-height: 1.5rem;
	text-align: left;
}
.container {
	max-width: 1280px;
	margin: 150px auto;
}
html {
	scroll-padding-top: 120px;
	scroll-behavior: smooth;
}
@media (max-width: 949px) {
	.container {
		max-width: 750px;
		margin: 40px auto;
		padding: 0 20px;
	}
}
/* Header */

header {
	width: 100%;
	height: 80px;
	background: #fff;
	z-index: 1000;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}
.headA {
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
}
.headA .logo {
	width: 80px;
	height: 80px;
	position: fixed;
	top: 0;
}
.headB ul {
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: baseline;
}
.headB a {
	display: block;
	padding: 10px;
	color: #232323;
	font-size: 14px;
	text-decoration: none;
	border-bottom: 3px solid none;
}
.headB a:hover {
	border-bottom: 3px solid #6f7f8d;
}
.SNS {
	display: flex;
	justify-content: center;
	background-color: #6f7f8d;
	padding: 20px;
	margin-left: 20px;
}
.SNS:hover {
	border: 0;
}
@media (min-width: 950px) {
	.header_container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-left: auto;
		margin-right: auto;
		background: #fff;
		max-width: 1280px;
	}
	.container-small {
		height: 0px;
	}
	.headB ul {
		display: flex;
	}
	.headC {
		display: none;
	}
	.headB {
		display: block !important;
	}
}
@media (max-width: 949px) {
	header {
		height: 70px;
	}
	header .container-small {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.headA .logo {
		width: 70px;
		height: 70px;
	}
	.headC {
		margin: 20px;
		padding: 0;
		border: none;
		outline: none;
		background: none;
		font-size: 28px;
		opacity: 0.8;
		cursor: pointer;
		color: #6f7f8d;
	}

	.headC:hover {
		opacity: 0.3;
	}
	.headB {
		display: none;
		background-color: rgb(111, 127, 141, 0.9);
		padding: 80px;
		margin-top: -3px;
	}
	.headB a {
		color: #ffffff;
	}
	.headB a:hover {
		border-bottom: 2px solid #fff;
	}
	.headB li {
		line-height: 2rem;
	}
	.SNS {
		margin-left: 0px;
		margin-top: 40px;
	}
}

/* mainvisual */
/* スライダー全体 */
.slider {
	position: relative;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 80vh;
	margin-top: 80px;
}

/* スライダー画像 */
.slider .image {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 80vh;
	opacity: 0;
	background-repeat: no-repeat;
	background-size: cover;
}

.slider .image:nth-of-type(1) {
	background-image: url(/image/1.jpg);
	animation-delay: 0s;
}
.slider .image:nth-of-type(2) {
	animation-delay: 10s;
	background-image: url(/image/2.jpg);
}
.slider .image:nth-of-type(3) {
	animation-delay: 20s;
	background-image: url(/image/3.jpg);
	background-position: center bottom;
}
.slider .image:nth-of-type(4) {
	animation-delay: 30s;
	background-image: url(/image/4.jpg);
}
.slider .image:nth-of-type(5) {
	animation-delay: 40s;
	background-image: url(/image/5.jpg);
	background-position: center top;
}
.slider .image {
	animation: anime 50s infinite;
}

/* アニメーション定義 */
@keyframes anime {
	0% {
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@media (max-width: 949px) {
	.slider {
		margin-top: 70px;
		height: 60vh;
	}
	.slider .image:nth-of-type(1) {
		background-image: url(/image/1.jpg);
		animation-delay: 0s;
		background-position: center center;
	}
	.slider .image:nth-of-type(2) {
		animation-delay: 10s;
		background-image: url(/image/2.jpg);
		background-position: left bottom;
	}
	.slider .image:nth-of-type(3) {
		animation-delay: 20s;
		background-image: url(/image/3.jpg);
		background-position: center bottom;
	}
	.slider .image:nth-of-type(4) {
		animation-delay: 30s;
		background-image: url(/image/4.jpg);
		background-position: center bottom;
	}
	.slider .image:nth-of-type(5) {
		animation-delay: 40s;
		background-image: url(/image/5.jpg);
		background-position: center bottom;
	}
}
/* 初めての方へ */
#for_visitor {
	display: flex;
	justify-content: center;
}
.visitor_img {
	position: relative;
}
.img01 {
	width: 450px;
	height: 300px;
	position: relative;
	z-index: -1;
}
.img02 {
	width: 300px;
	height: 200px;
	transform: skew(-5deg, 5deg);
	position: absolute;
	bottom: 20%;
	right: -10%;
	z-index: 1;
}
.text_area {
	padding-left: 100px;
	width: calc(100% / 2);
}
.Italic {
	transform: rotate(-15deg);
	color: rgba(202, 202, 202, 0.8);
	font-size: 100px;
	font-family: "Tangerine", cursive;
	letter-spacing: 0.2rem;
	margin-right: 200px;
	text-align: center;
	position: static;
	z-index: -2;
}
h2 {
	font-size: 26px;
	margin: -50px 0 40px 0;
}
.btnripple3 {
	position: relative;
	display: table;
	margin: 0 auto;
	padding: 20px 60px 20px 60px;
	margin-top: 30px;
	text-decoration: none;
	border: 1px #6e7f8d solid;
	color: #6e7f8d;
}
.btnripple3:hover::before {
	content: "";
	position: absolute;
	left: 30%;
	top: 0;
	/*波形の形状*/
	border: 1px solid #232323;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	opacity: 1;
	animation: 1s circleanime2 forwards;
}

@keyframes circleanime2 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(2);
		opacity: 0;
	}
}
.btnripple3::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -25px;
	/*矢印の形状*/
	width: 50px;
	height: 5px;
	border-top: 1px solid #6e7f8d;
}
@media (max-width: 949px) {
	#for_visitor {
		display: block;
	}
	.text_area {
		width: 100%;
		padding-left: 0px;
	}
	.img01 {
		width: 280px;
		height: 190px;
	}
	.img02 {
		width: 210px;
		height: 140px;
		bottom: -100px;
		right: 3%;
	}
	.visitor_img {
		margin-bottom: 150px;
	}
	.Italic {
		font-size: 60px;
		text-align: center;
		margin-right: 60px;
	}
	h2 {
		margin-top: -40px;
		font-size: 16px;
	}
	.btnripple3 {
		margin-top: 40px;
		display: inline-block;
	}
}
@media (max-width: 500px) {
	.btnripple3 {
		padding: 15px 60px 15px 60px;
	}
}

/* 料金・メニュー */
.background {
	background-image: url(/image/background2.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.price_contents {
	display: flex;
	text-align: left;
	margin-top: 150px;
	padding-bottom: 60px;
}

h3 {
	display: inline-block;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 2px solid #6e7f8d;
}
.ticket {
	background: linear-gradient(
			to right,
			rgba(253, 253, 253, 1),
			rgba(253, 253, 253, 0.9),
			rgba(253, 253, 253, 0)
		),
		url(/image/price.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	background-size: cover;
	width: calc(100% / 2);
	height: 300px;
	padding: 100px 0 40px 150px;
}
.experience {
	background: linear-gradient(
			to right,
			rgba(253, 253, 253, 1),
			rgba(253, 253, 253, 0.9),
			rgba(253, 253, 253, 0)
		),
		url(/image/ticket.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: cover;
	width: calc(100% / 2);
	height: 300px;
	padding: 100px 0 40px 150px;
}
.caution {
	padding: 20px 0;
	font-size: 15px;
	text-align: left;
	display: inline-block;
}

table {
	border-collapse: separate;
	border-spacing: 5px;
	width: 100%;
	font-size: 14px;
}
table th,
table td {
	text-align: center;
	color: #232323;
	width: calc(100% / 2);
	letter-spacing: 0.2rem;
	line-height: 1.8rem;
	padding: 30px 0;
}
table th {
	background-color: rgba(181, 191, 198, 0.7);
	border: solid 1px rgba(181, 191, 198, 0);
}
table td {
	background-color: rgba(202, 202, 202, 0.56);
	border: solid 1px rgba(202, 202, 202, 0);
}
.price_number {
	font-size: 24px;
	font-weight: normal;
}
.price .stand {
	background-color: #e3ebf1;
	padding: 5px;
	border-radius: 20px;
}
.center_left {
	margin: 16px auto;
	text-align: center;
	display: block;
}

@media (max-width: 949px) {
	#price_menu {
		margin: 0 auto;
	}
	.price {
		font-size: 12px;
	}
	.price_contents {
		display: block;
		margin-top: 0;
		padding-bottom: 0;
	}
	.ticket,
	.experience {
		width: 100%;
		padding: 40px;
	}
	h3 {
		margin-bottom: 20px;
	}
	.caution {
		font-size: 12px;
		padding: 20px 0;
	}
	.price_number {
		font-size: 20px;
	}
	/* .price th,td{
    padding: 40px;
    } */
}

/* メニュー */
.menu_contents {
	padding-bottom: 100px;
}
table.menu {
	border-spacing: 5px 5px;
	table-layout: fixed;
	width: 100%;
	vertical-align: middle;
}
.none {
	opacity: 0;
}
.time {
	display: none;
	border-bottom: #6f7f8d 2px solid;
	padding-bottom: 5px;
	margin-bottom: 10px;
	text-align: left;
}
.star {
	font-size: 12px;
	color: #6f7f8d;
}
.menu th {
	border: rgba(255, 255, 255, 0) 5px solid;
	color: #fff;
	background: #6e7f8d;
	width: 40%;
}
.menu td {
	border: rgba(255, 255, 255, 0) 5px solid;
	font-size: 14px;
	background: #fff;
	width: 40%;
	padding: 0;
}
.menu .day {
	font-size: 16px;
}
.menu td:first-child {
	background: #6f7f8d;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.menu_title {
	line-height: 3rem;
	text-align: center;
	padding-bottom: 30px;
	margin: 0 auto;
}

@media (max-width: 949px) {
	.menu {
		width: 100%;
		margin: 0 auto;
	}
	.menu_contents {
		padding-bottom: 40px;
	}
	.time {
		display: inline-block;
	}
	.thead {
		display: none;
	}
	.menu tr {
		width: 100%;
		padding: 20px;
	}
	.menu td {
		display: block;
		width: 100%;
		padding: 20px;
	}
	.menu td:nth-child(3) {
		border-top: #d6dde3 1px solid;
	}
}
/* インストラクター */
#instructor {
	margin-bottom: 100px;
}
.instructor_contents {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto;
}
.instructor_items {
	height: auto;
	padding: 40px;
}
.item-demo > img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
    object-fit: cover;
}
.item-demo {
	cursor: pointer;
}
.popup-demo {
	display: none;
	height: 80vh;
	width: 60%;
	background: #fff;
	position: fixed;
	top: 10%;
	left: 20%;
	z-index: 1;
}
.popup-content {
	display: flex;
	padding: 40px;
	width: 100vw;
	height: 80vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.popup-content > img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
    object-fit: cover;
}
.popup-show {
	display: flex;
	justify-content: center;
	align-items: center;
}
i.close {
	font-size: 4rem;
	cursor: pointer;
	position: absolute;
	top: 2%;
	right: 2%;
	color: #6e7f8d;
}
.ofitem {
	font-size: 14px;
	padding: 10px 40px;
	color: #333;
}
.ofitem_title {
	font-size: 20px;
	line-height: 5rem;
	padding-bottom: 5px;
	border-bottom: #6f7f8d solid 2px;
}
.item-text {
	font-size: 20px;
}
@media (max-width: 949px) {
	.popup-content {
		flex-flow: column;
	}
	.popup-demo {
		height: 80vh;
		width: 80%;
		left: 10%;
	}
	.instructor_contents {
		display: block;
		width: 100%;
	}
}
@media (max-width: 500px) {
	#instructor {
		margin-bottom: 0;
	}

	.instructor_items {
		width: 100%;
		padding: 20px;
	}
	.item-demo > img {
		width: 200px;
		height: 200px;
	}
	.popup-demo {
		height: 80vh;
		width: 80%;
		left: 10%;
		margin: 0 10px;
	}
	i.close {
		font-size: 2rem;
		right: 4%;
	}
	.ofitem {
		font-size: 14px;
		padding: 0px;
	}
}
/* お客様の声 */
.voice_item {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 20px;
}
.voice_item img {
	width: 250px;
	height: 250px;
}
.balloon {
	display: flex;
	align-items: center;
	position: relative;
	z-index: -1;
	max-width: 100%;
	margin-left: 15px;
	padding: 80px;
	border-radius: 20px;
	background-color: #e3ebf1;
	color: #232323;
}
.ba_01::before {
	position: absolute;
	left: -15px;
	width: 15px;
	height: 30px;
	background-color: #e3ebf1;
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
	content: "";
}
.ba_02::before {
	position: absolute;
	right: -15px;
	width: 15px;
	height: 30px;
	background-color: #e3ebf1;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	content: "";
}
.sp_voice {
	display: none;
}
@media (max-width: 949px) {
	.voice_item {
		flex-flow: column;
	}
	.balloon {
		padding: 40px;
		margin-left: 0;
	}
	.ba_01::before {
		top: -15px;
		left: 20%;
		width: 30px;
		height: 15px;
		clip-path: polygon(50% 0, 0 100%, 100% 100%);
	}
	.ba_02::before {
		top: -15px;
		left: 20%;
		width: 30px;
		height: 15px;
		clip-path: polygon(50% 0, 0 100%, 100% 100%);
	}
	.ba_02 {
		display: none;
	}
	.sp_voice {
		display: block;
	}
	.voice_item img {
		width: 150px;
		height: 150px;
	}
}

/* よくある質問 */
#faq {
	font-size: 14px;
}
.faq_01 {
	padding-bottom: 60px;
}
.accordion_faq {
	max-width: 90%;
	margin-bottom: 7px;
	border-bottom: 2px solid #d6dde3;
	margin: 0 auto;
	position: relative;
}
.accordion_faq summary {
	display: flex;
	justify-content: start;
	align-items: baseline;
	position: relative;
	padding: 1em;
	color: #232323;
	cursor: pointer;
}
.accordion_faq summary::-webkit-details-marker {
	display: none;
}
.accordion_faq summary::before {
	content: "Q";
	font-size: 26px;
	color: #6f7f8d;
	padding-right: 10px;
}
.accordion_faq summary::after {
	transform: translateY(-25%) rotate(45deg);
	width: 7px;
	height: 7px;
	margin-left: 100px;
	border-bottom: 3px solid #232323b3;
	border-right: 3px solid #232323b3;
	content: "";
	transition: transform 0.3s;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -12px;
}
.accordion_faq[open] summary::after {
	transform: rotate(225deg);
}
.accordion_faq p {
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: 2em;
	color: #232323;
	transition: transform 0.5s, opacity 0.5s;
}
.accordion_faq[open] p {
	transform: none;
	opacity: 1;
}
.accordion_faq[open] p::before {
	content: "A";
	font-size: 26px;
	color: #6f7f8d;
	padding-right: 10px;
}
@media (max-width: 949px) {
	.accordion_faq {
		max-width: 100%;
	}
	.accordion_faq summary::before {
		font-size: 16px;
	}
	.accordion_faq[open] p::before {
		font-size: 16px;
	}
	.accordion_faq summary::after {
		margin-left: 10px;
	}
}
/* アクセス */
.access_contents {
	display: flex;
	justify-content: center;
}
.access_item {
	text-align: left;
	padding-left: 60px;
}
.access_item > p {
	padding: 0;
}
@media (max-width: 949px) {
	.access_contents {
		display: block;
	}
	iframe {
		width: 100%;
		height: 250px;
		margin: 0 auto;
	}
	.access_item {
		padding-left: 0px;
	}
}
/* お問い合わせ */
#contact {
	background-image: url(/image/background1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	margin: 0 auto;
	padding: 50px 0;
}
.sub_text {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 50px;
	margin: 60px 180px;
	text-align: center;
}
h5 {
	font-family: "Tangerine", cursive;
	font-size: 30px;
	text-align: center;
}
.contact_contents {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}
.contact_item {
	width: 300px;
	height: 200px;
	color: #fff;
}
.contact_item > p {
	font-size: 16px;
	margin: -30px 0 30px 0;
	text-align: center;
}
.contact_item i {
	display: block;
}
.contact_contents a {
	text-decoration: none;
	background-color: rgba(202, 202, 202, 0.9);
	margin: 0 5px;
}
@media (max-width: 949px) {
	#contact {
		padding: 20px 0 40px 0;
		margin: 0 auto;
	}
	.sub_text {
		padding: 50px;
		margin: 20px;
	}
	.contact_contents {
		flex-flow: column;
		padding: 0 20px;
	}
	.contact_item {
		width: 100%;
		height: 150px;
	}
	.contact_item > p {
		font-size: 12px;
	}
	.contact_contents a {
		margin: 10px 0;
	}
}
/* Footer */
footer {
	background-color: #6f7f8d;
	color: #fff;
	padding: 20px;
}
.footer_contents {
	display: flex;
	justify-content: space-around;
	margin: 0 auto;
	padding: 40px;
}
.footer_items {
	font-size: 14px;
	text-align: left;
	padding-bottom: 20px;
	border-bottom: 1px solid #fff;
}
.footer_contents .headB ul li > a {
	color: #fff;
}
.address {
	margin-bottom: 40px;
}
.company p {
	font-size: 13px;
}
.footer_nav ul {
	padding: 0;
}
.footer_nav ul li {
	list-style: none;
	text-align: left;
	padding: 10px 0;
}
.footer_nav li a {
	color: #fff;
	text-decoration: none;
}
.footer_nav li:hover {
	border-bottom: 2px solid #fff;
}
.footer_logo {
	font-size: 30px;
	line-height: 2rem;
	display: block;
}
@media (max-width: 949px) {
	footer {
		padding: 20px;
		height: 400px;
	}
	.footer_contents {
		display: block;
		padding: 20px;
	}
	.footer_logo {
		font-size: 20px;
		padding-bottom: 20px;
	}
	.site_map {
		display: none;
	}
}
