@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap");
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* flex */
.flex,
.flexA,
.flexB,
.flexC {
	display: flex;
	flex-wrap: wrap;
}

.flexA {
	justify-content: space-around;
}

.flexB {
	justify-content: space-between;
}

.flexC {
	justify-content: center;
}

.averia {
	font-family: "Averia Serif Libre", cursive;
}

.digit {
	font-family: "Montserrat", sans-serif;
}

.baskerville {
	font-family: "Libre Baskerville", serif;
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1366px;
}

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

#stan_container {
	padding-bottom: 115px;
	text-align: left;
	color: #333;
	font-size: 14px;
	font-weight: 500;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
	line-height: 1.5;
	background: #f7f9ea;
	overflow: hidden;
}

#stan_container a {
	color: #333;
	text-decoration: none;
}

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

@media screen and (max-width: 768px) {
	body {
		min-width: inherit;
	}
	#stan_container {
		/* padding: 60px 0; */
		padding-top: 112px;
		padding-bottom: 60px;
		font-size: 13px;
	}
	.pc {
		display: none !important;
	}
	#stan_container a:hover,
	#stan_container a:hover img {
		opacity: 1 !important;
	}
}

/*------------------------------------------------------------
	navi_wrap
------------------------------------------------------------*/
#navi_wrap {
	width: 100%;
	height: 84px;
	position: relative;
	z-index: 100;
}

#navi_wrap .nav_content {
	margin: 0 auto;
	max-width: 1354px;
	display: flex;
}

#navi_wrap nav {
	background: rgba(0, 0, 0, 0.6);
	opacity: 1;
}

#navi_wrap nav.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

#navi_wrap h2 {
	margin: 0;
	padding: 25px 0;
	width: 143px;
}

#navi_wrap ul {
	width: calc(100% - 280px);
}

#navi_wrap li {
	margin: 0 26px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#navi_wrap li a {
	display: block;
	position: relative;
	color: #fff;
}

#navi_wrap li a:hover {
	color: #fff;
}

#navi_wrap li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100%;
	height: 1px;
	background: #fff;
	transition: all 0.3s;
	transform: translateX(-50%) scale(0, 1);
	transform-origin: center top;
}

#navi_wrap li.current a::after,
#navi_wrap li a:hover::after {
	transform: translateX(-50%) scale(1, 1);
}

#navi_wrap .productBtn.on {
	background: url("../img/icon08.webp") no-repeat center bottom/22px auto;
}

#navi_wrap .subNav {
	display: none;
	width: 100%;
	position: absolute;
	left: 0;
	top: 100%;
	background: #f7f9ea;
	z-index: 100;
}

#navi_wrap .subNav .subList {
	padding: 35px 0 53px;
	width: auto;
	display: flex;
	justify-content: center;
}

#navi_wrap .subNav .subList li a {
	display: block;
	color: #333;
}

#navi_wrap .subNav .subList li a::after {
	display: none;
}

#navi_wrap .subNav .subList li {
	/* margin: 0 31px;
	width: 146px; */
	margin: 0 18px;
	width: 130px;
}

#navi_wrap .subNav .subList li a {
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	text-align: center;
	color: #333;
	font-size: 16px;
}

#navi_wrap .subNav .subList li a .txt {
	margin-top: 13px;
	display: block;
	font-size: 16px;
}

#navi_wrap .subNav .subList li a:hover img {
	opacity: 0.7;
}

@media screen and (min-width: 769px) {
	#navi_wrap nav.UpMove {
		opacity: 0;
		transition: all 0.5s;
		transform: translateY(-100%);
	}
	#navi_wrap nav.DownMove {
		opacity: 1;
		transition: all 0.5s;
		transform: translateY(0);
	}
	#navi_wrap nav.DownMove.fixed:not(.is-header-hidden) {
		top: 110px;
	}
}

@media screen and (max-width: 768px) {
	#navi_wrap {
		position: fixed;
		left: 0;
		top: calc(120 * 100vw / 768);
		/* height: 60px; */
		height: 97px;
		transition: top 0.4s;
	}
	#navi_wrap.is-header-hidden {
		top: 0;
	}
	#navi_wrap nav {
		opacity: 1 !important;
	}
	#navi_wrap .nav_content {
		padding: 0 15px;
		max-width: inherit;
		align-items: center;
	}
	#navi_wrap h2 {
		padding: 20px 0 0;
		width: 80px;
		/* height: 60px; */
		font-size: 0;
		line-height: 0;
		box-sizing: border-box;
	}
	#navi_wrap ul {
		/* width: calc(100% - 80px); */
		width: 100%;
	}
	#navi_wrap li {
		margin: 0;
		width: auto;
		background: none !important;
	}
	#navi_wrap li a {
		padding: 20px 10px;
		color: #fff;
		font-size: 12px;
	}
	#navi_wrap li a:hover {
		color: #fff;
	}
	#navi_wrap li a::after {
		display: none;
	}
	#navi_wrap .subNav {
		display: none !important;
	}
	#navi_wrap .nav_content {
		display: block;
	}
	#navi_wrap .nav_content h2 {
		margin-left: auto;
		margin-right: auto;
	}
	#navi_wrap nav.fixed {
		position: fixed;
		top: calc(120 * 100vw / 768);
		left: 0;
		width: 100%;
	}
}

@media screen and (max-width: 374px) {
	#navi_wrap li a {
		font-size: 10px;
	}
}

/*------------------------------------------------------------
	pagePath
------------------------------------------------------------*/
#pagePath {
	margin: 0 auto;
	padding: 21px 0;
	max-width: 1360px;
	display: flex;
	color: #333;
	font-size: 12px;
	letter-spacing: 0.1em;
}

#pagePath li:not(:last-child) {
	margin-right: 19px;
}

#pagePath li a {
	padding-right: 13px;
	color: #969696;
}

#pagePath li a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	#pagePath {
		padding: 15px;
		max-width: inherit;
		position: relative;
		z-index: 1;
		font-size: 12px;
		overflow: auto;
		white-space: nowrap;
	}
	#pagePath li:not(:last-child) {
		margin-right: 8px;
	}
	#pagePath li a {
		padding-right: 8px;
	}
	#pagePath li a:hover {
		text-decoration: none;
	}
}

/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
footer {
	position: relative;
	z-index: 1;
}

/*------------------------------------------------------------
	splash
------------------------------------------------------------*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 9999999;
	text-align: center;
	color: #fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.splashbg {
	display: none;
}

body.appear .splashbg {
	display: block;
	content: "";
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	transform: scaleY(0);
	background-color: #333;
	animation-name: PageAnime;
	animation-duration: 1.2s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}

@keyframes PageAnime {
	0% {
		transform-origin: top;
		transform: scaleY(0);
	}
	50% {
		transform-origin: top;
		transform: scaleY(1);
	}
	50.001% {
		transform-origin: bottom;
	}
	100% {
		transform-origin: bottom;
		transform: scaleY(0);
	}
}

.bodyWrap {
	min-width: 1366px;
	opacity: 0;
}

@media screen and (max-width: 768px) {
	.bodyWrap {
		min-width: inherit;
	}
}

body.appear .bodyWrap {
	animation-name: PageAnimeAppear;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*------------------------------------------------------------
	comBlur
------------------------------------------------------------*/
.comBlur {
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

.comBlur.show {
	animation-name: blurAnime;
}

@keyframes blurAnime {
	from {
		filter: blur(10px);
		transform: scale(1.02);
	}
	to {
		filter: blur(0);
		transform: scale(1);
	}
}

/*------------------------------------------------------------
	fade
------------------------------------------------------------*/
.fadeIn {
	opacity: 0;
}

.fadeIn.on {
	animation-name: fadeInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fadeDown {
	opacity: 0;
}

.fadeDown.on {
	animation-name: fadeDownAnime;
	animation-duration: 0.75s;
	animation-fill-mode: forwards;
}

@keyframes fadeDownAnime {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeUp {
	opacity: 0;
}

.fadeUp.on {
	animation-name: fadeUpAnime;
	animation-duration: 0.75s;
	animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeLeft {
	opacity: 0;
}

.fadeLeft.on {
	animation-name: fadeLeftAnime;
	animation-duration: 0.75s;
	animation-fill-mode: forwards;
}

@keyframes fadeLeftAnime {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeRight {
	opacity: 0;
}

.fadeRight.on {
	animation-name: fadeRightAnime;
	animation-duration: 0.75s;
	animation-fill-mode: forwards;
}

@keyframes fadeRightAnime {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.eachTextAnime span {
	opacity: 0;
}

.eachTextAnime.appeartext span {
	animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.slide-in {
	overflow: hidden;
	display: inline-block;
}

.slide-in_inner {
	display: inline-block;
}

.downAnime {
	opacity: 0;
}

.slideAnimeDownUp {
	animation-name: slideTextY100;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes slideTextY100 {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.slideAnimeUpDown {
	animation-name: slideTextY-100;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes slideTextY-100 {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/*------------------------------------------------------------
	comAnimateList
------------------------------------------------------------*/
.comAnimateList li {
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

.comAnimateList li.on {
	animation-name: fadeInUp01;
}

.comAnimateList li:nth-child(3n-1) {
	animation-delay: 0.2s;
}

.comAnimateList li:nth-child(3n) {
	animation-delay: 0.4s;
}

@-webkit-keyframes fadeInUp01 {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp01 {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 1150px;
}

@media screen and (max-width: 768px) {
	.content {
		margin: 0 15px;
		width: auto;
	}
}

/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	font-size: 13px;
}

.headLine01 .en {
	margin-bottom: 13px;
	display: block;
	font-size: 51px;
}

@media screen and (max-width: 768px) {
	.headLine01 .en {
		margin-bottom: 10px;
		font-size: 35px;
	}
}

/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	margin-bottom: 95px;
	text-align: center;
	font-size: 20px;
}

.headLine02 .en {
	margin-bottom: 14px;
	display: block;
	font-size: 42px;
	font-weight: 400;
	line-height: 1.2;
}

.headLine02 .txt {
	display: block;
}

@media screen and (max-width: 768px) {
	.headLine02 {
		margin-bottom: 45px;
		font-size: 17px;
	}
	.headLine02 .en {
		margin-bottom: 10px;
		font-size: 24px;
	}
}

/*------------------------------------------------------------
	headLine03
------------------------------------------------------------*/
.headLine03 {
	margin-bottom: 59px;
}

.headLine03 .txtInner {
	box-sizing: border-box;
	padding-bottom: 25px;
	min-width: 380px;
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 13px;
	line-height: 1.2;
}

.headLine03 .txtInner::after {
	width: 100vw;
	height: 1px;
	position: absolute;
	right: 0;
	bottom: 0;
	background: #808080;
	content: "";
}

.headLine03 .txtInner .en {
	margin-right: 33px;
	margin-bottom: -3px;
	display: inline-block;
	vertical-align: bottom;
	font-size: 42px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
	.headLine03 {
		margin-bottom: 30px;
	}
	.headLine03 .txtInner {
		padding-bottom: 15px;
		padding-right: 15px;
		min-width: inherit;
	}
	.headLine03 .txtInner .en {
		margin-right: 15px;
		font-size: 30px;
	}
}

/*------------------------------------------------------------
	headLine04
------------------------------------------------------------*/
.headLine04 {
	margin-bottom: 40px;
	text-align: center;
	font-size: 51px;
	font-weight: 400;
	letter-spacing: 0.03em;
}

@media all and (max-width: 896px) {
	.headLine04 {
		margin-bottom: 10px;
		font-size: 30px;
		letter-spacing: 0.01em;
	}
}

/*------------------------------------------------------------
	comNewsUl
------------------------------------------------------------*/
.comNewsUl li {
	border-bottom: 1px solid #666;
}

.comNewsUl li a,
.comNewsUl li span {
	padding: 30px 100px 30px 0;
	display: block;
}

.comNewsUl li dl {
	display: flex;
	justify-content: space-between;
}

.comNewsUl li dt {
	width: 200px;
	color: #808080;
	text-align: right;
	font-family: "Montserrat", sans-serif;
}

.comNewsUl li dd {
	width: calc(100% - 236px);
	position: relative;
	z-index: 1;
	transition: all 0.8s;
}

.comNewsUl li dd::after {
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #333;
	content: "";
	z-index: -1;
	transition: all 0.8s;
	opacity: 0;
}

@media screen and (min-width: 769px) {
	.comNewsUl li a:hover dt {
		color: #afafaf;
	}
	.comNewsUl li a dd {
		position: relative;
		z-index: 1;
	}
	.comNewsUl li a:hover dd {
		color: #d8d8d8;
	}
	.comNewsUl li a:hover dd::after {
		width: 100%;
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.comNewsUl li a,
	.comNewsUl li span {
		padding: 10px 0;
		display: block;
	}
	.comNewsUl li dl {
		display: block;
		letter-spacing: 0.01em;
	}
	.comNewsUl li dt {
		width: auto;
		text-align: left;
	}
	.comNewsUl li dd {
		width: auto;
	}
}

/*------------------------------------------------------------
	comMoreBtn
------------------------------------------------------------*/
.comMoreBtn {
	width: 250px;
}

.comMoreBtn a {
	display: block;
	position: relative;
	color: #808080;
	font-size: 16px;
	font-weight: 400;
}

.comMoreBtn a::before {
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 1px;
	background: #808080;
	content: "";
}

.comMoreBtn a::after {
	width: 0;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 1px;
	background: #afafaf;
	content: "";
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.comMoreBtn a span {
	padding: 30px 14px;
	display: block;
	position: relative;
	letter-spacing: 0.1em;
}

.comMoreBtn a span::after {
	width: 19px;
	height: 20px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url("../img/icon01.webp") no-repeat center center;
	background-size: 100% auto;
	content: "";
	transition: all 0.3s;
}

@media screen and (min-width: 769px) {
	.comMoreBtn a::before {
		width: 100%;
		height: 1px;
		position: absolute;
		left: 0;
		bottom: 1px;
		background: #808080;
		content: "";
	}
	.comMoreBtn a:hover::after {
		width: 100%;
	}
	.comMoreBtn a:hover span::after {
		right: -5px;
	}
}

@media screen and (max-width: 768px) {
	.comMoreBtn {
		width: 200px;
	}
	.comMoreBtn a {
		font-size: 14px;
	}
	.comMoreBtn a span {
		padding: 15px 30px 15px 10px;
	}
}

/*------------------------------------------------------------
	comPhoList
------------------------------------------------------------*/
.comPhoList {
	margin: -39px 0 81px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.comPhoList::after {
	width: 361px;
	content: "";
}

.comPhoList li {
	margin-top: 39px;
	width: 361px;
}

.comPhoList li a {
	padding-bottom: 37px;
	display: block;
	border-bottom: 1px dotted #333;
}

.comPhoList li .pho {
	margin-bottom: 19px;
	overflow: hidden;
	border: 1px solid #ccc;
}

.comPhoList li .pho span {
	display: block;
	height: 0;
	padding-bottom: 60.94%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: all ease-in-out 0.3s;
}

.comPhoList li a:hover .pho span {
	transform: scale(1.2);
}

.comPhoList li .txtBox p {
	font-size: 16px;
	letter-spacing: 0.08em;
	line-height: 1.53;
}

.comPhoList li .txtBox .slug {
	margin-bottom: 10px;
}

.comPhoList li .txtBox .slug span {
	padding: 2px;
	width: 85px;
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-align: center;
	vertical-align: top;
	border: 1px solid #333;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}

.comPhoList li .txtBox .time {
	margin-top: 17px;
	font-size: 13px;
}

@media all and (max-width: 896px) {
	.comPhoList {
		margin: 0 0 40px;
		display: block;
	}
	.comPhoList li {
		margin: 0 0 24px;
		width: auto;
	}
	.comPhoList li:last-child {
		margin: 0;
	}
	.comPhoList li a {
		padding-bottom: 20px;
	}
	.comPhoList li .pho {
		margin-bottom: 19px;
	}
	.comPhoList li a:hover .pho span {
		transform: none;
	}
	.comPhoList li .txtBox p {
		font-size: 15px;
		letter-spacing: 0.06em;
	}
	.comPhoList li .txtBox .slug {
		margin-bottom: 10px;
	}
	.comPhoList li .txtBox .slug span {
		padding: 1px;
		width: 80px;
		font-size: 11px;
	}
	.comPhoList li .txtBox .time {
		margin-top: 10px;
		font-size: 12px;
	}
}

/*------------------------------------------------------------
	comLinkBox
------------------------------------------------------------*/
.comLinkBox {
	margin-bottom: 130px;
}

.comLinkBox a {
	display: flex;
	align-items: center;
	color: #fff !important;
	background: #ceba7d;
}

.comLinkBox .textBox {
	box-sizing: border-box;
	padding: 30px 20px;
	width: 46%;
	text-align: center;
}

.comLinkBox .textBox .text01 {
	margin-bottom: 17px;
	font-size: 25px;
}

.comLinkBox .textBox .text02 {
	font-size: 20px;
	line-height: 1.75;
	letter-spacing: 0.3em;
}

.comLinkBox .textBox .logo {
	margin-bottom: 24px;
	margin-left: 15px;
}

.comLinkBox .pho {
	width: 54%;
}

.comLinkBox .pho img {
	width: 100%;
}

@media screen and (min-width: 769px) {
	.comLinkBox a:hover {
		opacity: 0.8;
	}
}

@media screen and (max-width: 768px) {
	.comLinkBox {
		margin-bottom: 40px;
	}
	.comLinkBox a {
		display: block;
	}
	.comLinkBox .textBox {
		padding: 30px 20px;
		width: auto;
	}
	.comLinkBox .textBox .text01 {
		margin-bottom: 15px;
		font-size: 20px;
	}
	.comLinkBox .textBox .text02 {
		font-size: 16px;
	}
	.comLinkBox .textBox .logo {
		margin: 0 0 15px;
	}
	.comLinkBox .pho {
		width: auto;
	}
}

/*------------------------------------------------------------
	comBtnList
------------------------------------------------------------*/
.comBtnList {
	margin-bottom: 99px;
}

.comBtnList li {
	margin: 0 7px;
	width: 193px;
}

.comBtnList li a {
	padding: 19px 10px;
	display: block;
	position: relative;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-align: center;
	background: #808080;
	font-family: "Montserrat", sans-serif;
}

.comBtnList li a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #c1c1c1;
	width: 100%;
	height: 100%;
	transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
}

.comBtnList li a span {
	position: relative;
	color: #fff;
	z-index: 2;
	transition: cubic-bezier(0.8, 0, 0.2, 1) 0.6s;
}

@media screen and (min-width: 769px) {
	.comBtnList li a:hover span {
		color: #333;
	}
	.comBtnList li a:hover:before {
		transform-origin: left top;
		transform: scale(1, 1);
	}
}

@media screen and (max-width: 768px) {
	.comBtnList {
		margin: 40px -5px 30px;
	}
	.comBtnList li {
		margin: 0 5px;
		width: calc((100% - 30px) / 3);
	}
	.comBtnList li a {
		padding: 14px 10px;
		font-size: 14px;
	}
	.comBtnList li a:before {
		display: none;
	}
}

/*------------------------------------------------------------
	parallax
------------------------------------------------------------*/
.parallax {
	position: relative;
	overflow: hidden;
}

.parallaxInner {
	width: 100%;
	height: 200%;
	position: absolute;
	top: -50%;
	left: 0;
	background-repeat: no-repeat;
	overflow-x: hidden;
	background-position: top 100% center;
	background-size: cover;
}

/*------------------------------------------------------------
	index
------------------------------------------------------------*/
#main_top .mainVisual {
	position: relative;
	overflow: hidden;
	background: #f7f9ea;
}

#main_top .mainVisual img {
	width: 100%;
}

#main_top .mainVisual .logoImg {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transform: translateY(-200px);
	transition: 0.5s;
}

#main_top .mainVisual .logoImg.on {
	opacity: 1;
	transform: translateY(0);
}

#main_top .topSwiper {
	position: relative;
}

@media screen and (min-width: 769px) {
	#main_top .topSwiper {
		display: flex;
		flex-direction: row-reverse;
	}
}

#main_top .topSwiper__logo-box {
	background-color: #f7f9ea;
	background-position: center;
	background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
	#main_top .topSwiper__logo-box {
		flex: 0 0 calc((1454 - 1030) / 1454 * 100%);
		background-image: url("/syohin/stan/img/mv-bg.svg");
	}
}

@media screen and (max-width: 768px) {
	#main_top .topSwiper__logo-box {
		height: 150px;
		background-image: url("/syohin/stan/img/mv-bg-sp.svg");
	}
}

@media screen and (min-width: 769px) {
	#main_top .topSwiper .swiper-container {
		flex: calc(((1030 / 1454) / 1454) * 100%);
	}
}

#main_top .topSwiper .swiper-container img {
	width: 100%;
}

#main_top .topSwiper__prev, #main_top .topSwiper__next {
	position: absolute;
	z-index: 1000;
	cursor: pointer;
	filter: drop-shadow(0 0 2px #fff);
}

@media screen and (min-width: 769px) {
	#main_top .topSwiper__prev, #main_top .topSwiper__next {
		width: 28px;
		height: 28px;
		top: 0;
		bottom: 0;
		margin: auto;
	}
}

@media screen and (max-width: 768px) {
	#main_top .topSwiper__prev, #main_top .topSwiper__next {
		top: calc(50% - 80px);
		width: 16px;
		height: 16px;
	}
}

#main_top .topSwiper__prev img, #main_top .topSwiper__next img {
	width: 100%;
}

#main_top .topSwiper__prev {
	transform: scaleX(-1);
}

@media screen and (min-width: 769px) {
	#main_top .topSwiper__prev {
		left: 40px;
	}
}

@media screen and (max-width: 768px) {
	#main_top .topSwiper__prev {
		left: 16px;
	}
}

@media screen and (min-width: 769px) {
	#main_top .topSwiper__next {
		right: 40px;
	}
}

@media screen and (max-width: 768px) {
	#main_top .topSwiper__next {
		right: 16px;
	}
}

#main_top .swiper-pagination {
	display: none !important;
	bottom: 20px;
	line-height: 0;
	font-size: 0;
}

#main_top .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 11px;
}

#main_top .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #fff;
	opacity: 1;
}

#main_top .swiper-pagination-bullet-active {
	background: #807f81;
}

#main_top .news {
	padding: 65px 0 80px;
	background: #fff;
}

#main_top .news .content {
	position: relative;
}

#main_top .news .ttlBox {
	width: 252px;
	padding-bottom: 50px;
	box-sizing: border-box;
}

#main_top .news .comNewsUl {
	margin-top: -10px;
	width: 800px;
}

#main_top .news .comNewsUl li a,
#main_top .news .comNewsUl li span {
	padding: 28px 0 27px;
	color: #333;
}

#main_top .news .comNewsUl li dt {
	box-sizing: border-box;
	padding-left: 10px;
	width: 170px;
	font-size: 13px;
	text-align: left;
}

#main_top .news .comNewsUl li dd {
	width: calc(100% - 175px);
}

#main_top .news .comMoreBtn {
	width: 252px;
	position: absolute;
	left: 0;
	bottom: 0;
}

#main_top .news .comMoreBtn a {
	color: #808080;
}

#main_top .movie {
	padding: 148px 0;
	background: #333;
}

#main_top .movie .content {
	position: relative;
}

#main_top .movie .movieBox {
	margin: 0 auto;
	width: 970px;
	position: relative;
}

.fancybox-content {
	background-color: transparent !important;
}

#main_top .movie .movieBox .btn {
	width: 140px;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: 0.3s ease-in-out;
}

#main_top .movie .movieBox .btn:hover {
	opacity: 0.7;
}

#main_top .movie .txtImg {
	width: 275px;
	position: absolute;
	left: -4px;
	top: -43px;
}

.popBox {
	display: none;
}

.popBox .movieArea img {
	max-width: 100%;
}

#main_top .product .topPho {
	width: 100%;
	height: 45.39vw;
	overflow: hidden;
}

#main_top .product .topPho .parallaxInner {
	position: absolute;
	height: 150%;
	top: -40%;
	background-image: url("../img/photo01.webp");
	background-position: top center;
	background-size: cover;
}

#main_top .content2 .content2Img {
	display: inline-block;
	margin-bottom: 100px;
}

#main_top .product .ttlBox {
	margin-top: -58px;
	margin-bottom: 147px;
	box-sizing: border-box;
	padding-top: 42px;
	position: relative;
	z-index: 1;
	background: #f7f9ea;
}

#main_top .product .ttlBox .ttlBoxTtl {
	display: flex;
	align-items: center;
	padding: 0 45px;
	gap: 16px;
	margin-bottom: 55px;
}

#main_top .product .ttlBox .ttlBoxTtl .ttlBoxTtlText {
	font-size: 21px;
}

#main_top .product .ttlBox .ttlBoxTtl .ttlBoxTtlBorder {
	border: solid 1px #808080;
	width: 100%;
}

#main_top .product .ttlBox .btnList {
	margin-bottom: 60px;
	padding: 0;
	display: flex;
	justify-content: center;
}

#main_top .product .ttlBox .btnList li {
	margin: 0 16px;
	width: 130px;
}

#main_top .product .ttlBox .btnList li a {
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	position: relative;
	text-align: center;
	color: #333;
}

#main_top .product .ttlBox .btnList li a:hover img {
	opacity: 0.7;
}

#main_top .product .ttlBox .btnList li a .txt {
	margin-top: 13px;
	display: block;
	font-size: 14px;
}

#main_top .product .ttlBox .btnList li a .new {
	right: -1.5em;
	bottom: 0;
	position: absolute;
	color: #ff0004;
	font-size: 16px;
}

#main_top .product .imgBox {
	margin-bottom: 152px;
	position: relative;
}

#main_top .product .imgBox .photoBox {
	width: calc(50% + 139px);
	order: 1;
	position: relative;
}

#main_top .product .imgBoxL .photoBox {
	order: 0;
}

#main_top .product .imgBox .photoBox a {
	display: block;
	position: relative;
	left: 0;
	top: 0;
	overflow: hidden;
}

#main_top .product .imgBox .photoBox a img {
	width: 100%;
}

#main_top .ttlBoxSub {
	width: 1350px;
	margin: 0 auto;
	box-sizing: border-box;
	margin-bottom: 63px;
	padding: 20px 90px;
	color: #fff;
	font-size: 23px;
	font-weight: 500;
	background: #ceba7d;
}

@media screen and (min-width: 769px) {
	#main_top .product .imgBox .photoBox a img {
		transition: 0.3s ease-in-out;
	}
	#main_top .product .imgBox .photoBox a:hover img {
		transform: scale(1.05);
	}
}

#main_top .product .imgBox .photoBox .photo01 {
	margin-left: 80px;
	position: relative;
}

#main_top .product .imgBoxL .photoBox .photo01 {
	margin-left: 0;
	margin-right: 80px;
}

#main_top .product .imgBox .photoBox .photo02 {
	margin-top: -106px;
	width: 56.4%;
	position: relative;
	z-index: 1;
}

#main_top .product .imgBoxL .photoBox .photo02 {
	margin-left: 26.5%;
}

#main_top .product .imgBox03 .photoBox .photo02 {
	margin-left: 31%;
}

#main_top .product .imgBox .textBox {
	box-sizing: border-box;
	padding-top: 4px;
	width: calc(50% - 145px);
}

#main_top .product .imgBoxL .textBox {
	padding-top: 20px;
	width: calc(50% - 193px);
}

#main_top .product .imgBox .textBox .txtInner {
	margin-left: auto;
	width: 433px;
}

#main_top .product .imgBoxL .textBox .txtInner {
	margin-left: 0;
}

#main_top .product .imgBox .textBox .ttl {
	margin-bottom: 96px;
	padding-bottom: 17px;
	font-size: 23px;
	position: relative;
}

#main_top .product .imgBoxL .textBox .ttl {
	padding-left: 25px;
}

#main_top .product .imgBox .textBox .ttl span {
	display: block;
}

#main_top .product .imgBox .textBox .ttl::after {
	width: 100vh;
	height: 1px;
	position: absolute;
	right: 0;
	bottom: 0;
	background: #808080;
	content: "";
}

#main_top .product .imgBoxL .textBox .ttl::after {
	right: auto;
	left: 0;
}

#main_top .product .imgBox .textBox .imgtext {
	margin-bottom: 74px;
}

#main_top .product .imgBox .textBox p {
	margin-bottom: 80px;
	font-size: 17px;
	line-height: 1.75;
}

#main_top .product .imgBox .textBox .comMoreBtn a {
	color: #808080;
}

#main_top .product .imgBox05 .textBox .imgtext {
	margin-left: -59px;
}

#main_top .product .imgBox05 {
	margin-bottom: 120px;
}

#main_top .link {
	margin: 0 auto 100px;
	width: 801px;
}

#main_top .link a {
	transition: 0.3s ease-in-out;
}

#main_top .link a:hover {
	opacity: 0.8;
}

#main_top .journal {
	margin-bottom: 144px;
}

#main_top .journal .topTxt {
	margin-bottom: 73px;
	font-size: 16px;
	letter-spacing: 0.08em;
}

#main_top .journal .comPhoList {
	margin-bottom: 20px;
}

#main_top .journal .comPhoList li a {
	border: none;
}

#main_top .journal .comMoreBtn {
	margin-left: auto;
}

#main_top .linkList {
	margin: 0 auto;
	width: 1306px;
	padding-top: 115px;
	border-top: #808080 1px solid;
}

#main_top .linkList li {
	margin-bottom: 50px;
	padding-right: 5px;
	text-align: center;
}

#main_top .linkList li:last-child {
	margin-bottom: 0;
}

#main_top .linkList li a {
	width: 801px;
	display: inline-block;
	vertical-align: top;
	transition: 0.3s ease-in-out;
}

#main_top .linkList li a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 768px) {
	#main_top .swiper-pagination {
		bottom: 15px;
	}
	#main_top .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 7px;
	}
	#main_top .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}
	#main_top .news {
		padding: 40px 0;
	}
	#main_top .news .content {
		display: block;
	}
	#main_top .news .ttlBox {
		width: auto;
		padding-bottom: 25px;
	}
	#main_top .news .comNewsUl {
		margin: 0 0 25px;
		width: auto;
	}
	#main_top .news .comNewsUl li a,
	#main_top .news .comNewsUl li span {
		padding: 10px;
	}
	#main_top .news .comNewsUl li dt {
		padding-left: 0;
		width: auto;
		font-size: 12px;
	}
	#main_top .news .comNewsUl li dd {
		width: auto;
	}
	#main_top .news .comMoreBtn {
		margin: 0 auto;
		width: 200px;
		position: static;
	}
	#main_top .movie {
		padding: 50px 0;
	}
	#main_top .movie .movieBox {
		margin: 0;
		width: auto;
	}
	#main_top .movie .movieBox .btn {
		width: 70px;
	}
	.fancybox-content {
		padding: 50px 0 !important;
	}
	.popBox .movieArea {
		overflow: auto;
	}
	.popBox {
		width: 100%;
	}
	.popBox .movieArea iframe {
		width: 100% !important;
	}
	#main_top .movie .txtImg {
		width: 40%;
		max-width: 275px;
		left: 0;
		top: -25px;
	}
	#main_top .product .topPho {
		height: 70vw;
	}
	#main_top .product .topPho .parallaxInner {
		height: 150%;
		top: -75%;
	}
	#main_top .ttlBoxSub {
		width: auto;
		margin: 0 15px;
		padding: 15px;
		font-size: 18px;
		margin-bottom: 30px;
	}
	#main_top .product .ttlBox {
		margin-top: -30px;
		margin-bottom: 55px;
		padding-top: 30px;
	}
	#main_top .product .ttlBox .ttlBoxTtl {
		display: flex;
		align-items: center;
		padding: 0;
		gap: 16px;
		margin-bottom: 30px;
	}
	#main_top .product .ttlBox .ttlBoxTtl .ttlBoxTtlText {
		font-size: 18px;
	}
	#main_top .product .ttlBox .btnList li {
		margin: 2% 0.6%;
		width: 32%;
	}
	#main_top .product .ttlBox .btnList li a .txt {
		margin-top: 10px;
		font-size: 14px;
	}
	#main_top .product .ttlBox .btnList li a .new {
		right: -1.8em;
		font-size: 14px;
	}
	#main_top .product .imgBox {
		margin-bottom: 80px;
		display: block;
	}
	#main_top .product .imgBox .photoBox {
		margin-bottom: 0;
		width: auto;
	}
	#main_top .product .imgBox .photoBox .photo01 {
		margin: 0 0 60px 20px;
	}
	#main_top .product .imgBoxL .photoBox .photo01 {
		margin-left: 0;
		margin-right: 20px;
	}
	#main_top .product .imgBox .photoBox .photo02 {
		margin-top: 0;
	}
	#main_top .product .imgBox .photoBox a {
		top: -20px;
	}
	#main_top .product .imgBox .textBox {
		margin: 0 20px;
		padding-top: 0;
		width: auto;
	}
	#main_top .product .imgBoxL .textBox {
		padding-top: 0;
		width: auto;
	}
	#main_top .product .imgBox .textBox .txtInner {
		margin-left: 0;
		width: auto;
	}
	#main_top .product .imgBox .textBox .ttl {
		margin-bottom: 40px;
		padding-bottom: 10px;
		font-size: 18px;
	}
	#main_top .product .imgBoxL .textBox .ttl {
		padding-left: 0;
	}
	#main_top .product .imgBoxL .textBox .ttl::after {
		right: 0;
		left: auto;
	}
	#main_top .product .imgBox .textBox .imgtext {
		margin-bottom: 30px;
		width: 65%;
	}
	#main_top .product .imgBox .textBox p {
		margin-bottom: 30px;
		font-size: 14px;
	}
	#main_top .product .imgBox05 .textBox .imgtext {
		margin-left: 0;
	}
	#main_top .product .imgBox05 {
		margin-bottom: 40px;
	}
	#main_top .link {
		margin: 0 15px 45px;
		width: auto;
	}
	#main_top .journal {
		margin-bottom: 40px;
	}
	#main_top .journal .topTxt {
		margin-bottom: 30px;
		font-size: 14px;
	}
	#main_top .journal .comMoreBtn {
		margin: 0 auto;
	}
	#main_top .linkList {
		width: auto;
		margin: 0 15px;
		padding-top: 60px;
	}
}

@media screen and (max-width: 374px) {
	#main_top .product .ttlBox .btnList li a .txt {
		font-size: 11px;
	}
}

/*--EC--*/
.ec_link {
	position: fixed;
	z-index: 9999;
}

@media screen and (min-width: 751px) {
	.ec_link {
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
}

@media screen and (max-width: 750px) {
	.ec_link {
		left: calc((25 / 750) * 100%);
		bottom: 0;
		width: calc((618 / 750) * 100%);
	}
}

.ec_link a {
	display: block;
	box-sizing: border-box;
	background: rgba(30, 117, 194, 0.8);
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4;
	position: relative;
	transition: 0.2s;
}

@media screen and (min-width: 751px) {
	.ec_link a {
		width: 65px;
		border-radius: 20px 0 0 20px;
		letter-spacing: 0.2em;
		padding: 15px 0;
	}
}

@media screen and (max-width: 750px) {
	.ec_link a {
		border-radius: 20px 20px 0 0;
		letter-spacing: 0.2em;
		padding: 24px 0;
	}
}

.ec_link a:hover {
	color: #fff;
	background: #1e75c2;
	text-decoration: none !important;
}

.ec_link_inner {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (min-width: 751px) {
	.ec_link_inner {
		flex-direction: column;
		gap: 10px;
	}
}

@media screen and (max-width: 750px) {
	.ec_link_inner {
		width: 100%;
		height: 100%;
		gap: 12px;
	}
}

@media screen and (min-width: 751px) {
	.ec_link_inner p {
		writing-mode: vertical-rl;
	}
}

@media screen and (max-width: 750px) {
	.ec_link_inner p {
		font-size: 18px;
	}
}

@media screen and (min-width: 751px) {
	.ec_link_img {
		width: 24px;
	}
}

@media screen and (max-width: 750px) {
	.ec_link_img {
		width: 26px;
	}
}

.ec_link_img img {
	max-width: 100%;
	height: auto;
}

/*--underPage linkList--*/
.underPage.linkList {
	margin: 0 auto;
	width: 1160px;
	padding-top: 115px;
}

.underPage.linkList li {
	margin-bottom: 50px;
	padding-right: 5px;
	text-align: center;
}

.underPage.linkList li:last-child {
	margin-bottom: 0;
}

.underPage.linkList li a {
	width: 801px;
	display: inline-block;
	vertical-align: top;
	transition: 0.3s ease-in-out;
}

.underPage.linkList li a:hover {
	opacity: 0.8;
}

@media (max-width: 768px) {
	#main_top .linkList li a {
		width: auto;
	}
	.underPage.linkList {
		margin: 0 15px;
		width: auto;
		padding-top: 45px;
	}
	.underPage.linkListt li {
		margin-bottom: 30px;
		padding-right: 0;
	}
	.underPage.linkList li:last-child {
		margin-bottom: 0;
	}
	.underPage.linkList li a {
		width: auto;
	}
	.underPage.linkList {
		margin: 0 15px;
		width: auto;
		padding-top: 45px;
	}
	.underPage.linkList li {
		margin-bottom: 30px;
		padding-right: 0;
	}
	.underPage.linkList li:last-child {
		margin-bottom: 0;
	}
	.underPage.linkList li a {
		width: auto;
	}
}

/*--220325--*/
#navi_wrap .icn_insta a figure {
	width: 33px;
	height: 33px;
}

#navi_wrap .icn_insta a::after {
	display: none !important;
}

@media screen and (max-width: 768px) {
	#navi_wrap ul {
		align-items: center;
	}
}

/* #navi_wrap .icn_insta{
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	width: 85px;
	text-align: center;
}
#navi_wrap .icn_insta img {
	width: 40px;
	margin-left: auto;
	margin-right: auto;
}
#navi_wrap .icn_insta figcaption {
	margin-top: 4px;
	font-size: 10px;
	color: #fff;
}
@media screen and (max-width: 768px) {
	#navi_wrap .icn_insta figcaption {
		display: none;
	}
	#navi_wrap .icn_insta{
		position: absolute;
		top: auto;
		right: 10px;
		transform: translateY(0);
		width: 40px;
		bottom: 15px;
		text-align: center;
	}
} */
#banner-gallery {
	position: fixed;
	z-index: 99;
}

@media screen and (min-width: 769px) {
	#banner-gallery {
		right: 15px;
		bottom: 80px;
	}
}

@media screen and (max-width: 768px) {
	#banner-gallery {
		display: none;
	}
}

#banner-gallery a {
	display: block;
	transition: 0.4s;
}

@media screen and (min-width: 769px) {
	#banner-gallery a {
		box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
		width: 180px;
		height: 180px;
		overflow: hidden;
		border: 1px solid #fff;
	}
}

#banner-gallery a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.4s;
}

#banner-gallery a:hover img {
	transform: scale(1.1);
}

/*# sourceMappingURL=../../../_map/syohin/stan/css/style.css.map */
