@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600&display=swap');

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

input,
select {
	-webkit-appearance: none;
	border: none;
}

body {
	font-family: 'Shippori Mincho', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	width: 100%;
	font-feature-settings: "palt" 1;
	font-size: 1.6rem;
	background-color: #000;
	color: #fff;
	letter-spacing: 0.1em;
}

.simplebar-scrollbar::before {
	background: #ccc !important;
}

#modal-video {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 100;
	top: 0;
	left: -65px;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.75);
	transition: .5s;
}

@media screen and (max-width: 1000px) {
	#modal-video {
		z-index: 1000;
	}
}

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

	#modal-video {
		left: 0;
	}

}

#modal-video.close {
	filter: opacity(0);
	visibility: hidden;
}

#modal-video.open {
	filter: opacity(1);
	visibility: visible;
}

#modal-video iframe {
	position: relative;
	width: 64vw;
	height: 35.8vw;
	vertical-align: top;
}

#modal-video #player-wrap {
	position: relative;
}

#modal-video #player-wrap::before,
#modal-video #player-wrap::after {
	content: "";
	position: absolute;
	top: -40px;
	right: 30px;
	width: 1px;
	height: 70px;
	background: #cb0c00;
}

#modal-video #player-wrap::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

#modal-video #player-wrap::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

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

	#modal-video iframe {
		width: 98vw;
		height: 67vw;
	}
}

/*--index.html--*/
#enter {
	position: relative;
	background-image: url(../images/webp/enter_bg.webp);
	overflow: hidden;
	margin-left: unset;
	height: 54vw;
	margin-bottom: 0;
	background-size: cover;
}

@media screen and (max-width: 1000px) {
	#enter {
		margin-top: 0;
		height: 600px;
		background-position: center;
	}
}

#enter #picture-wrap,
#enter #picture-wrap-bottom {
	display: flex;
	overflow: hidden;
	margin-top: 20px;
}

#enter #picture-wrap-bottom {
	position: absolute;
	bottom: 20px;
}

@media screen and (max-width: 1000px) {
	#enter #picture-wrap-bottom {}
}

#enter .picture-list {
	display: flex;
}

#enter .picture-list--left {
	animation: infinity-scroll-left 95s infinite linear 0.5s both;
}

#enter .picture-list--right {
	animation: infinity-scroll-right 95s infinite linear 0.5s both;
}

@media screen and (max-width: 1000px) {
	#enter .picture-list--left {
		animation: infinity-scroll-left 50s infinite linear 0.5s both;
	}

	#enter .picture-list--right {
		animation: infinity-scroll-right 50s infinite linear 0.5s both;
	}
}

#enter .picture-list li {
	width: calc(100vw / 6);
	margin: 0 10px
}

@media screen and (max-width: 1000px) {
	#enter .picture-list li {
		width: calc(100vw / 5);
		margin: 0 4px;
	}
}

@media screen and (max-width: 600px) {
	#enter .picture-list li {
		width: calc(100vw / 2.5);
		margin: 0 4px;
	}
}

@keyframes infinity-scroll-left {
	from {
		transform: translateX(0);
	}

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

@keyframes infinity-scroll-right {
	from {
		transform: translateX(-100%);
	}

	to {
		transform: translateX(0);
	}
}

#enter .logo-box {
	position: absolute;
	margin: auto;
	max-width: 665px;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;

	.enter-btn {
		display: flex;
		gap: 0 20px;
		justify-content: center;

		li a {
			display: flex;
			background-color: rgba(0, 0, 0, .8);
			width: 120px;
			height: 120px;
			justify-content: center;
			align-items: center;
			color: #fff;
			text-decoration: unset;
			border-radius: 50%;

			&:hover {
				background-color: rgba(182, 1, 1, 0.8);
			}
		}

		@media screen and (max-width: 600px) {
			li a {
				width: 90px;
				height: 90px;
				font-size: 13px;
			}

		}
	}

	@media screen and (max-width: 600px) {
		.enter-btn {
			gap: 0 10px;
			flex-wrap: wrap;
			gap: 17px;
		}
	}

}


header {
	position: fixed;
	z-index: 150;
	top: 0;
	right: 0;
	background-color: #000;
	height: 100vh;
	width: 130px;
	border-left: solid 1px #959595;
	background-image: url(../images/webp/menu_bg.webp);
}

@media (max-width: 1000px) {
	header {
		position: fixed;
		z-index: 500;
		height: 70px;
		width: 100%;
		border-left: unset;
		display: flex;
		justify-content: space-between;
	}
}

header h1 {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

@media (max-width: 1000px) {
	header h1 {
		margin-top: 0;
		align-items: center;
	}
}

header h1 img {
	height: 40vh;
}

header .add-menu {
	display: none;
}

@media (max-width: 1000px) {
	header .add-menu {
		display: block;
		background-color: #cb0c00;
		width: 320px;
		height: 50px;
		border-radius: 99999px;
		transition: width 0.3s;
		z-index: 100;
		position: absolute;
		top: 80px;
		right: 10px;
	}
}

header .add-menu svg {
	width: 30px;
	cursor: pointer;
	fill: #fff;
}

header .closed .add-btn:not(.open-close) {
	transform-origin: top left;
	transform: scale(0) translate(-50%, -50%);
}

header .closed .open-close {
	transform: translate(-50%, -50%) rotate(0deg);
	text-align: center;
	top: 40%;
}

header .add-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transition: 0.3s;
	line-height: 0;
}

header .add-insta {
	transform: scale(1) translate(-500%, -50%);
}

header .add-twitter {
	transform: scale(1) translate(-375%, -50%);
}

header .add-tiktok {
	transform: scale(1) translate(-250%, -50%);
}

header .add-youtube {
	transform: scale(1) translate(-125%, -50%);
}

header .add-facebook {
	transform: scale(1) translate(0%, -50%);
}

header .add-pinterest {
	transform: scale(1) translate(130%, -50%);
}

header .add-lemon8 {
	transform: scale(1) translate(260%, -50%);
}

header .open-close {
	transform: translate(396%, -50%) rotate(45deg);
	top: 40%;
}

header .open-close+em {
	position: absolute;
	bottom: 5px;
	right: 11px;
	font-size: 11px;
	font-weight: bold;
}

.sns-box2 {
	position: absolute;
	top: 10px;
	right: 340px;
}

@media (max-width: 1000px) {
	.sns-box2 {
		top: 16px;
		right: 270px;
	}
}

@media (max-width: 600px) {
	.sns-box2 {
		position: fixed;
		bottom: 0px;
		top: unset;
		right: 0;
		background-color: rgba(0, 0, 0, .8);
		padding: 10px 20px;
		left: 0;
		justify-content: start;
		display: flex;
	}
}

.sns-box2 ul {
	display: flex;
}

.sns-box2 li {
	height: 38px;
	width: 38px;
}

@media (max-width: 600px) {
	.sns-box2 li {
		height: auto;
		width: calc(calc(100%/5) - 20px);
		max-width: 60px;
	}
}

.sns-box2 li:not(:first-child) {
	margin-left: 5px;
}

.cp_ipselect {
	overflow: hidden;
	width: 180px;
	text-align: center;
}

@media (max-width: 600px) {
	.cp_ipselect {
		width: 60px;
	}
}

.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.cp_ipselect select::-ms-expand {
	display: none;
}

.cp_ipselect.cp_sl05 {
	position: absolute;
	border-radius: 4px;
	background: #cb0c00;
	top: 10px;
	right: 140px;
}

@media (max-width: 1000px) {
	.cp_ipselect.cp_sl05 {
		top: 16px;
		right: 80px;
	}
}

.cp_ipselect.cp_sl05::before {
	position: absolute;
	top: 1.0em;
	right: 0.6em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #ffffff;
	pointer-events: none;
}

.cp_ipselect.cp_sl05 select {
	padding: 4px 38px 10px 40px;
	color: #ffffff;
}

#language-select {
	background-image: url(../images/ei-language.svg);
	background-repeat: no-repeat;
	background-size: 30px;
	background-position-y: 4px;
	background-position-x: 3px;
}

#language-select option {
	color: #000;
}

header .add-menu.closed {
	width: 50px;
}

@media (max-width: 1000px) {
	header h1 img {
		height: auto;
		width: 55vw;
		max-width: 250px;
		margin-left: 10px;
	}
}

main {
	position: relative;
	margin-left: 20px;
	margin-bottom: 130px;
}

@media (max-width: 1000px) {
	main {
		margin-left: 0;
		margin-top: 70px;
	}
}

@-webkit-keyframes zoomUp {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}
}

@keyframes zoomUp {

	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
	-webkit-animation: zoomUp 12s linear 0s;
	animation: zoomUp 12s linear 0s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.swiper-slide {
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.slide-img {
	background-size: cover;
	background-position: center center;
	height: 100vh;
}

@media (max-width: 1200px) {
	.slide-img {
		height: 70vh;
	}
}

@media (max-width: 1000px) {
	.slide-img {
		height: 80vh;
	}

	.swiper-slide .img01 {
		background-image: url(../images/webp/img01_sp.webp) !important;
	}

	.swiper-slide .img02 {
		background-image: url(../images/webp/img02_sp.webp) !important;
	}

	.swiper-slide .img03 {
		background-image: url(../images/webp/img03_sp.webp) !important;
	}
}

.slide-text {
	position: absolute;
	z-index: 10;
	font-size: 4rem;
	color: #fff;
	width: 100%;
	top: 50%;
	text-align: center;
	font-weight: bold;
}

.appear {
	transform-origin: center top;
	animation: show 1s both;
}

.appear2 {
	transform-origin: center top;
	animation: show2 1s both;
}

.appear3 {
	transform-origin: center top;
	animation: show3 1s both;
}

span.appear {
	display: inline-block;
}

.d1 {
	animation-delay: 0.5s;
}

.d09 {
	animation-delay: 0.9s;
}

.d11 {
	animation-delay: 1.1s;
}

.d13 {
	animation-delay: 1.3s;
}

.d15 {
	animation-delay: 1.5s;
}


.d2 {
	animation-delay: 1s;
}

.d15 {
	animation-delay: 1.5s;
}

.d2 {
	animation-delay: 2s;
}

.d25 {
	animation-delay: 2.5s;
}

.d3 {
	animation-delay: 3s;
}

@keyframes show {
	0% {
		transform: translate(2em, 0);
		opacity: 0;
		text-shadow: 0 0 0 #0f0;
	}

	50% {
		text-shadow: 0 0 0.5em #0f0;
	}

	100% {
		transform: translate(0, 0);
		opacity: 1;
		text-shadow: none;
	}
}

@keyframes show2 {
	0% {
		transform: translate(0, 2em);
		opacity: 0;
		text-shadow: 0 0 0 #0f0;
	}

	50% {
		text-shadow: 0 0 0.5em #0f0;
	}

	100% {
		transform: translate(0, 0);
		opacity: 1;
		text-shadow: none;
	}
}

@keyframes show3 {
	0% {
		transform: translate(0, 0);
		opacity: 0;
	}

	100% {
		transform: translate(0, 0);
		opacity: 1;
		text-shadow: none;
	}
}

.box {
	position: relative;
}

.box .swiper-container {
	margin-left: unset;
	margin-right: unset;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
	position: sticky;
	top: 0;
	width: calc(100% - 130px);
}

@media (max-width: 1000px) {

	.box .swiper-container {
		margin-left: auto;
		margin-right: auto;
		overflow: hidden;
		list-style: none;
		padding: 0;
		z-index: -20;
		position: sticky;
		top: 0;
		width: unset;
	}

}

@media (max-width: 1000px) {
	.box .swiper-container {
		height: 70vh;
	}
}

.header-nav {
	position: absolute;
	z-index: 4;
	background: #fff;
	top: 20px;
	left: 20px;
	padding: 6px 20px;
}

@media (max-width: 1000px) {
	.header-nav {
		display: none;
	}
}

.header-nav ul {
	display: flex;
}

.header-nav ul li {
	display: flex;
	margin: 0 10px;
}

.header-nav ul li a {
	color: #000;
	text-decoration: none;
	font-weight: 500;
}

.header-nav ul li a:hover {
	text-decoration: underline;
}

.text-box {
	position: absolute;
	top: 28%;
	display: flex;
	flex-direction: column;
	z-index: 10;
	left: 0;
	right: 0;
	margin: auto;
}

.text-box img {
	margin: 0 auto;
}

.text-box .appear2 img {
	max-width: 665px;
}

.text-box span:nth-child(2) img {
	width: 50%;
	max-width: 500px;
}

@media (max-width: 1000px) {
	.text-box {
		left: 0;
		width: 90%;
		bottom: calc(50% - 50px);
		right: 0;
		margin: auto;
	}

	.text-box span:nth-of-type(1) img {
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}

	.text-box span:nth-of-type(2) img {
		width: 80%;
		max-width: 423px;
		margin: 0 auto;
	}
}

@media (max-width: 414px) {

	.text-box {
		left: 0;
		width: 96%;
		bottom: calc(50% - 50px);
		right: 0;
		margin: auto;
	}

}

.sub-text {
	display: flex;
	justify-content: center;
}

@media (max-width: 1000px) {
	.sub-text {
		display: none;
	}
}

.sub-text img {
	height: 36vh;
}

main .catch-sp {
	display: none;
}

@media (max-width: 1000px) {

	main .catch-sp {
		display: block;
	}

	main .catch-sp img {
		width: 90%;
		margin: 10px auto 24px;
		max-width: 370px;
	}

}

main .link {
	display: flex;
	width: calc(100% - 130px);
	margin: 40px 0 70px;
	justify-content: space-between;
}

main .link li {
	margin: 5px;
}

@media (max-width: 1000px) {

	main .link {
		width: 96%;
		margin: 0 auto 20px;
		justify-content: center;
		flex-wrap: wrap;
	}

	main .link li {
		width: calc(calc(100% / 3) - 10px);
		margin: 5px;
	}
}

#nav-toggle {
	position: relative;
	cursor: pointer;
	width: 130px;
	height: 130px;
	border-top: solid 1px #cb0c00;
	border-bottom: solid 1px #cb0c00;
	margin: 2vh 0;
	text-align: center;
}

@media (max-width: 1000px) {
	#nav-toggle {
		width: 70px;
		height: 70px;
		border-top: unset;
		border-bottom: unset;
		margin: 0;
		background-color: #000;
		color: #fff;
	}
}

#nav-toggle>div {
	width: 50px;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

@media (max-width: 1000px) {
	#nav-toggle>div {
		top: 24%;
	}
}

#nav-toggle>span {
	width: fit-content;
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translateY(-50%) translateX(-52%);
}

@media (max-width: 1000px) {
	#nav-toggle>span {
		top: 73%;
		left: 51%;
		font-size: 13px;
	}
}

#nav-toggle>div>span.toggle {
	width: 100%;
	height: 1px;
	left: 0;
	display: block;
	background: #cb0c00;
	position: absolute;
	transition: top .5s ease, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, top .5s ease;
	transition: transform .3s ease-in-out, top .5s ease, -webkit-transform .3s ease-in-out;
}

header.deteal_header #nav-toggle>div>span.toggle {
	width: 100%;
	height: 1px;
	left: 0;
	display: block;
	background: #fff;
	position: absolute;
	transition: top .5s ease, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, top .5s ease;
	transition: transform .3s ease-in-out, top .5s ease, -webkit-transform .3s ease-in-out;
}

#nav-toggle span.toggle:nth-child(1) {
	top: 0;
}

#nav-toggle span.toggle:nth-child(2) {
	top: 10px;
}

#nav-toggle span.toggle:nth-child(3) {
	top: 20px;
}

@media (max-width: 1000px) {
	.open #nav-toggle {
		background-color: unset;
	}
}

.open #nav-toggle span.toggle {
	background: #cb0c00;
}

.open #nav-toggle span.toggle:nth-child(1) {
	top: 5px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.open #nav-toggle span.toggle:nth-child(2) {
	top: 10px;
	width: 0;
	left: 50%;
}

.open #nav-toggle span.toggle:nth-child(3) {
	top: 5px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
	z-index: 1000;
}

#container {
	z-index: 900;
}

#gloval-nav {
	background-color: #000;
	color: #fff;
	position: fixed;
	top: 0;
	left: 60%;
	right: 130px;
	bottom: 0;
	z-index: 10;
	text-align: left;
	display: flex;
	visibility: hidden;
	flex-direction: column;
	align-items: center;
	font-size: 29px;
	opacity: 0;
	transition: opacity .3s ease, visibility .3s ease;
	box-shadow: -2px 0px 6px #cacaca;
}

@media (max-width: 1000px) {
	#gloval-nav {
		left: 0;
		right: 0;
	}
}

#gloval-nav a {
	display: block;
	color: #cb0c00;
	text-decoration: none;
	padding: 16px 0 0;
	transition: color .3s ease;
	font-weight: bold;
	letter-spacing: 0;
	margin-bottom: 0.2em;
}

#gloval-nav span {
	display: block;
	font-size: 0.6em;
}

@media (max-width: 1000px) {
	#gloval-nav span {
		font-size: 0.4em;
	}
}

#gloval-nav a:hover {
	opacity: 0.8;
}

#gloval-nav ul {
	list-style: none;
	padding: 0;
}

#gloval-nav ul li {
	opacity: 0;
	-webkit-transform: translateX(200px);
	transform: translateX(200px);
	transition: transform .3s ease, opacity .2s ease, -webkit-transform .3s ease;
	text-align: left;
	line-height: 1;
	border-bottom: dotted 1px #fff;
	padding-bottom: 0.5em;
}

#gloval-nav ul li:nth-child(2) {
	transition-delay: .05s;
}

#gloval-nav ul li:nth-child(3) {
	transition-delay: .15s;
}

#gloval-nav ul li:nth-child(4) {
	transition-delay: .25s;
}

#gloval-nav ul li:nth-child(5) {
	transition-delay: .35s;
}

#gloval-nav ul li:nth-child(6) {
	transition-delay: .45s;
}

#gloval-nav ul li:nth-child(7) {
	transition-delay: .55s;
}

#gloval-nav ul li:nth-child(8) {
	transition-delay: .65s;
}

#gloval-nav ul li:nth-child(9) {
	transition-delay: .75s;
}

/* open */
.open {
	overflow: hidden;
}

.open #gloval-nav {
	visibility: visible;
	opacity: 1;
}

.open #gloval-nav nav {
	width: 80%;
	margin-top: 50px;
}

@media screen and (max-width: 1000px) {
	.open #gloval-nav nav {
		margin-top: 50px;
	}
}

.open #gloval-nav li {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	transition: opacity .9s ease, -webkit-transform 1s ease;
	transition: transform 1s ease, opacity .9s ease;
	transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
	text-align: left;
	line-height: 1;
}

@media screen and (max-width: 1000px) {
	.open #gloval-nav li {
		text-align: center;
		margin-bottom: 0.5em;
	}
}

@media screen and (max-width: 1000px) {
	#nav-toggle {
		right: 0;
		top: 0;
	}

	#gloval-nav a {
		padding: 0;
		font-size: .6em;
		margin-bottom: 0.2em;
	}
}

#sns-box {
	position: relative;
	width: 106px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 5px 10px;
}

#sns-box li {
	margin-bottom: 6px;
	width: 48px;
}

#sns-box li svg {
	fill: #fff;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1000px) {
	#sns-box {
		display: none;
	}
}

#l-bottom h2 {
	text-align: center;
	font-size: 26px;
	position: relative;
}

@media screen and (max-width: 1000px) {
	#l-bottom h2 {
		font-size: 20px;
	}
}

#l-bottom h2 span {
	position: relative;
	z-index: 1;
}

#l-bottom h2::after {
	content: "";
	width: 80px;
	height: 80px;
	background: url(../images/webp/title_bg.webp) no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

#top #l-bottom {
	position: relative;
	background: #000;
	z-index: 10;
	padding-top: 10px;
	width: calc(100% - 130px);
}

@media screen and (max-width: 1000px) {
	#top #l-bottom {
		width: 100%;
	}
}

.under {
	position: relative;
	background-image: url(../images/webp/bg01.webp);
	background-repeat: no-repeat;
	background-position-x: right;
	background-size: 410px;
	background-attachment: fixed;
}

@media screen and (max-width: 1000px) {
	.under {
		background-size: 280px;
	}
}

.under #l-bottom {
	width: calc(100% - 150px);
	padding-top: 100px;
}

@media screen and (max-width: 1000px) {
	.under #l-bottom {
		width: 100%;
	}
}

#picture-wrap {
	display: flex;
	overflow: hidden;
	margin-top: 20px;
}

@media screen and (max-width: 1000px) {
	#picture-wrap {
		margin-top: 0px;
	}
}

#l-bottom .picture-list {
	display: flex;
}

.picture-list--left {
	animation: infinity-scroll-left 95s infinite linear 0.5s both;
}

@media screen and (max-width: 1000px) {
	.picture-list--left {
		animation: infinity-scroll-left 50s infinite linear 0.5s both;
	}
}

#l-bottom .picture-list li {
	width: calc(100vw / 6);
	margin: 0 10px
}

@media screen and (max-width: 1000px) {
	#l-bottom .picture-list li {
		width: calc(100vw / 3);
		margin: 0 4px;
	}
}

@keyframes infinity-scroll-left {
	from {
		transform: translateX(0);
	}

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

#top-special {
	position: relative;
	padding-top: 60px;

	.cont {
		width: 90%;
		margin: 40px auto 0;
		border: solid 3px #ccc;
		padding: 30px;
		max-width: 1100px;
		height: 600px;
		overflow-y: auto;

		@media screen and (max-width: 1300px) {
			margin-top: 30px;
			padding: 20px;
		}

		.cont-inner {
			margin-bottom: 20px;
			padding-bottom: 20px;
			border-bottom: dotted 1px;

			.title {
				font-weight: bold;
				font-size: 16px;
				margin-bottom: 0.8em;
				border-left: solid 4px #f00;
				padding-left: 0.5em;
			}

			.picture {
				max-width: 400px;
				width: 100%;
			}

			iframe {
				width: 100%;
				aspect-ratio: 16 / 9;
			}

			.comment {
				font-size: 14px;

				.day {
					border-top: dotted 1px #ccc;
					display: block;
					margin-top: 0.2em;
					padding-top: 0.2em;
				}
			}
		}
	}
}

#top-news {
	position: relative;
	padding-top: 60px;

	.news-list {
		list-style: none;
		width: 90%;
		margin: 40px auto 0;
		border: solid 3px #ccc;
		display: flex;
		flex-direction: column;
		padding: 30px;
		max-width: 1100px;

		@media screen and (max-width: 1300px) {
			margin-top: 30px;
			padding: 20px;
		}

		.news-item {
			display: flex;
			align-items: center;
			margin-top: 1em;

			&:first-child {
				margin-top: 0;
			}

			@media screen and (max-width: 1300px) {
				flex-direction: column;
				align-items: start;
				margin-top: 0.6em;
			}

			.news-date {
				color: #cb0c00;
				min-width: 100px;
				margin-right: 15px;

				@media screen and (max-width: 1300px) {
					font-size: 14px;
				}
			}
		}

		.news-description {
			flex-grow: 1;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
			width: 0;
			border-bottom: solid 1px #868686;

			a {
				color: #fff;
				text-decoration: unset;
			}

			a:hover {
				text-decoration: unset;
			}

			@media screen and (max-width: 1300px) {
				width: 100%;
			}
		}
	}
}

#l-bottom #top-video {
	position: relative;
	background-image: url(../images/webp/video_bg.webp);
	color: #000;
	padding: 60px 0 220px;
	background-size: cover;
	margin-top: 50px;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-video {
		padding: 70px 0 70px;
		margin-top: 20px;
	}
}

#l-bottom #top-video .video-list {
	display: flex;
	margin-top: 140px;
	justify-content: center;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-video .video-list {
		margin-top: 80px;
		flex-direction: column;
		align-items: center;
	}
}

#l-bottom #top-video .video-list li {
	position: relative;
	margin: 0 10px;
	text-align: center;
	cursor: pointer;
	width: 400px;
}

#l-bottom #top-video .video-list li img {
	width: 100%;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-video .video-list li {
		margin: 0 10px 30px;
		width: 86%;
	}
}

#l-bottom #top-video .video-list li::after {
	content: "";
	width: 90px;
	height: 61px;
	background: url(../images/webp/icon_play.webp);
	background-repeat: no-repeat;
	position: absolute;
	z-index: 1;
	top: -24px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-video .video-list li::after {
		background-size: 70%;
		background-position: center;
	}
}

#l-bottom #top-video .video-list li span {
	display: block;
	height: 24px;
	background-color: #000;
	color: #fff;
}

#l-bottom #top-honor {
	position: relative;
	padding-top: 60px;
	background-image: url(../images/webp/bg01.webp);
	background-repeat: no-repeat;
	background-position-x: right;
	background-size: 500px;
}

#l-bottom #top-honor .cont01 {
	background-color: #191919;
	padding-top: 60px;
}

#l-bottom #top-honor .cont01>p {
	text-align: center;
	margin: 60px auto;
	width: 96%;
	max-width: 1200px;
	font-size: 15px;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-honor .cont01>p {
		width: 90%;
		text-align: left;
		font-size: 14px;
	}
}

#l-bottom #top-honor .cont01>p em {
	display: block;
	font-size: 1.4em;
	margin-bottom: 40px;
	text-align: center;
}

#l-bottom #top-honor .cont01 .sub-cont01 {
	position: relative;
	background-image: url(../images/webp/honor_bg01.webp);
	background-repeat: no-repeat;
	padding: 60px 0;
	background-size: cover;
	display: flex;
	align-items: center;
	background-position-x: right;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-honor .cont01 .sub-cont01 {
		padding: 20px 0;
	}
}

#l-bottom #top-honor .cont01 .sub-cont01 .box {
	display: flex;
	width: 100%;
	margin: 0 auto;
	align-items: center;
	max-width: 1200px;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-honor .cont01 .sub-cont01 .box {
		flex-direction: column;
	}
}

#l-bottom #top-honor .cont01 .sub-cont01 .box .pic {
	position: relative;
	max-width: 600px;
	width: 60%;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-honor .cont01 .sub-cont01 .box .pic {
		width: 90%;
		max-width: 800px;
	}

	#l-bottom #top-honor .cont01 .sub-cont01 .box .pic img {
		width: 100%;
	}
}

#l-bottom #top-honor .cont01 .sub-cont01 .box .txt {
	position: relative;
	width: calc(100% - 600px);
	background-color: rgba(0, 0, 0, .7);
	padding: 30px 20px;
	text-align: left;
	margin-left: -50px;
	font-size: 14px;
	z-index: 1;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-honor .cont01 .sub-cont01 .box .txt {
		width: 82%;
		margin: -120px auto 0;
	}
}

#l-bottom #top-honor .cont01 .sub-cont01 .box .txt::after {
	content: "";
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: -80px;
	right: -30px;
}

#l-bottom #top-honor .cont01 .sub-cont01 .box .txt-honor::after {
	width: 71px;
	height: 148px;
	background-image: url(../images/webp/text_honor.webp);
}

#l-bottom #top-honor .cont01 .sub-cont01 .box .txt-sword::after {
	width: 64px;
	height: 65px;
	background-image: url(../images/webp/text_sword.webp);
	right: 0;
	left: -30px;
	top: -50px;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-honor .cont01 .sub-cont01 .box .txt-sword::after {
		top: -30px;
		right: -30px;
		left: unset;
	}
}

#l-bottom #top-honor .cont01 .sub-cont01 .box .txt em {
	display: block;
	border-bottom: dotted 1px #ccc;
	margin-bottom: 4px;
	padding-bottom: 4px;
	font-size: 1.4em;
}

#l-bottom #top-honor .cont01 .sec {
	background-image: url(../images/webp/honor_bg02.webp);
	background-position-x: left;
}

#l-bottom #top-honor .cont01 .sec .box .pic {
	order: 2;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-honor .cont01 .sec .box .pic {
		order: unset;
	}
}

#l-bottom #top-honor .cont01 .sec .box .txt {
	margin-left: 0;
	margin-right: -50px;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-honor .cont01 .sec .box .txt {
		margin-left: 0;
		margin-right: 0;
	}
}

#l-bottom #top-morality {
	position: relative;
	margin-top: 120px;
	background-image: url(../images/webp/bg01.webp);
	background-repeat: no-repeat;
	background-position-x: right;
	background-size: 500px;
}

#l-bottom #top-morality .txt {
	text-align: center;
	width: 80%;
	max-width: 800px;
	margin: 40px auto;
	text-shadow: #000 1px 0 10px;
}

#l-bottom #top-morality .txt em {
	font-weight: 1.2em;
	display: inline-block;
	margin-bottom: 20px;
}

#l-bottom #top-morality .morality-box {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	width: 90%;
	max-width: 1200px;
	margin: 60px auto 0;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-morality .morality-box {
		width: 94%;
		margin: -40px auto 0;
	}
}

#l-bottom #top-morality .morality-box>li {
	width: calc(calc(100% / 3) - 20px);
	margin: 40px 10px 0;
	background-repeat: no-repeat;
	background-size: cover;
	height: 600px;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-morality .morality-box>li {
		width: 100%;
		height: auto;
	}
}

#l-bottom #top-morality .morality-box h3 img {
	margin: 20px auto 0;
	max-width: 150px;
}

#l-bottom #top-morality .morality-box p {
	width: 88%;
	height: 400px;
	overflow-y: auto;
	margin: 20px auto 20px;
	text-align: left;
	font-size: 13.5px;
	line-height: 1.5em;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-morality .morality-box p {
		font-size: 13px;
		line-height: 1.4em;
	}
}

#l-bottom #top-morality .morality-box li.righteousness {
	background-image: url(../images/webp/morality_bg01.webp);

}

#l-bottom #top-morality .morality-box li.courage {
	background-image: url(../images/webp/morality_bg02.webp);

}

#l-bottom #top-morality .morality-box li.benevolence {
	background-image: url(../images/webp/morality_bg03.webp);

}

#l-bottom #top-morality .morality-box li.courtesy {
	background-image: url(../images/webp/morality_bg04.webp);

}

#l-bottom #top-morality .morality-box li.sincerity {
	background-image: url(../images/webp/morality_bg05.webp);

}

#l-bottom #top-morality .morality-box li.honor {
	background-image: url(../images/webp/morality_bg06.webp);

}

#l-bottom #top-morality .morality-box li.loyalty {
	background-image: url(../images/webp/morality_bg07.webp);
	width: 100%;
	height: 300px;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-morality .morality-box li.loyalty {
		height: auto;
		background-image: url(../images/webp/morality_bg07_sp.webp);
	}
}

#l-bottom #top-morality .morality-box li.loyalty p {
	width: 90%;
	max-width: 800px;
	height: auto;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-morality .morality-box li.loyalty p {
		height: 400px;
	}
}

#l-bottom #top-morality .cap {
	display: block;
	font-size: 1.4em;
	text-align: center;
}

#l-bottom #top-master {
	position: relative;
	padding-top: 100px;
	background-image: url(../images/webp/bg01.webp);
	background-repeat: no-repeat;
	background-position-x: right;
	background-size: 500px;
}

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

	#l-bottom #top-master {
		padding-top: 70px;
		background-size: 250px;
	}

}

#l-bottom #top-master h2::before {
	content: "";
	width: 223px;
	height: 28px;
	background-image: url(../images/webp/text_bushido.webp);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 1;
	bottom: -25px;
	left: 0;
	right: 0;
	margin: auto;
}

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

	#l-bottom #top-master h2::before {
		background-size: 80%;
	}
}

#l-bottom #top-master h2+p {
	text-align: center;
	width: 80%;
	margin: 60px auto;
}

#l-bottom #top-master section {
	display: flex;
	margin-top: 40px;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-master section {
		margin-top: 60px;
		flex-direction: column;
	}
}

#l-bottom #top-master section:nth-child(2n)>div:first-child {
	order: 2;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-master section:nth-child(2n)>div:first-child {
		order: unset;
	}
}

#l-bottom #top-master section>div {
	width: 48%;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-master section>div {
		width: 100%;
	}
}

#l-bottom #top-master section>div+div {
	width: 52%;
}

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

	#l-bottom #top-master section>div+div {
		width: 96%;
		margin: -20px auto;
	}

}

#l-bottom #top-master section>div+div img {
	width: 100%;
}

#l-bottom #top-master section>div:first-child {
	background-image: url(../images/webp/master_bg.webp);
}

#l-bottom #top-master section>div div {
	position: relative;
	max-width: 400px;
	margin: 60px 30px 0 auto;
	width: 80%;
}

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

	#l-bottom #top-master section>div div {
		margin: 40px 30px 40px 40px;
	}

}

#l-bottom #top-master section:nth-child(2n)>div div {
	margin: 60px auto 0 30px;
}

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

	#l-bottom #top-master section:nth-child(2n)>div div {
		margin: 40px 30px 40px 40px;
	}

}

#l-bottom #top-master section>div div::after {
	content: "";
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: -90px;
	left: -90px;
}

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

	#l-bottom #top-master section>div div::after {
		left: unset;
		right: -30px;
		top: -70px;
		background-size: 80%;
	}

}

#l-bottom #top-master section:nth-child(2n)>div div::after {
	right: -90px;
	left: unset;
}

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

	#l-bottom #top-master section:nth-child(2n)>div div::after {
		left: unset;
		right: -30px;
		top: -70px;
		background-size: 80%;
	}

}

#l-bottom #top-master section.sign>div div::after {
	width: 56px;
	height: 226px;
	background-image: url(../images/webp/text_sign.webp);
}

#l-bottom #top-master section.tea>div div::after {
	width: 52px;
	height: 213px;
	background-image: url(../images/webp/text_tea.webp);
}

#l-bottom #top-master section.learn>div div::after {
	width: 56px;
	height: 217px;
	background-image: url(../images/webp/text_learn.webp);
}

#l-bottom #top-master section.master>div div::after {
	width: 56px;
	height: 242px;
	background-image: url(../images/webp/text_master.webp);
}

#l-bottom #top-master section.calligraphy>div div::after {
	width: 50px;
	height: 185px;
	background-image: url(../images/webp/text_calligraphy.webp);
}

#l-bottom #top-master section.harakiri>div div::after {
	width: 46px;
	height: 99px;
	background-image: url(../images/webp/text_harakiri.webp);
}

#l-bottom #top-master section>div div h3 {
	font-size: 32px;
}

#l-bottom #top-master section>div div h3 {
	font-size: 28px;
}

.batsu {
	position: relative;
	margin-left: 1em;
}

.batsu::before,
.batsu::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -0.5em;
	width: 1px;
	height: 70px;
	background: #cb0c00;
}

.batsu::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.batsu::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

#l-bottom #top-master section>div div h3::first-letter {
	font-size: 1.2em;
	color: #cb0c00;
}

#l-bottom #top-master section>div div .text {
	margin-top: 10px;
	line-height: 1.6em;
}

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

	#l-bottom #top-master section>div div .text {
		width: 90%;
	}
}

#l-bottom #top-cautions {
	position: relative;
	margin-top: 120px;
	background-image: url(../images/webp/bg01.webp);
	background-repeat: no-repeat;
	background-position-x: right;
	background-size: 500px;
}

#l-bottom #top-cautions .box {
	background-color: rgba(10, 10, 10, 0.85);
	max-width: 900px;
	width: 90%;
	margin: 40px auto 0;
	padding: 60px 30px;
}

@media screen and (max-width: 1000px) {
	#l-bottom #top-cautions .box {
		padding: 20px;
		font-size: 13px;
	}
}

#l-bottom #top-cautions .box section {
	margin-top: 60px;
}

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

	#l-bottom #top-cautions .box section {
		margin-top: 30px;
	}
}

#l-bottom #top-cautions .box section h3 {
	position: relative;
}

#l-bottom #top-cautions .box section h3::after {
	content: "";
	display: block;
	width: 80px;
	height: 1px;
	background-color: #797979;
	position: absolute;
	bottom: -10px;
}

#l-bottom #top-cautions .box section ul {
	margin-top: 1.6em;
}

#l-bottom #top-cautions .box section ul li {
	margin-top: 0.6em;
}

/*-- ▼ price.html ▼ --*/

#price {
	position: relative;
}

#price #plan {
	max-width: 1300px;
	margin: 0 auto;
}

#price #plan section {
	overflow: hidden;
	margin-top: 40px;
	padding-bottom: 20px;
}

#price #plan section h3 {
	font-size: 30px;
	margin-left: 10px;
	border-left: solid 6px #cb0c00;
	padding-left: 0.3em;
	margin-bottom: 10px;

	strong {
		font-size: 0.6em;
	}
}

#price #plan .box {
	background: #fff;
	padding: 50px 0;
	margin-bottom: 60px;
}

	@media screen and (max-width: 1000px) {
		#price #plan .box {
			padding: 50px 8px;
			width: 95%;
			margin: 0 auto 60px;
		}
	}

#price #plan section.basic .box {
	position: relative;
	background-color: rgba(26, 26, 26, 0.85);
	padding: 12px;
	margin: 10px 10px 20px;

	li {
		border-bottom: dotted 1px #ccc;
		padding-bottom: 10px;
		margin-bottom: 10px;
		display: flex;
		align-items: center;

		.picture {
			flex-shrink: 0;
			width: 130px;
		}

		dl {
			display: flex;
			padding: 0.5em;
			align-items: center;
			width: 50%;
			max-width: 650px;
			justify-content: space-between;

			dt {
				min-width: 200px;

				span {
					padding: 0.2em 0 0 0;
					font-size: 0.8em;
					display: block;
				}
			}

			dd {
				font-size: 1.3em;
				text-align: right;

				span {
					font-size: 0.7em;
				}
			}
		}
	}
}

#price #plan section.basic .notice {
	margin: 20px 10px 0;
}

#price #plan section.basic .sub-title {
	font-size: 20px;
	margin: 20px 10px 0;
	border-left: solid 4px #fff;
	padding-left: 0.2em;
}

@media screen and (max-width: 1000px) {
	#price #plan section.basic .box {
		margin: 20px 10px 20px;

		li {
			.picture {
				flex-shrink: 0;
				width: 140px;
			}

			dl {
				width: 100%;
				max-width: 100%;
				align-items: start;
				flex-direction: column;

				dt {
					min-width: 100%;

					span {
						padding: 0;
						font-size: 0.8em;
						display: block;
					}
				}

				dd {
					width: 100%;
					background-color: #000;
					padding: 0.2em 0.5em;
					line-height: 1;
					text-align: right;
					margin-top: 0.1em;
				}
			}
		}
	}
}

#price #plan section.set .box {
	position: relative;
	background-color: rgba(26, 26, 26, 0.85);
	padding: 12px;
	margin: 40px 10px 20px;

	.cont {
		padding-bottom: 4px;
		margin-bottom: 4px;

		dl {
			display: flex;
			padding: 0.5em;
			align-items: center;
			border-bottom: dotted 1px #ccc;

			dt {
				font-size: 18px;
				min-width: 330px;

				span {
					padding: 0 0 0 0.2em;
					font-size: 0.8em;
				}
			}

			dd {
				font-size: 1.1em;

				span {
					font-size: 0.7em;
				}

				em {
					font-style: normal;
					font-size: 0.8em;
				}
			}
		}

		.box2 {
			display: flex;
			align-items: flex-start;
			justify-content: space-between;
			gap: 20px;
			margin-top: 30px;

			@media (max-width: 1000px) {
				gap: 0px;
				flex-direction: column;
			}

			.list {
				position: relative;
				flex-grow: 1;
				padding: 0 25px;

				@media (max-width: 1000px) {
					width: 100%;
				}

				li {
					position: relative;
					border: solid 1px #868686;
					padding: 0.5em;
					margin-bottom: 32px;
					text-align: center;
					background-color: #000;

					@media (max-width: 1000px) {
						padding: 0.3em;
						margin-bottom: 22px;
						font-size: 15px;
					}

					&::after {
						content: "";
						width: 30px;
						height: 30px;
						border-top: solid 1px #fff;
						border-right: solid 1px #fff;
						position: absolute;
						right: 50%;
						transform: translateX(50%) rotate(135deg);
						top: 32px;
						z-index: 1;
					}
				}

				@media (max-width: 1000px) {
					li::after {
						width: 20px;
						height: 20px;
						top: auto;
						bottom: -14px;
					}
				}

				li:last-child::after {
					content: unset;
				}
			}
		}
	}
}

@media screen and (max-width: 1000px) {
	#price #plan section.set .box {
		margin: 20px 10px 20px;

		.cont {
			dl {
				align-items: start;
				flex-direction: column;

				dt {
					font-size: 18px;
					min-width: 100%;

					span {
						padding: 0;
						font-size: 0.8em;
						display: block;
					}
				}

				dd {
					width: 100%;
					background-color: #000;
					padding: 0.4em 0.5em;
					line-height: 1;
					text-align: right;
					margin-top: 0.1em;
				}
			}
		}
	}
}

@media screen and (max-width: 1000px) {
	#price #plan section h3 {
		font-size: 22px;
		line-height: 1.5em;
		text-align: center;
		margin-left: 0;
		border-left: unset;
		background: #cb0c00;
		padding-bottom: 0.2em;
	}

	#price #plan section h3 em {
		position: relative;
		display: block;
	}

	#price #plan section h3 em::after {
		content: "";
		width: 100px;
		height: 4px;
		display: inline-block;
		background-color: #cb0c00;
		position: absolute;
		bottom: -2px;
		left: 0;
		right: 0;
		margin: auto;
	}
}

#price #plan section h3 span {
	position: relative;
	font-size: 1.2em;
	margin-left: 1em;
}

#price #plan section h3 span::before {
	content: "";
	position: absolute;
	top: 55%;
	left: -0.5em;
	width: 1px;
	height: 80px;
	background: #ccc;
}

#price #plan section h3 span::before {
	transform: translate(-50%, -50%) rotate(45deg);
	height: 40px;
}

#price #plan section h3 span.time {
	font-size: 0.6em;
	margin-left: 0.4em;
}

#price #plan section h3 span.time::before {
	content: unset;
}

#price #plan .card {
	background-color: rgba(26, 26, 26, 0.85);
	max-width: 900px;
	width: 90%;
	margin: 90px auto 0;
	padding: 30px;
}

@media screen and (max-width: 1000px) {
	#price #plan .card {
		padding: 20px 10px;
	}
}

#price #plan .card dl dt {
	text-align: center;
	border-bottom: dotted 1px #ccc;
	margin-bottom: 8px;
	padding-bottom: 8px;
}

#price #plan .card dl dt:last-of-type {
	margin-top: 20px;
}

#price #plan .card p {
	line-height: 1.3em;
	margin-top: 4px;
}

@media screen and (max-width: 1000px) {
	#price #plan .card p {
		font-size: 13px;
		line-height: 1.3em;
		margin-top: 4px;
	}
}

#price #plan .flow {
	width: 64%;
	max-width: 880px;

	@media (max-width: 1000px) {
		width: 100%;
		max-width: 100%;
	}
}

@media screen and (max-width: 1000px) {
	#price #plan .flow {
		position: relative;
	}
}

/* #price #plan .flow > li::before {
	content: "";
	width: 40px;
	height: 40px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	position: absolute;
	right: -16px;
	top: calc(50% - 20px);
	z-index: 1;
	transform: rotate(45deg);
} 

@media screen and (max-width: 1000px) {
	#price #plan .flow > li::before {
		width: 60px;
		height: 60px;
		right: 0;
		top: unset;
		bottom: -20px;
		transform: rotate(135deg);
		left: 0;
		margin: auto;
	}
}*/

#price #plan .flow>li:nth-child(3)::before {
	content: unset;
}

@media screen and (max-width: 1000px) {
	#price #plan .flow>li:nth-child(3)::before {
		content: "";
	}
}

#price #plan .flow>li:last-child::before {
	content: unset;
}

#price #plan .flow li figure figcaption {
	border-bottom: dotted 1px #ccc;
	margin-bottom: 8px;
	padding-bottom: 4px;
}

@media screen and (max-width: 1000px) {
	#price #plan .flow li figure img {
		width: 98%;
		margin: 0 auto;
	}
}

#price #plan .flow li figure img {
	width: 100%;
}

#price #plan .flow li em {
	display: block;
	padding: 0.4em;
	color: #fff;
	background-color: #000;
}

#price #plan .flow .slider {
	width: 100%;
	max-width: 1000px;
}

@media screen and (max-width: 1000px) {
	#price #plan .flow .slider {
		max-width: 98%;
		margin: 0 auto;
	}
}

#price #plan .flow .slick-arrow:before {
	content: "" !important;
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}

#price #plan .flow .slick-next:before {
	background: url(../images/webp/arrow_r.webp) !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
}

#price #plan .flow .slick-prev:before {
	background: url(../images/webp/arrow_l.webp) !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
}

#price #plan .flow .slick-arrow {
	z-index: 2 !important;
	width: 25px !important;
	height: 155px !important;
}

#price #plan .flow .slick-next {
	right: 10px !important;
}

#price #plan .flow .slick-prev {
	left: 10px !important;
}

#price #plan .flow .slick-dots {
	position: relative;
	z-index: 3;
	position: absolute;
	bottom: -20px;
	right: 0;
	width: unset;
}

#price #plan .flow .slick-dots li {
	display: inline-block;
	margin: 0 5px;
	width: 40px;
	height: 4px;
}

#price #plan .flow .slick-dots button {
	padding: 0;
	color: transparent;
	outline: none;
	width: 40px;
	border: unset;
	height: 4px;
	display: block;
	background: #fff;
	cursor: pointer;
}

#price #plan .flow .slick-dots .slick-active button {
	background: #cb0c00;
}

#price #plan .flow .slick-dots li button::before {
	content: unset;
}

#price #plan .flow .slick-dotted.slick-slider {
	margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
	#price #plan .flow .slick-dotted.slick-slider img {
		width: 100%;
	}
}

#price #plan .flow .batsu {
	position: relative;
	margin-left: 1em;
}

#price #plan .flow .batsu::before,
#price #plan .flow .batsu::after {
	content: "";
	position: absolute;
	top: 60%;
	left: -0.5em;
	width: 1px;
	height: 20px;
	background: #cb0c00;
}

#price #plan .flow .batsu::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

#price #plan .flow .batsu::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1000px) {
	#price #plan .flow div {
		width: 100%;
	}

	#price #plan .flow div img {
		width: 100%;
	}
}

#price #plan .flow dl {
	width: 50%;
	padding: 0.5em 1em;
}

@media screen and (max-width: 1000px) {
	#price #plan .flow dl {
		padding: 0;
		width: 96%;
		margin: 20px auto 0;
	}
}

#price #plan .flow dl dt {
	font-size: 1.8rem;
	font-weight: bold;
}

#price #plan .flow dl dd {
	border-bottom: solid 1px #8a8a8a;
	margin-bottom: 1.5em;
	padding-left: 0.8em;
	padding-bottom: 0.2em;
	color: #ccc;
}

#price #plan .flow dl dd:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

#price #plan .capture {
	display: flex;
	margin: 30px auto 20px;
}

@media screen and (max-width: 800px) {
	#price #plan .capture {
		margin: 10px auto;
		flex-wrap: wrap;
		width: 96%;
	}

	#price #plan .capture>div {
		width: 50%;
	}
}

#price #plan .optional .price02 {
	padding-left: 1em;
}

#price #plan .optional .price02 dt {
	margin-top: 10px;
}

#price #plan .optional .price02 dd {
	font-size: 1.2em;
}

#price #plan .location .price02 {
	padding-left: 1em;
}

#price #plan .location .price02 dt {
	margin-top: 10px;
}

#price #plan .location .price02 dd {
	font-size: 1.2em;
}

#price #plan .price-table {
	border: solid 1px #ccc;
	margin: 50px 40px 0px;
}

@media screen and (max-width: 1000px) {
	#price #plan .price-table {
		width: 96%;
		margin: 0 auto;
	}
}

#price #plan .price-table-txt {
	margin: 10px 40px 0px;
}

#price #plan .price-table table {
	font-size: 18px;
	width: 100%;
	border-collapse: collapse;
}

#price #plan .price-table table th {
	position: relative;
	width: 20%;
	background-color: #202020;
	color: #b70000;
	text-align: center;
	padding: 10px 0;
	border-bottom: solid 1px #000;
}

#price #plan .price-table table tr:last-child th {
	border-bottom: none;
}

#price #plan .price-table table th:after {
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top: calc(50% - 16px);
	right: -16px;
	border-left: 16px solid #202020;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
	z-index: 1;
}

#price #plan .price-table table th::before {
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	border-bottom: 1px solid #000;
	width: 100%;
}

#price #plan .price-table table tr:last-child th::before {
	border-bottom: solid 1px #ccc;
}

#price #plan .price-table table td {
	vertical-align: middle;
	width: 60%;
	text-align: center;
	padding: 20px 0;
	border-bottom: solid 1px #ccc;
	background-color: #000;
}

@media screen and (max-width: 1000px) {
	#price #plan .price-table table td span {
		display: block;
	}
}

#price #plan .price-table table td:first-child {
	width: 20%;
}

#price #plan section.bushido {
	border-bottom: unset;
}

#price #plan section.night {
	background-color: rgba(26, 26, 26, 0.85);
	border-bottom: unset;
	margin-top: 80px;
	padding: 20px 0;
}

#price #plan section.night .capture {
	margin: 10px auto 20px;
}

#price #plan section.night .price-table {
	margin: 0 10px 10px;
}

#price #policy {
	position: relative;
	margin-top: 120px;
	background-image: url(../images/webp/bg01.webp);
	background-repeat: no-repeat;
	background-position-x: right;
	background-size: 500px;
}

#price #policy .box {
	background-color: rgba(10, 10, 10, 0.85);
	max-width: 900px;
	width: 90%;
	margin: 40px auto 0;
	padding: 60px 30px;
}

#price #policy .box dl dt {
	margin-top: 10px;
}

#price #policy .box dl dd {
	border-bottom: dotted 1px #ccc;
	padding-bottom: 8px;
	font-size: 1.4em;
}

#price #policy .box em {
	display: block;
	margin-top: 10px;
}

#price #sacred {
	position: relative;
	margin-top: 100px;
}

#price #sacred #characters {
	background-color: rgba(10, 10, 10, 0.85);
	max-width: 1200px;
	width: 90%;
	margin: 40px auto 0;
	padding: 60px 30px;
}

@media screen and (max-width: 1000px) {
	#price #sacred #characters {
		width: 96%;
		padding: 40px 10px;
	}
}

#price #sacred #characters h3 {
	text-align: center;
}

#price #sacred #characters dl {
	position: relative;
	margin-top: 40px;
	background-color: #000;
	padding: 30px;
}

#price #sacred #characters dl::before {
	content: "";
	width: 80px;
	height: 80px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 1;
	left: 20px;
	top: -20px;
}

#price #sacred #characters dl.tokugawa::before {
	background-image: url(../images/webp/tokugawa.webp);
}

#price #sacred #characters dl.sanada::before {
	background-image: url(../images/webp/sanada.webp);
}

#price #sacred #characters dl.katou::before {
	background-image: url(../images/webp/katou.webp);
}

#price #sacred #characters dl.toyotomi::before {
	background-image: url(../images/webp/toyotomi.webp);
}

#price #sacred #characters dl.yodo::before {
	background-image: url(../images/webp/yodo.webp);
}

#price #sacred #characters dl dt {
	font-size: 1.4em;
	font-style: italic;
	border-bottom: dotted 1px #ccc;
	padding-left: 70px;
	line-height: 1;
	padding-bottom: 0.4em;
}

#price #sacred #characters dl dt span {
	font-size: 0.6em;
	margin-left: 0.4em;
}

#price #sacred #characters dl dd {
	font-size: 14px;
	margin-top: 0.5em;
}

#price #etiquette {
	position: relative;
	margin-top: 100px;
}

#price #etiquette .etiquette-box {
	background-color: rgba(10, 10, 10, 0.85);
	width: 80%;
	margin: 40px auto 0;
	padding: 10px 30px 30px;
	max-width: 1200px;
}

@media screen and (max-width: 1000px) {
	#price #etiquette .etiquette-box {
		width: 96%;
	}
}

#price #etiquette .etiquette-box ul {
	margin-top: 1.6em;
	counter-reset: number 0;
}

#price #etiquette .etiquette-box ul li {
	position: relative;
	margin-top: 1.2em;
	padding-left: 2em;
	font-size: 14px;
}

#price #etiquette .etiquette-box ul li::before {
	counter-increment: number 1;
	content: counter(number);
	display: block;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.4em;
	text-align: center;
	background-color: #cb0c00;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 2.25rem;
	color: #fff;
	font-weight: bold;
	z-index: 5;
	transform: scale(1);
	top: 0;
	left: 0;
	position: absolute;
}

#price #etiquette .etiquette-box ul li ul {
	margin-top: 0.6em;
}

#price #etiquette .etiquette-box ul li ul li {
	margin-top: 0.6em;
}

#price #etiquette .etiquette-box ul li ul li::before {
	background-color: #252525;
}

#price #etiquette .etiquette-box ul li .pic-box {
	display: flex;
	flex-wrap: wrap;
}

#price #etiquette .etiquette-box ul li img {
	width: calc(50% - 10px);
	margin: 5px;
}

@media screen and (max-width: 1000px) {
	#price #etiquette .etiquette-box ul li img {
		width: 100%;
	}
}

#price #area {
	position: relative;
	margin-top: 100px;
}

#price #area .box {
	width: 80%;
	max-width: 1200px;
	margin: 40px auto 0;
}

@media screen and (max-width: 1000px) {
	#price #area .box {
		width: 96%;
	}
}

#price #area .box .txt {
	margin-top: 40px;
	text-align: center;
	line-height: 1.8em;
}

@media screen and (max-width: 1000px) {
	#price #area .box .txt {
		text-align: left;
		width: 90%;
		margin: 40px auto 0;
	}
}

#price #area .area-box {
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	margin: 90px auto 0;
	max-width: 1200px;
}

@media screen and (max-width: 1000px) {
	#price #area .area-box {
		width: 96%;
		margin: 30px auto 0;
	}
}

#price #area .area-box li {
	width: calc(calc(100% / 2) - 20px);
	margin-bottom: 40px;
	background-color: #e6e8eb;
	border-radius: 30px;
}

@media screen and (max-width: 1000px) {
	#price #area .area-box li {
		width: 100%;
		margin-bottom: 20px;
	}
}

#price #area .area-box li:nth-child(odd) {
	margin-right: 40px;
}

@media screen and (max-width: 1000px) {
	#price #area .area-box li:nth-child(2n + 1) {
		margin-right: 0;
	}
}

#price #area .area-box li>dl>dt {
	padding: 14px;
	font-weight: bold;
	border-bottom: solid 1px #737373;
	font-size: 20px;
	color: #000;
	line-height: 1.1;
	margin: 10px;
}

#price #area .area-box li>dl>dt img {
	width: 100%;
	display: block;
	margin-top: 8px;
}

#price #area .area-box li>dl>dt em {
	display: block;
	font-size: 0.8em;
	font-weight: normal;
	margin-bottom: 4px;
}

#price #area .area-box li>dl>dt span {
	font-size: 0.7em;
}

#price #area .area-box li>dl>dt .slick-dots {
	position: relative;
	z-index: 3;
	position: absolute;
	bottom: -20px;
	right: 0;
	width: unset;
}

#price #area .area-box li>dl>dt .slick-dots li {
	display: inline-block;
	margin: 0 5px;
	width: 40px;
	height: 4px;
}

#price #area .area-box li>dl>dt .slick-dots button {
	padding: 0;
	color: transparent;
	outline: none;
	width: 40px;
	border: unset;
	height: 4px;
	display: block;
	background: #fff;
	cursor: pointer;
}

#price #area .area-box li>dl>dt .slick-dots .slick-active button {
	background: #cb0c00;
}

#price #area .area-box li>dl>dt .slick-dots li button::before {
	content: unset;
}

#price #area .area-box li>dl>dt .slick-dotted.slick-slider {
	margin-bottom: 20px;
}

#price #area .area-box li>dl>dd {
	padding: 0 14px 16px;
	color: #000;
	margin: 10px;
}

#price #area .area-box li>dl>dd span {
	font-size: 0.8em;
}

#price #area .area-box li>dl>dd a {
	color: #000;
}

#price #area .area-box li>dl>dd dl {
	padding: 10px;
}

#price #area .area-box li>dl>dd dl dt {
	font-weight: bold;
	border-bottom: dotted 1px #737373;
	font-size: 20px;
	color: #000;
}

#price #area .area-box li>dl>dd dl dt:not(:first-child) {
	margin-top: 20px;
}

#price #area .area-box li>dl>dd dl dd {
	font-size: 0.82em;
}

/*-- ▼ company.html ▼ --*/

#company .information {
	border: solid 1px #c5c5c5;
	width: 80%;
	margin: 90px auto 0;
}

@media screen and (max-width: 1000px) {
	#company .information {
		width: 96%;
		margin-bottom: 40px;
	}
}

#company .information dl {
	display: flex;
	border-bottom: solid 1px #444;
	padding: 1em 1.5em;
	background-color: #000;
}

@media screen and (max-width: 1000px) {
	#company .information dl {
		padding: 1em;
		flex-direction: column;
	}
}

#company .information dl:nth-child(2n) {
	background-color: #151515;
}

#company .information dl:nth-child(3) dd {
	display: flex;
}

#company .information dl:nth-child(3) dd div:last-of-type {
	margin-left: 1em;
}

#company .information dl:last-child {
	border-bottom: none;
}

#company .information dl dt {
	border-right: solid 1px #c5c5c5;
	align-items: center;
	display: flex;
	width: 170px;
	font-weight: bold;
	padding-right: 2em;
}

@media screen and (max-width: 1000px) {
	#company .information dl dt {
		border-right: unset;
		width: 100%;
		padding-right: unset;
		border-bottom: dotted 1px #ccc;
		padding-bottom: 0.4em;
		margin-bottom: 0.4em;
	}
}

#company .information dl dd {
	font-size: 14px;
	margin-left: 2em;
	width: calc(100% - 170px);
}

@media screen and (max-width: 1000px) {
	#company .information dl dd {
		margin-left: 1em;
		font-size: 14px;
		width: auto;
	}
}

/*-- ▼ reservation.html ▼ --*/



#reservation .form-box {
	margin: 90px auto 0;
	width: 90%;
	max-width: 900px;
	background-color: rgba(10, 10, 10, 0.85);
	padding: 20px;
}

@media screen and (max-width: 1000px) {
	#reservation .form-box {
		width: 96%;
		margin-bottom: 40px;
	}
}

#reservation .form-box form {
	margin: 0 auto;
}

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

@media screen and (max-width: 1000px) {
	#reservation .form-box .form-row {
		padding: 20px 0;
	}
}

@media screen and (max-width: 1000px) {
	#reservation .form-box .form-row {
		flex-direction: column;
	}
}

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

#reservation .form-box .form-label {
	display: flex;
	align-items: center;
	width: 420px;
	font-size: 14px;
}

@media screen and (max-width: 1000px) {
	#reservation .form-box .form-label {
		width: 100%;
		justify-content: flex-start;
		margin-bottom: 10px;
	}
}

#reservation .form-box .title {
	background-color: #353535;
	padding: 0.5em;
	margin-top: 20px;
}

#reservation .form-box .note2 {
	font-size: 0.8em;
}

#reservation .form-box .form-label label {
	font-weight: bold;
	color: #b5b5b5;
}

#reservation .form-box .form-label span {
	margin-left: 10px;
	padding: 2px 6px 3px;
	border-radius: 3px;
	font-size: 10px;
	font-weight: bold;
	color: #fff;
	background-color: #cb0c00;
}

#reservation .form-box input,
#reservation .form-box textarea {
	background-color: #f2f4f5;
	border: none;
	border-radius: 50px;
	padding: 15px 20px;
	font-size: 16px;
	color: #333;
	flex-grow: 1;
	width: 100%;
}

#reservation .form-box input[type="date"]::-webkit-date-and-time-value {
	text-align: left !important;
}

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

	#reservation .form-box input,
	#reservation .form-box textarea {
		width: 100%;
		margin-top: 10px;
	}
}

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

#reservation .form-box select {
	background-color: #f2f4f5;
	border: none;
	border-radius: 50px;
	padding: 15px 20px;
	font-size: 16px;
	color: #333;
	width: 100%;
	cursor: pointer;
}

#reservation .selectbox {
	width: 100%;
	display: inline-flex;
	align-items: center;
	position: relative;
}

#reservation .selectbox::after {
	position: absolute;
	right: 15px;
	width: 10px;
	height: 7px;
	background-color: #535353;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	content: '';
	pointer-events: none;
}

@media screen and (max-width: 1000px) {
	#reservation .form-box select {
		width: 100%;
	}
}

#reservation .form-box button {
	cursor: pointer;
	padding: 15px 45px;
	border: none;
	border-radius: 3px;
	color: #fff;
	font-weight: bold;
	background-color: #cb0c00;
	margin: 20px auto 0;
}

#reservation .form-box .form-row div:last-child {
	width: 100%;
	background-color: #000;
	padding: 0.6em;
	border-radius: 6px;
}

#reservation .note {
	width: 90%;
	max-width: 900px;
	margin: 90px auto -70px;
}

#reservation .note-complete {
	width: 90%;
	max-width: 900px;
	margin: 90px auto 0;
	background-color: #171717;
	padding: 1.5em;
}

#reservation .btn-top {
	cursor: pointer;
	padding: 15px 25px;
	border: none;
	border-radius: 3px;
	color: #fff;
	font-weight: bold;
	background-color: #cb0c00;
	margin: 40px auto 0;
	display: block;
	width: 260px;
	text-align: center;
	text-decoration: none;
}

/*-- ▼ recruit.html ▼ --*/

#recruit h3 {
	width: 80%;
	font-size: 30px;
	margin: 80px auto 20px auto;
	border-left: solid 6px #cb0c00;
	padding-left: 0.3em;
}

@media screen and (max-width: 1000px) {
	#recruit h3 {
		width: 92%;
		font-size: 22px;
	}
}

#recruit .text {
	width: 80%;
	margin: 0 auto 20px;
}

@media screen and (max-width: 1000px) {
	#recruit .text {
		width: 92%;
	}
}

#recruit .information {
	border: solid 1px #c5c5c5;
	width: 80%;
	margin: 0 auto;
}

@media screen and (max-width: 1000px) {
	#recruit .information {
		width: 96%;
		margin-bottom: 40px;
	}
}

#recruit .information dl {
	display: flex;
	border-bottom: solid 1px #444;
	padding: 1em 1.5em;
	background-color: #000;
}

@media screen and (max-width: 1000px) {
	#recruit .information dl {
		padding: 1em;
		flex-direction: column;
	}
}

#recruit .information dl:nth-child(2n) {
	background-color: #151515;
}

#recruit .information dl:nth-child(3) dd {
	display: flex;
}

#recruit .information dl:nth-child(3) dd div:last-of-type {
	margin-left: 1em;
}

#recruit .information dl:last-child {
	border-bottom: none;
}

#recruit .information dl dt {
	border-right: solid 1px #c5c5c5;
	align-items: center;
	display: flex;
	width: 200px;
	font-weight: bold;
	padding-right: 2em;
}

@media screen and (max-width: 1000px) {
	#recruit .information dl dt {
		border-right: unset;
		width: 100%;
		padding-right: unset;
		border-bottom: dotted 1px #ccc;
		padding-bottom: 0.4em;
		margin-bottom: 0.8em;
		border-left: solid 4px #f00;
		padding-left: 0.4em;
	}
}

#recruit .information dl dd {
	font-size: 14px;
	margin-left: 2em;
	width: calc(100% - 200px);
	line-height: 1.8;
}

@media screen and (max-width: 1000px) {
	#recruit .information dl dd {
		margin-left: 0.5em;
		font-size: 14px;
		width: auto;
		margin-right: 0.5em;
	}
}

/*-- ▼ reviews.html ▼ --*/
#reviews {
	position: relative;

	.box {
		background-color: rgba(10, 10, 10, 0.85);
		width: 90%;
		margin: 90px auto 0;
		padding: 30px;
		line-height: 0;
		column-count: 3;
		column-gap: 0px;
		max-width: 1200px;

		li {
			margin: 0;
			width: 100% !important;
			height: auto !important;

			img {
				width: 98%;
				margin-bottom: 8px;
				border: solid #fff 1px;
			}
		}


	}
}

@media screen and (max-width: 1000px) {
	#reviews .box {
		column-count: 1;
		column-gap: 0px;
	}
}


/*-- ▼ faq.html ▼ --*/

#faq .faq-box {
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	margin: 90px auto 0;
}

@media screen and (max-width: 1000px) {
	#faq .faq-box {
		width: 96%;
	}
}

#faq .faq-box li {
	border: solid 1px #c5c5c5;
	width: calc(calc(100%/2) - 20px);
	margin-bottom: 40px;
	background-color: #ccc;
}

@media screen and (max-width: 1000px) {
	#faq .faq-box li {
		width: 100%;
		margin-bottom: 20px;
	}
}

#faq .faq-box li:nth-child(odd) {
	margin-right: 40px;
}

@media screen and (max-width: 1000px) {
	#faq .faq-box li:nth-child(2n+1) {
		margin-right: 0;
	}
}

#faq .faq-box li dl dt {
	padding: 14px;
	font-weight: bold;
	border-bottom: solid 1px #c6c6c6;
	font-size: 16px;
	background-image: url(../images/webp/menu_bg.webp);
	background-color: #000;
}

#faq .faq-box li dl dt span {
	background-color: #fff;
	color: #000;
	padding: 0.2em;
	display: inline-block;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	text-align: center;
	margin-right: 6px;
}

#faq .faq-box li dl dd {
	padding: 14px;
	color: #000;
}

#faq .faq-box li dl dd a {
	color: #000;
}

/*-- ▼ staff.html ▼ --*/

#staff .staff-box {
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	margin: 90px auto 0;
	max-width: 1200px;
}

@media screen and (max-width: 1000px) {
	#staff .staff-box {
		width: 96%;
	}
}

#staff .staff-box li {
	width: calc(calc(100%/2) - 20px);
	margin-bottom: 40px;
	background-color: #E6E8EB;
	border-radius: 30px;
}

@media screen and (max-width: 1000px) {
	#staff .staff-box li {
		width: 100%;
		margin-bottom: 20px;
	}
}

#staff .staff-box li:nth-child(odd) {
	margin-right: 40px;
}

@media screen and (max-width: 1000px) {
	#staff .staff-box li:nth-child(2n+1) {
		margin-right: 0;
	}
}

#staff .staff-box li>dl>dt {
	padding: 14px;
	font-weight: bold;
	border-bottom: solid 1px #737373;
	font-size: 30px;
	color: #000;
	line-height: 1.1;
	margin: 10px;
}

#staff .staff-box li>dl>dt img {
	width: 100%;
	display: block;
	margin-top: 8px;
}

#staff .staff-box li>dl>dt em {
	display: block;
	font-size: 0.5em;
	font-weight: normal;
}

#staff .staff-box li>dl>dt span {
	display: block;
	font-size: 0.45em;
	font-weight: normal;
	text-align: right;
	margin-top: 1em;
}

#staff .staff-box li>dl>dd {
	padding: 0 14px 16px;
	color: #000;
}

#staff .staff-box li>dl>dd a {
	color: #000;
}

#staff .staff-box li>dl>dd dl {
	padding: 10px;
}

#staff .staff-box li>dl>dd dl dt {
	font-weight: bold;
	border-bottom: dotted 1px #737373;
	font-size: 20px;
	color: #000;
}

#staff .staff-box li>dl>dd dl dt:not(:first-child) {
	margin-top: 20px;
}


#staff .staff-box li>dl>dd dl dd {
	font-size: 0.82em;
}

/*-- ▼ master.html ▼ --*/

#master h2::before {
	content: "";
	width: 223px;
	height: 28px;
	background-image: url(../images/webp/text_bushido.webp);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 1;
	bottom: -25px;
	left: 0;
	right: 0;
	margin: auto;
}

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

	#master h2::before {
		background-size: 80%;
	}
}

#master h2+p {
	text-align: center;
	width: 80%;
	margin: 60px auto;
}

#master section {
	display: flex;
	margin-top: 40px;
}

@media screen and (max-width: 1000px) {
	#master section {
		margin-top: 60px;
		flex-direction: column;
	}
}

#master section:nth-child(2n)>div:first-child {
	order: 2;
}

@media screen and (max-width: 1000px) {
	#master section:nth-child(2n)>div:first-child {
		order: unset;
	}
}

#master section>div {
	width: 48%;
}

@media screen and (max-width: 1000px) {
	#master section>div {
		width: 100%;
	}
}

#master section>div+div {
	width: 52%;
}

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

	#master section>div+div {
		width: 96%;
		margin: -20px auto;
	}

}

#master section>div+div img {
	width: 100%;
}

#master section>div:first-child {
	background-image: url(../images/webp/master_bg.webp);
}

#master section>div div {
	position: relative;
	max-width: 400px;
	margin: 60px 30px 0 auto;
	width: 80%;
}

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

	#master section>div div {
		margin: 40px 30px 40px 40px;
	}

}

#master section:nth-child(2n)>div div {
	margin: 60px auto 0 30px;
}

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

	#master section:nth-child(2n)>div div {
		margin: 40px 30px 40px 40px;
	}

}

#master section>div div::after {
	content: "";
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: -90px;
	left: -90px;
}

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

	#master section>div div::after {
		left: unset;
		right: -30px;
		top: -70px;
		background-size: 80%;
	}

}

#master section:nth-child(2n)>div div::after {
	right: -90px;
	left: unset;
}

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

	#master section:nth-child(2n)>div div::after {
		left: unset;
		right: -30px;
		top: -70px;
		background-size: 80%;
	}

}

#master section.sign>div div::after {
	width: 56px;
	height: 226px;
	background-image: url(../images/webp/text_sign.webp);
}

#master section.tea>div div::after {
	width: 52px;
	height: 213px;
	background-image: url(../images/webp/text_tea.webp);
}

#master section.learn>div div::after {
	width: 56px;
	height: 217px;
	background-image: url(../images/webp/text_learn.webp);
}

#master section.master>div div::after {
	width: 56px;
	height: 242px;
	background-image: url(../images/webp/text_master.webp);
}

#master section.calligraphy>div div::after {
	width: 50px;
	height: 185px;
	background-image: url(../images/webp/text_calligraphy.webp);
}

#master section.harakiri>div div::after {
	width: 46px;
	height: 99px;
	background-image: url(../images/webp/text_harakiri.webp);
}

#master section>div div h3 {
	font-size: 32px;
}

#master section>div div h3 {
	font-size: 28px;
}

.batsu {
	position: relative;
	margin-left: 1em;
}

.batsu::before,
.batsu::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -0.5em;
	width: 1px;
	height: 70px;
	background: #cb0c00;
}

.batsu::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.batsu::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

#master section>div div h3::first-letter {
	font-size: 1.2em;
	color: #cb0c00;
}

#master section>div div .text {
	margin-top: 10px;
	line-height: 1.6em;
}

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

	#master section>div div .text {
		width: 90%;
	}
}

/*-- ▼ cautions.html ▼ --*/

#cautions .cautions-box {
	background-color: rgba(10, 10, 10, 0.85);
	width: 80%;
	margin: 90px auto 0;
	padding: 10px 30px;
}

@media screen and (max-width: 1000px) {
	#cautions .cautions-box {
		width: 96%;
	}
}

#cautions .cautions-box section {
	margin-top: 40px;
}

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

	#cautions .cautions-box section {
		margin-top: 30px;
	}
}

#cautions .cautions-box section h3 {
	position: relative;
}

#cautions .cautions-box section h3::after {
	content: "";
	display: block;
	width: 80px;
	height: 1px;
	background-color: #797979;
	position: absolute;
	bottom: -10px;
}

#cautions .cautions-box section ul {
	margin-top: 1.6em;
	counter-reset: number 0;
}

#cautions .cautions-box section ul li {
	position: relative;
	margin-top: 1.2em;
	padding-left: 2em;
	font-size: 14px;
}

#cautions .cautions-box section ul li::before {
	counter-increment: number 1;
	content: counter(number);
	display: block;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.4em;
	text-align: center;
	background-color: #cb0c00;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 2.25rem;
	color: #fff;
	font-weight: bold;
	z-index: 5;
	transform: scale(1);
	top: 0;
	left: 0;
	position: absolute;
}

#cautions .cautions-box section ul li ul {
	margin-top: 0.6em;

}

#cautions .cautions-box section ul li ul li {
	margin-top: 0.6em;
}

#cautions .cautions-box section ul li ul li::before {
	background-color: #252525;
}

#cautions .cautions-box section ul li .pic-box {
	display: flex;
	flex-wrap: wrap;
}

#cautions .cautions-box section ul li img {
	width: calc(50% - 10px);
	margin: 5px;
}

@media screen and (max-width: 1000px) {
	#cautions .cautions-box section ul li img {
		width: 100%;
	}
}

/*-- ▼ event-detail.html ▼ --*/

#l-bottom .event-detail-box h2 {
	text-align: center;
	font-size: 20px;
	position: relative;
}

#event-detail {
	.event-detail-box {
		display: flex;
		background-color: rgba(10, 10, 10, 0.85);
		width: 80%;
		margin: 30px auto;
		padding: 30px;

		.pic-box {
			width: 40%;

			img {
				width: 100%;
			}
		}

		.event-box {
			width: 100%;
			padding: 30px 0 0 0;

			.time {
				background-color: #000;
				text-align: right;
				padding: 0.4em;
				margin-top: 20px;
				line-height: 1em;
			}

			.txt {
				margin-top: 30px;
				max-height: 400px;
				overflow-y: auto;
				padding: 0.2em;
			}


		}

		.pic-box+.event-box {
			width: 60%;
			padding-left: 30px;
		}
	}

	.schedule-list-box {
		position: relative;
		width: 80%;
		margin: 0 auto;

		@media (max-width: 1000px) {
			width: 96%;
		}

		.list {
			width: 100%;

			li {
				margin-top: 10px;

				dt.day {
					background-color: #cb0c00;
					padding: 0.3em 0.5em;
					border: solid 2px #000;
				}

				dd.schedule-box {
					position: relative;

					table {
						border-collapse: collapse;
						width: 100%;
						padding: 0;

						tbody {
							margin: 0;

							td {
								border: solid 2px #000;
								height: auto;
								background-color: #333;
								text-align: center;
								vertical-align: middle;
								width: auto;
								position: relative;
								padding: 0.4em;

								.btn {
									position: relative;
									min-width: 60px;
									display: block;
									background-color: #cb0c00;
									border-bottom: 3px solid #770a03;
									color: #fff;
									text-decoration: none;
									border-radius: 100vh;
									max-width: 200px;
									margin: 0 auto;
									font-size: 0.8em;
									padding: 0.2em 0;
									font-weight: bold;

									.fa-position-right {
										position: absolute;
										top: calc(50% - 0.5em);
										right: 0.5em;
									}
								}
							}
						}
					}
				}
			}
		}
	}

	.event-btn {
		display: flex;
		justify-content: center;
		margin-top: 30px;

		>a {
			max-width: 400px;
			display: block;
			border-radius: 4px;
			background: #cb0c00;
			text-decoration: none;
			color: #fff;
			padding: 0.8em 0.8em;
			line-height: 1;
		}
	}

}

@media screen and (max-width: 1000px) {
	#event-detail .event-detail-box {
		width: 96%;
	}
}

@media screen and (max-width: 600px) {
	#event-detail .event-detail-box {
		flex-direction: column;
		padding: 20px;
		margin-top: 0;

		.pic-box {
			width: 100%;
			order: 2;
			margin-top: 30px;
		}

		.event-box {
			width: 100%;
			padding-left: 0;
		}

		.pic-box+.event-box {
			width: 100%;
			padding-left: 0;
		}

	}
}

/*-- ▼ access.html ▼ --*/

#access .access-box {
	background-color: rgba(10, 10, 10, 0.85);
	width: 80%;
	margin: 90px auto 0;
	padding: 30px;
}

@media screen and (max-width: 1000px) {
	#access .access-box {
		width: 96%;
		padding: 30px 10px;
	}
}

#access .access-box section {
	margin-top: 40px;
}

@media screen and (max-width: 1000px) {
	#access .access-box section {
		margin-top: 30px;
	}
}

#access .access-box iframe {
	width: 100%;
	height: 600px;
}

@media screen and (max-width: 1000px) {
	#access .access-box iframe {
		height: 300px;
	}
}

#access .access-box .location {
	margin-top: 10px;
}

#access .access-box .location li:not(:first-child) {
	margin-top: 20px;
}

#access .access-box .map-btn {
	display: block;
	background: #cb0c00;
	color: #fff;
	text-decoration: none;
	width: fit-content;
	padding: 0.5em 2em;
	border-radius: 100px;
	margin-top: 10px;
}

#access .access-box .location li dl dd {
	border-top: dotted 1px #ccc;
	display: block;
	margin-top: 4px;
	padding-top: 4px;
}

footer {
	border-top: solid 1px #ff0908;
	padding-top: 40px;
	color: #fff;
}

footer .footer-ban {
	display: block;
	margin: 0 auto 20px;
	max-width: 340px;
	width: 90%;
}

footer .fixed-btn {
	position: fixed;
	bottom: 10px;
	right: 140px;
	width: 130px;
	z-index: 10;
}

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

	footer .fixed-btn {
		right: 0px;
		width: 75px;
		bottom: 0px;
		z-index: 1000;
	}

}

footer .box {
	width: 86%;
	position: relative;
	margin: 0 130px 0 auto;
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 1000px) {
	footer .box {
		width: 100%;
		margin: 0;
		display: block;
		padding: 0 10px;
	}
}

footer .box .left {
	position: relative;
}

footer .box .left img {
	max-width: 250px;
}

footer .box .left p {
	margin: 10px 0;
}

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

	footer .box .left p {
		margin: 8px 0;
		font-size: 0.9em;
	}

}

footer .box .left p em {
	display: block;
	font-weight: bold;
}

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

	footer .box .left p em {
		margin-bottom: 0;
	}
}

footer .box .left p span {
	font-size: 1.4rem;
	display: block;
}

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

	footer .box .left p span {
		font-size: 1.2rem;
	}

}

footer .box .right {
	position: relative;
}

@media screen and (max-width: 1000px) {
	footer .box .right {
		display: none;
	}
}

footer .box .right .list {
	display: flex;
	margin-right: 20px;
}

@media screen and (max-width: 1200px) {
	footer .box .right .list {
		flex-wrap: wrap;
	}
}

footer .box .right .list li {
	margin: 0 10px;
}

footer .box .right .list li a {
	color: #000;
	text-decoration: none;
}

footer .box .right .list li a:hover {
	text-decoration: underline;
}

footer small {
	text-align: center;
	display: block;
	padding: 20px 0;
}

footer small a {
	color: #fff;
	text-decoration: none;
}

/*カレンダー*/
.calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 94%;
	max-width: 1000px;
	margin-bottom: 20px;
	color: #fff;
	margin: 40px auto 10px;
}

.arrow {
	font-size: 24px;
	cursor: pointer;

	>a {
		color: #fff;
		text-decoration: none;
	}
}

.month-year {
	font-size: 24px;
	font-weight: bold;
}

table.calendar {
	width: 94%;
	max-width: 1000px;
	border-collapse: collapse;
	background-color: #333;
	border-radius: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	margin: 0 auto;
}

thead th {
	background-color: #444;
	padding: 10px;
	border: 1px solid #555;
	text-align: center;
}

tbody td {
	height: 80px;
	background-color: #333;
	border: 1px solid #555;
	text-align: center;
	vertical-align: top;
	width: calc(100% / 7);
	position: relative;
	padding-bottom: 6px;
}

.single-day-event,
.multi-day-event {
	font-size: 13px;
	display: block;
	margin-top: 5px;
	text-decoration: none;
	color: white;
	position: relative;
	width: 100%;
	z-index: 10;
	padding-left: 0.3em;
	padding-right: 0.3em;
	box-sizing: border-box;
	position: relative;
	height: 20px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;

	&:hover {
		text-decoration: underline;
	}
}

.single-day-event {
	background-color: #000;
}

.multi-day-event {
	background-color: #f31232;
}

.inner {
	position: absolute;
	top: 0;
	left: 0.5em;
	letter-spacing: 0.1em;

	&:hover {
		text-decoration: underline;
	}
}

.day1 {
	width: 100%;
}

.day2 {
	width: calc(200% + 3px);
}

.day3 {
	width: calc(300% + 6px);
}

.day4 {
	width: calc(400% + 9px);
}

.day5 {
	width: calc(500% + 12px);
}

.day6 {
	width: calc(600% + 15px);
}

.day7 {
	width: calc(700% + 18px);
}

#top-widget {
	position: relative;
	padding-top: 60px;

	.widget-wrap {
		display: flex;
		flex-wrap: wrap;
		gap: 40px 10px;
		margin-right: 20px;
		margin-top: 50px;

		@media (max-width: 1300px) {
			flex-direction: column;
			margin: 50px 10px 0;
		}

		.widget-wrap-inner {
			width: calc(calc(100% / 3) - 7px);

			@media (max-width: 1300px) {
				width: 100%;
			}

			.bokunWidget {
				position: relative;
				height: 500px;
				overflow-y: scroll;

				@media (max-width: 1300px) {
					height: 400px;
					overflow-y: scroll;
				}
			}

			h3 {
				background: #cb0c00;
				padding: 0.5em;
				line-height: 1.2em;
				border-radius: 4px;
				margin-bottom: 5px;
			}
		}
	}
}