@charset "UTF-8";

.marcellus-regular {
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
}

html,
body {
	overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

@media screen and (max-width: 767px) {
	html {
	    scroll-padding-top: 65px;
	}
}

body {
	font-family: 'Zen Kaku Gothic New';
    line-height: 1.6;
    background: #fff;
	position: relative;
	background: #F0F1F2;
	color: #25282A;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}	
	.tb {
		display: none;
	}
}

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

@media screen and (min-width: 1025px) {
	.sptb {
		display: none;
	}
	.tb {
		display: none;
	}
}

/*============================================================

common

============================================================*/

/*--------------------------------------
CTA
--------------------------------------*/

.cta a {
	width: 341px;
	background: #546C43 url("../images/icon__line.svg") left 20px center no-repeat;
	background-size: 34px auto;
	box-shadow: 0px 15px 11px rgba(0, 0, 0, 0.02), 0px 16px 10px rgba(0, 0, 0, 0.08), 0px 7px 7px rgba(0, 0, 0, 0.13), 0px 2px 4px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	color: #fff;
	display: block;
	align-items: center;
	font-size: 21px;
	font-weight: 700;
	padding:  8px 0px 8px 70px;
	letter-spacing: -0.02rem;
	font-weight: normal;
}

.cta a span {
	font-size: 12px;
	display: block;
}

@media screen and (max-width: 1024px) {
	.cta a {
		width: 100%;
		max-width: 320px;
		background: #546C43 url("../images/icon__line.svg") left 15px center no-repeat;
		background-size: 34px auto;
		color: #fff;
		display: block;
		align-items: center;
		font-size: 18px;
		font-weight: 700;
		padding:  8px 0px 8px 60px;
		font-weight: normal;
		margin: 0 auto;
	}

	.cta a span {
		font-size: 11px;
		margin-bottom: -5px;
	}	
}

/*--------------------------------------
見出し
--------------------------------------*/

.heading {
	font-size: 40px;
	color: #F0F1F2;
	font-family: "Yu Mincho", "YuMincho", serif;
	font-weight: 100;
}

.heading:before {
	content: attr(data-label);
	font-family: "Marcellus", serif;
	display: block;
	font-size: 18px;
	letter-spacing: 1px;
	margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
	.heading {
		font-size: 26px;
	}

	.heading:before {
		font-size: 15px;
		margin-bottom: 15px;
	}	
}

/*--------------------------------------
キャンペーン＆CTA
--------------------------------------*/

.pr {
	background: #25282A;
	max-width: 960px;
	height: 260px;
	margin: -130px auto 80px;
	position: relative;
	z-index: 2;
	display: flex;
	padding: 20px;
	align-items: center;
}

.pr__coupon {
	padding: 0 85px;
}


.pr__coupon img {
	width: 100%;
	max-width: 220px;
}

.pr__cta {
	padding: 7px 100px;
	border-left: 1px solid #C8C8C0;
}

.pr__cta .cta {
	margin-bottom: 16px;
}

.pr__cta > p {
	color: #F0F1F2;
	text-align: center;
	font-size: 14px;
}

@media screen and (max-width: 1024px) {
	.pr__coupon {
		padding: 0 45px;
		width: 40%;
	}

	.pr__cta {
		padding: 7px 50px;
		width: 60%;
	}	
}

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

	.pr {
		background: #25282A;
		width: calc(100% - 32px);
		margin: -45px 16px 60px;
		display: block;
		margin-top: ;
		padding: 0;
		height: auto;
	}

	.pr__coupon {
		padding: 30px 0 20px;
		border-bottom: 0.4px solid #454646;
		text-align: center;
		margin: 0 20px;
		width: calc(100% - 40px);
	}

	.pr__coupon img {
		width: 100%;
		max-width: 200px;
		height: auto;
	}

	.pr__cta {
		padding: 20px 10px;
		border: none;
		white-space: nowrap;
		width: 100%;
	}
}

@media screen and (max-width: 350px) {
	.pr__cta p {
		font-size:14px;
	}	
	.pr__cta a {
		background: #546C43 url("../images/icon__line.svg") left 10px center no-repeat;
		background-size: 32px auto;
		padding: 8px 0px 8px 50px;
	}
}

@media screen and (max-width: 335px) {
	.pr__cta a {
		background: #546C43 url("../images/icon__line.svg") left 10px center no-repeat;
		background-size: 24px auto;
		padding: 8px 0px 8px 40px;
		font-size: 17px;
	}	
}

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

/*--------------------------------------
フェード
--------------------------------------*/

/* 奥から手前 */
.fade-zoom {
	opacity: 0;
	scale: .85;
	filter: blur(8px);

	transition:
		opacity .8s ease,
		scale .8s cubic-bezier(.22, 1, .36, 1),
		filter .8s ease;
}

.fade-zoom.is-show {
	opacity: 1;
	scale: 1;
	filter: blur(0);
}

.fade-left {
	opacity: 0;
	transform: translateX(-40px);
	filter: blur(6px);

	transition:
		opacity .8s ease,
		transform .8s cubic-bezier(.22, 1, .36, 1),
		filter .8s ease;
}

/* 左から */
.fade-left.is-show {
	opacity: 1;
	transform: translateX(0);
	filter: blur(0);
}

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

/*--------------------------------------
画像拡大モーダル
--------------------------------------*/
.imageModal {
	position: fixed;
	inset: 0;
	z-index: 49999;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 48px 80px;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .3s ease, visibility .3s ease;
}

.imageModal.is-show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.imageModal__bg {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .75);
}

.imageModal__content {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	max-width: calc(100% - 160px);
	max-height: calc(100svh - 96px);
	overflow: visible;
}

.imageModal__content img {
	display: block;
	width: auto !important;
	height: auto !important;
	max-width: 100%;
	max-height: calc(100svh - 96px);
	object-fit: contain;
}

.imageModal__close {
	position: absolute;
	top: -18px;
	right: -18px;
	z-index: 4;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	font-size: 0;
}

.imageModal__close::before,
.imageModal__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background: #333;
}

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

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

.imageModal__prev,
.imageModal__next {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 56px;
	height: 64px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 72px;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
}

.imageModal__prev {
	left: -68px;
}

.imageModal__next {
	right: -68px;
}

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

	.imageModal {
		padding: 16px;
	}

.imageModal__content {
	max-width: calc(100% - 72px);
	max-height: calc(100svh - 32px);
}

.imageModal__content img {
	max-width: calc(100vw - 72px);
	max-height: calc(100svh - 32px);
}

.imageModal__close {
	top: 3px;
	right: -7px;
	transform: translate(50%, -50%);
}

	.imageModal__prev,
	.imageModal__next {
		width: 40px;
		height: 50px;
		font-size: 48px;
	}


.imageModal__prev {
	left: -20px;
}

.imageModal__next {
	right: -20px;
}
}

/*============================================================

header

============================================================*/

.header {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.header .inner {
	padding: 0 20px;
	max-width: 1240px;
	margin: 15px auto;
	display: flex;
	align-items: center;
	justify-content: space-between;

}

.header h1 {
	width: 203px;
}

.header h1 img {
	width: 203px;
	height: auto;
}

.header h1 span {
	font-size: 12px;
	display: block;
	font-weight: normal;
	white-space: nowrap;
}

.header nav {
	width: calc(100% - 406px);
	text-align: center;
}

.header nav ul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}

.header .nav__group {
	width: 50%;
	display: flex;
	align-items: center;
	gap: 40px;
	font-family: "Marcellus", serif;
	font-size: 18px;
	letter-spacing: 0.05rem;
}

.header .nav__group:first-child {
	justify-content: flex-end;
	padding-right: 20px;
}

.header .nav__group:last-child {
	justify-content: flex-start;
	padding-left: 20px;
	color: #fff;
}

.header .line {
	width: 203px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	line-height: 1;
}

.header .line a {
	width: 156px;
	height: 38px;
	display: flex;
	align-items: center;
	background: #25282A url("../images/icon__line_wht.svg") left 23px center no-repeat;
	background-size: 24px auto;
	color: #fff;
	border-radius: 1000px;
	font-size: 18px;
	padding-left: 58px;
	padding-bottom: 2px;
}

@media screen and (min-width: 1025px) {
	.spBtn {
		display: none;
	}
	.fixedCta {
		display: none;
	}
	.wht {
		display: none;
	}
}

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

	.fixedCta {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 19999;
		background: rgba(37, 40, 42, 0.95);
		display: flex;
		align-items: center;
		height: 80px;
		justify-content: center;
		padding: 0 10px;
	}

	.fixedCta .cta {
		width: 100%;
		padding: 0;
		background-color: #546C43;
		border-radius: 8px;
	}
	
	.fixedCta .cta a {
		background-color: none;
		box-shadow: unset;
	}
	
	
	.header {
		width: 100%;
		height: 65px;
		top: 0;
		left: 0;
		position: relative;
		z-index: 30000;
		position: fixed;
	}

	.header .inner {
		height: 65px;
		padding: 16px;
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.header h1 {
		width: 94px;
		line-height: 0.5;
		text-align: center;
	}

	.header h1 img {
		width: 94px;
		height: auto;
	}

	.header h1 span {
		font-size: 5px;
		letter-spacing: 0.08em;
		margin-bottom: 1px;
	}

	.header nav {
		display: none;
	}

	.header .line {
		width: 114px;
		height: 26px;
	}

	.header .line a {
		width: 114px;
		height: 26px;
		display: flex;
		align-items: center;
		background: #25282A url("../images/icon__line.svg") left 14px center no-repeat;
		background-size: 16px auto;
		color: #fff;
		border-radius: 1000px;
		font-size: 13px;
		padding-left: 40px;
		padding-bottom: 3px;
		position: absolute;
		right: 62px;
	}	
	
	.header.is-open .line a {
		background: #F0F1F2 url("../images/icon__line_blk.svg") left 14px center no-repeat;
		background-size: 16px auto;	
		color: #25282A;
	}
	.header h1 img.nml {
		display: block;
	}	
	.header h1 img.wht {
		display: none;
	}
	.header.is-open h1 img.nml {
		display: none;
	}
	.header.is-open h1 img.wht {
		display: block;
	}
	.header.is-open h1 span {
		color: #F0F1F2;
	}
	.header h1 img {
		margin-top: 3px;
	}
}

@media screen and (max-width: 1024px) {
	.header .spBtn {
		width: 30px;
		height: 65px;
		position: relative;
		cursor: pointer;
		z-index: 30000;
	}

	.header .spBtn span {
		width: 100%;
		height: 1px;
		background: #25282A;
		display: block;
		position: absolute;
		left: 0;
		transition: transform .3s ease, top .3s ease;
	}

	.header .spBtn span:nth-child(1) {
		top: 25px;
	}

	.header .spBtn span:nth-child(2) {
		top: 38px;
	}

	.header .spBtn.is-open span:nth-child(1) {
		top: 32px;
		transform: rotate(45deg);
	}

	.header .spBtn.is-open span:nth-child(2) {
		top: 32px;
		transform: rotate(-45deg);
	}
	
	.header .spBtn.is-open span {
		background: #F0F1F2
	}

	.spNav {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity .3s ease, visibility .3s ease;
		position: fixed;
		top: 0;
		left: 0;
		transform: scale(.98);
	}

	.spNav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		background: rgba(37, 40, 42, 0.95);
		width: 100%;
		height: 100vh;
		z-index: 20000;
		transform: scale(1);
	}
	.spNav ul {
		padding-top: 100px;
		text-align: center;
	}
	.spNav ul li {
		display: block;
		padding: 30px;
	}
	.spNav ul li a {
		font-family: "Marcellus", serif;
		color: #F0F1F2;
		font-size: 18px;
	}
	.spNav .cta {
		max-width: 320px;
		width: 100%;
		height: 60px;
		margin: 38px auto 0;
		padding: 0 16px;
	}

	.spNav .cta a {
		margin: 0 auto;
		text-align: left;
		transform: scale(1);
		width: 100%;
		padding: 8px 0px 8px 60px;
		background: #546C43 url("../images/icon__line.svg") left 15px center no-repeat;
		background-size: auto;
		background-size: 36px auto;
	}
}

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

	.spNav .cta a {
		width: 280px;
		background: #546C43 url("../images/icon__line.svg") left 10px center no-repeat;
		background-size: auto;
		background-size: 32px auto;
		padding: 8px 0px 8px 50px;
	}	
}

/*============================================================

FV

============================================================*/

.fv {
	position: relative;
	height: 980px;
	overflow-x: hidden;
	margin-bottom: 80px;
}

.fv:after {
	content: "";
	display: block;
	width: 50%;
	height: 980px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	margin-left: 50%;
	background: linear-gradient(44.28deg, #61685C 79.95%, #25282A 100%);
	border-left: 1px solid #000000;
	border-bottom: 1px solid #000000;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.fv .inner {
	max-width: 1200px;
	width: 100%;
	height: 100px;
	margin: 0 auto;
	padding-top: 120px;
	position: relative;
}

.fv__img01 {
	position: absolute;
	top: 160px;
	left: 0;
}

.fv__img02 {
	position: absolute;
	top: 120px;
	right: 0;
}

.fv__img03 {
	position: absolute;
	top: 310px;
	right: -120px;
}

.fv__message {
	position: absolute;
	top: 620px;
	left: 0;
}

.fv__message01 {
	font-family: 'Zen Kaku Gothic New';
	font-size: 18px;
	line-height: 18px;
	color: #61685C;
	margin-bottom: 15px;
}

.fv__message02 {
	position: relative;
}

.fv__message02 .cta a {
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 341px;
	background: #546C43 url("../images/icon__line.svg") left 20px center no-repeat;
	background-size: 34px auto;
	box-shadow: 0px 15px 11px rgba(0, 0, 0, 0.02), 0px 16px 10px rgba(0, 0, 0, 0.08), 0px 7px 7px rgba(0, 0, 0, 0.13), 0px 2px 4px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	color: #fff;
	display: block;
	align-items: center;
	font-size: 21px;
	font-weight: 700;
	padding:  8px 0px 8px 70px;
	letter-spacing: -0.02rem;
	font-weight: normal;
}

@media screen and (max-width: 1024px) {
	.fv {
		position: relative;
		height: auto;
		margin-bottom: 45px;
		overflow: hidden;
	}

	.fv:after {
		display: none;
	}

	.fv .inner {
		width: 100%;
		height: auto;
		aspect-ratio: 390 / 546;
		position: relative;
		margin-top: 65px;
		margin-bottom: 20px;
	}
	
	.fv .inner:after {
		content: "";
		display: block;
		width: 69%;
		height: 87%;
		top: 5.5%;
		right: 0;
		z-index: -1;
		position: absolute;
		background: linear-gradient(44.28deg, #61685C 79.95%, #25282A 100%);
		border-left: 1px solid #000000;
		border-bottom: 1px solid #000000;
		box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);		
	}

	.fv__img01 {
		top: 1%;
		left: auto;
		right: 4%;
		z-index: 2;
		width: 41%;
		height: auto;
	}

	.fv__img02 {
		top: 11%;
		right: auto;
		left: 0;
		width: 75%;
		height: auto;
	}

	.fv__img03 {
		position: absolute;
		top: auto;
		left: auto;
		right: 4%;
		bottom: 0;
		width: 42%;
		height: auto;
	}

	.fv__message {
		position: absolute;
		top: 40%;
		left: 4%;
	}

	.fv__message01 {
		font-size: 3.9vw;
		color: #F0F1F2;
		margin-bottom: 2%;
		line-height: 150%;
		text-shadow: 0px 0px 10px #000000;
	}
	
	.fv__message02 {
		position: relative;
		z-index: 2000;
		width: 68%;
	}
	
	.fv__message02 img {
		width:100%;
		height: auto;		
	}
	
	.fv__message02 .cta {
		display: none;
	}

	.fv .cta {
		padding: 0 16px;
		width: 320px;
		height: 60px;
		margin: 38px auto 0;
	}

	.fv__message02 .cta a {
		position: relative;
		z-index: 3;
		bottom: auto;
		left: auto;
		top: auto;
		left: auto;
		transform: scale(1);
		width: 320px;
		padding: 8px 0px 8px 60px;
		background: #546C43 url("../images/icon__line.svg") left 15px center no-repeat;
		background-size: auto;
		background-size: 36px auto;		
	}	
}


@media screen and (max-width: 350px) {
	.fv .cta  {
		width: 300px;
		padding: 0 10px;
	}
	.fv .cta a {
		width: 280px;
		background: #546C43 url("../images/icon__line.svg") left 10px center no-repeat;
		background-size: auto;
		background-size: 32px auto;
		padding: 8px 0px 8px 50px;
	}
}

/*============================================================

Gallery

============================================================*/

.gallery {
	overflow: hidden;
}

.gallery:before {
	content: "";
	display: block;
	width: 1px;
	height: 110px;
	margin: 0 auto 15px;
	background: #8A9195;
}

.gallery__title {
	position: relative;
	width: 956px;
	height: 264px;
	margin: 0 auto 80px;
	text-align: center;
	padding-bottom: 37px;
}

.gallery__title:before {
	content: "";
	display: block;
	border-top: 1px solid #8A9195;
	border-left: 1px solid #8A9195;	
	width: 40px;
	height: 37px;
	position: absolute;
	top: 0;
	left: 0;
}

.gallery__title:after {
	content: "";
	display: block;
	border-top: 1px solid #8A9195;
	border-right: 1px solid #8A9195;	
	width: 40px;
	height: 37px;
	position: absolute;
	top: 0;
	right: 0;
}

.gallery__title h2 {
	font-family: "Yu Mincho", "YuMincho", serif;
	font-weight: 400;
	font-size: 32px;
	line-height: 140%;
	font-size: 48px;
	margin-bottom: 40px;
}

.gallery__title h2 span {
	display: block;
	font-size: 32px;
}

.gallery__title h2:before {
	content: "";
	display: block;
	border-bottom: 1px solid #8A9195;
	border-left: 1px solid #8A9195;	
	width: 40px;
	height: 37px;
	position: absolute;
	bottom: 0;
	left: 0;	
}

.gallery__title h2:after {
	content: "";
	display: block;
	border-bottom: 1px solid #8A9195;
	border-right: 1px solid #8A9195;	
	width: 40px;
	height: 37px;
	position: absolute;
	bottom: 0;
	right: 0;	
}

.gallery__title p {
	color: #61685C;
	line-height: 1.8;
	font-size: 18px;
}
.gallery .swiper-slide {
	position: relative;
}

.gallery .swiper-slide:after {
	content: "";
	display: block;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: -1;
	width: 220px;
	height: 275px;
	filter: blur(16px);
		background: #cecfc0;
	flex: none;
	order: 2;
	flex-grow: 0;
}
.gallery__bottom {
	padding-bottom: 110px;
}

@media screen and (max-width: 1024px) {
	.gallery__title {
		width: calc(100% - 40px);
		height: auto;
		margin: 0 20px 80px;	
	}	
}

@media screen and (max-width: 767px) {
	.gallery {
		padding-bottom: 0;
	}
	.gallery__bottom {
		padding-bottom: 48px;
	}
	.gallery .swiper-slide:after {
		content: "";
		display: block;
		width: 90.25px;
		height: 112.73px;
		background: #cecfc0;
		filter: blur(6.56367px);
		flex: none;
		order: 2;
		flex-grow: 0;
		position: absolute;
		top: 10px;
		left: 10px;
		z-index: -1;
	}

	.gallery:before {
		height: 77px;
		margin: 0 auto -16px;
	}

	.gallery__title {
		width: 100%;
		height: auto;
		margin: 0 auto 24px;
		padding: 28px 16px 28px;
	}

	.gallery__title:before {
		width: 28px;
		height: 26px;
		left: 16px;
	}

	.gallery__title:after {
		width: 28px;
		height: 26px;
		right: 16px;
	}

	.gallery__title h2 {
		font-size: 26px;
		margin-bottom: 24px;
	}

	.gallery__title h2 span {
		font-size: 20px;
	}

	.gallery__title h2:before {
		width: 28px;
		height: 26px;;
		left: 16px;
	}

	.gallery__title h2:after {
		width: 28px;
		height: 26px;
		right: 16px;
	}
}


@media screen and (max-width: 389px) {
	.gallery__title h2 {
		font-size: 23px;
		margin-bottom: 20px;
	}
	.gallery__title h2 span {
		font-size: 18px;
	}
	.gallery__title p {
		font-size: 15px;
	}
}

/*--------------------------------------
swiper
--------------------------------------*/

.gallery__top,
.gallery__bottom {
	width: 100%;
}

/*
.gallery__top {
	padding-bottom: 60px;
}

.gallery .swiper-slide {
	width: 220px;
	flex-shrink: 0;
}

.gallery img {
	display: block;
	width: 100%;
	height: auto;
	cursor: pointer;
}

.gallery__top .swiper-wrapper,
.gallery__bottom .swiper-wrapper {
	justify-content: center;
}

.gallery__top {

}

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

	.gallery .swiper-slide {
		width: 90px;
		flex-shrink: 0;
	}
	.gallery__top {
		margin-bottom: 0;
		padding-bottom: 24px;
	}
}
*/

.gallery__top,
.gallery__bottom {
	width: 100%;
	overflow: hidden;
}

.gallery__top {
	padding-bottom: 0;
	margin-bottom: 60px;
}

.gallery .swiper-wrapper {
	display: flex;
	gap: 16px;
	width: max-content;
	justify-content: flex-start;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: 35s;
}

.gallery .swiper-slide {
	width: 220px;
	flex-shrink: 0;
}

.gallery img {
	display: block;
	width: 100%;
	height: auto;
	cursor: pointer;
}

/* 上：右から左 */
.gallery__top .swiper-wrapper {
	animation-name: gallery-scroll-left;
}

/* 下：左から右 */
.gallery__bottom .swiper-wrapper {
	animation-name: gallery-scroll-right;
}

/* ホバー停止 */
/*
.gallery__top:hover > .swiper-wrapper,
.gallery__bottom:hover > .swiper-wrapper,
*/
.gallery.is-modal-open .swiper-wrapper {
	animation-play-state: paused;
}

/* 通常時は明示的に再生 */
.gallery__top > .swiper-wrapper,
.gallery__bottom > .swiper-wrapper {
	animation-play-state: running;
}

@keyframes gallery-scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@keyframes gallery-scroll-right {
	from {
		transform: translateX(-50%);
	}
	to {
		transform: translateX(0);
	}
}

@media screen and (max-width: 767px) {
	.gallery .swiper-wrapper {
		gap: 7px;
		animation-duration: 25s;
	}

	.gallery .swiper-slide {
		width: 90px;
	}

	.gallery__top {
		padding-bottom: 0;
		margin-bottom: 24px;
	}
}

/*============================================================

Concept

============================================================*/

.concept {
	background: #0b0d0e url("../images/concept__bg.png") right center no-repeat;
	background-size: auto 100%;
	padding: 130px 20px;
}

@media screen and (min-width: 1441px) {
	.concept {
		background: #0b0d0e url("../images/concept__bg_wide.png") right center no-repeat;
		background-size: auto 100%;
	}
}

.concept .inner {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	display: flex;
}

.concept__title {
	margin-right: 120px;
}

.concept__title h2 {
	font-size: 40px;
	font-family: "Marcellus", serif;
	color: #F0F1F2;
	font-weight: 100;
	color: rgba(240, 241, 242, 0.7);
	width: 120px;
}

.concept__contentCopy {
	font-weight: 400;
	line-height: 160%;
	color: #F0F1F2;
	font-size: 56px;
	font-family: "Yu Mincho", "YuMincho", serif;
	margin-bottom: 60px;
	letter-spacing: 4%;
	margin-top: -10px;
}

.concept__contentCopy span {
	font-size: 40px;
}

.concept__contentText {
	color: #F0F1F2;
	font-size: 18px;
}

@media screen and (max-width: 1024px) {
	.concept {
		padding: 90px 20px;
	}
	.concept .inner {
		display: block;
	}

	.concept__title {
		margin-right: 0;
		margin-bottom: 10px;
	}	
	
	.concept__contentCopy {
		font-size: 40px;
	}

	.concept__contentCopy span {
		font-size: 40px;
	}
}

@media screen and (max-width: 767px) {
	.concept {
		background: #0b0d0e url("../images/concept__bg_sp.png") right bottom no-repeat;
		background-size: 100% auto;
		padding: 40px 16px;
	}	
	.concept .inner {
		width: 100%;
		display: block;
	}
	.concept__title h2 {
		font-size: 30px;
		margin-bottom: 10px;
	}
	.concept__title {
		margin-bottom: 0;
	}
	.concept__contentCopy {
		line-height: 150%;
		font-size: 26px;
		margin: 0 0 25px;
		letter-spacing: 0;
		white-space: nowrap;
	}

	.concept__contentCopy span {
		font-size: 26px;
	}
}

@media screen and (max-width: 389px) {
	.concept__contentCopy {
		line-height: 140%;
		font-size: 24px;
		margin: 0 0 20px;
	}
}

/*============================================================

GRINGオンライン相談

============================================================*/

.soudan .inner {
	max-width: 960px;
	margin: 0 auto;
	text-align: center;
	padding: 80px 20px;
}

.soudan__title {
	font-family: "Yu Mincho", "YuMincho", serif;
	display: flex;
	align-items: center;
	font-size: 24px;
	color: #61685C;
	justify-content: center;
	margin-bottom: 15px;
	font-weight: 600;
}

.soudan__title:before,
.soudan__title:after {
	content: "";
	display: block;
	background: #61685C;
	width: 70px;
	height: 1px;
	margin: 0 10px;
}

.soudan__copy {
	font-size: 40px;
	color: #61685C;
	position: relative;
	margin-bottom: 40px;
	font-weight: 600;
}

.soudan__copy span {
	font-weight: 600;	
}

.soudan__copy strong {
	background: #61685C;
	color: #fff;
	display: inline-block;
	padding: 0 20px;
	margin: 0 7px;
	font-size: 36px;
	font-weight: normal;
}

.soudan__copy:after {
	content: "";
	display: block;
	background: url("../images/soudan__muryo.png") center center no-repeat;
	background-size: cover;
	width: 102px;
	height: 102px;
	position: absolute;
	top: -48px;
	right: 0;
}

.soudan__photo {
	width: 640px;
	margin: 0 auto -50px;
}

.soudan__points {
	background: #E6E6E6;
	padding: 85px 0 40px;
	margin-bottom: 24px;
}

.soudan__pointsTitle {
	margin-bottom: 24px;
	font-size: 28px;
	font-family: "Yu Mincho", "YuMincho", serif;
	color: #424649;
}

.soudan__pointsTitle span {
	font-size: 18px;
	display: block;
	font-weight: normal;
	font-family: 'Zen Kaku Gothic New';
}

.soudan .cta {
	width: 480px;
	height: 97px;
	margin: 38px auto 0;
}

.soudan .cta a {
	margin: 0 auto;
	text-align: left;
	transform: scale(1.41);
}

.soudan__text01 {
	color: #424649;	
	text-align: center;
	margin: 30px 0 0;
	font-size: 18px;
	font-family: 'Zen Kaku Gothic New';
	font-weight: normal;
}

.soudan__text02 {
	font-family: "Yu Mincho", "YuMincho", serif;
	color: #424649;	
	text-align: center;
	font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
	.soudan__copy span {
		font-weight: 600;	
		display: block;
	}	
	.soudan__copy:after {
		top: -103px;
		right: -70px;
	}
	.soudan__copy {
		display: inline-block;
	}
}

@media screen and (max-width: 601px) {
	.soudan .inner {
		padding: 48px 0;
		overflow: hidden;
	}

	.soudan__title {
		font-size: 16px;
		margin-bottom: 2px;
	}

	.soudan__title:before,
	.soudan__title:after {
		width: 40px;
		margin: 0 5px;
	}

	.soudan__copy {
		font-size: 24px;
		margin-bottom: 24px;
		display: inline-block;
	}

	.soudan__copy span {
		font-weight: 600;	
		display: block;
	}

	.soudan__copy strong {
		padding: 0 5px 0 10px;
		margin: 0 5px 0 0;
		font-size: 24px;
	}

	.soudan__copy:after {
		width: 57px;
		height: 57px;
		top: -53px;
		right: -40px;
	}

	.soudan__photo {
		width: 100%;
		margin: 0 auto -65px;
	}

	.soudan__points {
		background: #E6E6E6;
		padding: 85px 0 24px;
		margin-bottom: 24px;
	}

	.soudan__pointsTitle {
		margin-bottom: 24px;
		font-size: 20px;
	}
	
	.soudan__points img {
		width: 272px;
		height: auto;
	}

	.soudan__pointsTitle span {
		font-size: 12px;
	}

	.soudan .cta {
		width: 320px;
		height: 60px;
		margin: 38px auto 0;
	}

	.soudan .cta a {
		margin: 0 auto;
		text-align: left;
		transform: scale(1);
		width: 320px;
		padding: 8px 0px 8px 60px;
		background: #546C43 url("../images/icon__line.svg") left 15px center no-repeat;
		background-size: auto;
		background-size: 36px auto;
	}	

	.soudan__text01 {
		margin: 20px 0 0;
		font-size: 12px;
	}

	.soudan__text02 {
		font-size: 18px;
	}
}

@media screen and (max-width: 389px) {
	.soudan__title:before,
	.soudan__title:after {
		width: 20px;
		margin: 0 5px;
	}
  .soudan__copy::after {
	  right: -20px;
  }	
}
@media screen and (max-width: 350px) {
	.soudan__pointsTitle {
		margin-bottom: 20px;
		font-size: 19px;
	}
	.soudan .cta  {
		width: 300px;
		padding: 0 10px;
	}
	.soudan .cta a {
		width: 280px;
		background: #546C43 url("../images/icon__line.svg") left 10px center no-repeat;
		background-size: auto;
		background-size: 32px auto;
		padding: 8px 0px 8px 50px;
	}

}

/*============================================================

GRINGが選ばれる3つの理由

============================================================*/

.value {
	position: relative;
	background: linear-gradient(162.62deg, #25282A 0%, #61685C 35.26%) repeat-y;
	background-size: calc(100% - 120px) auto;
	padding: 90px 20px 160px;
	z-index: 2;
}

.value:after {
	content: "";
	display: block;
	width: 160px;
	height: 472px;
	background: url("../images/value__deco.png") center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
	right: 40px
}

.value .inner {
	max-width: 1200px;
	margin: 0 auto;
}


.value .heading {
	font-size: 48px;
}

.value__list {
	margin: 0 auto;
	max-width: 960px;
	color: #F0F1F2;
}

.value__list li {
	margin-top: 150px;
	display: flex;
	justify-content: space-between;
}

.value__listContent {
	width: calc(100% - 400px);
	position: relative;
}

.value__listContent h3 {
	font-size: 32px;
	font-weight: 500;
	font-family: "Yu Mincho", "YuMincho", serif;
	letter-spacing: 0.02em;
	margin-bottom: 50px;
	position: relative;
	z-index: 2;
}

.value__listContent p {
	position: relative;
	z-index: 2;	
	line-height: 1.7;
	font-size: 19px;
}

.value__listImage {
	width: 330px;
}

.value__list li:nth-child(even) .value__listContent {
	order: 2;
}

.value__list li:nth-child(even) .value__listImage {
	order: 1;
}

.value__list li:nth-child(1) .value__listContent:after {
	content: "";
	display: block;
	width: 232px;
	height: 210px;
	background: url("../images/value__number01.png") center center no-repeat;
	background-size: contain;
	position: absolute;
	top: -105px;
	left: 0;
}

.value__list li:nth-child(2) .value__listContent:after {
	content: "";
	display: block;
	width: 282px;
	height: 210px;
	background: url("../images/value__number02.png") center center no-repeat;
	background-size: contain;
	position: absolute;
	top: -50px;
	left: 0;
}

.value__list li:nth-child(3) .value__listContent:after {
	content: "";
	display: block;
	width: 276px;
	height: 210px;
	background: url("../images/value__number03.png") center center no-repeat;
	background-size: contain;
	position: absolute;
	top: -20px;
	left: 0;
}

.value__list li:nth-child(1) .value__listContent {
	padding-top: 30px;
}

.value__list li:nth-child(3) .value__listContent {
	padding-top: 60px;
}

.value__list li:nth-child(2) .value__listContent {
	padding-top: 40px;
}

.value__list li:nth-child(3) .value__listContent {
	padding-top: 60px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	
	.value {
		position: relative;
		background-size: calc(100% - 40px);
		padding: 90px 20px 120px;
		z-index: 2;
	}

	.value:after {
		width: 120px;
		height: 356px;
		right: 0;
	}
	.value__list {
		padding-top: 100px;
	}

	.value__list li {
		margin-top: 100px;
		display: flex;
		justify-content: space-between;
	}

	.value__listContent {
		width: calc(100% - 200px);
		position: relative;
		padding-right: 50px;
	}

	.value__listContent h3 {
		font-size: 27px;
		margin-bottom: 30px;
	}

	.value__listContent p {
		font-size: 18px;
	}

	.value__listImage {
		width: 330px;
	}

	.value__list li:nth-child(even) .value__listContent {
		order: 2;
	}

	.value__list li:nth-child(even) .value__listImage {
		order: 1;
	}

	.value__list li:nth-child(1) .value__listContent:after {
		width: 182px;
		height: 165px;
		background-size: contain;
		top: -78px;
	}

	.value__list li:nth-child(2) .value__listContent:after {
		width: 222px;
		height: 165px;
		background-size: contain;
		top: -35px;
		left: 40px;
	}

	.value__list li:nth-child(3) .value__listContent:after {
		width: 217px;
		height: 165px;
		background-size: contain;
		top: -20px;
	}


	.value__list li:nth-child(2) .value__listContent {
		padding-top: 40px;
		padding-left: 40px;
	}
	
}

@media screen and (max-width: 767px) {
	.value {
		position: relative;
		background: linear-gradient(162.62deg, #25282A 0%, #61685C 35.26%) repeat-y;
		background-size: 100%;
		padding: 65px 16px 40px;
		z-index: 2;
	}

	.value:after {
		width: 80px;
		height: 236px;
		background: url("../images/value__deco.png") center center no-repeat;
		background-size: contain;
		top: -110px;
		right: 80px;
		transform: rotate(90deg)
	}

	.value .inner {
		max-width: 1200px;
		margin: 0 auto;
	}

	.value .heading {
		font-size: 26px;
	}
	.value .heading:before {
		font-size: 15px;
		margin-bottom: 5px;
	}

	.value__list {
		margin: 0 auto;
		max-width: 960px;
		color: #F0F1F2;
	}

	.value__list li {
		margin-top: 100px;
		display: block;
	}

	.value__listContent {
		width: 100%;
	}

	.value__listContent h3 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	.value__listContent .sp img {
		width: 100%;
		height: auto;
		margin-bottom: 30px;
	}

	.value__listContent p {
		font-size: 16px;
	}

	.value__listImage {
		display: none;
	}

	.value__list li:nth-child(1) .value__listContent:after {
		width: 160px;
		height: 120px;
		top: -55px;
		left: 0;
	}

	.value__list li:nth-child(2) .value__listContent:after {
		width: 200px;
		height: 114px;
		top: -50px;
		left: 0;
	}

	.value__list li:nth-child(3) .value__listContent:after {
		width: 200px;
		height: 143px;
		top: -20px;
		left: 0;
	}	
}


@media screen and (max-width: 389px) {
	.value__listContent br {
		display: none;
	}
}

/*============================================================

はじめての撮影でも、不安なくお任せいただけるように。

============================================================*/

.worry {
	position: relative;
	background: linear-gradient( #C8C8C0 100%, #C8C8C0 100%) right top repeat-y;
	background-size: calc(100% - 120px) auto;
	padding: 300px 20px 280px;
	margin-top: -300px;
}

.worry .inner {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.worry .inner:before {
	content: "";
	display: block;
	width: 1px;
	height: 110px;
	margin: 0 auto 40px;
	background: #8A9195;
}

.worry h2 {
	font-size: 24px;
	color: #F0F1F2;
	font-family: "Yu Mincho", "YuMincho", serif;
	font-weight: 600;
	color: #61685C;
	text-align: center;
	margin: 0 0 40px;
}

.worry__list {
	display: flex;
	max-width: 960px;
	margin: 0 auto 40px;
	gap: 2px;
}
.worry__list li {
	background: #E4E4E0;
	text-align: center;
	width: 33.33%;
}

.worry__list li.swiper-slide {
	height: auto;
}

.worry__listBefore {
	background: #61685C;	
	padding: 40px 0 10px;
	color: #F0F1F2;
}

.worry__listBeforeNumber {
	margin-bottom: 20px;
}

.worry__listBefore h3 {
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 100;
}

.worry__listAfter {
	border-top: 2px solid #61685C;
	overflow: hidden;
	padding: 0 0 24px;
}

.worry__listAfter:before {
	content: "";
	display: block;
	width: calc(100% + 10px);
	aspect-ratio: 6 / 1;
	background: #61685C;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	margin: -2px -5px 20px -5px;
}

.worry__listAfterImage {
	margin-bottom: 20px;
}

.worry__listAfterTitle {
	font-size: 20px;
	color: #61685C;
	margin-bottom: 20px;
	line-height: 1.3;
}

.worry__listAfterText {
	font-size: 14px;
	color: #61685C;
	text-align: left;
	padding: 0 24px;
}

.worry__voice {
	max-width: 960px;
	margin: 0 auto;
	text-align: center;
}

.worry__voiceTitle {
	margin-bottom: 40px;
	color: #61685C;
}

.worry__voice ul {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}

.worry__voiceClick {
	padding: 5px 20px;
	border: 1px solid #61685C;
	border-radius: 1000px;
	display: inline-block;
	font-size: 12px;
	color: #61685C;
}

.worry__voice {
	overflow: hidden;
}

.worry__voiceSlider {
	width: 100%;
	margin-bottom: 16px;
	overflow: hidden;
}

.worry__voiceSlider .swiper-slide {
	width: 182px;
}

.worry__voiceSlider img {
	display: block;
	width: 100%;
	height: auto;
	cursor: pointer;
}


@media screen and (min-width: 768px) and (max-width: 1024px) {
	.worry {
		background-size: 100%;
		padding: 300px 20px 280px;
		margin-top: -300px;
	}	
}

@media (max-width: 767px) {
	.worry {
		background-size: 100%;
		padding: 0 0 100px;
		margin-top: 0;
	}

	.worry .inner:before {
		height: 110px;
		margin: 0 auto 25px;
	}

	.worry h2 {
		font-size: 22px;
		margin: 0 0 30px;
		white-space: nowrap;
	}

	.worry__list {
		display: block;
		margin: 0 auto 25px;
	}
	
	.worry__list li {
		width: 100%;
	}

	.worry__listBefore {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 15px 0 0;
		gap: 15px;
	}
	
	.worry__listBefore .l {
		text-align: center;
		width: 180px;
	}
	.worry__listBefore .r {
		text-align: center;
		width: 120px;
	}

	.worry__listBeforeNumber {
		margin-bottom: 5px;
	}

	.worry__listBefore h3 {
		margin-bottom: 0px;
		font-weight: normal;
	}

	.worry__listAfter {
		padding: 0 0 20px;
	}

	.worry__listAfter:before {
		width: calc(100% + 20px);
		aspect-ratio: 12 / 1;
		margin: -2px -10px 20px -10px;
	}

	.worry__listAfterImage {
		margin-bottom: 20px;
	}

	.worry__listAfterTitle {
		font-size: 18px;
	}

	.worry__listAfterText {
		font-size: 15px;
		padding: 0 12px 12px;
	}

	.worry__voiceTitle {
		margin-bottom: 25px;
	}

	.worry__voice ul {
		display: flex;
		justify-content: space-between;
		margin-bottom: 16px;
	}

	.worry__voiceClick {
		padding: 5px 20px;
		border: 1px solid #61685C;
		border-radius: 1000px;
		display: inline-block;
		font-size: 12px;
		color: #61685C;
	}
	.worry__voiceSlider {
		width: 100vw;
		margin-left: calc(50% - 50vw);
		overflow: visible;
	}

	.worry__voiceSlider .swiper-slide {
		width: calc((100vw - 96px) / 3);
		width: 100vw;
	}
}

@media (max-width: 767px) {

	.worry__listSlider {
		width: 100vw;
		margin-left: calc(50% - 50vw);
		overflow: visible;
	}

	.worry__list {
		display: flex;
	
		margin: 0 0 30px;
		max-width: none;
	}

	.worry__list .swiper-slide {
		width: 100vw;
		height: initial;
		flex-shrink: 0;
	}
	.worry__list li.swiper-slide {
		width: 100vw;
	}
	
	.worryArrow {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 50px;
		height: 50px;
		cursor: pointer;
		z-index: 100;
	}
	
	.worryArrow--prev{
		left:10px;
	}

	.worryArrow--next{
		right:10px;
	}

	.worryArrow::before{
		content:"";
		position:absolute;
		top:50%;
		left:50%;
		width:28px;
		height:28px;
		border-top:2px solid #61685C;
		border-right:2px solid #61685C;
	}

	.worryArrow--prev::before{
		transform:translate(-30%,-50%) rotate(-135deg);
	}

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

	.worryArrow{
		opacity:1;
		transition:.3s;
	}

	.worryArrow.swiper-button-disabled{
		opacity:0;
		pointer-events:none;
	}
	
}

@media (max-width: 389px) {
	.worry__listBefore {
		padding: 15px 10px 10px;
		gap: 5px;
	}
	.worry__listBeforeNumber {
		width: 50px;
		height: auto;
	}
	.worry__listBefore h3 {
		font-size: 19px;
		white-space: nowrap
	}
}

@media (max-width: 350px) {
	.worry h2 {
		font-size: 19px;
	}
}
@media (max-width: 330px) {
	.worry h2 {
		font-size: 18px;
	}
}

/*============================================================

動画

============================================================*/

.movie {
	background: #25282A;
	padding: 80px 20px;
	position: relative;
}

.movie:before {
	content: "";
	display: block;
	width: 119px;
	height: 507px;
	background: url("../images/movie__deco.png") left center no-repeat;
	background-size: contain;
	position: absolute;
	top: -33px;
	left: 60px;
}

.moviefile {
	display: block;
	width: 100%;
	height: auto;
}

.movie .inner {
	max-width: 960px;
	margin: 0 auto;
}

/*
.movieBox {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border: 1px solid #ccc;
}
 
.movieBox iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
*/

.movieBox {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 1px solid #ccc;
	background: #000;
	cursor: pointer;
}

.movieBox__thumb,
.movieBox video,
.movieBox iframe {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.movieBox__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 72px;
	height: 72px;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.9);
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.movieBox__play::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 53%;
	transform: translate(-50%, -50%);
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 22px solid #333;
}

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

	.movie {
		padding: 30px 0;
	}

	.movie:before {
		content: "";
		display: block;
		width: 60px;
		height: 257px;
		background: url("../images/movie__deco.png") left center no-repeat;
		background-size: contain;
		position: absolute;
		top: -13px;
		left: 10px;
		z-index: 200;
	}	
}

/*============================================================

選べる2つの撮影プラン

============================================================*/

.plan {
	padding: 160px 20px;
}

.plan .headingWrap {
	margin: 0 auto 65px;
	text-align: center;
}

.plan .heading {
	color: #61685C;
	display: inline-block;
	text-align: left;
	font-size: 48px;
}

.plan .inner {
	display: flex;
	gap: 40px;
	max-width: 960px;
	margin: 0 auto 40px;
}

.plan__section {
	width: 50%;
	position: relative;
	padding: 32px 0 92px;
	text-align: center;
}

.plan__sectionTitle {
	font-family: "Marcellus", serif;
	font-size: 48px;
	font-weight: normal;
	line-height: 1;
	margin-bottom: 10px;
}

.plan__sectionTitleJp {
	width: 300px;
	margin: 0 auto;
	border-bottom: 1px solid #61685C;
	font-weight: 600;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.plan__sectionText {
	font-size: 16px;
	margin-bottom: 26px;
}

.plan__sectionResult {
	text-align: center;
	padding: 20px;
	color: #F0F1F2;
	background: #61685C;
	bottom: 0;
	position: absolute;
	width: 100%;
}

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

	.plan {
		padding: 50px 0;
	}

	.plan .headingWrap {
		margin: 0 auto 65px;
		text-align: left;
		display: block;
	}

	.plan .heading {
		font-size: 26px;
		margin-left: 16px;
	}

	.plan .inner {
		display: block;
		gap: 40px;
		margin-bottom: 30px;
	}

	.plan__section {
		width: 100%;
		position: relative;
		padding: 32px 0 0;
		text-align: center;
	}

	.plan__sectionResult {
		position: relative;
		margin-top: 25px;
	}
	
	.plan__sectionTitle {
		font-size: 40px;
	}
	
	.plan__sectionText {
		font-size: 15px;
		margin-bottom: 20px;
	}
}

/*--------------------------------------
All In One Package
--------------------------------------*/

.plan__allinone {
	background: #C8C8C0;
	color: #61685C;
}

.plan__allinone .plan__sectionBatch {
	position: absolute;
	top: -60px;
	left: -60px;
}

.plan__allinone .plan__sectionList {
	text-align: left;
	padding: 0 24px;
}

.plan__allinone .plan__sectionList li {
	background: #61685C;
	color: #F0F1F2;
	border-radius: 1000px;
	display: flex;
	align-items: center;
	padding: 10px 15px;
	white-space: nowrap;
}

.plan__allinone .plan__sectionList li span:first-child {
	width: 40px;
	height: 40px;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	background: #F0F1F2;
	margin-right: 10px;
	border-radius: 1000px;
}

.plan__allinone .plan__sectionList li:not(:last-child){
	margin-bottom: 8px;
}

.plan__allinone .plan__sectionResult {
	color: #F0F1F2;
	background: #61685C;
}

@media screen and (max-width: 1100px) {
	.plan__allinone .plan__sectionBatch {
		top: -50px;
		left: -6%;
	}	
	.plan__allinone .plan__sectionBatch img {
		width: 100px;
		height: 100px;
	}
}

@media screen and (max-width: 1000px) {
	.plan__allinone .plan__sectionBatch {
		top: -45px;
		left: -6%;
	}	
	.plan__allinone .plan__sectionBatch img {
		width: 90px;
		height: 90px;
	}
}


@media screen and (max-width: 900px) {
	.plan__allinone .plan__sectionBatch {
		top: -40px;
		left: -6%;
	}	
	.plan__allinone .plan__sectionBatch img {
		width: 80px;
		height: 80px;
	}
}

@media screen and (max-width: 767px) {
	
	.plan__allinone {
		margin-bottom: 75px;
	}

	.plan__allinone .plan__sectionBatch {
		top: -25px;
		left: 5px;
	}
	
	.plan__allinone .plan__sectionBatch img {
		width: 73px;
		height: 73px;
	}
	@media screen and (max-width: 389px) {
		.plan__allinone .plan__sectionBatch {
			top: -30px;
			left: 5px;
		}

		.plan__allinone .plan__sectionBatch img {
			width: 60px;
			height: 60px;
		}
	}

	.plan__allinone .plan__sectionList {
		text-align: left;
		padding: 0 24px;
	}

	.plan__allinone .plan__sectionList li {
		background: #61685C;
		color: #F0F1F2;
		border-radius: 1000px;
		display: flex;
		align-items: center;
		padding: 5px;
	}

	.plan__allinone .plan__sectionList li span:first-child {
		width: 30px;
		height: 30px;
		display: flex;
		text-align: center;
		justify-content: center;
		align-items: center;
		background: #F0F1F2;
		margin-right: 10px;
		border-radius: 1000px;
	}
	

	.plan__allinone .plan__sectionList li span:first-child img {
		transform: scale(0.8);
	}

	.plan__allinone .plan__sectionList li:not(:last-child){
		margin-bottom: 8px;
	}

	.plan__allinone .plan__sectionResult {
		color: #F0F1F2;
		background: #61685C;
	}	
	@media screen and (max-width: 350px) {
		.plan__allinone .plan__sectionList {
			padding: 0 12px;
		}
	}
}

/*--------------------------------------
Customized Plan
--------------------------------------*/

.plan__custmized {
	background: #E8E8E8;
	color: #8A9195;
}

.plan__custmized .plan__sectionBatch {
	position: absolute;
	top: -60px;
	right: -60px;
}

.plan__custmized .plan__sectionList {
	text-align: left;
	padding: 0 24px;
}

.plan__custmized .plan__sectionList li {
	background: #8A9195;
	color: #F0F1F2;
	border-radius: 1000px;
	display: flex;
	align-items: center;
	padding: 8px;
}

.plan__custmized .plan__sectionList li span:first-child {
	width: 40px;
	height: 40px;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	background: #F0F1F2;
	margin-right: 10px;
	border-radius: 1000px;
}

.plan__custmized .plan__sectionList li span:last-child {
	width: calc(100% - 50px);
}

.plan__sectionPlus {
	font-size: 32px;
	color: #8A9195;
	margin: 5px auto;
}

.plan__sectionOption {
	margin: 0 16px 32px;
	background: #F2F2F1;
	padding: 11px 0 16px;
}

.plan__sectionOption h4 {
	text-align: left;
	padding: 0 24px 12px;
	font-weight: normal;
}

.plan__sectionOption ul {
	text-align: left;
	padding: 0 24px;
}

.plan__sectionOption ul li {
	background: #fff;
	color: #8A9195;
	border-radius: 1000px;
	display: flex;
	align-items: center;
	padding:7px;
}

.plan__sectionOption ul li span:first-child {
	width: 36px;
	height: 36px;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	background: #F0F1F2;
	margin-right: 10px;
	border-radius: 1000px;
}

.plan__sectionOption ul li:not(:last-child){
	margin-bottom: 6px;
}

.plan__custmized .plan__sectionResult {
	background: #8A9195;
}

@media screen and (max-width: 1100px) {
	.plan__custmized .plan__sectionBatch {
		top: -50px;
		right: -6%;
	}	
	.plan__custmized .plan__sectionBatch img {
		width: 100px;
		height: 100px;
	}
}

@media screen and (max-width: 1000px) {
	.plan__custmized .plan__sectionBatch {
		top: -45px;
		right: -6%;
	}	
	.plan__custmized .plan__sectionBatch img {
		width: 90px;
		height: 90px;
	}
}


@media screen and (max-width: 900px) {
	.plan__custmized .plan__sectionBatch {
		top: -40px;
		right: -6%;
	}	
	.plan__custmized .plan__sectionBatch img {
		width: 80px;
		height: 80px;
	}
}

@media screen and (max-width: 767px) {
	.plan__custmized {
		background: #E8E8E8;
		color: #8A9195;
	}

	.plan__custmized .plan__sectionBatch {
		top: -25px;
		left: 5px;
		right: auto;
	}
	
	.plan__custmized .plan__sectionBatch img {
		width: 73px;
		height: 73px;
	}
	.plan__custmized .plan__sectionList li span:last-child {
		white-space: nowrap;	
	}	
	.plan__custmized .plan__sectionList li span:first-child {
		width: 30px;
		height: 30px;
	}
	.plan__custmized .plan__sectionList li span:first-child img {
		transform: scale(0.8);
	}
	.plan__custmized .plan__sectionList li {
		padding: 5px;
	}
	
	.plan__sectionOption ul li {
		padding: 5px;
	}
	.plan__sectionOption ul li span:first-child {
		width: 28px;
		height: 28px;
	}
	.plan__sectionOption ul li span:first-child img {
		transform: scale(0.75);
	}
	
	@media screen and (max-width: 389px) {
		.plan__custmized .plan__sectionBatch {
			top: -30px;
			left: 5px;
		}

		.plan__custmized .plan__sectionBatch img {
			width: 60px;
			height: 60px;
		}
		.plan__custmized .plan__sectionList li span:last-child {
			font-size: 15px;
		}
	}
	@media screen and (max-width: 350px) {
		.plan__custmized .plan__sectionList {
			padding: 0 12px;
		}
		.plan__sectionOption ul {
			padding: 0 12px;
		}
	}
}

/*--------------------------------------
PLAN CTA
--------------------------------------*/

.planCta p {
	text-align: center;
	color: #61685C;
	margin-bottom: 16px;
}

.planCta .cta a {
	margin: 0 auto;
	width: 420px;
	padding: 8px 40px 8px 110px;
	background: #546C43 url("../images/icon__line.svg") left 60px center no-repeat;
	background-size: 36px 34px;
}

@media screen  and (min-width: 768px) and (max-width: 1024px) {
	.planCta .cta a {	
		max-width: 100%!important;
		font-size: 21px;
	}
	 .cta a span {
    	font-size: 12px;
		 margin-bottom: 0;
	}
}

@media screen and (max-width: 767px) {
	.planCta p {
		margin-bottom: 20px;
	}
	
	.planCta .cta {
		padding: 0 16px;
	}

	.planCta .cta a {
		margin: 0 auto;
		text-align: left;
		transform: scale(1);
		width: 320px;
		padding: 8px 0px 8px 60px;
		background: #546C43 url("../images/icon__line.svg") left 15px center no-repeat;
		background-size: auto;
		background-size: 36px auto;
	}	
}

@media screen and (max-width: 350px) {
	.planCta {
		font-size: 15px;
	}
	.planCta .cta {
		padding: 0 5px;
	}
	.planCta .cta a {
		width: 280px;
		background: #546C43 url("../images/icon__line.svg") left 10px center no-repeat;
		background-size: 32px auto;
		padding: 8px 0px 8px 50px;
	}
}

/*============================================================

CREATOR

============================================================*/

.creator {
	background: #8A9195;
	padding: 80px 20px;
}

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

.creator__photo {
	width: 532px;
	position: relative;
}

.creator__photo img {
	position: absolute;
	bottom: 0;
	left: 0;
}

.creator .heading {
	font-size: 48px;
	margin-left: 5px;
}

.creator .heading::before {
	margin-left: -5px;
}

.creator__content {
	width: 590px;
	padding-right: 270px;
	color: #F0F1F2;
	position: relative;
}

.creator__content h3 {
	font-size: 24px;
	margin-bottom: 26px;
	letter-spacing: 2px;
	font-weight: normal
}

.creator__content p {
	font-size: 14px;
}

.creator__content img {
	position: absolute;
	top:  0;
	right: 0;
}

@media screen and (min-width: 1024px) and (max-width: 1241px) {
	.creator__photo {
		width: 400px;
	}
	.creator__content {
		padding-right: 170px;
		width: 540px;
	}
	.creator__content img {
		width:141px;
	}
}

@media screen and (min-width:768px) and (max-width: 1023px) {
	.creator .inner {
		display: block;
	}	
	.creator__photo {
		display: flex;
		width: 100%;
		justify-content: space-between;
		margin-bottom: 50px;
	}
	.creator__photo img {
		position: relative;
		bottom: auto;
		left: auto;
		width: 300px;
		height: auto;
	}
	
	.non {
		display: none;
	}
	
	.creator__content {
		padding-right: 180px;	
		width: 100%;
	}
	
	.creator__content img {
		width: 150px;
	}
	
}

@media screen and (max-width: 767px) {
	
	.creator {
		padding: 45px 16px;
	}

	.creator .inner {
		display: block;
	}

	.creator__photo {
		width: 100%;
		position: relative;
		margin-bottom: 40px;
	}

	.creator__photo img {
		position: relative;
		bottom: auto;
		left: auto;
		width: 100%;
		height: auto;
	}
	
	.creator__photo .heading {
		margin-bottom: 45px;
		font-size: 26px;
	}

	.creator__photo .heading:before {
		margin-bottom: 0;
	}

	.creator__content {
		width: 100%;
		padding: 0;
	}

	.creator__content h3 {
		font-size: 24px;
		margin-bottom: 26px;
		font-weight: 100;
	}
	
	.creator__content p {
		font-size: 16px;
		margin-top: 170px;
	}

	.creator__content img {
		width: 117px;
		height: auto;
	}
	
	@media screen and (max-width: 420px) {
		.creator__content h3 {
			font-size: 22px;
		}	
		.creator__content p {
			margin-top: 160px;
		}

		.creator__content img {
			width: 110px;
			height: auto;
		}
	}
	
	@media screen and (max-width: 389px) {
		.creator__content h3 {
			font-size: 19px;
		}	
		.creator__content p {
			margin-top: 140px;
		}
		.creator__content img {
			width: 100px;
			height: auto;
		}
	}
	@media screen and (max-width: 350px) {
    	.creator__content h3 {
			font-size: 18px;
    	}
    	.creator__content img {
			width: 80px;
			height: auto;
    	}
		.creator__content p {
			margin-top: 120px;
		}
	}
	
}

/*============================================================

お客様の声

============================================================*/

.voice {
	text-align: center;
	padding: 160px 0 80px;
	overflow: hidden;
}

.voice .heading {
	color: #61685C;
	margin-bottom: 40px;
	font-size: 48px;
}

.voice__slider {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	color: #61685C;
}

.voice__listImage {
	margin-bottom: 16px;
	padding: 0 20px;
}

.voice__listImage img {
	margin-top: 5px;
}

.voice__listName {
	font-weight: normal;
	margin-bottom: 16px;
	font-size: 18px;
}

.voice__listTitle {
	margin-bottom: 16px;
	font-size: 18px;
	font-weight: 600;
}

.voice__listText {
	font-size: 14px;
	text-align: left;
}

.voice__list.swiper {
	width: 100%;
	overflow: visible;
	padding-left: 40px;
	padding-right: 40px;
}

.voice__list .swiper-slide {
	width: 220px;
	flex-shrink: 0;
}

@media screen and (max-width: 767px) {
	.voice {
		padding: 50px 0 50px;
	}

	.voice .heading {
		margin-bottom: 25px;
		font-size: 26px;
	}

	.voice__slider {
		width: 100vw;
		margin-left: calc(50% - 50vw);
		overflow: hidden;
	}

	.voice__listImage {
		margin-bottom: 16px;
	}

	.voice__listImage img {
		width: 120px;
		height: 120px;
	}

	.voice__listImage img {
		margin-top: 5px;
	}

	.voice__listName {
		font-weight: normal;
		margin-bottom: 16px;
	}

	.voice__listTitle {
		margin-bottom: 16px;
	}

	.voice__listText {
		font-size: 14px;
		text-align: left;
		padding: 0;
	}

	.voice__list.swiper {
		width: 100%;
		overflow: visible;
		padding-left: 20px;
		padding-right: 20px;
	}

	.voice__list .swiper-slide {
		width: auto;
	}	
	
	.voice__list.swiper {
		width: 100%;
		overflow: hidden;
	}
}

@media screen and (max-width: 389px) {
	.voice__listTitle {
		font-size: 17px;
	}
	.voice__listName {
		font-size: 17px;
	}
}

	.voice__slider{
		position:relative;
	}

	.voiceArrow{
		position:absolute;
		top:20%;
		transform:translateY(-50%);
		width:50px;
		height:50px;
		cursor:pointer;
		z-index:100;
	}

	.voiceArrow--prev{
		left:10px;
	}

	.voiceArrow--next{
		right:10px;
	}

	.voiceArrow::before{
		content:"";
		position:absolute;
		top:50%;
		left:50%;
		width:28px;
		height:28px;
		border-top:2px solid #61685C;
		border-right:2px solid #61685C;
	}

	.voiceArrow--prev::before{
		transform:translate(-30%,-50%) rotate(-135deg);
	}

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

	.voiceArrow{
		opacity:1;
		transition:.3s;
	}

	.voiceArrow.swiper-button-disabled{
		opacity:0;
		pointer-events:none;
	}

@media screen and (max-width: 767px) {
	.voice__slider{
		position:relative;
	}

	.voiceArrow{
		position:absolute;
		top:20%;
		transform:translateY(-50%);
		width:50px;
		height:50px;
		cursor:pointer;
		z-index:100;
	}

	.voiceArrow--prev{
		left:0px;
	}

	.voiceArrow--next{
		right:0px;
	}

	.voiceArrow::before{
		content:"";
		position:absolute;
		top:50%;
		left:50%;
		width:14px;
		height:14px;
		border-top:2px solid #61685C;
		border-right:2px solid #61685C;
	}

	.voiceArrow--prev::before{
		transform:translate(-30%,-50%) rotate(-135deg);
	}

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

	.voiceArrow{
		opacity:1;
		transition:.3s;
	}

	.voiceArrow.swiper-button-disabled{
		opacity:0;
		pointer-events:none;
	}
}
/*============================================================

footer

============================================================*/

.footer {
	position: relative;
	overflow: hidden;
}

.footer:before {
	content: "";
	display: block;
	width: 1px;
	height: 110px;
	margin: 0 auto;
	background: #8A9195;
}

.footer__image {
	width: 100%;
	height: 629px;
	object-fit: cover;
}

.footer .pr {
  margin: 0 auto -130px;
}

.footer__title {
	text-align: center;
	margin-bottom: 40px;
	font-size: 32px;
	font-family: "Yu Mincho", "YuMincho", serif;
	font-weight: 600;
	color: #61685C;
}

.footer__text {
	text-align: center;
	color: #61685C;
	margin-bottom: 40px;
	font-size: 18px;
}

.footer:after {
	content: "";
	display: block;
	background: url("../images/footer__deco.png") center center no-repeat;
	background-size: 1906px 160px;
	width: 100%;
	height: 160px;
	position: absolute;
	z-index: 2;
	bottom: -50px;
	mix-blend-mode: overlay;
}

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

	.footer {
		margin-bottom: 80px;
	}

	.footer:before {
		height: 77px;
		margin-bottom: 20px;
	}

	.footer__image {
		width: 100%;
		height: 300px;
		object-fit: cover;
	}

	.footer .pr {
	  margin: 0 auto -45px;
	}

	.footer__title {
		margin-bottom: 24px;
		font-size: 24px;
	}

	.footer__text {
		margin-bottom: 24px;
		font-size: 15px;
	}

	.footer:after {
		content: "";
		display: block;
		background: url("../images/footer__deco.png") center center no-repeat;
		background-size: auto 60px;
		width: 100%;
		height: 60px;
		position: absolute;
		z-index: 2;
		bottom: -20px;
		mix-blend-mode: overlay;
	}	
}

@media (max-width: 389px) {
	.footer__title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.footer__text {
		font-size: 14px;
		margin-bottom: 20px;
	}
}

.imageModal__prev,
.imageModal__next {
	position: absolute;
	top: 50%;
	top: calc(50% - 24px);
	z-index: 2;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: 0;
	color: #fff;
	font-size: 102px;
	line-height: 62px;
	cursor: pointer;
	background: none!important;
}

.imageModal__prev:hover,
.imageModal__next:hover {
	opacity: 0.7;
}

.imageModal__prev {
	left: -64px;
}

.imageModal__next {
	right: -64px;
}

@media (max-width: 767px) {
	.imageModal__prev {
		left: -48px;
	}

	.imageModal__next {
		right: -48px;
	}
}

@media (max-width: 390px) {
	.imageModal__prev {
		left: -32px;
	}

	.imageModal__next {
		right: -32px;
	}
}
.gallery__top {
	transition: opacity .25s ease;
}

.gallery__top.is-resizing {
	opacity: 0;
}