@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,500,600,700);

:root {
	--ac_color: #0a963f;
}


html {
	font: normal normal normal 100%/1 'Noto Sans JP', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic Pro', '遊ゴシック', 'Yu Gothic', 'メイリオ', 'Meiryo', 'Osaka', 'MS PGothic', 'ＭＳ Ｐゴシック', sans-serif;
	/* scroll-behavior: smooth; */
}

body {
	margin: 0;
	padding: 0;
	background-color: #FFF;
	position: relative;
	font-weight: 400;
	color: #333;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-webkit-font-feature-settings: "palt";
}

a {
	color: #000;
	text-decoration: underline;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

a:hover {
	text-decoration: none;
	color: rgb(10, 142, 43);
}

a,
input,
select,
textarea,
button,
*:before,
*:after {
	-webkit-transition: all 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: all 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
	interpolation-mode: bicubic;
}

.mb40 {
	margin-bottom: 40px;
}

.cen {
	text-align: center;
}

.fsMin {
	font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho Pro', '游明朝体', 'Yu Mincho', YuMincho, 'MS P明朝', 'ＭＳ Ｐ明朝', sans-serif;
}

h4 {
	margin: 60px auto 20px;
	font-weight: 600;
	color: #cb0000;
}

.cnt6vw {
	padding: 40px 6vw;
	line-height: 1.2rem;
}

.bold {
	font-weight: bold;
}

.flexwrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

@media screen and (min-width: 640px) {
	.sp {
		display: none;
	}
}

/*------------------------------------*/


header {
	width: 100%;
	height: 80px;
	padding: 0 6vw;
	display: flex;
	background-color: rgba(0, 0, 0, .4);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	transition: all 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

.scroll header {
	height: 80px;
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, .3);
}

.header-logo {
	font-size: 1.4rem;
	font-weight: 500;
	max-width: 280px;
	flex-basis: 280px;
	display: block;
	color: #fff;
}

.header-nav {
	display: flex;
}

.header-nav__list {
	display: flex;
	align-items: center;
}

.header-nav__item {
	margin-right: 30px;
	position: relative;
}

.header-nav__anchor {
	display: flex;
	height: 40px;
	/* font-size: 1.4rem; */
	font-weight: 500;
	line-height: 1.6;
	text-decoration: none;
	color: #fff;
	align-items: center;
}

#header-nav__menu {
	display: none;
}

#spnav {
	display: none;
}

.header-nav__list a {
	display: flex;
	justify-content: center;
}

/* ドロップダウンメニュー */
.drop-menu {
	position: relative;
}

.drop-menu-list {
	background-color: #fff;
	/* ドロップダウンメニューの背景色 */
	left: 0;
	position: absolute;
	top: 100%;
	visibility: hidden;
	/* 下層メニューを非表示 */
	width: max-content;
	z-index: 1;
	padding: 0 10px;
}

/* メニューアイテムのホバースタイル */
.header-nav__item:hover .drop-menu-list {
	opacity: 0.8;
	/* 不透明度を最大に */
	transition: opacity .3s, visibility .3s;
	/* アニメーション設定 */
	visibility: visible;
	/* 下層メニューを表示 */
}

.drop-menu-item {
	margin: 20px 0;
	text-align: left;
}

.drop-menu-item a {
	text-decoration: none;
	justify-content: left;
}


/* gnav */
.menu {
	position: fixed;
	display: none;
	width: 40px;
	height: 40px;
	right: 30px;
	top: 30px;
	cursor: pointer;
	margin: 0px;
	z-index: 40;
}

.menu.spv {
	display: none;
}

.menu.spv.view {
	display: block;
}

.menu .icon, .menu::before, .menu::after {
	position: absolute;
	top: 0;
	left: 12px;
	width: 15px;
	height: 2px;
	background-color: #FFF;
	text-indent: -9999px;
	display: inline-block;
	transition: all 0.4s;
	box-sizing: border-box;
}

.menu::after {
	content: "";
	top: 16px;
	background: #FFF;
}

.menu::before {
	content: "";
	top: 24px;
	background: #FFF;
}

.menu .open {
	display: block;
}

.menu .close {
	display: none;
}

.menu.on::before {
	transform: translateY(-18px) rotate(-45deg);
	background-color: #FFF;
}

.menu.on::after {
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	transition: 0.2s;
}

.menu.on .icon {
	transform: translateY(5px) rotate(45deg);
	background-color: #FFF;
}

.menu.on .open {
	display: none;
}

.menu.on .close {
	display: block;
}

#spnav {
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, 1);
	position: fixed;
	top: 0;
	left: 0;
	/* z-index: 30; */
	opacity: 0;
	/* pointer-events: none; */
	box-sizing: border-box;
	transition: opacity 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

#spnav.view {
	opacity: 1;
	left: auto;
	right: 0;
	top: 0;
	z-index: 30;
}


@media screen and (max-width: 1200px) {
	.menu {
		right: 0;
		top: 0;
		width: 10vw;
		height: 10vw;
		/* background: #000; */
		display: block;
	}

	.menu .icon, .menu::before, .menu::after {
		top: 3vw;
		left: 3vw;
		width: 4vw;
	}

	.menu::after {
		top: 4.5vw;
	}

	.menu::before {
		top: 6vw;
	}

	.menu.on::before {
		transform: translateY(-1.5vw) rotate(-45deg);
		background-color: #FFF;
	}

	.menu.on::after {
		filter: alpha(opacity=0);
		-moz-opacity: 0;
		opacity: 0;
		transition: 0.2s;
	}

	.menu.on .icon {
		transform: translateY(1.5vw) rotate(45deg);
		background-color: #FFF;
	}
}

@media screen and (max-width: 414px) {
	.menu {
		width: 14.5vw;
		height: 14.5vw;
	}

	.menu .icon, .menu::before, .menu::after {
		top: 4.6vw;
		left: 4.1vw;
		width: 6.2vw;
	}

	.menu::after {
		top: 7vw;
	}

	.menu::before {
		top: 9.37vw;
	}

	.menu.on::before {
		transform: translateY(-2.3vw) rotate(-45deg);
		background-color: #FFF;
	}

	.menu.on::after {
		filter: alpha(opacity=0);
		-moz-opacity: 0;
		opacity: 0;
		transition: 0.2s;
	}

	.menu.on .icon {
		transform: translateY(2.3vw) rotate(45deg);
		background-color: #FFF;
	}
}

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

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

	#spnav {
		width: 100%;
		top: 14.5vw;
	}
}


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

	#header-nav__menu {
		display: block;
		position: fixed;
		top: 0px;
		right: 0;
		z-index: 101;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
		transition: top 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
	}

	.spnav_inner {
		width: 100%;
		height: 100%;
		padding: 100px 6vw;
		box-sizing: border-box;
	}

	.spnav__wrap {
		width: 100%;
		max-width: 800px;
		min-height: 400px;
		margin: 0 auto;
		display: flex;
		overflow: auto;
		justify-content: space-between;
		align-items: center;
	}

	.spnav__main {
		max-width: 50%;
		flex-basis: 50%;
		opacity: 0;
		transform: translateY(10px);
		transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1) 300ms;
	}

	.spnav__main,
	.spnav__sub,
	.spnav__other {
		opacity: 1;
		transform: translateY(0);
	}

	.spnav__main__item {
		margin-top: 20px;
	}

	.spnav__main__item:first-child {
		margin-top: 0;
	}

	.spnav__main__item a {
		height: 60px;
		display: flex;
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 1.4;
		text-decoration: none;
		color: rgba(255, 255, 255, 1);
		align-items: center;
		letter-spacing: .1em;
	}

	.spnav__main__item a .en {
		display: flex;
		margin-left: 20px;
		font-size: 1.3rem;
		font-weight: 700;
		align-items: center;
	}

	.spnav__main__item a .en:before {
		content: "";
		width: 20px;
		max-width: 20px;
		flex-basis: 20px;
		height: 1px;
		margin-right: 20px;
		display: block;
		background-color: rgba(255, 255, 255, .5);
	}

	.spnav__sub {
		max-width: 40%;
		flex-basis: 40%;
		font-size: 1.4rem;
	}

	.spnav__sub {
		/* opacity: 0; */
		transform: translateY(10px);
		transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1) 350ms;
	}

	.spnav__bnr__item {
		margin-bottom: 10px;
	}

	.spnav__bnr__item a {
		height: 80px;
		padding: 0 30px;
		display: flex;
		background-color: rgba(255, 255, 255, 1);
		position: relative;
		font-weight: 700;
		line-height: 1.6;
		text-decoration: none;
		align-items: center
	}

	.spnav__bnr__item a:after {
		content: "";
		border: 4px solid transparent;
		border-left: 6px solid rgba(10, 142, 43, 1);
		position: absolute;
		top: calc(50% - 4px);
		right: 20px;
	}

	.spnav__bnr__item a:hover:after {
		transform: translateX(3px);
	}

	.spnav__other {
		margin-top: 40px;
		/* opacity: 0; */
		transform: translateY(10px);
		transition: all 300ms cubic-bezier(0.39, 0.575, 0.565, 1) 400ms;
	}

	.spnav__other__item {
		margin: 20px 0;
	}

	.spnav__other__item a {
		line-height: 1.8;
		text-decoration: none;
		color: rgba(255, 255, 255, 1);
	}

	.spnav__other__item a img {
		width: 30%;
	}

}


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

	#header {
		height: 100px;
	}

	#header-nav__menu {
		top: 10px;
	}

	.spnav-inner {
		padding: 80px 6vw;
	}

	.spnav__wrap {
		display: block;
	}

	.spnav__main,
	.spnav__sub {
		max-width: none;
	}

	.spnav__sub {
		margin-top: 40px;
	}

}


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

	#header {
		height: 60px;
	}

	/* .scroll header {
		height: 60px;
	}	 */

	.header-logo {
		width: 100%;
		/* max-width: 130px; */
		/* flex-basis: 130px; */
		/* height: 33px; */
	}

	#header-nav__menu {
		top: 0;
	}

	.spnav-inner {
		padding: 60px 6vw;
		box-sizing: border-box;
		-webkit-overflow-scrolling: touch;
	}

	.spnav__main__item {
		margin-top: 10px;
	}

	.spnav__main__item a {
		height: 50px;
		font-size: 1rem;
	}

	.spnav__main__item a .en {
		margin-left: 10px;
		font-size: 1.2rem;
	}

	.spnav__main__item a .en:before {
		margin-right: 10px;
	}

	.spnav__sub {
		font-size: 1rem;
	}

	.spnav__sub {
		margin-top: 20px;
	}

	.spnav__bnr__item a {
		height: 60px;
		padding: 0 20px;
	}

}


@media screen and (max-width: 480px) {
	#header {
		height: 60px !important;
	}

	.menu__icon {
		height: 60px;
	}
}


/*------------------------------------*/


#footer {
	background-color: rgba(0, 0, 0, 1);
	position: relative;
	font-size: .825rem;
}

#footer a {
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
}

#footer a:hover {
	text-decoration: underline;
}

.footer-info {
	height: 140px;
	padding: 0 6vw;
	display: flex;
	background-color: rgba(255, 255, 255, .1);
	align-items: center;
}

.footer__logo {
	max-width: 200px;
	flex-basis: 200px;
	/* height: 50px; */
	font-size: 1.4rem;
	margin-right: 5%;
	display: block;
	color: rgba(255, 255, 255, 1);
}

.footer__text {
	line-height: 1.8;
	color: rgba(255, 255, 255, 1);
}

.footer__text span {
	margin-right: 15px;
	display: inline-block;
}

.footer__contents {
	padding: 60px 0;
	display: flex;
	justify-content: space-between;
	color: #fff;
}

.footer__assets {
	/* width: 100%; */
	/* max-width: 60%; */
	/* flex-basis: 60%; */
	padding: 0 6vw;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	line-height: 1.8;
}

@media screen and (max-width: 1100px) {
	.footer__assets {
		/* max-width: 70%; */
		/* flex-basis: 70%; */
	}
}



.footer__nav {
	/* max-width: 30%; */
	/* flex-basis: 30%; */
	padding: 0 6vw;
	box-sizing: border-box;
}

.footer__nav__item {
	/* width: 30%; */
	color: #fff;
}

.footer__title a {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
}

.footer__wrap {
	display: flex;
	justify-content: space-between;
}

.footer__wrap .footer__list:first-child {
	margin-right: 40px;
}

.footer__list li {
	margin: 0 0 6px 0;
	line-height: 1.8;
}



.copyright {
	/* font-size: 1.1rem; */
	line-height: 1.8;
	color: rgba(255, 255, 255, 1);
	letter-spacing: normal !important;
}

#pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	opacity: 0;
	transition: opacity 300ms ease;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.scroll #pagetop {
	opacity: 1;
	/* pointer-events: auto; */
}

#pagetop a {
	text-align: center;
	/* max-width: 50px; */
	width: 50px;
	height: 50px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: #fff;
	border: solid 2px #000;
	border-radius: 50%;
}

#pagetop a::before {
	position: absolute;
	content: '';
	height: 10px;
	width: 10px;
	border-top: 3px solid #000;
	border-right: 3px solid #000;
	transform: translateY(20%) rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

#pagetop a:hover {
	background: #000;
	border: solid 1px #fff;
}

#pagetop a:hover::before {
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}

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

	.footer__contents {
		padding: 0;
		display: block;
	}

	.footer__nav,
	.footer__assets {
		padding: 60px 6vw;
		max-width: none;
	}

	.footer__nav {
		padding-top: 0;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}

	.footer__assets__btn {
		width: 200px;
		margin-right: 30px;
	}

	.copyright {
		width: 100%;
	}

}


@media screen and (max-width: 640px) {
	.footer-info {
		height: auto;
		padding: 30px 0;
		display: block;
	}

	.footer__logo {
		margin: 0 auto;
		margin-bottom: 10px;
		text-align: center;
	}

	.footer__text {
		text-align: center;
	}

	.footer__text span {
		margin-right: 0;
		display: block;
	}

	.footer__nav,
	.footer__assets__btn {
		display: none;
	}

	.footer__nav {
		padding-bottom: 40px;
	}

	.copyright {
		margin-top: 20px;
		display: block;
		text-align: center;
	}

	#pagetop {
		opacity: 0 !important;
		pointer-events: none !important;
	}

}


/*------------------------------------*/
.keyvisual {
	position: relative;
	top: 0;
	/* height: 40vw; */
	/* background: #eaeaea; */
	z-index: 1;
	width: 100%;
}

.keyvisual section {
	z-index: 2;
	position: absolute;
	top: 6vw;
	left: calc(50% - 630px);
	width: 1040px;
}

.keyvisual section figure {
	z-index: 1;
	line-height: 0;
	font-size: 0;
}

.keyvisual figure img {
	/* width: 100%; */
	height: 48vw;
	-o-object-fit: cover;
	object-fit: cover;
}

/* shiori記載 */
.sp_top {
	display: none;
}

/* ーーーーーー */

@media screen and (max-width: 1200px) {
	.keyvisual figure img {
		height: 76vw;
	}

}

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


	/* shiori記載 */
	.sp_top {
		display: block;
	}

	.pc_top {
		display: none;
	}

	/* ーーーーーー */


	.keyvisual figure img {
		height: 90vw;
	}

}

@media screen and (max-width: 414px) {
	.keyvisual figure img {
		height: 100vw;
	}
}

.keyvisual section h2 {
	font-size: 3rem;
	line-height: 1em;
	font-weight: 500;
	font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho Pro', '游明朝体', 'Yu Mincho', YuMincho, 'MS P明朝', 'ＭＳ Ｐ明朝', sans-serif;
}

.keyvisual section h2 span {
	margin-bottom: 14px;
	display: inline-block;
	background: rgb(255 255 255 / .5);
	padding: 0.15em 0.3em;
}

.swiper-button-next, .swiper-button-prev {
	color: #fff !important;
}

main {
	position: relative;
	clear: both;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: left;
	box-sizing: border-box;
}

@media screen and (max-width: 430px) {
	.keyvisual section {
		top: 45%;
		left: 4vw;
		width: 92vw;
	}

	.keyvisual section h2 {
		font-size: 1.2rem !important;
	}

	.keyvisual section h2 span {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 768px) {
	.keyvisual section {
		top: 30%;
		left: 4vw;
		width: 92vw;
	}

	.keyvisual section h2 {
		font-size: 3.2rem;
	}
}

@media screen and (max-width: 1320px) {
	.keyvisual section {
		top: 60%;
		left: 5%;
		width: 90%;
	}
}


/*------------------------------------*/
.top-bnr {
	padding: 20px 3vw;
	background-color: rgba(0, 0, 0, .05);
}

.attention {
	/* max-width: 1200px; */
	margin: 0 auto;
	padding: 0 6vw;
}

.attention__wrap {
	background: #d4d4d4;
	padding: 30px;
}

.attention h3 {
	font-weight: bold;
	margin-bottom: 10px;
}

.attention p {
	line-height: 1.4em;
	font-size: .9rem;
}

.top-bnr__wrap {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.top-bnr__set {
	width: 100%;
	/* max-width: calc(50% - 10px); */
	/* flex-basis: calc(50% - 10px); */
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
}

.top-bnr__item {
	width: calc(20% - 20px);

	max-width: calc(50% - 10px);
	flex-basis: calc(50% - 10px);
	display: flex;
}

.top-bnr__item::before {
	content: "";
	padding-top: 100%;
	display: block;
}

.top-bnr__item a {
	width: 100%;
	/* padding: 30px; */
	margin: 20px;
	display: flex;
	/* background-position: center center; */
	/* background-size: cover; */
	flex-direction: column;
	box-sizing: border-box;
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
	overflow: hidden;
}

.top-bnr__item a figure {
	transition: transform 0.3s ease;
	position: absolute;
	background-color: #000000;
}

.top-bnr__item a figure img {
	opacity: 0.8;
}

.top-bnr__item a figure::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: background-color 0.5s;
}

.top-bnr__item a:hover figure::before {
	background-color: rgba(0, 0, 0, 0.4);
}

.top-bnr__item a:hover figure {
	transform: scale(1.4);
}

.top-bnr__title_en {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: normal;
	align-self: flex-start;
	flex-direction: column;
	z-index: 2;
	margin-top: 10px;
	margin-left: 10px;
	text-shadow: 0 0 2px rgb(0, 0, 0, 0.2);
}

.top-bnr__title_jp {
	margin-top: 6px;
	margin-left: 10px;
	font-weight: 700;
	flex-direction: column;
	z-index: 2;
	text-shadow: 0 0 2px rgb(0, 0, 0, 0.2);
}

.top-bnr__more {
	margin-top: auto;
	align-self: flex-end;
	z-index: 2;
	margin-right: 10px;
	margin-bottom: 10px;
}

.top-bnr__more:before {
	background-color: rgba(255, 255, 255, 1);
}

.top-bnr__more span {
	height: 20px;
	padding-left: 30px;
	font-weight: 400;
	color: rgba(255, 255, 255, 1);
	letter-spacing: normal;
}

.top-bnr__more span:before {
	width: 20px;
	height: 20px;
	border-color: rgba(255, 255, 255, 1);
	top: 0;
}

.top-bnr__more span:after {
	border: 3px solid transparent;
	border-left: 5px solid rgba(255, 255, 255, 1);
	top: calc(50% - 3px);
	left: 9px;
}

@media screen and (max-width: 1024px) {
	.top-bnr__title_en {
		font-size: 1.2rem;
	}
}

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

	.top-bnr__item a {
		/* padding: 20px; */
	}
}


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

	.top-bnr__wrap {
		display: block;
	}

	.top-bnr__set {
		max-width: none;
		/* height: 300px; */
		/* margin-top: 40px; */
		flex-wrap: wrap;
	}
}


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

	.top-bnr__set {
		flex-wrap: wrap;
		height: auto;
		/* margin-top: 30px; */
	}

	.top-bnr__item {
		max-width: calc(50% - 5px);
		flex-basis: calc(50% - 5px);
	}

	.top-bnr__item a {
		/* padding: 15px; */
	}

	.top-bnr__title_en {
		font-size: 1rem;
	}

	.top-bnr__title_jp {
		font-size: 1rem;
	}

}

/*------------------------------------*/

.story {
	padding: 80px 6vw;
	background-color: rgba(0, 0, 0, 1);
}

.story__image {
	width: 580px;
	height: 580px;
	display: block;
	position: absolute;
	top: 0;
	left: calc(50% - 300px);
	z-index: 0;
}

.story__image__sp {
	display: none;
}

.story__contents {
	max-width: 1080px;
	height: 580px;
	margin: 0 auto;
	display: flex;
	position: relative;
	justify-content: space-between;
}

.story__contents:before {
	content: "";
	width: 580px;
	height: 580px;
	display: block;
	background-image: url(../../assets/story_pic.jpg);
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: calc(50% - 300px);
	z-index: 0;
}

.story__title__wrap {
	position: relative;
	z-index: 1;
	align-self: flex-start;
}

.story__title {
	font-size: 5rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 1);
	letter-spacing: normal;
}

.story__title span {
	margin-top: 20px;
	display: block;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: .1em;
}

.story__text__wrap {
	display: flex;
	position: relative;
	z-index: 2;
	flex-direction: column;
	align-self: flex-end;
}

.story__text {
	font-weight: 500;
	line-height: 2;
	color: rgba(255, 255, 255, 1);
}



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

	.story {
		padding: 60px 6vw;
	}

	.story__contents {
		height: 400px;
	}

	.story__contents:before {
		width: 400px;
		height: 400px;
		left: calc(50% - 220px);
	}

	.story__title {
		font-size: 4rem;
	}

	.story__title span {
		margin-top: 10px;
		font-size: 1.6rem;
	}

	.story__text {
		/* font-size: 1.4rem; */
	}

}


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

	.story__image__sp {
		display: block;
	}

	.story__contents {
		height: auto;
		display: block;
		position: relative;
		z-index: 0;
	}

	.story__contents:before {
		display: none;
	}

	.story__title__wrap {
		margin-top: -70px;
		display: flex;
		justify-content: space-between;
	}

	.story__title {
		align-self: flex-end;
	}

	.story__title br {
		display: none;
	}

	.story__text br {
		display: none;
	}

	.story__text__wrap {
		margin-top: 20px;
		display: block;
	}

}


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

	.story {
		padding: 40px 6vw;
	}

	.story__contents:after {
		display: none;
	}

	.story__title {
		line-height: 1.2;
	}

	.story__title br {
		display: block;
	}
}


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

	.story__title__wrap {
		margin-top: -60px;
	}

	.story__title {
		font-size: 3.5rem;
	}

	.story__title span {
		font-size: 1.5rem;
		line-height: 1.4;
		letter-spacing: .1em;
	}

	.story__text {
		line-height: 1.8;
	}

}




/*------------------------------------*/
.news {
	margin: 80px 0;
	padding: 0 6vw;
	display: flex;
	justify-content: space-between;
}

.news__section {
	width: 100%;
}

.news__title {
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news__title__name {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0;
	color: rgba(0, 0, 0, 1);
}

.news__title__name span {
	display: block;
	font-size: 1.2rem;
	font-weight: 700;
}

.news__list {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.news__list__item {
	border-top: 1px solid rgba(0, 0, 0, .1);
	height: 60px;
	padding-right: 20px;
	display: flex;
	text-decoration: none;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	font-size: .9em;
}

.news__list__date {
	max-width: 70px;
	flex-basis: 70px;
	line-height: 1.4;
	letter-spacing: normal;
	color: rgba(0, 0, 0, 1);
	transition: all 300ms ease;
}

.news__list__text {
	max-width: calc(100% - 70px - 40px);
	flex-basis: calc(100% - 70px - 40px);
	display: flex;
	line-height: 1.8;
	transition: all 300ms ease;
	align-items: center;
}

.news__list__text span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


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

	.news {
		margin: 60px 0;
		display: block;
	}

	.news__section {
		margin-bottom: 40px;
		max-width: none;
	}

	.news__section:last-child {
		margin-bottom: 0;
	}

}

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

	.news {
		margin: 40px 0;
	}

	.news__title {
		margin-bottom: 30px;
	}

	.news__list__item {
		height: auto;
		padding: 20px 0;
		display: block;
	}

	.news__list__text {
		width: 100%;
		margin-top: 10px;
		max-width: none;
		flex-basis: 100%;
		align-self: start;
	}

}


.access {
	padding: 0 6vw;
}

.access iframe {
	width: 100%;
}



/*------ カレンダー ---------------*/
#calendar {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 6vw;
}

table.calendar {
	width: calc(50% - 20px);
	;
	padding: 0;
	margin: 0 0 15px;
	font-size: 0.825em;
	border-collapse: collapse;
	/* width:100%; */
	/* border-right: solid 1px #eaeaea; */
	/*width:42%; float:left;  /* 横並びの時 */
}

/* 月タイトル */
table.calendar thead th, table.calendar thead td {
	color: #000;
	text-align: center;
	padding: 6px;
}

table.calendar thead td a {
	color: #fff;
	text-decoration: none;
}

table.calendar tbody {}

/* 曜日タイトル */
table.calendar tbody th {
	background: #f2f2f2;
	border-left: solid 1px #eaeaea;
	border-bottom: solid 1px #eaeaea;
	padding: 6px;
	text-align: center;
}

/* 日にち */
table.calendar tbody td {
	color: #333;
	background: #fff;
	border-left: solid 1px #eaeaea;
	border-bottom: solid 1px #eaeaea;
	border-right: solid 1px #eaeaea;
	width: 20px;
	height: 25px;
	text-align: center;
	vertical-align: middle;
	line-height: normal;
}

/* 休業日 */
table.calendar td.closed, .closed {
	color: #cb0000;
	background-color: #ffc8ca;
	border-left: solid 1px #eaeaea;
	border-bottom: solid 1px #eaeaea;
}

/* 臨時営業日 */
table.calendar td.working {
	background-color: #fff;
}

.sun {
	color: #cb0000 !important;
}

.sat {
	color: #0060ff !important;
}

.today {
	background-color: #D1C0A5;
}

@media screen and (max-width: 480px) {
	.flexwrap {
		display: block;
	}

	table.calendar {
		width: 100%;
	}
}

span.sns {
	font-size: 1.8rem;
	margin-right: 30px;
}

span.sns img {
	width: 40%;
	vertical-align: baseline;
}

@media screen and (max-width: 640px) {
	span.sns {
		margin-right: 0;
	}

	span.sns img {
		width: 30%;
	}
}

main#lower section {
	max-width: ;
	margin: 120px 0 60px;
	padding: 0 6vw;
}

#lower h2 {}

/*---------------*/
.page-title {
	height: 120px;
	margin: 0 6vw;
	display: flex;
	border-top: 3px solid rgba(0, 0, 0, 1);
	border-bottom: 3px solid rgba(0, 0, 0, 1);
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

.page_name,
.page_en {
	display: block;
	font-weight: 700;
	/* line-height: 1.6; */
	color: rgba(0, 0, 0, 1);
	letter-spacing: .1em;
}

.page_name {
	font-size: 2.5rem;
}

.page_en {
	font-size: 1.4rem;
}

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

	.page-title {
		height: 80px;
	}

	.page_name {
		font-size: 2rem;
	}

	.page_en {
		font-size: 1.2rem;
	}

	.layout-main-text {
		font-size: 1.4rem;
	}

}

.wrapper {
	margin: 2vw 6vw;
	font-size: 1rem;
	line-height: 1.8;
}

#lower h3 {
	font-size: 1.2rem;
	font-weight: 500;
	margin: 60px 0 20px;
}

#lower ul {
	list-style: disc inside;
}



/*------ お問い合わせ ---------------*/
.contact-wrap i span {
	background: #cb0000;
	padding: 3px 6px;
	color: #fff;
	font-size: .825rem;
	border-radius: 3px;
	margin-right: 10px;
}

.contact-wrap {
	max-width: 800px;
	margin: 30px auto;
	/* padding: 0 6vw; */
}

.form-list dt {
	margin-bottom: 20px;
}

.form-list dt label {
	font-weight: 600;
	line-height: 1.5;
	color: rgba(0, 0, 0, 1);
}

.form-list dt .req:after {
	content: "必須";
	margin-left: 10px;
	font-weight: 700;
	line-height: 1.6;
	color: rgba(255, 0, 0, 1);
}

.form-list dd {
	margin-bottom: 40px;
	line-height: 1.8;
}

.form-item {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	background-color: rgba(0, 0, 0, .05);
	border: 0;
	border-radius: 0;
	line-height: 1.6;
	box-sizing: border-box;
}

textarea.form-item {
	padding-top: 10px;
	padding-bottom: 10px;
	box-sizing: border-box;
}

select.form-item {
	-webkit-appearance: none;
	-moz-appearance: textfield;
	margin: 0;
}

textarea.form-item {
	height: 220px;
}

.form-item:focus {
	background-color: rgba(0, 0, 0, .1);
}

.form_select {
	position: relative;
}

.form_select:before,
.form_select:after {
	content: "";
	display: block;
	position: absolute;
}

.form_select:before {
	width: 1px;
	height: 100%;
	background-color: rgba(0, 0, 0, .1);
	right: 60px;
	top: 0;
}

.form_select:after {
	width: 5px;
	height: 5px;
	border-right: 2px solid rgba(0, 0, 0, 1);
	border-bottom: 2px solid rgba(0, 0, 0, 1);
	transform: rotate3d(0, 0, 1, 45deg);
	right: 26px;
	top: calc(50% - 3px);
}

.form-privacy {
	width: 100%;
	height: 340px;
	border: 1px solid rgba(0, 0, 0, .15);
	overflow-y: scroll;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

#lower .form-privacy h3 {
	margin: 10px 0;
}

.privacy_wrap {
	padding: 20px;
}

.form_check {
	margin: 60px 0;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.consent-check {
	display: none;
}

.consent {
	height: 20px;
	padding-left: 30px;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
}

.form-list dd .consent {
	text-align: left;
	justify-content: flex-start;
}

.form-btn {
	width: 100%;
	height: 60px;
	background-color: var(--ac_color);
	border: 0;
	border-radius: 10px;
	font-size: 1.6rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 1);
}

.form-btn.form-cancel {
	background-color: rgba(0, 0, 0, .1);
	color: rgba(0, 0, 0, 1);
}

.agree {
	margin: 40px 0;
	text-align: center;
}

.agree input[type="checkbox"] {
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid #000;
	vertical-align: -5px;
	margin-right: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	/* display: inline-block; */
	border-radius: 3px;
}

.agree input[type="checkbox"]:checked {
	border: none;
	background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' width='16' height='16'><rect fill='%23090' width='16' height='16'/><path fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12.6,5.17l-5.66,5.66L3.4,7.29'/></svg>");
	background-repeat: no-repeat;
	background-size: cover;
}

/* .agree input[type="checkbox"]:checked:before {
position: absolute;
top: 1px;
left: 4px;
transform: rotate(50deg);
width: 4px;
height: 8px;
border-right: 2px solid #000;
border-bottom: 2px solid #000;
content: '';
} */


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

	.form-list dt {
		margin-bottom: 10px;
	}

	.form-list dd {
		margin-bottom: 30px;
	}

	.form-privacy__check {
		margin: 40px 0;
	}

}

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


/*------ About ---------------*/


#about .wrapper {
	font-size: 1.25rem;
}

#about .wrapper figure {
	width: 860px;
	margin: 30px auto;
}

#about h3.lead {
	font-size: 2rem;
	line-height: 1.75;
	letter-spacing: 0.15em;
	font-weight: 600;
	color: #871F24;
}

#about .concept h3,
#about .profiel h3 {
	background: #871F24;
	padding: 0.8rem 0 1.2rem;
	margin-bottom: 2rem;
	font-size: 2rem;
	line-height: 1.7;
	color: #FFF;
}

#about .wrapper .profiel figure {
	width: 600px;
	margin: auto;
}

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

	#about .wrapper figure,
	#about .wrapper .profiel video {
		width: 100%;
	}

	#about .wrapper .profiel figure {
		width: 50%;
	}
}

.profiel h4 {
	font-size: 2rem;
	color: #000;
}

.profiel h4 span.en {
	margin-left: 40px;
	font-size: 1rem;
}

.profiel video {
	width: 860px;
	margin-top: 60px;
}

.sdgs h4 {
	/* margin-top: 0; */
}

.sdgs .lead_sdgs {
	width: 80%;
}

.sdgs span {
	font-size: 1.5rem;
}

.sdgs .logo_sdgs {
	max-width: 240px;
	text-align: center;
}

.order_flow {
	text-align: center;
}

.order_flow .step {
	max-width: 1200px;
}

@media screen and (max-width: 480px) {
	.sdgs .lead_sdgs {
		width: 100%;
	}

	.sdgs .logo_sdgs {
		width: 100%;
		margin: 15px auto;
	}

	.sdgs span {
		display: block;
		text-align: center;
		font-size: 1rem;
	}
}


/* --------栞追加-------- */
/* トップ */
#reserve::before {
	content: '';
	display: block;
	padding-top: 120px;
	margin-top: -120px;
	pointer-events: none;
}

.order_flow video {
	width: 860px;
	margin-top: 60px;
	box-shadow: 3px 3px 5px #333;
}

.attention_movie{
	text-align: center;
	width: 950px;
	margin: 0 auto;
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9; /* 比率を指定 */
  height: auto;
}

.attention_movie video {
	width: 950px;
	margin: 60px auto;
}

@media screen and (max-width: 480px) {
	.order_flow video {
		width: 100%;
		box-shadow: 1px 1px 3px #333;
	}

	.attention_movie{
		width: 100%;
	}
	.attention_movie video {
	width: 100%;
	margin: 60px auto;
}
}

.story__text span {
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-weight: bold;
	font-size: 1.3rem;
}




/* about */
.about_message {
	font-weight: bold;
	margin-top: 40px;
}

/* ---------------------- */