@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* 1024pxまで固定表示（中のコンテンツが最大980px）*/
/* Global styles
-------------------------------*/
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

img {
	vertical-align: top;
	max-width: 100%;
}

/* デバイス定義
-------------------------------*/
.pc {
	display: block;
}

br.pc,
span.pc {
	display: inline;
}

.sp {
	display: none;
}

.pc-only {
	display: block;
}


@media (max-width: 767px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block;
	}

	br.sp {
		display: inline;
	}
}


@media screen and (min-width:768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

/* 基本的な骨組み
-------------------------------*/
html {
	height: 100%;
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
	background: #ffe600;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0;
	color: #231815;
	word-break: break-all;
	font-family: 'Noto Sans JP', serif;
	font-feature-settings: "palt";
	-webkit-text-size-adjust: 100%;
}


@media (min-width: 1024px) {
	body {
		font-size: 1.5625vw;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 4.2667vw;
	}
}


/* aタグ(リンクボタン)の設定
-------------------------------*/
a, a:hover, a::after, a::before {
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	color: #333333;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:link {
	text-decoration: none;
}



/*-------------------------------
 header
-------------------------------*/
.headerSec {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: auto;
	margin: 0 auto;
	z-index: 999;
}
.headerSec__toggle {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 56px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
	border-radius: 15px;
	cursor: pointer;
	z-index: 999;
}

.headerSec__toggle img {
	display: block;
	position: absolute;
	top: 35px;
	transition: all 0.6s;
}
.headerSec__toggle .toggle__menu {
	opacity: 1;
	left: calc( 50% - 11px);
	width: 22px;
}
.headerSec__toggle.active .toggle__menu {
	opacity: 0;
}
.headerSec__toggle .toggle__close {
	opacity: 0;
	left: calc( 50% - 13px);
	width: 26px;
}
.headerSec__toggle.active .toggle__close {
	opacity: 1;
}
.headerSec__toggle span {
	display: block;
	position: absolute;
	right: 15px;
	width: 25px;
	border-bottom: solid 2px #fff;
	transition: all 0.6s;
}
.headerSec__toggle span:nth-child(1) {
	top: 15px;
}
.headerSec__toggle span:nth-child(2) {
	top: 25px;
}
.headerSec__toggle.active span {
	border-bottom: solid 2px #fff;
}
.headerSec__toggle.active span:nth-child(1) {
	top: 20px;
	-webkit-transform: rotate(-25deg);
	transform: rotate(-25deg);
}
.headerSec__toggle.active span:nth-child(2) {
	top: 20px;
	-webkit-transform: rotate(25deg);
	transform: rotate(25deg);
}
.navi__box {
	position: fixed;
	width: 100%;
	top: -120%;
	right: 0;
	width: 390px;
	z-index: 1;
	opacity: 0;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}
.navi__box.active {
	top: 0;
	opacity: 1;
}
.navi__wrap {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: -120%;
	left: 0;
	opacity: 0;
	z-index: 10;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}
.navi__wrap.active {
	top: 0;
	opacity: 1;
}
.navi__inner {
	width: 100%;
	height: auto;
	max-height: 100vh;
	padding: 107px 57px 65px;
	background: #000;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.headerSec__nav h3 {
	margin-bottom: 45px;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: .15em;
	color: #fff;
}
.headerSec__navList {
	display: block;
}
.headerSec__navItem {
	width: 100%;
}
.headerSec__navItem:not(:last-child) {
	margin-bottom: 16px;
}
.headerSec__navItem a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	padding: 5px 0;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: .15em;
	color: #fff;
}
.headerSec .sns__title {
	margin: 36px 0 20px;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: .1em;
	color: #fff;
}
.headerSec .sns__list {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.headerSec .sns__list .sns__item {
	width: 50px;
}
.headerSec .sns__list .sns__item a {
	display: block;
	width: 100%;
	height: 100%;
}

@media screen and (min-width:1024px) {
	.headerSec {
		left: calc( 50% - 490px);
		width: 980px;
	}
	.navi__box {
		left: calc( 50% + 100px);
		right: auto;
	}
}

@media (max-width: 767px) {
	.headerSec__toggle {
		top: 2.6667vw;
		right: 2.5333vw;
		width: 12vw;
		height: 12vw;
		border-radius: 1.6vw;
	}
	.headerSec__toggle img {
		top: 7.6vw;
	}
	.headerSec__toggle .toggle__menu {
		left: calc( 50% - 2.4vw);
		width: 4.6667vw;
	}
	.headerSec__toggle .toggle__close {
		left: calc( 50% - 2.8vw);
		width: 5.6vw;
	}
	.headerSec__toggle span {
		right: 3.3333vw;
		width: 5.3333vw;
		border-bottom: solid 3px #fff;
	}
	.headerSec__toggle span:nth-child(1) {
		top: 3.4667vw;
	}
	.headerSec__toggle span:nth-child(2) {
		top: 5.6vw;
	}
	.headerSec__toggle.active span {
		border-bottom: solid 3px #fff;
	}
	.headerSec__toggle.active span:nth-child(1) {
		top: 4.5333vw;
	}
	.headerSec__toggle.active span:nth-child(2) {
		top: 4.5333vw;
	}
	.navi__box {
		width: 100%;
		height: 100vh;
	}
	.navi__inner {
		height: 100%;
		padding: 22.6667vw 12.2667vw 8.6667vw;
	}
	.headerSec__nav h3 {
		margin-bottom: 9.8667vw;
		font-size: 4.8vw;
	}
	.headerSec__navItem:not(:last-child) {
		margin-bottom: 4.2667vw;
	}
	.headerSec__navItem a {
		padding: 5px 0;
		font-size: 3.8667vw;
	}
	.headerSec .sns__title {
		margin: 7.8667vw 0 4.1333vw;
		font-size: 3.8667vw;
		letter-spacing: .15em;
	}
	.headerSec .sns__list {
		width: 59.3333vw;
	}
	.headerSec .sns__list .sns__item {
		width: 10.6667vw;
		height: 10.6667vw;
	}
}



/*-------------------------------
	footer
-------------------------------*/
.footerSec {
	position: relative;
	display: block;
	background: #000;
	z-index: 1;
}
.footerSec .footer__inner {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	flex-flow: column;
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
	padding: 55px 0 40px;
}
.footerSec .footerMenu__list {
	display: flex;
	justify-content: flex-end;
	flex-flow: wrap;
	width: 60.5469vw;
	margin-bottom: 5px;
}
.footerSec .footerMenu__list .footerMenu__item a {
	display: inline-block;
	margin-bottom: 22px;
	font-size: 1.9531vw;
	font-weight: 400;
	letter-spacing: .15em;
	color: #fff;
}
.footerSec .footerMenu__list .footerMenu__item:first-child {
	margin-left: 4.8828vw;
}
.footerSec .footerMenu__list .footerMenu__item:not(:nth-child(3n)) {
	margin-right: 21px;
}
.footerSec .sns__list {
	display: flex;
	justify-content: space-between;
	width: 276px;
	margin-bottom: 52px;
}
.footerSec .sns__list .sns__item {
	width: 50px;
	height: 50px;
}
.footerSec .sns__list .sns__item a {
	display: block;
	width: 100%;
	height: 100%;
}
.footerSec .copy {
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .1em;
	color: #fff;
	text-align: right;
}

@media screen and (min-width:1024px) {
	.footerSec .footerMenu__list .footerMenu__item:first-child {
		margin-left: 50px;
	}
	.footerSec .footerMenu__list {
		width: 540px;
	}
	.footerSec .footerMenu__list .footerMenu__item a {
		margin-bottom: 22px;
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.footerSec {
		padding: 0 6.6667vw 0 0;
	}
	.footerSec .footer__inner {
		width: 100%;
		padding: 11.2vw 0 8.6667vw;
	}
	.footerSec .footerMenu__list {
		width: 100%;
		margin-bottom: 2.6667vw;
		order: 1;
	}
	.footerSec .footerMenu__list .footerMenu__item a {
		display: inline-block;
		margin-bottom: 3.3333vw;
		font-size: 4.0vw;
		font-weight: 500;
	}
	.footerSec .footerMenu__list .footerMenu__item:first-child {
		margin-left: 13.3333vw;
	}
	.footerSec .footerMenu__list .footerMenu__item:not(:nth-child(3n)) {
		margin-right: 0;
	}
	.footerSec .footerMenu__list .footerMenu__item:not(:nth-child(2n)) {
		margin-right: 4.5333vw;
	}
	.footerSec .sns__list {
		display: flex;
		justify-content: space-between;
		width: 59.3333vw;
		margin-bottom: 0;
		order: 3;
	}
	.footerSec .sns__list .sns__item {
		width: 10.6667vw;
		height: 10.6667vw;
	}
	.footerSec .sns__list .sns__item a img {
		width: 10.6667vw;
		height: 10.6667vw;
	}
	.footerSec .copy {
		margin-bottom: 12.8vw;
		font-size: 2.6667vw;
		line-height: 1.7;
		order: 2;
	}
}



/*-------------------------------
 common
-------------------------------*/
.l-wrapper {
	position: relative;
	max-width: 980px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden
}

.sec__title {
	width: 100%;
	padding: 2.0508vw;
	text-align: center;
	border-top: 1px solid #231815;
	border-bottom: 1px solid #231815;
}
.sec__title.sec__title-wide {
	padding: 2.4414vw;
}
.sec__title-en {
	display: block;
	margin-bottom: 1.1719vw;
}
.sec__title-jp {
	font-size: 3.7109vw;
	font-weight: 700;
	letter-spacing: .25em;
}

@media screen and (min-width:1024px) {
	.sec__title {
		padding: 21px;
	}
	.sec__title.sec__title-wide {
		padding: 25px;
	}
	.sec__title-en {
		margin-bottom: 12px;
	}
	.sec__title-jp {
		font-size: 38px;
	}
}

@media (max-width: 767px) {
	.sec__title {
		padding: 2.8vw;
	}
	.sec__title.sec__title-wide {
		padding: 3.3333vw;
	}
	.sec__title-en {
		margin-bottom: 1.8667vw;
	}
	.sec__title-jp {
		font-size: 4.9333vw;
	}

}



/*-------------------------------
 mainSec
-------------------------------*/
.mainSec {
	position: relative;
	z-index: 9;
}



/*-------------------------------
 mvSec
-------------------------------*/
@keyframes popup {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	10% {
		transform: scale(1.2);
		opacity: 1;
	}
	15% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes floating {
	0% {
		transform: translateY(0%);
	}
	100% {
		transform: translateY(-10%);
	}
}
@keyframes floating-r {
	0% {
		transform: translateY(0%);
	}
	100% {
		transform: translateY(10%);
	}
}
@keyframes floating2 {
	0% {
		transform: translateY(0%);
	}
	100% {
		transform: translateY(-25%);
	}
}

.mvSec {
	position: relative;
	width: 95.703125vw;
	max-width: 980px;
	margin: 0 auto;
	padding: 3.1250vw 0 3.5156vw;
}
.mv__illust {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}
.mv__illust .mv__illust__01 {
	position: absolute;
	top: 6.3477vw;
	left: 9.9609vw;
	width: 12.5vw;
	height: 20.7031vw;
	opacity: 0;
	animation-name: popup;
	animation-delay: 1s;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
.mv__illust .mv__illust__01 img {
	animation-name: floating;
	animation-delay: 5s;
	animation-duration: 4s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.mv__illust .mv__illust__02 {
	position: absolute;
	top: 29.7852vw;
	left: 2.9297vw;
	width: 22.3633vw;
	height: 13.8672vw;
	opacity: 0;
	animation-name: popup;
	animation-delay: 2.0s;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
.mv__illust .mv__illust__02 img {
	animation-name: floating-r;
	animation-delay: 5.3s;
	animation-duration: 3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.mv__illust .mv__illust__03 {
	position: absolute;
	top: 47.8516vw;
	left: 9.7656vw;
	width: 13.2813vw;
	height: 10.6445vw;
	opacity: 0;
	animation-name: popup;
	animation-delay: 3.5s;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
.mv__illust .mv__illust__03 img {
	animation-name: floating;
	animation-delay: 5.1s;
	animation-duration: 3.5s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.mv__illust .mv__illust__04 {
	position: absolute;
	top: 10.0586vw;
	right: 2.2461vw;
	width: 25vw;
	height: 16.1133vw;
	opacity: 0;
	animation-name: popup;
	animation-delay: 1.5s;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
.mv__illust .mv__illust__04 img {
	animation-name: floating-r;
	animation-delay: 5.2s;
	animation-duration: 3.5s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.mv__illust .mv__illust__05 {
	position: absolute;
	top: 29.1016vw;
	right: 12.793vw;
	width: 8.9844vw;
	height: 8.0078vw;
	opacity: 0;
	animation-name: popup;
	animation-delay: 2.5s;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
.mv__illust .mv__illust__05 img {
	animation-name: floating2;
	animation-delay: 5.3s;
	animation-duration: 4s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.mv__illust .mv__illust__06 {
	position: absolute;
	top: 38.3789vw;
	right: 4.3945vw;
	width: 16.5039vw;
	height: 13.7695vw;
	opacity: 0;
	animation-name: popup;
	animation-delay: 3.0s;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
.mv__illust .mv__illust__06 img {
	animation-name: floating;
	animation-delay: 5.5s;
	animation-duration: 5s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.mv__illust .mv__illust__07 {
	position: absolute;
	top: 51.7578vw;
	right: 2.6367vw;
	width: 9.9609vw;
	height: 10.0586vw;
	opacity: 0;
	animation-name: popup;
	animation-delay: 4.0s;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
.mv__illust .mv__illust__07 img {
	animation-name: floating2;
	animation-delay: 5.1s;
	animation-duration: 3.5s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.mv__illust .mv__illust__08 {
	position: absolute;
	top: 54.3945vw;
	right: 10.0586vw;
	width: 13.8672vw;
	height: 26.7578vw;
	opacity: 0;
	animation-name: popup;
	animation-delay: 4.5s;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
.mv__illust .mv__illust__08 img {
	animation-name: floating-r;
	animation-delay: 5.4s;
	animation-duration: 4.5s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.mv__illust .mv__illust__09 {
	position: absolute;
	top: 59.7656vw;
	left: 1.3672vw;
	width: 23.2422vw;
	height: 13.7695vw;
	opacity: 0;
	animation-name: popup;
	animation-delay: 5.0s;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
.mv__illust .mv__illust__09 img {
	animation-name: floating-r;
	animation-delay: 5.2s;
	animation-duration: 3.5s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
.mv__title {
	display: flex;
	flex-flow: column;
	align-items: center;
}
.mv__title .before__title {
	width: 45.8984vw;
	margin-bottom: 3.1250vw;
}
.mv__title .main__title {
	width: 65.4297vw;
	margin-bottom: 3.2227vw;
}
.mv__title .after__title {
	width: 42.96875vw;
	margin-bottom: 1.3672vw;
}
.mv__title .event__schedule {
	width: 55.46875vw;
	margin-bottom: 1.3672vw;
	margin-left: 1.3672vw;
}
.mv__about .mvAbout__title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 73.4375vw;
	height: 11.3281vw;
	margin: 0 auto 2.2461vw;
	background: url(../img/about__title__bg.png) no-repeat center bottom;
	background-size: contain;
	font-size: 2.9297vw;
	font-weight: 700;
	letter-spacing: .1em;
	color: #fff;
}
.mv__about .mvAbout__wrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.mv__about .mvAbout__image {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	width: 51.7578vw;
}
.mv__about .mvAbout__text{
	flex: 1;
	padding: 2.1484vw 1.7578vw;
	font-size: 1.7578vw;
	font-weight: 500;
	line-height: 1.77;
	letter-spacing: .03em;
}

@media screen and (min-width:1024px) {
	.mvSec {
		padding: 32px 0 36px;
	}
	.mv__illust .mv__illust__01 {
		top: 65px;
		left: 102px;
		width: 128px;
		height: 212px;
	}
	.mv__illust .mv__illust__02 {
		top: 305px;
		left: 30px;
		width: 229px;
		height: 142px;
	}
	.mv__illust .mv__illust__03 {
		top: 490px;
		left: 100px;
		width: 136px;
		height: 109px;
	}
	.mv__illust .mv__illust__04 {
		top: 103px;
		right: 23px;
		width: 256px;
		height: 165px;
	}
	.mv__illust .mv__illust__05 {
		top: 298px;
		right: 131px;
		width: 92px;
		height: 82px;
	}
	.mv__illust .mv__illust__06 {
		top: 393px;
		right: 45px;
		width: 169px;
		height: 141px;
	}
	.mv__illust .mv__illust__07 {
		top: 530px;
		right: 27px;
		width: 102px;
		height: 103px;
	}
	.mv__illust .mv__illust__08 {
		top: 557px;
		right: 103px;
		width: 142px;
		height: 274px;
	}
	.mv__illust .mv__illust__09 {
		top: 612px;
		left: 14px;
		width: 238px;
		height: 141px;
	}
	.mv__title .before__title {
		width: 470px;
		margin-bottom: 32px;
	}
	.mv__title .main__title {
		width: 670px;
		margin-bottom: 33px;
	}
	.mv__title .after__title {
		width: 440px;
		margin-bottom: 14px;
	}
	.mv__title .event__schedule {
		width: 568px;
		margin-bottom: 14px;
		margin-left: 14px;
	}
	.mv__about .mvAbout__title {
		width: 752px;
		height: 116px;
		margin: 0 auto 23px;
		font-size: 30px;
	}
	.mv__about .mvAbout__image {
		width: 530px;
	}
	.mv__about .mvAbout__text{
		padding: 22px 18px;
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.mvSec {
		width: 100%;
		padding: 3.067vw 0;
	}
	.mv__illust .mv__illust__01 {
		top: 11.3333vw;
		left: 4.2667vw;
		width: 15.3333vw;
		height: 25.4667vw;
	}
	.mv__illust .mv__illust__02 {
		top: 41.0667vw;
		left: -4.6667vw;
		width: 24.9333vw;
		height: 15.4667vw;
	}
	.mv__illust .mv__illust__03 {
		top: 58.4vw;
		left: -9.2vw;
		width: 18.1333vw;
		height: 14.5333vw;
	}
	.mv__illust .mv__illust__04 {
		top: 16.6667vw;
		right: -10.8vw;
		width: 31.4667vw;
		height: 20.2667vw;
	}
	.mv__illust .mv__illust__05 {
		top: 49.2vw;
		right: 25.7333vw;
		width: 7.8667vw;
		height: 6.9333vw;
	}
	.mv__illust .mv__illust__06 {
		top: 43.2vw;
		right: -6.8vw;
		width: 21.0667vw;
		height: 17.4667vw;
	}
	.mv__illust .mv__illust__07 {
		top: 60.4vw;
		right: -1.4667vw;
		width: 13.6vw;
		height: 13.6vw;
	}
	.mv__illust .mv__illust__08 {
		top: 75.8667vw;
		right: 3.2vw;
		width: 16.6667vw;
		height: 32vw;
	}
	.mv__illust .mv__illust__09 {
		top: 76.2667vw;
		left: -11.4667vw;
		width: 31.7333vw;
		height: 18.8vw;
	}
	.mv__title {
		margin-bottom: 3.2vw;
	}
	.mv__title .before__title {
		width: 66.6667vw;
		margin-bottom: 6.4vw;
	}
	.mv__title .main__title {
		width: 100%;
		margin-bottom: 6vw;
	}
	.mv__title .after__title {
		width: 73.3333vw;
		margin-bottom: 1.6vw;
	}
	.mv__title .event__schedule {
		width: 75.6vw;
		margin-bottom: 3.3333vw;
		margin-left: 1.6vw;
	}
	.mv__about .mvAbout__title {
		width: 79.4667vw;
		height: 21.7333vw;
		margin: 0 auto 2.6667vw;
		background: url(../img/about__title__bg-sp.png) no-repeat center bottom;
		background-size: contain;
		font-size: 4vw;
		line-height: 1.1;
	}
	.mv__about .mvAbout__title span {
		text-align: center;
	}
	.mv__about .mvAbout__wrap {
		position: relative;
		display: block;
	}
	.mv__about .mvAbout__image {
		width: 100%;
		padding-bottom: 25.6vw;
	}
	.mv__about .mvAbout__text{
		position: absolute;
		bottom: 6vw;
		width: 100%;
		padding: 0;
		font-size: 4.2667vw;
		font-weight: 500;
		line-height: 1.8125;
		letter-spacing: -.01em;
		text-align: center;
	}
}


/*-------------------------------
 videoSec
-------------------------------*/
.videoSec {
	margin: 0 auto 3.5156vw;
}
.videoSec .video__wrap {
	width: 560px;
	height: 315px;
	margin: 0 auto;
}
.video__wrap iframe {
	width: 100%;
	height: 100%;
}

@media screen and (min-width:1024px) {
	.videoSec {
		margin: 0 auto 36px;
	}
}

@media (max-width: 767px) {
	.videoSec {
		margin: 0 auto 10vw;
	}
	.videoSec .video__wrap {
		width: 86.1538vw;
		height: 48.4615vw;
	}
}


/*-------------------------------
 newsSec
-------------------------------*/
.newsSec {
	width: 78.1250vw;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 0 5.5664vw;
}
.newsSec .l-inner {
	position: relative;
}
.newsSec .sec__title {
	margin-bottom: 5.0781vw;
}
.newsSec .sec__title .sec__title-en img {
	width: 5.2734vw;
}
.newsSec .news__list {
	position: relative;
	width: 100%;
	padding: 1.5625vw 4.8828vw 0.9766vw;
	margin-bottom: 4.1016vw;
	background: #fff;
	border-radius: 1.4648vw;
	box-shadow: 0.4883vw 0.4883vw 0.7812vw rgb(0 0 0 / 0.3);
	z-index: 0;
}
.newsSec .news__list .news__item {
	padding: 3.4170vw 0 3.9062vw;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.newsSec .news__list .news__item.is-hidden {
	opacity: 0;
	height: 0;
	margin: 0;
	padding: 0;
}
.newsSec .news__list .news__item:not(:first-child) {
	border-top: 1px solid #231815;
}
.newsSec .news__list .news__item time.news__item__date {
	display: block;
	margin-bottom: 1.1719vw;
	font-size: 2.3438vw;
	font-weight: 700;
	line-height: 1;
	color: #E55405;
}
.newsSec .news__list .news__item .news__item__summary {
	font-size: 1.5625vw;
	font-weight: 500;
	line-height: 1.375;
	letter-spacing: .04em;
}
.newsSec .news__list .news__item .news__item__summary a {
	border-bottom: 1px solid #231815;
}
.newsSec .more__btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}
.newsSec .more__btn button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 18.1641vw;
	height: 4.2969vw;
	font-size: 1.7578vw;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .15em;
	text-decoration: none;
	color: white;
	border: none;
	border-radius: 2.1484vw;
	background-color: #000;
	box-shadow: 0.2920vw 0.2920vw 0.4883vw rgb(0 0 0 / 0.3);
	cursor: pointer;
}


@media screen and (min-width:1024px) {
	.newsSec {
		padding: 0 0 57px;
	}
	.newsSec .sec__title {
		margin-bottom: 52px;
	}
	.newsSec .sec__title .sec__title-en img {
		width: 54px;
	}
	.newsSec .news__list {
		padding: 16px 50px 10px;
		margin-bottom: 42px;
		border-radius: 15px;
		box-shadow: 5px 5px 8px rgb(0 0 0 / 0.3);
	}
	.newsSec .news__list .news__item {
		padding: 35px 0 40px;
	}
	.newsSec .news__list .news__item time.news__item__date {
		margin-bottom: 12px;
		font-size: 24px;
	}
	.newsSec .news__list .news__item .news__item__summary {
		font-size: 16px;
	}
	.newsSec .more__btn button {
		width: 186px;
		height: 44px;
		font-size: 18px;
		border-radius: 22px;
		box-shadow: 3px 3px 5px rgb(0 0 0 / 0.3);
	}
}

@media (max-width: 767px) {
	.newsSec {
		width: 86.6667vw;
		padding: 0 0 12.6667vw;
	}
	.newsSec .sec__title {
		margin-bottom: 6vw;
	}
	.newsSec .sec__title .sec__title-en img {
		width: 7.2vw;
	}
	.newsSec .news__list {
		padding: 0 6.1333vw;
		margin-bottom: 6.6667vw;
		border-radius: 3.6vw;
		box-shadow: 0.6667vw 0.6667vw 1.0667vw rgb(0 0 0 / 0.3);
	}
	.newsSec .news__list .news__item {
		padding: 5.7333vw 0;
	}
	.newsSec .news__list .news__item time.news__item__date {
		margin-bottom: 1.3333vw;
		font-size: 4vw;
	}
	.newsSec .news__list .news__item .news__item__summary {
		font-size: 3.7333vw;
		line-height: 1.535;
		letter-spacing: .03em;
	}
	.newsSec .more__btn button {
		width: 44vw;
		height: 10.6667vw;
		font-size: 4.5333vw;
		letter-spacing: .25em;
		border-radius: 5.3333vw;
		box-shadow: 0.4vw 0.4vw 0.6667vw rgb(0 0 0 / 0.3);
	}
}



/*-------------------------------
 menuSec
-------------------------------*/
.menuSec {
	padding: 0 0 3.8086vw;
}
.menuSec .l-inner {
	position: relative;
	width: 83.984375vw;
	margin: 0 auto;
}
.menuSec .menu__title {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 63.0859vw;
	height: 13.4766vw;
	margin: 0 auto;
	background: url(../img/menu__title__bg.png) no-repeat center bottom;
	background-size: contain;
	font-size: 3.2812vw;
	font-weight: 700;
	line-height: 1.17;
	letter-spacing: .1em;
	text-align: center;
	color: #fff;
	z-index: 2;
}
.menuSec .menu__list {
	width: 100%;
	padding: 13.2813vw 0 3.7109vw;
	margin-top: -8.2031vw;
	border: 2px solid #000;
	background-image: linear-gradient(45deg, #000 0.9766vw, transparent 0),
		linear-gradient(-45deg, #000 0.9766vw, transparent 0),
		linear-gradient(135deg, #000 0.9766vw, transparent 0),
		linear-gradient(-135deg, #000 0.9766vw, transparent 0);
	z-index: 0;
}
.menuSec .menu__list .menu__item {
	position: relative;
	display: flex;
	margin-bottom: 2.6367vw;
}
.menuSec .menu__list .menu__item:nth-child(2) {
	margin-bottom: 2.2461vw;
}
.menuSec .menu__list .menu__item:nth-child(3) {
	margin-bottom: 2.6367vw;
}
.menuSec .menu__list .menu__item:nth-child(4) {
	margin-bottom: 1.8555vw;
}
.menuSec .menu__list .menu__item:nth-child(5) {
	margin-bottom: 2.2461vw;
}
.menuSec .menu__list .menu__item.menu__item-reverse {
	flex-flow: row-reverse;
}
.menuSec .menu__list .menu__item__pict {
	position: relative;
	width: 47.8516vw;
	padding-top: 0.7812vw;
	padding-left: 4.4922vw;
	margin-bottom: 0.9766vw;
}
.menuSec .menu__list .menu__item.menu__item-reverse .menu__item__pict {
	width: 46.8750vw;
	padding-left: 0;
	padding-right: 3.5156vw;
}
.menuSec .menu__list .menu__item__pict img {
	z-index: 0;
}
.menuSec .menu__list .menu__item__name {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	width: 39.2578vw;
	height: 12.5vw;
	margin: -1.9531vw auto 0;
	background: url(../img/menu__item__name__bg.png) no-repeat center top;
	background-size: contain;
	font-size: 1.9531vw;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .1em;
	text-align: center;
	color: #fff;
	z-index: 2;
}
.menuSec .menu__list .menu__item__name .item__tax {
	display: inline;
	font-size: 80%;
}
.menuSec .menu__list .menu__item__text {
	width: 35.7422vw;
}
.menuSec .menu__list .menu__item__text p {
	padding: 0 3.4180vw 0 3.2227vw;
	font-size: 1.5625vw;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: .01em;
	text-align: justify
}
.menuSec .menu__list .menu__item.menu__item-reverse .menu__item__text {
	width: 36.7188vw;
}
.menuSec .menu__list .menu__item.menu__item-reverse .menu__item__text p {
	padding: 0 3.1250vw 0 4.4922vw;
}
.menuSec .menu__list .menu__item:nth-child(1) .menu__item__material {
	margin-top: 2.1484375vw;
}
.menuSec .menu__list .menu__item:nth-child(2) .menu__item__material {
	margin-top: 5.6640625vw;
}
.menuSec .menu__list .menu__item:nth-child(3) .menu__item__text p {
	letter-spacing: -.005em;
}
.menuSec .menu__list .menu__item:nth-child(3) .menu__item__material {
	margin-top: 2.734375vw;
}
.menuSec .menu__list .menu__item:nth-child(4) .menu__item__material {
	margin-top: 2.1484vw;
}
.menuSec .menu__list .menu__item:nth-child(5) .menu__item__material {
	margin-top: 5.4688vw;
}
.menuSec .menu__list .chef__profile {
	display: flex;
}
.menuSec .menu__list .chef__profile .chef__pict {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	width: 33.7891vw;
}
.menuSec .menu__list .chef__profile .chef__pict img  {
	width: 29.1016vw;
}
.menuSec .menu__list .chef__profile .chef__text {
	width: 50vw;
	padding: 9.7656vw 3.4179vw 0;
}
.menuSec .menu__list .chef__profile .chef__text .chef__name {
	margin-bottom: 1.7578vw;
	font-size: 2.3438vw;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .1em;
}
.menuSec .menu__list .chef__profile .chef__text p {
	font-size: 1.5625vw;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: .04em;
}

@media screen and (min-width:1024px) {
	.menuSec {
		padding: 0 0 39px;
	}
	.menuSec .l-inner {
		width: 860px;
	}
	.menuSec .menu__title {
		width: 662px;
		height: 145px;
		font-size: 34px;
	}
	.menuSec .menu__list {
		padding: 136px 0 38px;
		margin-top: -85px;
		background-image: linear-gradient(45deg, #000 10px, transparent 0),
											linear-gradient(-45deg, #000 10px, transparent 0),
											linear-gradient(135deg, #000 10px, transparent 0),
											linear-gradient(-135deg, #000 10px, transparent 0);
	}
	.menuSec .menu__list .menu__item {
		margin-bottom: 27px;
	}
	.menuSec .menu__list .menu__item:nth-child(2) {
		margin-bottom: 23px;
	}
	.menuSec .menu__list .menu__item:nth-child(3) {
		margin-bottom: 27px;
	}
	.menuSec .menu__list .menu__item:nth-child(4) {
		margin-bottom:19px;
	}
	.menuSec .menu__list .menu__item:nth-child(5) {
		margin-bottom: 23px;
	}
	.menuSec .menu__list .menu__item__pict {
		width: 490px;
		padding-top: 8px;
		padding-left: 46px;
		margin-bottom: 10px;
	}
	.menuSec .menu__list .menu__item.menu__item-reverse .menu__item__pict {
		width: 480px;
		padding-left: 0;
		padding-right: 36px;
	}
	.menuSec .menu__list .menu__item__name {
		width: 402px;
		height: 128px;
		margin: -20px auto 0;
		font-size: 20px;
	}
	.menuSec .menu__list .menu__item__text {
		width: 366px;
	}
	.menuSec .menu__list .menu__item__text p {
		padding: 0 35px 0 33px;
		font-size: 16px;
	}
	.menuSec .menu__list .menu__item.menu__item-reverse .menu__item__text {
		width: 376px;
	}
	.menuSec .menu__list .menu__item.menu__item-reverse .menu__item__text p {
		padding: 0 32px 0 46px;
	}
	.menuSec .menu__list .menu__item:nth-child(1) .menu__item__material {
		margin-top: 22px;
	}
	.menuSec .menu__list .menu__item:nth-child(2) .menu__item__material {
		margin-top: 58px;
	}
	.menuSec .menu__list .menu__item:nth-child(3) .menu__item__text p {
		letter-spacing: -.005em;
	}
	.menuSec .menu__list .menu__item:nth-child(3) .menu__item__material {
		margin-top: 28px;
	}
	.menuSec .menu__list .menu__item:nth-child(4) .menu__item__material {
		margin-top: 22px;
	}
	.menuSec .menu__list .menu__item:nth-child(5) .menu__item__material {
		margin-top: 56px;
	}
	.menuSec .menu__list .chef__profile .chef__pict {
		width: 346px;
	}
	.menuSec .menu__list .chef__profile .chef__pict img  {
		width: 298px;
	}
	.menuSec .menu__list .chef__profile .chef__text {
		width: 510px;
		padding: 100px 35px 0;
	}
	.menuSec .menu__list .chef__profile .chef__text .chef__name {
		margin-bottom: 18px;
		font-size: 24px;
	}
	.menuSec .menu__list .chef__profile .chef__text p {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.menuSec {
		padding: 0 0 12.9333vw;
	}
	.menuSec .l-inner {
		width: 92vw;
	}
	.menuSec .menu__title {
		width: 79.4667vw;
		height: 21.7333vw;
		background: url(../img/menu__title__bg-sp.png) no-repeat center bottom;
		background-size: contain;
		font-size: 4vw;
		line-height: 1.2;
	}
	.menuSec .menu__list {
		padding: 17.2vw 4.5333vw 3.3333vw;
		margin-top: -6.2667vw;
		background-image: linear-gradient(45deg, #000 1.6vw, transparent 0),
											linear-gradient(-45deg, #000 1.6vw, transparent 0),
											linear-gradient(135deg, #000 1.6vw, transparent 0),
											linear-gradient(-135deg, #000 1.6vw, transparent 0);
	}
	.menuSec .menu__list .menu__item {
		display: block;
		margin-bottom: 5.0667vw;
	}
	.menuSec .menu__list .menu__item:nth-child(2) {
		margin-bottom: 5.0667vw;
	}
	.menuSec .menu__list .menu__item:nth-child(3) {
		margin-bottom: 3.3333vw;
	}
	.menuSec .menu__list .menu__item:nth-child(4) {
		margin-bottom: 4.2667vw;
	}
	.menuSec .menu__list .menu__item:nth-child(5) {
		margin-bottom: 0;
	}
	.menuSec .menu__list .menu__item.menu__item-reverse {
		flex-flow: row-reverse;
	}
	.menuSec .menu__list .menu__item__pict,
	.menuSec .menu__list .menu__item.menu__item-reverse .menu__item__pict {
		position: relative;
		width: 100%;
		padding-top: 0;
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 1.6vw;
	}
	.menuSec .menu__list .menu__item__pict img {
		z-index: 0;
	}
	.menuSec .menu__list .menu__item__name {
		width: 78.6667vw;
		height: 25.2vw;
		margin: -6.1333vw auto 0;
		background: url(../img/menu__item__name__bg-sp.png) no-repeat center top;
		background-size: contain;
		font-size: 4vw;
		line-height: 1.2;
	}
	.menuSec .menu__list .menu__item__text,
	.menuSec .menu__list .menu__item.menu__item-reverse .menu__item__text {
		position: relative;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	.menuSec .menu__list .menu__item__text p,
	.menuSec .menu__list .menu__item.menu__item-reverse .menu__item__text p {
		position: relative;
		padding: 0;
		font-size: 4vw;
		line-height: 1.5;
		letter-spacing: .02em;
		text-align: center;
		z-index: 1;
	}
	.menuSec .menu__list .menu__item:nth-child(1) .menu__item__material {
		margin-top: 0.6667vw;
	}
	.menuSec .menu__list .menu__item:nth-child(2) .menu__item__material {
		margin-top: 6.4vw;
	}
	.menuSec .menu__list .menu__item:nth-child(3) .menu__item__text p {
		letter-spacing: 0;
	}
	.menuSec .menu__list .menu__item:nth-child(3) .menu__item__material {
		margin-top: 6.4vw;
	}
	.menuSec .menu__list .menu__item:nth-child(4) .menu__item__material {
		margin-top: -1.4667vw;
	}
	.menuSec .menu__list .menu__item:nth-child(5) .menu__item__material {
		margin-top: -1.6vw;
	}
	.menuSec .menu__list .chef__profile {
		display: block;
		margin-top: -10vw;
	}
	.menuSec .menu__list .chef__profile .chef__pict {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		width: 100%;
	}
	.menuSec .menu__list .chef__profile .chef__pict img  {
		width: 64.8vw;
	}
	.menuSec .menu__list .chef__profile .chef__text {
		width: 100%;
		padding: 6.1333vw 0 0;
		text-align: justify;
	}
	.menuSec .menu__list .chef__profile .chef__text .chef__name {
		margin-bottom: 2.2667vw;
		font-size: 4vw;
		font-weight: 700;
		line-height: 1;
		letter-spacing: .1em;
		text-align: center;
	}
	.menuSec .menu__list .chef__profile .chef__text p {
		font-size: 4vw;
		line-height: 1.66;
		letter-spacing: .04em;
	}
}



/*-------------------------------
 storySec
-------------------------------*/
.storySec {
	width: 95.703125vw;
	max-width: 980px;
	margin: 0 auto;
	padding: 0 0 3.4180vw;
}
.storySec .l-inner {
	width: 100%;
}
.storySec .story__title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 64.6484vw;
	height: 14.1602vw;
	margin: 0 auto 1.953125vw;
	background: url(../img/story__title__bg.png) no-repeat center bottom;
	background-size: contain;
	font-size: 3.3203vw;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .1em;
	text-align: center;
	color: #fff;
}
.storySec .story__list {
	width: 100%;
}
.storySec .story__list .story__item {
	position: relative;
}
.storySec .story__list .story__item:nth-child(1) {
	margin-bottom: 10.5469vw;
}
.storySec .story__list .story__item:nth-child(2) {
	margin-bottom: 8.4961vw;
}
.storySec .story__list .story__item:nth-child(3) {
	margin-bottom: 15.1367vw;
}
.storySec .story__list .story__item:nth-child(4) {
	margin-bottom: 7.3242vw;
}

.storySec .story__list .story__item .story__item__pict {
	position: relative;
	width: 95.7031vw;
	z-index: 0;
}
.storySec .story__list .story__item:nth-child(1) .story__item__pict {
	padding-bottom: 7.8125vw;
}
.storySec .story__list .story__item:nth-child(2) .story__item__pict {
	padding-bottom: 7.8125vw;
}
.storySec .story__list .story__item:nth-child(4) .story__item__pict {
	padding-bottom: 15.625vw;
}

.storySec .story__list .story__item .story__item__text {
	position: absolute;
	width: 43.5547vw;
	z-index: 2;
}
.storySec .story__list .story__item .story__item__text .story__item__name {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 32.8125vw;
	margin: 0 auto 1.953125vw;
	font-size: 3.9062vw;
	font-weight: 700;
	letter-spacing: .15em;
}
.storySec .story__list .story__item .story__item__text .story__item__name:before,
.storySec .story__list .story__item .story__item__text .story__item__name:after {
	content: "";
	width: 5.1758vw;
	height: 1px;
	margin-top: 0.8789vw;
	background-color: #000;
}
.storySec .story__list .story__item .story__item__text p {
	font-size: 1.5625vw;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: .025em;
	text-align: justify;
}
.storySec .story__list .story__item:nth-child(1) .story__item__text {
	top: 13.671875vw;
	right: 6.0547vw;
}
.storySec .story__list .story__item:nth-child(2) .story__item__text {
	top: -3.7109vw;
	left: 5.8594vw;
}
.storySec .story__list .story__item:nth-child(3) .story__item__text {
	top: 1.5625vw;
	right: 6.0547vw;
}
.storySec .story__list .story__item:nth-child(4) .story__item__text {
	top: -5.5664vw;
	left: 5.8594vw;
}
.storySec .story__list .story__item .story__item__link {
	display: flex;
	flex-flow: column;
	gap: 1.9531vw;
	margin-top: 5.4688vw;
	margin-left: 0.9766vw;
}
.storySec .story__list .story__item .story__item__link a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 41.6992vw;
	height: 7.4219vw;
	font-size: 2.4414vw;
	font-weight: 500;
	color: #fff;
	background: #000;
	border-radius: 3.7109vw;
	box-shadow: 5px 5px 8px rgb(0 0 0 / 0.3);
}
.storySec .story__list .story__item .story__item__link a::after {
	position: absolute;
	content: "";
	top: calc(50% - 1.0742vw);
	right: 3.1250vw;
	width: 1.3672vw;
	height: 2.3438vw;
	background: url(../img/icon__arrow-r.png) no-repeat;
	background-size: contain;
}
.storySec .story__list .story__item .story__item__link a:hover::after {
	right: 2.7344vw;
}

.story__item-sakagura {
	width: 83.9844vw;
	margin: 3.6133vw auto 8.3008vw;
	padding: 3.0273vw 2.9297vw 2.7344vw;
	background: #fff;
	border-radius: 0.9766vw;
	box-shadow: 5px 5px 8px rgb(0 0 0 / 0.3);
}
.sakagura__info__wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.sakagura__text {
	width: 41.7969vw;
}
.sakagura__text .sakagura__name {
	display: inline-block;
	margin-bottom: 1.7578vw;
	font-size: 3.1250vw;
	font-weight: 700;
	letter-spacing: .04em;
}
.sakagura__text p {
	font-size: 1.5625vw;
	font-weight: 500;
	letter-spacing: .03em;
	line-height: 1.81;
	text-align: justify;
}
.sakagura__link {
	margin: 4.2969vw auto 0;
}
.sakagura__link a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 41.6992vw;
	height: 8.3984vw;
	font-size: 2.1484vw;
	font-weight: 500;
	letter-spacing: .03em;
	color: #fff;
	background: #231815;
	border-radius: 5px;
}
.sakagura__link a img {
	width: 3.4180vw;
	margin-right: 2.2461vw;
}
.sakagura__pict {
	width: 30.9570vw;
}
.sakagura__pict-sp {
	display: none;
}

@media screen and (min-width:1024px) {
	.storySec {
		padding: 0 0 35px;
	}
	.storySec .story__title {
		width: 662px;
		height: 145px;
		margin: 0 auto 20px;
		font-size: 34px;
	}

	.storySec .story__list .story__item:nth-child(1) {
		margin-bottom: 108px;
	}
	.storySec .story__list .story__item:nth-child(2) {
		margin-bottom: 87px;
	}
	.storySec .story__list .story__item:nth-child(3) {
		margin-bottom: 155px;
	}
	.storySec .story__list .story__item:nth-child(4) {
		margin-bottom: 75px;
	}
	.storySec .story__list .story__item .story__item__pict {
		width: 980px;
	}
	.storySec .story__list .story__item:nth-child(1) .story__item__pict {
		padding-bottom: 80px;
	}
	.storySec .story__list .story__item:nth-child(2) .story__item__pict {
		padding-bottom: 80px;
	}
	.storySec .story__list .story__item:nth-child(4) .story__item__pict {
		padding-bottom: 160px;
	}
	.storySec .story__list .story__item .story__item__text {
		width: 445px;
	}
	.storySec .story__list .story__item .story__item__text .story__item__name {
		width: 336px;
		margin: 0 auto 20px;
		font-size: 40px;
	}
	.storySec .story__list .story__item .story__item__text .story__item__name:before,
	.storySec .story__list .story__item .story__item__text .story__item__name:after {
		width: 53px;
		height: 1px;
		margin-top: 9px;
	}
	.storySec .story__list .story__item .story__item__text p {
		font-size: 16px;
	}
	.storySec .story__list .story__item:nth-child(1) .story__item__text {
		top: 140px;
		right: 62px;
	}
	.storySec .story__list .story__item:nth-child(2) .story__item__text {
		top: -38px;
		left: 60px;
	}
	.storySec .story__list .story__item:nth-child(3) .story__item__text {
		top: 16px;
		right: 62px;
	}
	.storySec .story__list .story__item:nth-child(4) .story__item__text {
		top: -57px;
		left: 60px;
	}
	.storySec .story__list .story__item .story__item__link {
		display: flex;
		flex-flow: column;
		gap: 20px;
		margin-top: 56px;
		margin-left: 10px;
	}
	.storySec .story__list .story__item .story__item__link a {
		width: 427px;
		height: 76px;
		font-size: 25px;
		border-radius: 38px;
		box-shadow: 5px 5px 8px rgb(0 0 0 / 0.3);
	}
	.storySec .story__list .story__item .story__item__link a::after {
		top: calc(50% - 11px);
		right: 32px;
		width: 14px;
		height: 24px;
	}
	.storySec .story__list .story__item .story__item__link a:hover::after {
		right: 28px;
	}
	.story__item-sakagura {
		width: 860px;
		margin: 37px auto 85px;
		padding: 31px 30px 28px;
		border-radius: 10px;
	}
	.sakagura__text {
		width: 428px;
	}
	.sakagura__text .sakagura__name {
		margin-bottom: 18px;
		font-size: 32px;
	}
	.sakagura__text p {
		font-size: 16px;
	}
	.sakagura__link {
		margin: 44px auto 0;
	}
	.sakagura__link a {
		width: 427px;
		height: 86px;
		font-size: 22px;
	}
	.sakagura__link a img {
		width: 35px;
		margin-right: 23px;
	}
	.sakagura__pict {
		width: 317px;
	}
}

@media (max-width: 767px) {
	.storySec {
		width: 100%;
		padding: 0;
	}
	.storySec .l-inner {
		width: 100%;
	}
	.storySec .story__title {
		width: 79.4667vw;
		height: 21.7333vw;
		margin: 0 auto 2vw;
		background: url(../img/story__title__bg-sp.png) no-repeat center bottom;
		background-size: contain;
		font-size: 4vw;
	}
	.storySec .story__list {
		width: 100%;
	}
	.storySec .story__list .story__item {
		position: relative;
	}
	.storySec .story__list .story__item:nth-child(1) {
		margin-bottom: 14.2667vw;
	}
	.storySec .story__list .story__item:nth-child(2) {
		margin-bottom: 14.2667vw;
	}
	.storySec .story__list .story__item:nth-child(3) {
		margin-bottom: 14.9333vw;
	}
	.storySec .story__list .story__item:nth-child(4) {
		margin-bottom: 12.6667vw;
	}
	.storySec .story__list .story__item:nth-child(5) {
		margin-bottom: 7.7333vw;
	}
	.storySec .story__list .story__item .story__item__pict {
		width: 100%;
		margin-bottom: 2.6667vw;
	}
	.storySec .story__list .story__item:nth-child(1) .story__item__pict {
		padding-bottom: 0;
	}
	.storySec .story__list .story__item:nth-child(2) .story__item__pict {
		padding-bottom: 4.5333vw;
	}
	.storySec .story__list .story__item:nth-child(3) .story__item__pict {
		padding-bottom: 6vw;
	}
	.storySec .story__list .story__item:nth-child(4) .story__item__pict {
		padding-bottom: 0.4vw;
	}
	.storySec .story__list .story__item .story__item__text {
		position: static;
		width: 100%;
		padding: 0 6.6667vw;
	}
	.storySec .story__list .story__item .story__item__text .story__item__name {
		width: 52.8vw;
		margin: 0 auto 1.6vw;
		font-size: 6.6667vw;
	}
	.storySec .story__list .story__item .story__item__text .story__item__name:before,
	.storySec .story__list .story__item .story__item__text .story__item__name:after {
		width: 7.0667vw;
		height: 0.1333vw;
		margin-top: 1.2vw;
	}
	.storySec .story__list .story__item .story__item__text p {
		font-size: 4vw;
		letter-spacing: .02em;
		line-height: 1.66;
		text-align: justify;
	}
	.storySec .story__list .story__item .story__item__link {
		margin: 6.6667vw auto 0;
		width: 74.6667vw;
		gap: 4vw;
	}
	.storySec .story__list .story__item .story__item__link a {
		width: 100%;
		height: 13.3333vw;
		font-size: 4.6667vw;
		border-radius: 6.6667vw;
		box-shadow: 0.6667vw 0.6667vw 1.0667vw rgb(0 0 0 / 0.3);
	}
	.storySec .story__list .story__item .story__item__link a::after {
		top: calc(50% - 2vw);
		right: 6.1333vw;
		width: 2.4vw;
		height: 4.1333vw;
		background: url(../img/icon__arrow-r-sp.png) no-repeat;
		background-size: contain;
	}
	.storySec .story__list .story__item .story__item__link a:hover::after {
		right: 5.3333vw;
	}
	.story__item-sakagura {
		width: 86.6667vw;
		margin: 9.3333vw auto 8.2667vw;
		padding: 5.7333vw 6vw 6.5333vw;
		border-radius: 3.6vw;
		box-shadow: 0.6667vw 0.6667vw 1.0667vw rgb(0 0 0 / 0.3);
	}
	.sakagura__info__wrap {
		justify-content: flex-start;
		flex-flow: column;
	}
	.sakagura__text {
		width: 100%;
	}
	.sakagura__text .sakagura__name {
		margin-bottom: 2.1333vw;
		font-size: 5.3333vw;
	}
	.sakagura__text p {
		font-size: 4vw;
		font-weight: 500;
		letter-spacing: .03em;
		line-height: 1.67;
	}
	.sakagura__link {
		margin: 3.0667vw auto 4.2667vw;
	}
	.sakagura__link a {
		width: 100%;
		height: 17.6vw;
		font-size: 4vw;
		letter-spacing: .03em;
		border-radius: 1.0667vw;
	}
	.sakagura__link a img {
		width: 6.1333vw;
		margin-right: 4vw;
	}
	.sakagura__pict {
		width: 100%;
		text-align: center;
	}
	.sakagura__pict img{
		width: 68.2667vw;
		margin: 0 auto;
	}
	.sakagura__pict-sp {
		display: block;
		margin-bottom: 4.6667vw;
	}
}



/*-------------------------------
 cafeSec
-------------------------------*/
.cafeSec {
	padding: 0 0 6.7383vw;
}
.cafeSec .l-inner {
	width: 83.984375vw;
	max-width: 860px;
	margin: 0 auto 5.7617vw;
}
.cafeSec .tour__wire {
	width: 95.703125vw;
	max-width: 980px;
	margin: 0 auto;
}
.cafeSec .sec__title {
	margin-bottom: 4.2969vw;
}
.cafeSec .sec__title .sec__title-en img {
	width: 7.4219vw;
}
.cafeSec .cafe__info {
	margin-bottom: 6.3672vw;
	text-align: center;
}
.cafeSec .cafe__info .cafe__logo {
	width: 73.2422vw;
	margin: 0 auto 2.8320vw;
}
.cafeSec .cafe__info .cafe__name {
	margin-bottom: 2.7344vw;
	font-size: 2.7344vw;
	font-weight: 700;
	line-height: 1.43;
	letter-spacing: 0.25em;
}
.cafeSec .cafe__info .cafe__address {
	margin-bottom: 4.1992vw;
	font-size: 1.5625vw;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.15em;
}
.cafeSec .googlemap__wrap {
	position: relative;
	width: 84.9609vw;
	padding-top: 47.4414vw;
	height: 0;
}
.cafeSec .googlemap__wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.cafeSec .sec__title.sec__title-wide {
	margin-bottom: 3.4170vw;
}
.cafeSec .cafe__banner {
	margin-bottom: 3.9062vw;
}
.cafeSec .cafe__open {
	font-size: 1.5625vw;
	font-weight: 500;
	line-height: 1.375;
	letter-spacing: 0.05em;
}
.cafeSec .cafe__open p:not(:last-child){
	margin-bottom: 2.1484vw;
}
.cafeSec .cafe__open .cafe__tel {
	display: inline-block;
	margin-top: 0.9766vw;
	font-size: 2.3438vw;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.05em;
}


@media screen and (min-width:1024px) {
	.cafeSec {
		padding: 0 0 69px;
	}
	.cafeSec .l-inner {
		margin: 0 auto 59px;
	}
	.cafeSec .sec__title {
		margin-bottom: 44px;
	}
	.cafeSec .sec__title .sec__title-en img {
		width: 76px;
	}
	.cafeSec .cafe__info {
		margin-bottom: 65px;
	}
	.cafeSec .cafe__info .cafe__logo {
		width: 750px;
		margin: 0 auto 29px;
	}
	.cafeSec .cafe__info .cafe__name {
		margin-bottom: 28px;
		font-size: 28px;
	}
	.cafeSec .cafe__info .cafe__address {
		margin-bottom: 43px;
		font-size: 16px;
	}
	.cafeSec .googlemap__wrap {
		width: 860px;
		padding-top: 485px;
	}
	.cafeSec .sec__title.sec__title-wide {
		margin-bottom: 35px;
	}
	.cafeSec .cafe__banner {
		margin-bottom: 40px;
	}
	.cafeSec .cafe__open {
		font-size: 16px;
	}
	.cafeSec .cafe__open p:not(:last-child){
		margin-bottom: 22px;
	}
	.cafeSec .cafe__open .cafe__tel {
		margin-top: 10px;
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.cafeSec {
		padding: 0 0 8vw;
	}
	.cafeSec .l-inner {
		width: 86.6667vw;
		margin: 0 auto 7.0667vw;
	}
	.cafeSec .sec__title {
		margin-bottom: 6.9333vw;
	}
	.cafeSec .sec__title .sec__title-en img {
		width: 10.1333vw;
	}
	.cafeSec .cafe__info {
		margin-bottom: 7.6vw;
	}
	.cafeSec .cafe__info .cafe__logo {
		width: 100%;
		margin: 0 auto 4.8vw;
	}
	.cafeSec .cafe__info .cafe__name {
		margin-bottom: 3.2vw;
		font-size: 4.9333vw;
		line-height: 1.35;
	}
	.cafeSec .cafe__info .cafe__address {
		margin-bottom: 6.8vw;
		font-size: 4vw;
		line-height: 1.33;
	}
	.cafeSec .googlemap__wrap {
		width: 100%;
		padding-top: 49.0667vw;
	}
	.cafeSec .sec__title.sec__title-wide {
		margin-bottom: 3.6vw;
	}
	.cafeSec .cafe__banner {
		margin-bottom: 4.2667vw;
	}
	.cafeSec .cafe__open {
		font-size: 4vw;
		line-height: 1.33;
		letter-spacing: .05em;
		text-align: center;
	}
	.cafeSec .cafe__open p:not(:last-child){
		margin-bottom: 5.3333vw;
	}
	.cafeSec .cafe__open .cafe__tel {
		margin-top: 0.5333vw;
		font-size: 5.3333vw;
	}
	.cafeSec .tour__wire {
		width: 100%;
	}
}



/*-------------------------------
 snsSec
-------------------------------*/
.snsSec {
	padding: 0 0 6.0547vw;
}
.snsSec .l-inner {
	width: 83.984375vw;
	max-width: 860px;
	margin: 0 auto;
}
.snsSec .sec__title {
	margin-bottom: 5.8594vw;
}
.snsSec .sec__title .sec__title-en img {
	width: 4.1016vw;
}
.snsSec .sns__list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 57.1289vw;
	margin: 0 auto;
}
.snsSec .sns__list .sns__item {
	width: 10.1562vw;
}

@media screen and (min-width:1024px) {
	.snsSec {
		padding: 0 0 62px;
	}
	.snsSec .sec__title {
		margin-bottom: 60px;
	}
	.snsSec .sec__title .sec__title-en img {
		width: 42px;
	}
	.snsSec .sns__list {
		width: 585px;
	}
	.snsSec .sns__list .sns__item {
		width: 104px;
	}
}

@media (max-width: 767px) {
	.snsSec {
		padding: 0 0 6.5333vw;
	}
	.snsSec .l-inner {
		width: 86.6667vw;
	}
	.snsSec .sec__title {
		margin-bottom: 3.7333vw;
	}
	.snsSec .sec__title .sec__title-en img {
		width: 5.6vw;
	}
	.snsSec .sns__list {
		width: 84.2667vw;
	}
	.snsSec .sns__list .sns__item {
		width: 17.6vw;
	}
}



/*-------------------------------
 contactSec
-------------------------------*/
.contactSec {
	padding: 0 0 8.7891vw;
}
.contactSec .l-inner {
	width: 83.984375vw;
	max-width: 860px;
	margin: 0 auto;
}
.contactSec .sec__title {
	margin-bottom: 4.1016vw;
}
.contactSec .sec__title .sec__title-en img {
	width: 8.3203vw;
}
.contactSec .contact__info {
	margin-bottom: 8.2031vw;
	font-size: 1.7578vw;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0.05em;
	text-align: center;
}
.contactSec .contact__info p:not(:last-child){
	margin-bottom: 2.6367vw;
}
.contactSec .download__info {
	width: 67.3828vw;
	margin: 0 auto;
}
.contactSec .download__info .download__banner-pc {
	margin-bottom: 2.1484vw;
}
.contactSec .download__info .download__banner-sp{
	display: none;
}
.contactSec .download__info h2 {
	margin-bottom: 2.9297vw;
	font-size: 3.3203vw;
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: 0.1em;
	text-align: center;
}
.contactSec .download__info .download__appli__wrap {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.contactSec .download__info .download__appli__wrap .download__appli__img {
	width: 21.9727vw;
}
.contactSec .download__info .download__appli__wrap .download__appli__link {
	width: 39.0625vw;
}
.contactSec .download__info .download__appli__wrap .download__appli__link .appli__link__list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	width: 39.0625vw;
	height: 100%;
}
.contactSec .download__info .download__appli__wrap .download__appli__link .appli__link__list .appli__link__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.contactSec .download__info .download__appli__wrap .download__appli__link .appli__link__list .appli__link__item .appli__link__qr {
	width: 9.7656vw;
}
.contactSec .download__info .download__appli__wrap .download__appli__link .appli__link__list .appli__link__item a {
	width: 26.2695vw;
}

@media screen and (min-width:1024px) {
	.contactSec {
		padding: 0 0 90px;
	}
	.contactSec .sec__title {
		margin-bottom: 42px;
	}
	.contactSec .sec__title .sec__title-en img {
		width: 85px;
	}
	.contactSec .contact__info {
		margin-bottom: 84px;
		font-size: 18px;
	}
	.contactSec .contact__info p:not(:last-child){
		margin-bottom: 27px;
	}
	.contactSec .download__info {
		width: 690px;
	}
	.contactSec .download__info .download__banner-pc {
		margin-bottom: 22px;
	}
	.contactSec .download__info h2 {
		margin-bottom: 30px;
		font-size: 34px;
	}
	.contactSec .download__info .download__appli__wrap .download__appli__img {
		width: 225px;
	}
	.contactSec .download__info .download__appli__wrap .download__appli__link {
		width: 400px;
	}
	.contactSec .download__info .download__appli__wrap .download__appli__link .appli__link__list {
		width: 400px;
	}
	.contactSec .download__info .download__appli__wrap .download__appli__link .appli__link__list .appli__link__item .appli__link__qr {
		width: 100px;
	}
	.contactSec .download__info .download__appli__wrap .download__appli__link .appli__link__list .appli__link__item a {
		width: 269px;
	}
}

@media (max-width: 767px) {
	.contactSec {
		padding: 0 0 9.7333vw;
	}
	.contactSec .l-inner {
		width: 100%;
	}
	.contactSec .sec__title {
		width: 86.6667vw;
		margin: 0 auto 4.5333vw;
	}
	.contactSec .sec__title .sec__title-en img {
		width: 11.3333vw;
	}
	.contactSec .contact__info {
		margin-bottom: 9.6vw;
		font-size: 4vw;
		line-height: 1.5;
		text-align: center;
	}
	.contactSec .contact__info p:not(:last-child){
		margin-bottom: 6vw;
	}
	.contactSec .download__info {
		width: 86.6667vw;
	}
	.contactSec .download__info .download__banner-pc {
		display: none;
	}
	.contactSec .download__info .download__banner-sp{
		display: block;
		margin-top: 7.0667vw;
	}
	.contactSec .download__info h2 {
		margin-bottom: 8.5333vw;
		padding: 2.6667vw;
		font-size: 4.9333vw;
		line-height: 1.2;
		letter-spacing: .2em;
		border-top: 1px solid #231815;
		border-bottom: 1px solid #231815;
	}
	.contactSec .download__info .download__appli__wrap {
		display: flex;
		justify-content: space-between;
		align-items: stretch;
	}
	.contactSec .download__info .download__appli__wrap .download__appli__img {
		width: 33.6vw;
	}
	.contactSec .download__info .download__appli__wrap .download__appli__link {
		width: auto;
		flex: 1;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
	}
	.contactSec .download__info .download__appli__wrap .download__appli__link .appli__link__list {
		width: 100%;
	}
	.contactSec .download__info .download__appli__wrap .download__appli__link .appli__link__list .appli__link__item {
		justify-content: flex-end;
	}
	.contactSec .download__info .download__appli__wrap .download__appli__link .appli__link__list .appli__link__item .appli__link__qr {
		display: none;
	}
	.contactSec .download__info .download__appli__wrap .download__appli__link .appli__link__list .appli__link__item a {
		width: 48.1333vw;
	}
}



/*-------------------------------
 linkSec
-------------------------------*/
.linkSec {
	padding: 0 0 3.9063vw;
}
.linkSec .l-inner {
	width: 83.984375vw;
	max-width: 860px;
	margin: 0 auto;
}
.linkSec .sec__title {
	margin-bottom: 6.3477vw;
}
.linkSec .sec__title .sec__title-en img {
	width: 4.2969vw;
}
.linkSec .linkList__wrap {
	width: 78.125vw;
	margin: 0 auto;
	padding: 2.9297vw 2.4414vw 1.7578vw 2.4414vw;
	margin-bottom: 3.9063vw;
	background: #fff;
	border-radius: 0.8789vw;
	box-shadow: 0.4883vw 0.4883vw 0.7813vw rgb(0 0 0 / 0.3);
}
.linkSec .linkList__wrap .link__list {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-flow: wrap;
}
.linkSec .linkList__wrap .link__list .link__item {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-flow: column;
	width: 17.5781vw;
	margin-bottom: 1.7578vw;
	font-size: 1.3672vw;
	font-weight: 400;
	letter-spacing: -.01em;
	text-align: center;
	white-space: nowrap;
}
.linkSec .linkList__wrap .link__list .link__item:nth-child(9),
.linkSec .linkList__wrap .link__list .link__item:nth-child(10),
.linkSec .linkList__wrap .link__list .link__item:nth-child(11),
.linkSec .linkList__wrap .link__list .link__item:nth-child(12) {
	margin-bottom: 3.0273vw;
}
.linkSec .linkList__wrap .link__list .link__item .link__item__text {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-flow: column;
	width: 100%;
	height: 2.7344vw;
}
.linkSec .linkList__wrap .link__list .link__item:nth-child(13) .link__item__text,
.linkSec .linkList__wrap .link__list .link__item:nth-child(14) .link__item__text,
.linkSec .linkList__wrap .link__list .link__item:nth-child(15) .link__item__text {
	height: 3.8086vw;
}
.linkSec .linkList__wrap .link__list .link__item:not(:nth-of-type(4n)) {
	margin-right: 0.9766vw;
}

@media screen and (min-width:1024px) {
	.linkSec {
		padding: 0 0 40px;
	}
	.linkSec .sec__title {
		margin-bottom: 65px;
	}
	.linkSec .sec__title .sec__title-en img {
		width: 44px;
	}
	.linkSec .linkList__wrap {
		width: 800px;
		padding: 30px 25px 18px 25px;
		margin-bottom: 40px;
		border-radius: 15px;
		box-shadow: 5px 5px 8px rgb(0 0 0 / 0.3);
	}
	.linkSec .linkList__wrap .link__list .link__item {
		width: 180px;
		margin-bottom: 18px;
		font-size: 14px;
	}
	.linkSec .linkList__wrap .link__list .link__item:nth-child(9),
	.linkSec .linkList__wrap .link__list .link__item:nth-child(10),
	.linkSec .linkList__wrap .link__list .link__item:nth-child(11),
	.linkSec .linkList__wrap .link__list .link__item:nth-child(12) {
		margin-bottom: 31px;
	}
	.linkSec .linkList__wrap .link__list .link__item .link__item__text {
		height: 28px;
	}
	.linkSec .linkList__wrap .link__list .link__item:nth-child(13) .link__item__text,
	.linkSec .linkList__wrap .link__list .link__item:nth-child(14) .link__item__text,
	.linkSec .linkList__wrap .link__list .link__item:nth-child(15) .link__item__text {
		height: 39px;
	}
	.linkSec .linkList__wrap .link__list .link__item:not(:nth-of-type(4n)) {
		margin-right: 10px;
	}
}

@media (max-width: 767px) {
	.linkSec {
		padding: 0 0 6.4vw;
	}
	.linkSec .l-inner {
		width: 86.6667vw;
	}
	.linkSec .sec__title {
		margin-bottom: 5.0667vw;
	}
	.linkSec .sec__title .sec__title-en img {
		width: 5.6vw;
	}
	.linkSec .linkList__wrap {
		width: 100%;
		padding: 7.4667vw 7.3333vw 2.4vw;
		margin-bottom: 5.3333vw;
		border-radius: 0.6667vw;
		box-shadow: 0.5333vw 0.5333vw 1.0667vw rgb(0 0 0 / 0.3);
	}
	.linkSec .linkList__wrap .link__list {
		justify-content: space-between;
	}
	.linkSec .linkList__wrap .link__list .link__item {
		width: 35.4667vw;
		margin-bottom: 5.6vw;
		font-size: 3.2vw;
		letter-spacing: 0;
	}
	.linkSec .linkList__wrap .link__list .link__item:nth-child(9),
	.linkSec .linkList__wrap .link__list .link__item:nth-child(10),
	.linkSec .linkList__wrap .link__list .link__item:nth-child(11),
	.linkSec .linkList__wrap .link__list .link__item:nth-child(12) {
		margin-bottom: 5.6vw;
	}
	.linkSec .linkList__wrap .link__list .link__item .link__item__text {
		height: 5.7333vw;
	}
	.linkSec .linkList__wrap .link__list .link__item:nth-child(13) .link__item__text,
	.linkSec .linkList__wrap .link__list .link__item:nth-child(14) .link__item__text,
	.linkSec .linkList__wrap .link__list .link__item:nth-child(15) .link__item__text {
		height: 5.7333vw;
	}
	.linkSec .linkList__wrap .link__list .link__item:not(:nth-of-type(4n)) {
		margin-right: 0;
	}
}