@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: 12.0000vw;
		height: 12.0000vw;
		border-radius: 1.6000vw;
	}
	.headerSec__toggle img {
		top: 7.6000vw;
	}
	.headerSec__toggle .toggle__menu {
		left: calc( 50% - 2.4000vw);
		width: 4.6667vw;
	}
	.headerSec__toggle .toggle__close {
		left: calc( 50% - 2.8000vw);
		width: 5.6000vw;
	}
	.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.6000vw;
	}
	.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.8000vw;
	}
	.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: 7.4667vw;
		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: 100%;
	padding: 3.1250vw 0 3.5156vw;
}
.mv__illust {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}
.mv__illust .mv__illust__01 {
	position: absolute;
	top: 4.7852vw;
	left: 9.9609vw;
	width: 10.4492vw;
	height: 22.2656vw;
	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: 33.6914vw;
	left: 7.8125vw;
	width: 14.1602vw;
	height: 11.7188vw;
	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: 51.8555vw;
	left: 1.1719vw;
	width: 25.0977vw;
	height: 24.9023vw;
	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: 12.0117vw;
	right: 1.3672vw;
	width: 27.7344vw;
	height: 12.6953vw;
	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: 31.5430vw;
	right: 13.8672vw;
	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: 42.4805vw;
	right: 1.3672vw;
	width: 20.7031vw;
	height: 13.1836vw;
	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: 58.8867vw;
	right: 2.9297vw;
	width: 8.2031vw;
	height: 6.5430vw;
	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: 58.2031vw;
	right: 9.2773vw;
	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__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.9688vw;
	margin-bottom: 1.1719vw;
}
.mv__title .event__schedule {
	width: 50.2930vw;
	margin-bottom: 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: 49px;
		left: 102px;
		width: 107px;
		height: 228px;
	}
	.mv__illust .mv__illust__02 {
		top: 345px;
		left: 80px;
		width: 145px;
		height: 120px;
	}
	.mv__illust .mv__illust__03 {
		top: 531px;
		left: 12px;
		width: 257px;
		height: 255px;
	}
	.mv__illust .mv__illust__04 {
		top: 123px;
		right: 14px;
		width: 284px;
		height: 130px;
	}
	.mv__illust .mv__illust__05 {
		top: 323px;
		right: 142px;
		width: 92px;
		height: 82px;
	}
	.mv__illust .mv__illust__06 {
		top: 435px;
		right: 14px;
		width: 212px;
		height: 135px;
	}
	.mv__illust .mv__illust__07 {
		top: 603px;
		right: 30px;
		width: 84px;
		height: 67px;
	}
	.mv__illust .mv__illust__08 {
		top: 596px;
		right: 95px;
		width: 142px;
		height: 274px;
	}
	.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: 12px;
	}
	.mv__title .event__schedule {
		width: 515px;
		margin-bottom: 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 { 
		padding: 3.067vw 0;
	}
	.mv__illust .mv__illust__01 {
		top: 14.0000vw;
		left: 5.3333vw;
		width: 13.4667vw;
		height: 28.4000vw;
	}
	.mv__illust .mv__illust__02 {
		top: 48.0000vw;
		left: 2.8000vw;
		width: 16.0000vw;
		height: 13.3333vw;
	}
	.mv__illust .mv__illust__03 {
		top: 73.4667vw;
		left: -4.9333vw;
		width: 24.5333vw;
		height: 24.4000vw;
	}
	.mv__illust .mv__illust__04 {
		top: 16.4000vw;
		right: -23.4667vw;
		width: 44.0000vw;
		height: 20.1333vw;
	}
	.mv__illust .mv__illust__05 {
		top: 49.2000vw;
		right: 25.7333vw;
		width: 7.8667vw;
		height: 6.9333vw;
	}
	.mv__illust .mv__illust__06 {
		top: 43.4667vw;
		right: -10.5333vw;
		width: 29.3333vw;
		height: 18.6667vw;
	}
	.mv__illust .mv__illust__07 {
		top: 66.4000vw;
		right: 3.4667vw;
		width: 8.4000vw;
		height: 6.8000vw;
	}
	.mv__illust .mv__illust__08 {
		top: 75.4667vw;
		right: 3.2000vw;
		width: 16.6667vw;
		height: 32.0000vw;
	}
	.mv__title {
		margin-bottom: 2.2667vw;
	}
	.mv__title .before__title {
		width: 66.6667vw;
		margin-bottom: 6.4000vw;
	}
	.mv__title .main__title {
		width: 100%;
		margin-bottom: 6.0000vw;
	}
	.mv__title .after__title {
		width: 73.3333vw;
		margin-bottom: 1.6000vw;
	}
	.mv__title .event__schedule {
		width: 73.3333vw;
		margin-bottom: 3.3333vw;
	}
	.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: 4.0000vw;
		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.6000vw;
	}
	.mv__about .mvAbout__text{
		position: absolute;
		bottom: 6.0000vw;
		width: 100%;
		padding: 0;
		font-size: 4.2667vw;
		font-weight: 500;
		line-height: 1.8125;
		letter-spacing: -.01em;
		text-align: center;
	}


}



/*-------------------------------
 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;
	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 .sec__title {
		margin-bottom: 52px;
	}
	.newsSec .sec__title .sec__title-en img {
		width: 54px;
	}
	.newsSec .news__list {
		padding: 16px 50px;
		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: 6.0000vw;
	}
	.newsSec .sec__title .sec__title-en img {
		width: 7.2000vw;
	}
	.newsSec .news__list {
		padding: 0 6.1333vw;
		margin-bottom: 6.6667vw;
		border-radius: 3.6000vw;
		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: 4.0000vw;
	}
	.newsSec .news__list .news__item .news__item__summary {
		font-size: 3.7333vw;
		line-height: 1.535;
		letter-spacing: .03em;
	}
	.newsSec .more__btn button {
		width: 44.0000vw;
		height: 10.6667vw;
		font-size: 4.5333vw;
		letter-spacing: .25em;
		border-radius: 5.3333vw;
		box-shadow: 0.4000vw 0.4000vw 0.6667vw rgb(0 0 0 / 0.3);
	}
}



/*-------------------------------
 menuSec
-------------------------------*/
.menuSec {
	padding: 0 0 8.0469vw;
}
.menuSec .l-inner {
	position: relative;
	width: 82.0312vw;
	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.3203vw 0 3.9062vw;
	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: 1.4648vw;
}
.menuSec .menu__list .menu__item:nth-child(2) {
	margin-bottom: 0.7812vw;
}
.menuSec .menu__list .menu__item:nth-child(3) {
	margin-bottom: 1.7578vw;
}
.menuSec .menu__list .menu__item:nth-child(4) {
	margin-bottom: 2.9297vw;
}
.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 {
	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;
	width: 39.2578vw;
	height: 11.2305vw;
	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__text {
	width: 35.7422vw;
}
.menuSec .menu__list .menu__item__text p {
	padding: 0 2.9297vw 0 3.3203vw;
	font-size: 1.5625vw;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0;
}
.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__material__sp {
	display: none;
}
.menuSec .menu__list .menu__item:nth-child(1) .menu__item__material__pc {
	margin-top: 1.0742vw;
}
.menuSec .menu__list .menu__item:nth-child(2) .menu__item__material__pc {
	margin-top: 1.0742vw;
}
.menuSec .menu__list .menu__item:nth-child(3) .menu__item__material__pc {
	margin-top: 1.0742vw;
}
.menuSec .menu__list .menu__item:nth-child(4) .menu__item__material__pc {
	margin-top: 2.5391vw;
}
.menuSec .menu__list .menu__item:nth-child(5) .menu__item__material__pc {
	margin-top: 1.6602vw;
}
.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: 50.0000vw;
	padding: 8.7891vw 3.3203vw 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 83px;
	}
	.menuSec .l-inner {
		width: 860px;
	}
	.menuSec .menu__title {
		width: 662px;
		height: 145px;
		font-size: 34px;
	}
	.menuSec .menu__list {
		padding: 137px 0 40px;
		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: 15px;
	}
	.menuSec .menu__list .menu__item:nth-child(2) {
		margin-bottom: 8px;
	}
	.menuSec .menu__list .menu__item:nth-child(3) {
		margin-bottom: 18px;
	}
	.menuSec .menu__list .menu__item:nth-child(4) {
		margin-bottom: 30px;
	}
	.menuSec .menu__list .menu__item:nth-child(5) {
		margin-bottom: 0;
	}
	.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: 115px;
		margin: -20px auto 0;
		font-size: 20px;
	}
	.menuSec .menu__list .menu__item__text {
		width: 366px;
	}
	.menuSec .menu__list .menu__item__text p {
		padding: 0 30px 0 35px;
		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__pc {
		margin-top: 11px;
	}
	.menuSec .menu__list .menu__item:nth-child(2) .menu__item__material__pc {
		margin-top: 11px;
	}
	.menuSec .menu__list .menu__item:nth-child(3) .menu__item__material__pc {
		margin-top: 11px;
	}
	.menuSec .menu__list .menu__item:nth-child(4) .menu__item__material__pc {
		margin-top: 26px;
	}
	.menuSec .menu__list .menu__item:nth-child(5) .menu__item__material__pc {
		margin-top: 17px;
	}
	.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: 90px 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: 92.0000vw;
	}
	.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: 4.0000vw;
		line-height: 1.2;
	}
	.menuSec .menu__list {
		padding: 17.2000vw 4.5333vw 6.2667vw;
		margin-top: -6.2667vw;
		background-image: linear-gradient(45deg, #000 1.6000vw, transparent 0),
											linear-gradient(-45deg, #000 1.6000vw, transparent 0),
											linear-gradient(135deg, #000 1.6000vw, transparent 0),
											linear-gradient(-135deg, #000 1.6000vw, transparent 0);
	}
	.menuSec .menu__list .menu__item {
		display: block;
		margin-bottom: 9.0667vw;
	}
	.menuSec .menu__list .menu__item:nth-child(2) {
		margin-bottom: 9.0667vw;
	}
	.menuSec .menu__list .menu__item:nth-child(3) {
		margin-bottom: 16.8000vw;
	}
	.menuSec .menu__list .menu__item:nth-child(4) {
		margin-bottom: 9.0667vw;
	}
	.menuSec .menu__list .menu__item:nth-child(5) {
		margin-bottom: 5.3333vw;
	}
	.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: 2.1333vw;
	}
	.menuSec .menu__list .menu__item__pict img {
		z-index: 0;
	}
	.menuSec .menu__list .menu__item__name {
		width: 78.6667vw;
		height: 22.6667vw;
		margin: -6.1333vw auto 0;
		background: url(../img/menu__item__name__bg-sp.png) no-repeat center top;
		background-size: contain;
		font-size: 4.0000vw;
		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 11.3333vw;
	}
	.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: 4.0000vw;
		line-height: 1.5;
		letter-spacing: .02em;
		text-align: center;
		z-index: 1;
	}
	.menuSec .menu__list .menu__item__material__sp {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100%;
		z-index: -1;
	}
	.menuSec .menu__list .menu__item__material__sp .material__01__1 {
		position: absolute;
		width: 22.9333vw;
		height: 32.8000vw;
		top: 12.0000vw;
		left: -8.8000vw;
	}
	.menuSec .menu__list .menu__item__material__sp .material__01__2 {
		position: absolute;
		width: 28.6667vw;
		height: 23.3333vw;
		bottom: 8.8000vw;
		right: -8.9333vw;
	}
	.menuSec .menu__list .menu__item__material__sp .material__02__1 {
		position: absolute;
		width: 21.3333vw;
		height: 23.7333vw;
		top: 1.2000vw;
		left: -8.8000vw;
	}
	.menuSec .menu__list .menu__item__material__sp .material__02__2 {
		position: absolute;
		width: 19.8667vw;
		height: 29.6000vw;
		bottom: 24.5333vw;
		right: -8.9333vw;
	}
	.menuSec .menu__list .menu__item__material__sp .material__02__3 {
		position: absolute;
		width: 21.3333vw;
		height: 33.4667vw;
		bottom: 4.4000vw;
		left: -9.0667vw;
	}
	.menuSec .menu__list .menu__item__material__sp .material__03__1 {
		position: absolute;
		width: 22.9333vw;
		height: 32.8000vw;
		top: 12.0000vw;
		left: -8.8000vw;
	}
	.menuSec .menu__list .menu__item__material__sp .material__03__2 {
		position: absolute;
		width: 46.4000vw;
		height: 26.5333vw;
		bottom: -12.0000vw;
		right: -8.9333vw;
	}
	.menuSec .menu__list .menu__item__material__sp .material__04__1 {
		position: absolute;
		width: 22.9333vw;
		height: 34.9333vw;
		bottom: 0.4000vw;
		left: -8.8000vw;
	}
	.menuSec .menu__list .menu__item__material__sp .material__04__2 {
		position: absolute;
		width: 22.0000vw;
		height: 25.7333vw;
		top: 11.2000vw;
		right: -8.9333vw;
	}
	.menuSec .menu__list .menu__item__material__sp .material__05__1 {
		position: absolute;
		width: 18.9333vw;
		height: 34.9333vw;
		top: -0.5333vw;
		left: -8.8000vw;
	}
	.menuSec .menu__list .menu__item__material__sp .material__05__2 {
		position: absolute;
		width: 28.6667vw;
		height: 25.7333vw;
		bottom: 8.8000vw;
		right: -8.9333vw;
	}

	.menuSec .menu__list .menu__item__material__pc {
		display: none;
	}
	.menuSec .menu__list .chef__profile {
		display: block;
	}
	.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: 67.4667vw;
	}
	.menuSec .menu__list .chef__profile .chef__text {
		width: 100%;
		padding: 4.2667vw 0;
	}
	.menuSec .menu__list .chef__profile .chef__text .chef__name {
		margin-bottom: 1.7333vw;
		font-size: 4.0000vw;
		font-weight: 700;
		line-height: 1;
		letter-spacing: .1em;
		text-align: center;
	}
	.menuSec .menu__list .chef__profile .chef__text p {
		font-size: 4.0000vw;
		line-height: 1.66;
		letter-spacing: .05em;
	}
}



/*-------------------------------
 storySec
-------------------------------*/
.storySec {
	padding: 0 0 4.4922vw;
}
.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 3.4170vw;
	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(2) {
	transform: translateY(-0.6836vw);
	margin-bottom: 4.6875vw;
}
.storySec .story__list .story__item:nth-child(4) {
	transform: translateY(-2.4414vw);
}
.storySec .story__list .story__item .story__item__pict {
	position: relative;
	width: 95.7031vw;
	z-index: 0;
}
.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.9531vw;
	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;
	letter-spacing: 0;
	line-height: 1.41;
}
.storySec .story__list .story__item:nth-child(1) .story__item__text {
	top: 25.1953vw;
	right: 6.0547vw;
}
.storySec .story__list .story__item:nth-child(2) .story__item__text {
	top: 5.4688vw;
	left: 5.8594vw;
}
.storySec .story__list .story__item:nth-child(3) .story__item__text {
	top: 3.5156vw;
	right: 6.0547vw;
}
.storySec .story__list .story__item:nth-child(4) .story__item__text {
	top: 7.6172vw;
	left: 5.8594vw;
}

@media screen and (min-width:1024px) {
	.storySec {
		padding: 0 0 46px;
	}
	.storySec .story__title {
		width: 662px;
		height: 145px;
		margin: 0 auto 35px;
		font-size: 34px;
	}
	.storySec .story__list .story__item:nth-child(2) {
		transform: translateY(-7px);
		margin-bottom: 48px;
	}
	.storySec .story__list .story__item:nth-child(4) {
		transform: translateY(-25px);
	}
	.storySec .story__list .story__item .story__item__pict {
		width: 980px;
	}
	.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: 258px;
		right: 62px;
	}
	.storySec .story__list .story__item:nth-child(2) .story__item__text {
		top: 56px;
		left: 60px;
	}
	.storySec .story__list .story__item:nth-child(3) .story__item__text {
		top: 36px;
		right: 62px;
	}
	.storySec .story__list .story__item:nth-child(4) .story__item__text {
		top: 78px;
		left: 60px;
	}
}

@media (max-width: 767px) {
	.storySec {
		padding: 0 0 13.8667vw;
	}
	.storySec .l-inner {
		width: 100%;
	}
	.storySec .story__title {
		width: 79.4667vw;
		height: 21.7333vw;
		margin: 0 auto 7.6000vw;
		background: url(../img/story__title__bg-sp.png) no-repeat center bottom;
		background-size: contain;
		font-size: 4.0000vw;
	}
	.storySec .story__list {
		width: 100%;
	}
	.storySec .story__list .story__item {
		position: relative;
		margin-bottom: 3.8667vw;
	}
	.storySec .story__list .story__item:nth-child(2) {
		margin-bottom: 7.3333vw;
		transform: translateY(0);
	}
	.storySec .story__list .story__item:nth-child(3) {
		margin-bottom: 5.6000vw;
	}
	.storySec .story__list .story__item:nth-child(4) {
		margin-bottom: 3.8667vw;
		transform: translateY(0);
	}
	.storySec .story__list .story__item .story__item__pict {
		width: 100%;
		margin-bottom: 3.2000vw;
	}
	.storySec .story__list .story__item:nth-child(3) .story__item__pict {
		margin-bottom: 5.4667vw;
	}
	.storySec .story__list .story__item:nth-child(4) .story__item__pict {
		margin-bottom: 3.8667vw;
	}
	.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: 44.8000vw;
		margin: 0 auto 2.0000vw;
		font-size: 5.3333vw;
	}
	.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.2000vw;
	}
	.storySec .story__list .story__item .story__item__text p {
		font-size: 4.0000vw;
		letter-spacing: .06em;
		line-height: 1.66;
	}
}



/*-------------------------------
 cafeSec
-------------------------------*/
.cafeSec {
	padding: 0 0 4.9805vw;
}
.cafeSec .l-inner {
	width: 83.984375vw;
	max-width: 860px;
	margin: 0 auto 7.5195vw;
}
.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 51px;
	}
	.cafeSec .l-inner {
		margin: 0 auto 77px;
	}
	.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 4.6667vw;
	}
	.cafeSec .l-inner {
		width: 86.6667vw;
		margin: 0 auto 7.0667vw;
	}
	.cafeSec .sec__title {
		margin-bottom: 6.1333vw;
	}
	.cafeSec .sec__title .sec__title-en img {
		width: 10.1333vw;
	}
	.cafeSec .cafe__info {
		margin-bottom: 7.6000vw;
	}
	.cafeSec .cafe__info .cafe__logo {
		width: 100%;
		margin: 0 auto 4.8000vw;
	}
	.cafeSec .cafe__info .cafe__name {
		margin-bottom: 3.2000vw;
		font-size: 4.9333vw;
		line-height: 1.35;
	}
	.cafeSec .cafe__info .cafe__address {
		margin-bottom: 6.8000vw;
		font-size: 4.0000vw;
		line-height: 1.33;
	}
	.cafeSec .googlemap__wrap {
		width: 100%;
		padding-top: 49.0667vw;
	}
	.cafeSec .sec__title.sec__title-wide {
		margin-bottom: 3.6000vw;
	}
	.cafeSec .cafe__banner {
		margin-bottom: 4.2667vw;
	}
	.cafeSec .cafe__open {
		font-size: 4.0000vw;
		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;
	}
}



/*-------------------------------
 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: 5.6000vw;
	}
	.snsSec .sec__title .sec__title-en img {
		width: 5.6000vw;
	}
	.snsSec .sns__list {
		width: 84.2667vw;
	}
	.snsSec .sns__list .sns__item {
		width: 17.6000vw;
	}
}



/*-------------------------------
 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: 4.5333vw;
		font-size: 4.0000vw;
		line-height: 1.5;
		text-align: center;
	}
	.contactSec .contact__info p:not(:last-child){
		margin-bottom: 6.0000vw;
	}
	.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.6000vw;
	}
	.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;
	}
}