@charset "utf-8";

.pc_none {
	display: none;
}

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

/*======================================================================================
TOP PAGE
======================================================================================*/
.top_mainimg {
	width: 100%;
	background-image: url("images/top_mainimg.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

@media screen and (max-width: 768px) {
	.top_mainimg {
		position: relative;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		z-index: 0;
		/* transformやfilterを削除：これがあると再描画が頻発する */
		will-change: transform;
		backface-visibility: hidden;
	}

	.top_mainimg::before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url('images/top_mainimg.jpg');
		/* ← 画像パス変更 */
		background-repeat: no-repeat;
		background-size: auto 100%;
		background-position: center bottom;
		z-index: -1;
		transform: translateZ(0);
		will-change: transform;
		-webkit-transform: translateZ(0);
		-webkit-backface-visibility: hidden;
		-webkit-perspective: 1000;
	}
}

@media screen and (min-width:700px) and (max-width:1279px) {
	.top_mainimg {
		height: 100vh;
		background-size: 100%;
		background-position: center bottom;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

@media screen and (min-width:1280px) {
	.top_mainimg {
		height: 100vh;

		background-position: center bottom;
	}
}

.topmenu {
	width: 100%;
	display: block;
	clear: both;
	position: relative;
}

@media screen and (max-width:1279px) {
	.topmenu {
		display: none;
	}

	.logo_sp {
		width: 60%;
	}

	.logo_sp img {
		width: 100%;
		display: block;
	}
}

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

	.topmenu_logo {
		width: 223px;
		margin: 0 auto;
		padding: 95px 0 75px 0;
	}

	.topmenu_navi {
		width: 700px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		position: relative;
	}

	.topmenu_navi li,
	.topmenu_navi li a {
		color: #FFFFFF;
		font-family: 'Marcellus SC', serif;
		font-size: 20px;
		padding-bottom: 34px;
	}

	.topmenu_navi li a:hover {
		opacity: 0.5;
	}

	li.nolink {
		display: block;
		cursor: pointer;
	}

	.topmenuSub {
		position: absolute;
		top: 20px;
		left: 0;
		font-size: 0;
		display: none;
		width: 100%;
		z-index: 100;
		padding: 15px 0 15px 113px;
	}

	.topmenuSub2 {
		position: absolute;
		top: 20px;
		left: 0;
		font-size: 0;
		display: none;
		width: 150%;
		z-index: 100;
		padding: 15px 0 15px 310px;
	}

	.topmenuSub li,
	.topmenuSub2 li {
		display: inline-block;
		vertical-align: top;
		margin: 0 20px;
		padding: 0;
	}

	.topmenuSub li a,
	.topmenuSub2 li a {
		display: block;
		font-size: 13px;
	}

	.topmenu_sns {
		width: 60px;
		display: flex;
		justify-content: space-between;
		clear: both;
		position: absolute;
		top: 40px;
		right: 8.5%;
	}
}

.br_sp {
	display: none;
}

.top_opening {
	position: relative;
	background-image: url("images/top_opening_bg.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	overflow: hidden;
}

.top_opening::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 100%);
	z-index: 2;
}

.top_opening_wrap {
	width: 70%;
	display: flex;
	margin: 0 auto;
	padding: 15rem 0;
}

.top_opening_txt {
	position: relative;
	color: #7E624C;
	z-index: 3;
}

.top_opening_wrap h2 {
	font-family: 'Noto Serif JP';
	text-align: center;
	font-size: 1.2rem;
	font-weight: initial;
	line-height: 3rem;
	letter-spacing: 0.4rem;
	margin-bottom: 6rem;
}

.top_opening_txtblock {
	font-size: 0.9rem;
	text-align: center;
	line-height: 2rem;
	letter-spacing: 0.1rem;
}

.top_opening_txtblock p:first-child {
	margin-bottom: 3rem;
}

.photo-lver,
.photo-nega {
	position: absolute;
	z-index: 1;
}

.photo-lver {
	position: absolute;
	width: 70vh;
	top: 7%;
	left: 52vw;
}

.photo-nega {
	position: absolute;
	width: 40vh;
	top: 25%;
	left: 43vw;
	transform: rotate(-1deg);
	z-index: 1;
}

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

	.top_opening::before {
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 100%);
	}

	.top_opening_wrap {
		width: 80%;
		display: block;
		padding: 5.5rem 0 31rem 0;
	}

	.top_opening_wrap h2 {
		margin-bottom: 2rem;
	}

	.top_opening_txtblock p:first-child {
		margin-bottom: 1.5rem;
	}

	.photo-lver {
		width: 75vw;
		top: 53%;
		left: 18vw;
	}

	.photo-nega {
		width: 48vw;
		top: 58%;
		left: 3vw;
	}
}

/*****
フォトプラン*****/

.top_pickup_photoplan {
	background-color: #F3EFEB;
	padding: 10rem 0;
}

.top_pickup_photoplan_wrap {
	width: 70%;
	margin: 0 auto;
}

.top_pickup_photoplan_wrap h2 {
	color: #937218;
	font-family: 'Noto Serif JP';
	font-size: 1.5rem;
	font-weight: initial;
	text-align: center;
	line-height: 3rem;
	letter-spacing: 0.4rem;
	margin-bottom: 4rem;
}

.top_pickup_photoplan_wrap h2 span {
	display: block;
	font-size: 0.8rem;
	color: #937218;
	letter-spacing: 0.3rem;
}

.top_pickup_photoplan_wrap h2::after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background: #937218;
	margin: 1rem auto 0;
}

.top_pickup_photoplan_wrap p {
	color: #937218;
	font-family: 'Noto Serif JP';
	font-size: 0.9rem;
	font-weight: initial;
	text-align: center;
	line-height: 2.5rem;
	letter-spacing: 0.2rem;
	margin-bottom: 6rem;
}

.top_pickup_photoplan_wrap strong {
	font-size: 1.4rem;
	font-weight: normal;
	font-family: 'Noto Serif JP';
}

/* ===== 共通：コンテナ ===== */
.top_photoplan_wrap_odd,
.top_photoplan_wrap_even {
	position: relative;
	display: flex;
	width: 70%;
	margin: 0 auto 12rem;
	align-items: center;
	gap: 4vw;
}

/* 偶数行は左右反転 */
.top_photoplan_wrap_even {
	flex-direction: row-reverse;
}

/* ===== サムネイル（画像側） ===== */
.top_photoplan_thumb {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
}

/* “Plan1/2/3”の手書き文字 */
.top_photoplan_txt {
	position: absolute;
	width: clamp(240px, 50%, 410px);
	top: -28px;
	left: -12px;
	transform: rotate(-5deg);
	pointer-events: none;
}

/* メイン画像 */
.top_photoplan_img {
	display: block;
	width: clamp(280px, 28vw, 410px);
	height: auto;
	object-fit: cover;
}

.top_photoplan_wrap_odd .top_photoplan_content {
	background: #F8F8F8;
	position: absolute;
	width: calc(65% + 5vw);
	z-index: 0;
	top: 12%;
	right: 0;
}

.top_photoplan_wrap_even .top_photoplan_content {
	background: #F8F8F8;
	position: absolute;
	width: calc(65% + 5vw);
	z-index: 0;
	top: 12%;
	left: 0;
}

.top_photoplan_wrap_odd .top_photoplan_txtpadding {
	padding-top: 5rem;
	padding-right: 3rem;
	padding-left: calc(5rem + 6vw);
}

.top_photoplan_wrap_even .top_photoplan_txtpadding {
	padding-top: 5rem;
	padding-right: calc(5rem + 6vw);
	padding-left: 3rem;
}

.top_photoplan_content h3 {
	font-size: 1.3rem;
	font-weight: normal;
	color: #7E624C;
	letter-spacing: 0.15rem;
	margin-bottom: 2rem;
}

.top_photoplan_price {
	font-size: 1.3rem;
	font-weight: normal;
	color: #7E624C;
	letter-spacing: 0.15rem;
	margin-bottom: 2rem;
}

.top_photoplan_price span {
	font-size: 0.9rem;
	color: #7E624C;
	letter-spacing: 0.1rem;
	margin-left: 0.4rem;
}

.top_photoplan_details {
	font-size: 0.9rem;
	line-height: 2rem;
	color: #888888;
	margin-bottom: 2.5rem;
}

/* リンク */
.top_photoplan_link {
	text-align: center;
	padding-bottom: 4rem;
}

.top_photoplan_link a {
	font-size: 0.9rem;
	color: #7E624C;
	letter-spacing: 0.15rem;
}

.btn-4line {
	position: relative;
	display: inline-block;
	margin: 0.5rem;
	padding: 1.25rem 2rem;
	color: #7E624C;
	text-decoration: none;
	transition: 0.5s;
}

/* 四隅の括弧 */
.btn-4line::before,
.btn-4line::after,
.btn-4line span::before,
.btn-4line span::after {
	content: "";
	position: absolute;
	width: 12px;
	/* ← 短く */
	height: 12px;
	/* ← 短く */
	border: 1px solid #7E624C;
	/* ← 細く＋色変更 */
	transition: all 0.7s ease;
	/* ← 遅く */
}

/* 左上 */
.btn-4line::before {
	top: 0;
	left: 0;
	border-right: none;
	border-bottom: none;
}

/* 右上 */
.btn-4line::after {
	top: 0;
	right: 0;
	border-left: none;
	border-bottom: none;
}

/* 左下 */
.btn-4line span::before {
	bottom: 0;
	left: 0;
	border-right: none;
	border-top: none;
}

/* 右下 */
.btn-4line span::after {
	bottom: 0;
	right: 0;
	border-left: none;
	border-top: none;
}

/* hoverで枠に変化 */
.btn-4line:hover::before,
.btn-4line:hover::after,
.btn-4line:hover span::before,
.btn-4line:hover span::after {
	width: 100%;
	height: 100%;
}

.top_photoplan_morebtn {
	text-align: center;
}

/*****
ガラスボタン*****/
.btn-glass-reflect {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 2rem 5rem;
	border-radius: 12px;

	font-size: 1rem;
	font-weight: 500;
	color: #937218 !important;
	text-decoration: none;

	/* ガラス感のベース */
	background:
		linear-gradient(145deg,
			rgba(0, 0, 0, 0.05) 0%,
			/* 左上をうっすら暗く */
			rgba(255, 255, 255, 0.35) 100%
			/* 右下を白く反射 */
		);
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);

	/* 光沢感 */
	box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.4),
		inset -2px -2px 6px rgba(0, 0, 0, 0.05);

	transition: all 0.3s ease;
}

.btn-glass-reflect:hover {
	background:
		linear-gradient(145deg,
			rgba(0, 0, 0, 0.08) 0%,
			rgba(255, 255, 255, 0.5) 100%);
	transform: translateY(-2px);
	box-shadow: inset 2px 2px 8px rgba(255, 255, 255, 0.5),
		inset -2px -2px 8px rgba(0, 0, 0, 0.08),
		0 6px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.top_pickup_photoplan {
		padding: 6rem 0 3rem 0;
	}

	.top_pickup_photoplan_wrap {
		width: 80%;
	}

	.top_pickup_photoplan_wrap p {
		margin-bottom: 4rem;
	}

	.top_photoplan_img {
		margin: 0 auto;
	}

	.top_photoplan_wrap_odd {
		width: 90%;
		margin: 0 auto 25rem;
	}

	.top_photoplan_wrap_even {
		width: 90%;
		margin: 0 auto 26rem;
	}

	.top_photoplan_wrap_odd.is-last {
		width: 90%;
		margin: 0 auto 27rem;
	}

	.top_photoplan_wrap_odd .top_photoplan_content {
		width: 100%;
		top: 80%;
	}

	.top_photoplan_wrap_odd .top_photoplan_txtpadding {
		padding-top: 6rem;
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.top_photoplan_wrap_even .top_photoplan_content {
		width: 100%;
		top: 80%;
	}

	.top_photoplan_wrap_even .top_photoplan_txtpadding {
		padding-top: 6rem;
		padding-right: 2rem;
		padding-left: 2rem;
	}

	.top_photoplan_content h3 {
		font-size: 1.1rem;
		margin-bottom: 1.1rem;
	}

	.top_photoplan_price {
		margin-bottom: 1.1rem;
	}

	.top_photoplan_details {
		line-height: 1.6rem;
		margin-bottom: 1.5rem;
	}

	.top_photoplan_link {
		padding-bottom: 2rem;
	}
}

/*****
ロケーションマップ*****/
.top_locamap {
	position: relative;
	background-image: url("images/top_locamap_bg.jpeg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;

	/* 隠れてしまうのを防ぐ */
	overflow: visible;
	z-index: 2;
}

.top_locamap:after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: white;
	opacity: 0.6;
}

.top_locamap_wrap {
	width: 70%;
	display: flex;
	margin: 0 auto;
	padding: 10rem 0;
}

.top_locamap_img {
	position: relative;
	z-index: 3;
	/* ベージュ背景より前に出す */
	display: block;
	margin: 0 auto;
	/* 中央寄せ */
	margin-top: -30vh;
	/* 上に食い込ませて被せる（調整可） */
}

.top_locamap_txt {
	position: absolute;
	top: 30vh;
	right: 25vw;
	z-index: 3;
}

.top_locamap_wrap h2 {
	color: #383C3E;
	font-family: 'Noto Serif JP';
	font-size: 1.5rem;
	font-weight: initial;
	text-align: center;
	line-height: 3rem;
	letter-spacing: 0.4rem;
	margin-bottom: 4rem;
}

.top_locamap_wrap h2 span {
	display: block;
	font-size: 0.8rem;
	color: #383C3E;
	letter-spacing: 0.3rem;
}

.top_locamap_wrap h2::after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background: #383C3E;
	margin: 1rem auto 0;
}

.top_locamap_wrap p {
	color: #383C3E;
	font-family: 'Noto Serif JP';
	font-size: 0.9rem;
	font-weight: initial;
	text-align: center;
	line-height: 2.5rem;
	letter-spacing: 0.2rem;
	margin-bottom: 6rem;
}

@media (max-width: 768px) {
	.top_locamap_wrap {
		width: 100%;
		padding: 10rem 0 27rem 0;
	}

	.top_locamap_wrap img {
		width: 70%;
	}

	.top_locamap_txt {
		width: 85%;
		top: 38vh;
		right: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	.top_locamap_wrap p {
		text-align: left;
		margin-bottom: 3rem;
	}
}

/*****
フォトギャラリー*****/
.top_gallery_wrap {
	margin: 0 auto;
	padding-bottom: 7rem;
}

.top_gallery_title h2 {
	color: #383C3E;
	font-family: 'Noto Serif JP';
	font-size: 1.5rem;
	font-weight: initial;
	text-align: center;
	line-height: 3rem;
	letter-spacing: 0.4rem;
	margin-bottom: 4rem;
}

.top_gallery_title h2 span {
	display: block;
	font-size: 0.8rem;
	color: #383C3E;
	letter-spacing: 0.3rem;
}

.top_gallery_title h2::after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background: #383C3E;
	margin: 1rem auto 0;
}

/*****
ギャラリースライダー
*****/
/* コンテナを少し広めにすると“間延び感”が減ります */
.top_gallery_slider {
	width: 100%;
	max-width: 1200px;
	/* ← 1100→1200 など好みで */
	margin: 0 auto;
}

/* ガター：スライド間だけに8px、外側は0に */
.top_gallery_slider .slide {
	padding: 0 8px;
}

.top_gallery_slider .slick-list {
	margin: 0 -8px;
}

/* 外側相殺 */

/* 画像の見え方 */
.top_gallery_slider img {
	width: 100%;
	height: 500px;
	/* 必要に応じて 320〜400px で調整 */
	object-fit: cover;
	object-position: bottom;
	border-radius: 8px;
	display: block;
}

/* ドット（任意） */
.slick-dots {
	bottom: -28px;
}

.slick-dots li button:before {
	font-size: 10px;
	color: #937218;
}

.slick-dots li.slick-active button:before {
	color: #c5a46d;
}

@media (max-width:600px) {
	.top_gallery_slider img {
		height: 400px;
	}
}

/*****
トップドレス*****/
.top_dress {
	position: relative;
	background-image: url("images/top_dress_bg.png");
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: cover;
}

.top_dress_wrap {
	width: 70%;
	margin: 0 auto;
	padding: 5rem 0;
}

.top_dress_content {
	width: 60%;
	background-color: rgba(233, 230, 229, 0.8);
	border-radius: 8px;
	padding: 4rem 3rem;
}

.top_dress_block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3rem;
}

.top_dress_block h2 {
	color: #937218;
	font-family: 'Noto Serif JP';
	font-size: 1.5rem;
	font-weight: initial;
	text-align: center;
	line-height: 3rem;
	letter-spacing: 0.4rem;
}

.top_dress_block h2::after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background: #937218;
	margin: 1rem auto 0;
}

.top_dress_btn {
	width: 60%;
}

.top_dress_btn a {
	margin: 0 !important;
}

.top_dress_content p {
	color: #937218;
	font-family: 'Noto Serif JP';
	font-size: 0.9rem;
	font-weight: initial;
	text-align: left;
	line-height: 2.5rem;
	letter-spacing: 0.2rem;
}

@media (max-width: 768px) {
	.top_dress_wrap {
		width: 90%;
	}

	.top_dress_content {
		width: 100%;
		padding: 2.5rem 1.5rem;
	}

	.top_dress_content p {
		line-height: 1.7rem;
	}

	.top_dress_block {
		display: block;
		justify-content: center;
	}

	.top_dress_block h2 {
		margin-bottom: 2.5rem;
	}

	.top_dress_btn {
		width: 100%;
	}
}

/*****
トップリンクスペース*****/
/* コンテナ */
.top-linkspace {
	background: #F2F2F2;
	padding: 5rem 0;
}

.top-linkspace__wrap {
	width: 70%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

/* カード */
.top-card {
	position: relative;
	display: block;
	flex: 1 1 calc(50% - 1rem);
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 1px solid #c1a156;
	text-decoration: none;
}

/* 背景画像 */
.top-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(1.05) saturate(0.9);
}

/* オーバーレイ（白のベールを重ねる） */
.top-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.35);
	z-index: 1;
}

/* テキストエリア */
.top-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 2;
	padding: 0 1rem;
}

/* タイトル */
.top-card__overlay h2 {
	color: #937218;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.3rem;
	margin: 0;
	line-height: 1.6;
}

/* サブタイトル */
.top-card__overlay p {
	color: #937218;
	font-family: 'Noto Serif JP', serif;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	letter-spacing: 0.2rem;
}

@media (max-width: 768px) {
	.top-linkspace__wrap {
		width: 90%;
	}

	.top-card {
		flex: 1 1 calc(100%);
	}
}

/* --- スマホ表示（縦並び） --- */
@media (max-width: 768px) {
	.top_photoplan_wrap {
		flex-direction: column;
		gap: 2rem;
	}

	.top_photoplan_wrap>div:last-child {
		padding: 1.5rem 1rem;
	}

	.top_photoplan_thumb {
		flex: 1 1 100%;
		width: 100%;
	}
}


@media screen and (min-width:700px) and (max-width:1279px) {
	.forbeautiful_box_sp {
		display: none;
	}

	.forbeautiful_box_pc {
		max-width: 505px;
		width: 30%;
		margin: 0 auto;
		color: #FFFFFF;
	}

	.forbeautiful_ttl {
		font-family: 'Amiri', serif;
		font-size: 70px;
		line-height: 1.0em;
		padding: 70px 0 45px 0;
		display: flex;
		justify-content: center;
	}

	.forbeautiful_subttl {
		font-size: 20px;
		line-height: 1.0em;
		letter-spacing: 0.1em;
		padding-bottom: 70px;
	}

	.forbeautiful_txt {
		font-size: 15px;
		line-height: 1.7em;
		padding-bottom: 110px;
	}

	.top_btn_concept {
		padding-bottom: 15vw;
	}

	.forbeautiful_img01 {
		width: 23%;
		position: absolute;
		top: 4vw;
		left: 0;
		z-index: 1;
	}

	.forbeautiful_img02 {
		width: 19.8%;
		position: absolute;
		top: 36vw;
		left: 8%;
		z-index: 2;
	}

	.forbeautiful_img03 {
		width: 24%;
		position: absolute;
		top: -3vw;
		right: 0;
		z-index: 1;
	}

	.forbeautiful_img04 {
		width: 15%;
		position: absolute;
		top: 30vw;
		right: 13%;
		z-index: 2;
	}

	.forbeautiful_img05 {
		width: 33%;
		position: absolute;
		top: 48vw;
		right: 0;
		z-index: 3;
	}
}

@media screen and (min-width:1280px) and (max-width:1759px) {
	.forbeautiful_box_sp {
		display: none;
	}

	.forbeautiful_box_pc {
		max-width: 505px;
		width: 30%;
		margin: 0 auto;
		color: #FFFFFF;
	}

	.forbeautiful_ttl {
		font-family: 'Amiri', serif;
		font-size: 90px;
		line-height: 1.0em;
		padding: 100px 0 45px 0;
		display: flex;
		justify-content: center;
	}

	.forbeautiful_subttl {
		font-size: 22px;
		line-height: 1.0em;
		letter-spacing: 0.1em;
		padding-bottom: 100px;
	}

	.forbeautiful_txt {
		font-size: 15px;
		line-height: 1.7em;
		padding-bottom: 110px;
	}

	.top_btn_concept {
		padding-bottom: 15vw;
	}

	.forbeautiful_img01 {
		width: 23%;
		position: absolute;
		top: 4vw;
		left: 0;
		z-index: 1;
	}

	.forbeautiful_img02 {
		width: 19.8%;
		position: absolute;
		top: 36vw;
		left: 8%;
		z-index: 2;
	}

	.forbeautiful_img03 {
		width: 24%;
		position: absolute;
		top: -3vw;
		right: 0;
		z-index: 1;
	}

	.forbeautiful_img04 {
		width: 15%;
		position: absolute;
		top: 30vw;
		right: 13%;
		z-index: 2;
	}

	.forbeautiful_img05 {
		width: 33%;
		position: absolute;
		top: 48vw;
		right: 0;
		z-index: 3;
	}
}

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

	.forbeautiful_box_pc {
		max-width: 505px;
		width: 25%;
		margin: 0 auto;
		color: #FFFFFF;
	}

	.forbeautiful_ttl {
		font-family: 'Amiri', serif;
		font-size: 90px;
		line-height: 1.0em;
		padding: 225px 0 45px 0;
		display: flex;
		justify-content: center;
	}

	.forbeautiful_subttl {
		font-size: 22px;
		line-height: 1.0em;
		letter-spacing: 0.1em;
		padding-bottom: 175px;
	}

	.forbeautiful_txt {
		font-size: 15px;
		line-height: 1.7em;
		padding-bottom: 110px;
	}

	.top_btn_concept {
		padding-bottom: 15vw;
	}

	.forbeautiful_img01 {
		width: 26%;
		position: absolute;
		top: 4vw;
		left: 0;
		z-index: 1;
	}

	.forbeautiful_img02 {
		width: 22%;
		position: absolute;
		top: 40vw;
		left: 8%;
		z-index: 2;
	}

	.forbeautiful_img03 {
		width: 27%;
		position: absolute;
		top: -3vw;
		right: 0;
		z-index: 1;
	}

	.forbeautiful_img04 {
		width: 17%;
		position: absolute;
		top: 30vw;
		right: 13%;
		z-index: 2;
	}

	.forbeautiful_img05 {
		width: 37%;
		position: absolute;
		top: 51vw;
		right: 0;
		z-index: 3;
	}
}

.top_btn_concept a {
	max-width: 405px;
	width: 100%;
	display: block;
	clear: both;
	background-color: #C1AE94;
	color: #FFFFFF;
	font-family: 'Amiri', serif;
	font-size: 18px;
	text-align: center;
	padding: 23px 0;
}

.top_btn_concept a:hover {
	opacity: 0.5;
}

.forbeautiful_img01 img,
.forbeautiful_img02 img,
.forbeautiful_img03 img,
.forbeautiful_img04 img,
.forbeautiful_img05 img {
	width: 100%;
	display: block;
}

@media screen and (max-width:899px) {
	.collection_wrap {
		width: 100%;
		display: block;
		clear: both;
	}

	.collection_img:nth-child(2) {
		display: none;
	}

	.collection_img:nth-child(3) {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.collection_txtbox {
		width: 80%;
		margin: 40px 10%;
	}

	.collection_ttl {
		font-family: 'Amiri', serif;
		font-size: 60px;
		line-height: 1.0em;
		margin-bottom: 55px;
	}

	.collection_txt {
		font-size: 15px;
		line-height: 1.7em;
		color: #45535F;
		margin-bottom: 50px;
	}

	.item_catbtn.coll_btn {
		max-width: 410px;
	}
}

@media screen and (min-width:900px) and (max-width:1279px) {
	.collection_wrap {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		clear: both;
	}

	.collection_img {
		width: 50%;
	}

	.collection_img:nth-child(3) {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.collection_txtbox {
		width: 80%;
		margin: 0 10%;
	}

	.collection_ttl {
		font-family: 'Amiri', serif;
		font-size: 50px;
		line-height: 1.0em;
		margin-bottom: 55px;
	}

	.collection_txt {
		font-size: 15px;
		line-height: 1.7em;
		color: #45535F;
		margin-bottom: 50px;
	}

	.item_catbtn.coll_btn {
		max-width: 410px;
	}
}

@media screen and (min-width:1280px) {
	.collection_wrap {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		clear: both;
	}

	.collection_img {
		width: 50%;
	}

	.collection_img:nth-child(3) {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.collection_txtbox {
		max-width: 510px;
		margin: 0 auto;
	}

	.collection_ttl {
		font-family: 'Amiri', serif;
		font-size: 57px;
		line-height: 1.0em;
		margin-bottom: 15px;
	}

	.collection_txt {
		font-size: 15px;
		line-height: 1.7em;
		color: #45535F;
		margin-bottom: 30px;
	}

	.item_catbtn.coll_btn {
		width: 410px;
	}
}

.collection_img img {
	width: 100%;
	display: block;
}

.item_catbtn.coll_btn li a {
	text-align: center;
}

.services_bg {
	width: 100%;
	display: block;
	clear: both;
	position: relative;
}

@media screen and (max-width:899px) {
	.services_bg::before {
		content: '';
		position: absolute;
		background-color: #E5E5E5;
		width: 100%;
		height: 550px;
		left: 0;
		top: 0;
		z-index: -10;
	}

	.services_ttl {
		font-family: 'Amiri', serif;
		font-size: 50px;
		line-height: 1.0em;
		text-align: center;
		margin: 150px 0 60px 0;
		position: relative;
	}

	.services_list li {
		width: 48%;
		margin-bottom: 70px;
		opacity: 0;
		bottom: -50px;
		transition: 1.5s;
		position: relative;
	}

	.services_list li:nth-child(3),
	.services_list li:nth-child(4) {
		margin-bottom: 0;
	}
}

@media screen and (min-width:900px) and (max-width:1279px) {
	.services_bg::before {
		content: '';
		position: absolute;
		background-color: #E5E5E5;
		width: 100%;
		height: 550px;
		left: 0;
		top: 0;
		z-index: -10;
	}

	.services_ttl {
		font-family: 'Amiri', serif;
		font-size: 78px;
		line-height: 1.0em;
		text-align: center;
		margin: 180px 0 100px 0;
		position: relative;
	}

	.services_list li {
		width: 32%;
		opacity: 0;
		bottom: -50px;
		transition: 1.5s;
		position: relative;
	}
}

@media screen and (min-width:1280px) {
	.services_bg::before {
		content: '';
		position: absolute;
		background-color: #E5E5E5;
		width: 100%;
		height: 650px;
		left: 0;
		top: 0;
		z-index: -10;
	}

	.services_ttl {
		font-family: 'Amiri', serif;
		font-size: 78px;
		line-height: 1.0em;
		text-align: center;
		margin: 180px 0 100px 0;
		position: relative;
	}

	.services_list li {
		width: 32%;
		opacity: 0;
		bottom: -50px;
		transition: 1.5s;
		position: relative;
	}
}

.services_list li.fadein {
	opacity: 1;
	bottom: 0;
}

.services_ttl::before {
	content: '';
	position: absolute;
	border-left: #FFFFFF 1px solid;
	width: 100%;
	height: 96px;
	left: 50%;
	top: -125px;
}

.services_list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	clear: both;
	margin-bottom: 150px;
}

.services_list_img {
	width: 100%;
	margin-bottom: 35px;
}

.services_list_img img {
	width: 100%;
	display: block;
}

.services_list_ttl_en {
	font-family: 'Amiri', serif;
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
}

.services_list_ttl_ja {
	font-size: 13px;
	text-align: center;
	margin-bottom: 35px;
}

.services_list_txt {
	font-size: 13px;
	line-height: 1.7em;
	margin-bottom: 20px;
}

.services_list_cat a {
	background-color: #AA906C;
	background-image: url("images/arrow_white_yoko.png");
	background-repeat: no-repeat;
	background-position: right 10px top 50%;
	color: #FFFFFF;
	font-size: 13px;
	line-height: 1.3em;
	display: block;
	padding: 7px 25px 7px 10px;
	margin-bottom: 5px;
	float: left;
	clear: both;
}

/*
.services_list_cat a::after{
	content: url("images/arrow_white_yoko.png");
	margin-left: 10px;
	position: relative;
	top: -2px;
}
*/
.services_list_cat a:hover {
	opacity: 0.5;
}

.top_movie {
	width: 100%;
	display: block;
	clear: both;
	background-color: #000000;
	padding: 7vw 0;
}

.top_movie video {
	width: 100%;
	display: block;
}

.top_bg_gray {
	width: 100%;
	display: block;
	clear: both;
	background-color: #F2F2F2;
}

.top_slider {
	width: 100%;
	display: block;
	clear: both;
	margin: 150px 0 200px 0;
}

.top_slider_img {
	margin-bottom: 50px;
}

.top_slider_txtbox {
	width: 92%;
	min-height: 65px;
	height: auto;
	margin: 0 4%;
	padding: 0 calc(21px + 3%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	clear: both;
	position: relative;
}

.top_slider_txtbox::before {
	content: url("images/arrow_top_slider_left.png");
	position: absolute;
	top: 0;
	left: 0;
}

.top_slider_txtbox::after {
	content: url("images/arrow_top_slider_right.png");
	position: absolute;
	top: 0;
	right: 0;
}

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

.top_slider_txt {
	font-size: 11px;
}

@media screen and (min-width:500px) and (max-width:1279px) {
	.top_slider li {
		margin: 0 0.3%;
	}
}

@media screen and (min-width:1280px) {
	.top_slider li {
		margin: 0 0.3%;
	}
}

.top_slider .slick-slide img {
	display: block;
	width: 100% !important;
}

.top_slider .slick-dots {
	bottom: -50px;
}

.news_wrap {
	width: 100%;
	display: block;
	clear: both;
	background-color: #FFFFFF;
	overflow: hidden;
	padding-top: 175px;
}

@media screen and (max-width:899px) {
	.top_news_ttl {
		font-family: 'Amiri', serif;
		font-size: 50px;
		line-height: 1.0em;
		text-align: center;
		position: relative;
		top: 100px;
		z-index: 100;
	}

	.news_inner {
		width: 90%;
		margin: 0 5%;
		display: block;
		clear: both;
	}

	.news_inner li {
		width: 100%;
		margin-bottom: 45px;
	}
}

@media screen and (min-width:900px) {
	.top_news_ttl {
		font-family: 'Amiri', serif;
		font-size: 78px;
		line-height: 1.0em;
		text-align: center;
		position: relative;
		top: 125px;
		z-index: 100;
	}

	.news_inner {
		width: 86%;
		margin: 0 7%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		clear: both;
	}

	.news_inner li {
		width: 43%;
		margin-bottom: 45px;
	}
}

.top_news_ttl::before {
	content: '';
	position: absolute;
	border-left: #000000 1px solid;
	width: 100%;
	height: 96px;
	left: 50%;
	top: -125px;
}

.btn_allnews a {
	max-width: 410px;
	width: 90%;
	display: block;
	clear: both;
	margin: 30px auto 45px auto;
	background-color: #C1AE94;
	color: #FFFFFF;
	font-family: 'Amiri', serif;
	font-size: 18px;
	text-align: center;
	padding: 25px 0;
	letter-spacing: 0.3rem;
}

.btn_allnews a:hover {
	opacity: 0.5;
}

@media (max-width: 768px) {
	.btn_allnews {
		width: 90%;
		margin: 0 auto;
	}

	.is-btn-max {
		width: 100%;
		margin: 0 auto;
	}

	.btn_allnews a {
		max-width: 100%;
		width: 100%;
		margin: 2rem auto;
	}
}

/*======================================================================================
PHOTOPLAN PAGE
======================================================================================*/
.photoplan {
	background-color: #F3EFEB;
}

.photoplan_loca {
	width: 80%;
	margin: 0 auto;
	padding-top: 11rem;
	padding-bottom: 6rem;
}

.photoplan_loca h2 {
	color: #937218;
	font-family: 'Noto Serif JP';
	font-size: 1.5rem;
	font-weight: initial;
	text-align: center;
	line-height: 3rem;
	letter-spacing: 0.4rem;
	margin-bottom: 4rem;
}

.photoplan_loca h2::after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background: #937218;
	margin: 1rem auto 0;
}

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

.photoplan_planimg {
	display: block;
	max-width: 100%;
	height: auto;
	margin-bottom: 1.5rem;
}

.photoplan_contents {
	width: calc(100% / 2.05);
	background-color: #F8F8F8;
	border-radius: 13px;
	margin-bottom: 3rem;
	padding: 4rem 2rem;
}

.photoplan_contents_wrap {
	padding: 0 2rem;
}

.photoplan_title {
	font-size: 1.3rem;
	font-weight: normal;
	color: #7E624C;
	line-height: 1.8rem;
	letter-spacing: 0.15rem;
	margin-bottom: 1rem;
}

.photoplan_txt {
	font-size: 0.9rem;
	line-height: 2rem;
	color: #888888;
	margin-bottom: 1.5rem;
}

.photoplan_black_price {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 3rem;
}

.photoplan_caption {
	color: #fff;
	background-color: #C2B07E;
	width: 11vw;
	text-align: center;
	font-size: 0.9rem;
	font-weight: normal;
	letter-spacing: 0.2rem;
	padding: 0.6rem 1rem;
}

.photoplan_caption-content {
	color: #383C3E;
	font-size: 0.9rem;
	line-height: 2rem;
	letter-spacing: 0.1rem;
	margin-left: 1rem;
}

.photocpan_price {
	color: #7E624C;
	font-size: 1.7rem;
	font-weight: normal;
	text-align: right;
	letter-spacing: 0.15rem;
	margin-bottom: 0.9rem;
}

.photocpan_tax {
	color: #7E624C;
	font-size: 0.9rem;
	font-weight: normal;
	text-align: right;
	letter-spacing: 0.15rem;
	margin-bottom: 0.5rem;
}

.photoplan_include {
	border: #C2B07E solid 1px;
	border-radius: 4px;
	padding: 3rem 2rem;
}

.photoplan_include_title {
	color: #7E624C;
	font-size: 1rem;
	font-weight: normal;
	letter-spacing: 0.2rem;
	text-align: center;
	margin-bottom: 3rem;
}

.photoplan_include_wrap {
	display: flex;
	justify-content: start;
	align-items: center;
	margin-bottom: 1.4rem;
}

.photoplan_include_block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.photoplan_include_item {
	width: calc(100% / 3.1);
	background: #F0EFED;
	border-radius: 4px;
	padding: 1.5rem 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	margin-top: 1rem;
}

.photoplan_include_item img {
	height: 5vw;
	width: 6vw;
	object-fit: contain;
	display: block;
	margin: 0 auto 1rem;
}

.photoplan_include_item h5 {
	color: #383C3E;
	font-size: 0.9rem;
	font-weight: normal;
	line-height: 1.2rem;
	letter-spacing: 0.1rem;
	margin-top: auto;
}

.photoplan_include_item span {
	font-size: 0.7rem;
}

/*-----studio-----*/
.photoplan_sec02 {
	background-color: #F2f2f2;
}

.photoplan_studio {
	width: 80%;
	margin: 0 auto;
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.photoplan_studio h2 {
	color: #937218;
	font-family: 'Noto Serif JP';
	font-size: 1.5rem;
	font-weight: initial;
	text-align: center;
	line-height: 3rem;
	letter-spacing: 0.4rem;
	margin-bottom: 4rem;
}

.photoplan_studio h2::after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background: #937218;
	margin: 1rem auto 0;
}

/*-----ロケ地料金表-----*/
.photoplan_locaselect_txt {
	margin-bottom: 4rem;
}

.photoplan_locaselect_txt p {
	color: #383C3E;
	font-size: 0.9rem;
	text-align: center;
	line-height: 2rem;
	letter-spacing: 0.1rem;
}

.photoplan_locaselect {
	width: calc(100% / 3.1);
	background-color: #F8F8F8;
	border-radius: 13px;
	margin-bottom: 2rem;
	padding: 2rem 1rem;
}

.photoplan_locaselect img {
	width: 100%;
}

.photoplan_locaselect h3 {
	color: #7E624C;
	font-size: 1rem;
	font-weight: normal;
	text-align: center;
	letter-spacing: 0.15rem;
	margin-top: 0.9rem;
}

.photoplan_locaselect_app {
	display: block;
	font-size: 0.8rem;
	margin-top: 0.5rem;
}

/*-----オプション-----*/
.photoplan_option {
	background-color: #f8f8f8;
	width: 80%;
	margin: 0 auto;
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.photoplan_option h2 {
	color: #937218;
	font-family: 'Noto Serif JP';
	font-size: 1.5rem;
	font-weight: initial;
	text-align: center;
	line-height: 3rem;
	letter-spacing: 0.4rem;
	margin-bottom: 4rem;
}

.photoplan_option h2::after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background: #937218;
	margin: 1rem auto 0;
}

.photoplan_option_content {
	width: 80%;
	border: #C2B07E solid 1px;
	border-radius: 4px;
	padding: 3rem 2rem;
	margin: 0 auto;
	margin-bottom: 3rem;
}

.photoplan_option_content h3 {
	color: #937218;
	font-family: 'Noto Serif JP';
	font-size: 1.5rem;
	font-weight: initial;
	text-align: center;
	line-height: 3rem;
	letter-spacing: 0.4rem;
	margin-bottom: 4rem;
}

.photoplan_option_list {
	color: #383C3E;
	font-size: 0.9rem;
	line-height: 2rem;
	letter-spacing: 0.1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.photoplan_option_list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px dotted #ccc;
	padding: 0.4em 0;
}

.photoplan_option_list .item {
	flex: 1;
	margin-right: 1em;
	line-height: 1.5rem;
}

.photoplan_option_list .price {
	white-space: nowrap;
}

.photoplan_option_list .taxinc {
	font-size: 0.5rem;
}

.rain-check {
	border-bottom: 1px dotted #ccc;
}

.rain-check li {
	border-bottom: none;
	padding: 0;
}

.rain-check_block {
	background: #f9f6f2;
	border: #C2B07E solid 1px;
	border-radius: 5px;
	line-height: 1.6rem;
	margin-bottom: 1rem;
	padding: 1rem 2rem;
}

.rain-check_list {
	padding-left: 0.5em !important;
	text-indent: -0.5em !important;
}

/*-----フロー-----*/
.photoplan_sec02 {
	background-color: #F2f2f2;
}

.photoplan_flow {
	width: 60%;
	margin: 0 auto;
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.photoplan_flow h2 {
	color: #937218;
	font-family: 'Noto Serif JP';
	font-size: 1.5rem;
	font-weight: initial;
	text-align: center;
	line-height: 3rem;
	letter-spacing: 0.4rem;
	margin-bottom: 4rem;
}

.photoplan_flow h2::after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background: #937218;
	margin: 1rem auto 0;
}

/* ===== Timeline base ===== */
.photoplan_flow ul {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0 0 0 48px;
}

/* 縦のライン */
.photoplan_flow ul::before {
	content: "";
	position: absolute;
	left: 22px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #b59b48;
}

/* 各ステップ */
.photoplan_flow li {
	position: relative;
	padding: 0 0 5rem;
}

/* 丸マーカー */
.photoplan_flow li::before {
	content: "";
	position: absolute;
	left: -2.4rem;
	top: 0;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 50%;
	background: #b59b48;
	z-index: 1;
}

/* 最後の項目の余白を少し詰める */
.photoplan_flow li:last-child {
	padding-bottom: 0;
}

/* ===== Content style（お好みで） ===== */
.photoplan_flow h2 {
	margin: 0 0 5rem;
}

.photoplan_flow li>p {
	margin: 0 0 0.4rem;
	font-size: 0.9rem;
	color: #7b6a2a;
	font-weight: normal;
	letter-spacing: 0.2rem;
}

.photoplan_flow h3 {
	color: #383C3E;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 2rem;
	letter-spacing: 0.1rem;
	list-style: none;
	margin-bottom: 1rem;
}

.photoplan_flow li>div p {
	color: #383C3E;
	font-size: 0.9rem;
	line-height: 1.5rem;
	letter-spacing: 0.1rem;
	list-style: none;
}

/* SPで詰まりすぎるときの微調整 */
@media (max-width: 767px) {
	.photoplan_flow {
		width: 90%;
	}

	.photoplan_flow ul {
		padding-left: 40px;
	}

	.photoplan_flow ul::before {
		left: 18px;
	}

	.photoplan_flow li::before {
		left: -2.15rem;
	}
}

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

@media screen and (max-width: 768px) {
	.photoplan_loca {
		width: 90%;
		padding-top: 8rem;

	}

	.photoplan_contents {
		width: calc(100%);
		margin-bottom: 2rem;
		padding: 2.5rem 1.2rem;
	}

	.photoplan_contents_wrap {
		padding: 0 1.2rem;
	}

	.photoplan_black_price {
		margin-bottom: 1.5rem;
	}

	.photoplan_include {
		padding: 3rem 1.2rem;
	}

	.photoplan_include_item {
		width: calc(100% / 2.08);
	}

	.photoplan_include_item img {
		height: 18vw;
		width: 20vw;
	}

	.photoplan_caption {
		width: 28vw;
	}

	.photoplan_caption-content {
		line-height: 1.5rem;
	}

	.photoplan_studio {
		width: 90%;
	}

	.photoplan_locaselect_txt {
		margin-bottom: 2.5rem;
	}

	.photoplan_locaselect_txt p {
		color: #383C3E;
		font-size: 0.75rem;
		text-align: left;
		line-height: 1.5rem;
		letter-spacing: 0.1rem;
	}

	.photoplan_locaselect {
		width: calc(100% / 2.06);
		background-color: #F8F8F8;
		border-radius: 6px;
		margin-bottom: 1rem;
		padding: 1rem 0.5rem;
	}

	.photoplan_locaselect h3 {
		font-size: 0.8rem;
		margin-top: 0.5rem;
	}

	.photoplan_locaselect_app {
		font-size: 0.74rem;
		margin-top: 0.1rem;
	}

	.photoplan_option {
		width: 90%;
	}

	.photoplan_option_content {
		width: 90%;
		margin-bottom: 2rem;
		padding: 2rem 1rem;
	}

	.photoplan_option_content h3 {
		margin-bottom: 2rem;
	}

	.photoplan_option_list {
		font-size: 0.8rem;
	}

	.rain-check li {
		margin-bottom: 0.8rem;
	}

	.rain-check_block {
		line-height: 1.2rem;
		padding: 1rem 0.5rem;
	}
}

/*==========================================================
GALLERY PAGE
==========================================================*/
section.photogallery>div {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	/* PC: 4カラム */
	gap: var(--gap);
}

@media (max-width: 768px) {
	section.photogallery>div {
		grid-template-columns: repeat(2, 1fr);
		/* SP: 2カラム */
	}
}

/* ====== サムネ正方形クロップ ====== */
.pg-item {
	position: relative;
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	background: #eee;
}

.pg-thumb {
	width: 100%;
	height: 100%;
	display: block;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.pg-item:hover .pg-thumb {
	transform: scale(1.03);
}

/* ====== ポップアップ（ライトボックス） ====== */
.pg-lightbox {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.88);
	padding: 28px;
	z-index: 9999;
}

.pg-lightbox.is-open {
	display: flex;
}

.pg-stage {
	position: relative;
	max-width: min(92vw, 1400px);
	max-height: 86vh;
}

.pg-full {
	max-width: 100%;
	max-height: 86vh;
	display: block;
	border-radius: var(--radius);
	box-shadow: 0 12px 44px rgba(0, 0, 0, 0.45);
}

.pg-close {
	position: absolute;
	top: -48px;
	right: 0;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	font-weight: 700;
	border-radius: 999px;
	padding: 0.45rem 0.7rem;
	cursor: pointer;
	user-select: none;
	backdrop-filter: blur(4px);
}

/*======================================================================================
CONCEPT PAGE
======================================================================================*/
.concept_cover {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	float: none;
}

.concept_cover video {
	height: auto;
	width: 100%;
	/*object-fit: cover;
	object-position: 50% 0%;*/
	z-index: 1;
	position: relative;
}

.concept_beige {
	background-image: url("images/concept_bg_beige.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	width: 100%;
	height: 56.25vw;
	position: absolute;
	z-index: 2;
}

.concept_topimg {
	width: 100%;
	height: 56.25vw;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 3;
}

.concept_topimg img {
	width: 25%;
	display: block;
}

.concept_topcopy {
	color: #B69F80;
	width: 100%;
	height: 56.25vw;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	z-index: 4;
}

@media screen and (max-width:499px) {
	.concept_topcopy {
		font-size: 50px;
		line-height: 1.0em;
	}
}

@media screen and (min-width:500px) and (max-width:1279px) {
	.concept_topcopy {
		font-size: 60px;
		line-height: 1.0em;
	}
}

@media screen and (min-width:1280px) {
	.concept_topcopy {
		font-size: 75px;
		line-height: 1.0em;
	}
}

.concept_sec_bg,
.concept_sec_bg2 {
	width: 100%;
	display: block;
	clear: both;
	position: relative;
}

@media screen and (max-width:899px) {
	.concept_sec_bg::before {
		content: '';
		position: absolute;
		z-index: -10;
		width: 100%;
		background-color: #F2F2F2;
		left: 0;
		top: 200vw;
		height: 640vw;
	}

	.concept_sec_bg2::before {
		content: '';
		background-image: url("images/concept_sec_bg2.jpg");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: cover;
		position: absolute;
		z-index: -9;
		width: 100%;
		left: 0;
		top: -13vw;
		height: 420vw;
	}

	.concept_sec_a {
		width: 100%;
		display: block;
		clear: both;
		margin-bottom: 95px;
	}

	.concept_sec_b {
		width: 100%;
		display: block;
		clear: both;
		margin-bottom: 95px;
	}

	.concept_sec_txtbox {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 50px;
	}

	.concept_sec_txtbox_sec5 {
		width: 100%;
		display: flex;
		justify-content: center;

	}

	.concept_sec_img_a {
		width: 95%;
		margin: 20px 0 0 5%;
	}

	.concept_sec_img_b {
		width: 95%;
		margin: 20px 5% 0 0;
	}

	.sec_txtbox_inner {
		max-width: 460px;
		width: 94%;
		margin: 0 auto;
	}

	.sec5 {
		padding-top: 80px;
	}
}

@media screen and (min-width:900px) and (max-width:1279px) {
	.concept_sec_bg::before {
		content: '';
		position: absolute;
		z-index: -10;
		width: 100%;
		background-color: #F2F2F2;
		left: 0;
		top: 40vw;
		height: 162vw;
	}

	.concept_sec_bg2::before {
		content: '';
		background-image: url("images/concept_sec_bg2.jpg");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: cover;
		position: absolute;
		z-index: -9;
		width: 100%;
		left: 0;
		top: 4vw;
		height: 110vw;
	}

	.concept_sec_a {
		width: 100%;
		display: flex;
		clear: both;
		margin-bottom: 95px;
	}

	.concept_sec_b {
		width: 100%;
		display: flex;
		flex-direction: row-reverse;
		clear: both;
		margin-bottom: 95px;
	}

	.concept_sec_txtbox,
	.concept_sec_txtbox_sec5 {
		width: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 50px;
	}

	.concept_sec_img_a,
	.concept_sec_img_b {
		width: 50%;
	}

	.sec_txtbox_inner {
		max-width: 460px;
		width: 90%;
		margin: 0 auto;
	}

	.sec5 {
		align-items: center;
	}
}

@media screen and (min-width:1280px) {
	.concept_sec_bg::before {
		content: '';
		position: absolute;
		z-index: -10;
		width: 100%;
		background-color: #F2F2F2;
		left: 0;
		top: 40vw;
		height: 120vw;
	}

	.concept_sec_bg2::before {
		content: '';
		background-image: url("images/concept_sec_bg2.jpg");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: cover;
		position: absolute;
		z-index: -9;
		width: 100%;
		left: 0;
		top: 4vw;
		height: 87vw;
	}

	.concept_sec_a {
		width: 100%;
		display: flex;
		clear: both;
		margin-bottom: 95px;
	}

	.concept_sec_b {
		width: 100%;
		display: flex;
		flex-direction: row-reverse;
		clear: both;
		margin-bottom: 95px;
	}

	.concept_sec_txtbox {
		width: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.concept_sec_txtbox_sec5 {
		width: 50%;
		display: flex;
		padding-left: 8%;
		align-items: center;
	}

	.concept_sec_img_a,
	.concept_sec_img_b {
		width: 50%;
	}

	.sec_txtbox_inner {
		width: 460px;
	}

	.sec5 {
		align-items: center;
	}
}

.concept_sec_img_a img,
.concept_sec_img_b img {
	width: 100%;
	display: block;
}

.sec_number {
	width: 120px;
	background-color: #AA906C;
	color: #FFFFFF;
	font-family: 'Amiri', serif;
	font-size: 18px;
	text-align: center;
	padding: 5px 0 4px 0;
	margin-bottom: 35px;
}

.sec_ttl {
	font-family: 'Amiri', serif;
	font-size: 38px;
	margin-bottom: 20px;
}

.sec_intro {
	font-size: 15px;
	line-height: 1.6em;
	margin-bottom: 55px;
}

.sec_txt {
	font-size: 13px;
	line-height: 1.8em;
}

.sec_ttl.white,
.sec_intro.white,
.sec_txt.white {
	color: #FFFFFF;
}

.sec5 {
	width: 100%;
	height: 954px;
	display: flex;
	clear: both;
	background-image: url("images/concept_img05.jpg");
	background-repeat: no-repeat;
	background-position: center top;
}



/*======================================================================================
ITEM LIST PAGE
======================================================================================*/

@media screen and (max-width:899px) {
	.itemlist_box {
		width: 100%;
		display: block;
		clear: both;
		float: left;

	}

	.itemlist_top_img {
		width: 90%;
		display: block;
		clear: both;
		overflow: hidden;
		margin-top: 7vw;
		margin-bottom: 50px;
	}

	.itemlist_top_txt {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		font-family: 'Marcellus SC', serif;
		font-size: 30px;
		line-height: 1.2em;
		margin-bottom: 90px;
	}
}

@media screen and (min-width:900px) and (max-width:1279px) {
	.itemlist_box {
		width: 100%;
		display: flex;
		clear: both;
		margin-bottom: 90px;
	}

	.itemlist_top_img {
		width: calc(100% - 400px);
		display: block;
		clear: both;
		overflow: hidden;
		margin-top: 7vw;
	}

	.itemlist_top_txt {
		width: 400px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-family: 'Marcellus SC', serif;
		font-size: 44px;
		line-height: 1.2em;
	}
}

@media screen and (min-width:1280px) {
	.itemlist_box {
		width: 100%;
		display: flex;
		clear: both;
		margin-bottom: 90px;
	}

	.itemlist_top_img {
		max-width: 1270px;
		width: 63.5%;
		display: block;
		clear: both;
		overflow: hidden;
		margin-top: 7vw;
	}

	.itemlist_top_txt {
		width: 36.5%;
		display: flex;
		justify-content: center;
		align-items: center;
		font-family: 'Marcellus SC', serif;
		font-size: 44px;
		line-height: 1.2em;
	}
}

.itemlist_top_img img {
	width: 100%;
	display: block;
}

@media screen and (max-width:899px) {
	.itemlist_item_wrap {
		width: 100%;
		display: block;
		clear: both;
		float: left;
		margin-bottom: 60px;
	}

	.itemlist_menubox {
		width: 100%;
		display: block;
		clear: both;
		float: left;
	}

	.itemlist_menu_pc {
		display: none;
	}

	.itemlist_menu_sp {
		width: 305px;
		margin: 35px auto 35px auto;
	}

	.itemlist_menu_sp dl {
		width: 100%;
		display: block;
		clear: both;
		font-family: 'Marcellus SC', serif;
		font-size: 14px;
		color: #AA906C;
		padding-bottom: 30px;
	}

	.itemlist_menu_sp dl dt {
		border-bottom: #AA906C 1px solid;
		padding-left: 10px;
		padding-bottom: 15px;
		margin-bottom: 30px;
		cursor: pointer;
		background-image: url("images/arrow_item_brand.png");
		background-repeat: no-repeat;
		background-position: 90% 50%;
	}

	.itemlist_menu_sp dl dd {
		display: none;
	}

	.itemlist_menu_sp dl dd a {
		display: block;
		color: #AA906C;
		padding-left: 10px;
		padding-bottom: 15px;
	}

	.itemlist_imgbox {
		width: 100%;
		float: left;
	}




	.itemlist_img {
		display: grid;
		gap: 20px;
		grid-template-columns: 1fr 1fr 1fr;
		/*grid-template-rows: 50% 50% 50% 50% 50% 50%;*/
		width: 90%;
		margin: 30px 5% 30px 5%;
	}

	.itemlist_img li {
		overflow: hidden;
		opacity: 0;
		bottom: -30px;
		transition: 1.5s;
		position: relative;
	}

	.itemlist_img li:nth-of-type(1) {
		grid-column: 1 / 3;
		grid-row: 1 / 3;
	}

	.itemlist_img li:nth-of-type(8) {
		grid-column: 2 / 4;
		grid-row: 4 / 6;
	}

}

@media screen and (min-width:900px) and (max-width:1279px) {
	.itemlist_item_wrap {
		width: 100%;
		display: flex;
		clear: both;
		margin-bottom: 100px;
	}

	.itemlist_menubox {
		width: 23%;
	}

	.itemlist_menu_sp {
		display: none;
	}

	.itemlist_menu_pc {
		max-width: 280px;
		width: 80%;
		margin-right: calc(100% - 280px);
		margin: 35px 0 0 15%;
	}

	.itemlist_menu_pc.itemlist {
		position: relative;
		top: -25vw;
	}

	.itemlist_menu_pc dl {
		width: 100%;
		display: block;
		clear: both;
		font-family: 'Marcellus SC', serif;
		font-size: 14px;
		color: #AA906C;
		margin-bottom: 60px;
	}

	.itemlist_menu_pc dl dt {
		border-bottom: #AA906C 1px solid;
		padding-left: 10px;
		padding-bottom: 15px;
		margin-bottom: 20px;
	}

	.itemlist_menu_pc dl dd a {
		display: block;
		color: #AA906C;
		padding-left: 10px;
		margin-bottom: 15px;
	}

	.itemlist_imgbox {
		width: 77%;
	}

	.itemlist_img {
		display: grid;
		gap: 30px;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		/*grid-template-rows: 50% 50% 50% 50% 50% 50%;*/
		width: 90%;
		margin: 0 5% 0 5%;
	}

	.itemlist_img li {
		overflow: hidden;
		opacity: 0;
		bottom: -30px;
		transition: 1.5s;
		position: relative;
	}

	.itemlist_img li:nth-of-type(1) {
		grid-column: 1 / 3;
		grid-row: 1 / 3;
	}

	.itemlist_img li:nth-of-type(12) {
		grid-column: 3 / 5;
		grid-row: 4 / 6;
	}
}

@media screen and (min-width:1280px) {
	.itemlist_item_wrap {
		width: 100%;
		display: flex;
		clear: both;
		margin-bottom: 100px;
	}

	.itemlist_menubox {
		width: 23%;
	}

	.itemlist_menu_sp {
		display: none;
	}

	.itemlist_menu_pc {
		max-width: 280px;
		width: 80%;
		margin-right: calc(100% - 280px);
		margin: 35px 0 0 15%;
	}

	.itemlist_menu_pc.itemlist {
		position: relative;
		top: -29vw;
	}

	.itemlist_menu_pc dl {
		width: 100%;
		display: block;
		clear: both;
		font-family: 'Marcellus SC', serif;
		font-size: 14px;
		color: #AA906C;
		margin-bottom: 60px;
	}

	.itemlist_menu_pc dl dt {
		border-bottom: #AA906C 1px solid;
		padding-left: 10px;
		padding-bottom: 15px;
		margin-bottom: 20px;
	}

	.itemlist_menu_pc dl dd a {
		display: block;
		color: #AA906C;
		padding-left: 10px;
		margin-bottom: 15px;
	}

	.itemlist_imgbox {
		width: 77%;
	}

	.itemlist_img {
		display: grid;
		gap: 40px;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		/*grid-template-rows: 50% 50% 50% 50% 50% 50%;*/
		width: 80%;
		margin: 0 8% 0 12%;
	}

	.itemlist_img li {
		overflow: hidden;
		opacity: 0;
		bottom: -30px;
		transition: 1.5s;
		position: relative;
	}

	.itemlist_img li:nth-of-type(1) {
		grid-column: 1 / 3;
		grid-row: 1 / 3;
	}

	.itemlist_img li:nth-of-type(12) {
		grid-column: 3 / 5;
		grid-row: 4 / 6;
	}
}

.itemlist_img li.fadein {
	opacity: 1;
	bottom: 0;
}

.item_catbtn {
	width: 100%;
	display: block;
	clear: both;
}

.item_catbtn li a {
	width: 100%;
	display: block;
	color: #FFFFFF;
	font-size: 18px;
	font-family: 'Amiri', serif;
	padding: 20px 30px;
	background-image: url("images/arrow_white_yoko.png");
	background-repeat: no-repeat;
	background-position: 90% 50%;
	margin-bottom: 6px;
}

.item_catbtn li:nth-child(odd) a {
	background-color: #AA906C;
}

.item_catbtn li:nth-child(even) a {
	background-color: #C1AE94;
}

.itemlist_menu_pc dl dd a:hover,
.itemlist_img li a:hover,
.item_catbtn li a:hover {
	opacity: 0.5;
}

.itemlist_img li img {
	width: 100%;
	display: block;

}

.brand_description {
	width: 100%;
	float: left;
	text-align: center;
	margin: 30px 0;
}

.brand_desc_txt1 {
	font-size: 16px;
	margin: 0 0 20px 0;
	line-height: 1.5em;
}

.brand_desc_txt2 {
	margin-bottom: 15px;
}

@media screen and (max-width:499px) {
	.brand_desc_txt2 {
		text-align: left;
	}
}

/*======================================================================================
ITEM DETAIL PAGE
======================================================================================*/

@media screen and (max-width:899px) {
	.item_detail_wrap {
		width: 100%;
		display: block;
		clear: both;
		margin-bottom: 100px;
	}

	.content_wrap_item {
		width: 100%;
		display: block;
		clear: both;
	}

	.item_wrap {
		width: 100%;
		display: block;
		clear: both;
		margin-bottom: 100px;
	}

	.item_slider {
		width: 100%;
		margin-top: 5px;
		margin-bottom: 50px;
	}

	.item_info {
		width: 94%;
		margin: 0 3% 0 3%;
		clear: both;
	}
}

@media screen and (min-width:900px) and (max-width:1279px) {
	.item_detail_wrap {
		width: 100%;
		display: flex;
		clear: both;
		margin-bottom: 100px;
	}

	.content_wrap_item {
		width: 77%;
		display: block;
		clear: both;
	}

	.item_wrap {
		width: 100%;
		display: flex;
		clear: both;
		position: relative;
		top: -8vw;
	}

	.item_slider {
		width: 50%;
	}

	.item_info {
		max-width: 660px;
		width: 40%;
		margin: 0 7% 0 3%;
		clear: both;
	}
}

@media screen and (min-width:1280px) {
	.item_detail_wrap {
		width: 100%;
		display: flex;
		clear: both;
		margin-bottom: 100px;
	}

	.content_wrap_item {
		width: 77%;
		display: block;
		clear: both;
	}

	.item_wrap {
		width: 100%;
		display: flex;
		clear: both;
		position: relative;
		top: -5vw;
	}

	.item_slider {
		width: 50%;
	}

	.item_info {
		max-width: 660px;
		width: 40%;
		margin: 0 7% 0 3%;
		clear: both;
	}
}

.item_name {
	font-size: 17px;
	margin: 20px 0 20px 0;
	border-bottom: #000000 1px solid;
	padding-bottom: 20px;
}

.item_txt {
	font-size: 13px;
	line-height: 2.0em;
	margin-bottom: 40px;
}

.item_info dl {
	width: 100%;
	display: flex;
	align-items: center;
	clear: both;
	margin-bottom: 20px;
}

.item_info dl dt {
	width: 130px;
	font-size: 11px;
	color: #FFFFFF;
	text-align: center;
	background-color: #AA906C;
	padding: 3px 0;
	margin-right: 20px;

}

.item_info dl dd {
	font-size: 14px;
	width: calc(100% - 150px);
	line-height: 1.8em;
}

/*SLICK*/
.slider {
	width: 100%;
}

.slider .slick-list {
	padding: 0 0 0 15% !important;
}

.slider li {
	margin: 0 0 0 0.5%;
	overflow: hidden;
}

.slider li img {
	width: 100%;
	display: block;
}

.slick-prev {
	display: none !important;
}

.slick-next {
	top: 50% !important;
	z-index: 10 !important;
	width: 39px !important;
	height: 39px !important;
}

.slick-next {
	left: -25px !important;
}

[dir='rtl'] .slick-next {
	right: 25px !important;
	left: auto !important;
}

.slick-arrow:before {
	content: "" !important;
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}

.slick-next:before {
	background: url(images/arrow_slider.png) !important;
	background-repeat: no-repeat !important;
}

.connection_ttl {
	width: 100%;
	font-family: 'Amiri', serif;
	font-size: 41px;
	text-align: center;
	margin: 50px 0;
}

@media screen and (max-width:899px) {
	.connection {
		width: 90%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		clear: both;
		margin: 0 5% 30px 5%;
	}

	.connection li {
		width: 47%;
		overflow: hidden;
		margin: 0 6% 40px 0;
	}

	.connection li:nth-of-type(2n) {
		margin: 0 0 40px 0;
	}
}

@media screen and (min-width:900px) {
	.connection {
		width: 90%;
		display: flex;
		flex-wrap: wrap;
		clear: both;
		margin: 0 3% 100px 7%;
	}

	.connection li {
		width: 23%;
		margin-right: 2.66%;
		overflow: hidden;
	}

	.connection li:last-child {
		margin-right: 0;
	}
}

.connection li img {
	width: 100%;
	display: block;
}


/*======================================================================================
NEWS LIST PAGE
======================================================================================*/
@media screen and (max-width:899px) {
	.news_list_wrap {
		width: 100%;
		display: block;
		clear: both;
	}

	.news_list_contents {
		width: 100%;
		display: block;
		clear: both;
	}

	.newslist {
		width: 96%;
		margin: 5px 2% 0 2%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		clear: both;
	}

	.newslist li {
		width: 48%;
		margin-bottom: 60px;
	}
}

@media screen and (min-width:900px) and (max-width:1279px) {
	.news_list_wrap {
		width: 100%;
		display: flex;
		clear: both;
	}

	.news_list_contents {
		width: 77%;
		position: relative;
		top: -5vw;
	}

	.newslist {
		width: 88%;
		margin: 0 5% 0 7%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		clear: both;
	}

	.newslist li {
		width: 47%;
		margin-bottom: 80px;
	}
}

@media screen and (min-width:1280px) {
	.news_list_wrap {
		width: 100%;
		display: flex;
		clear: both;
	}

	.news_list_contents {
		width: 77%;
		position: relative;
		top: -3vw;
	}

	.newslist {
		width: 88%;
		margin: 0 5% 0 7%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		clear: both;
	}

	.newslist li {
		width: 46%;
		margin-bottom: 80px;
	}
}

.newslist_img {
	overflow: hidden;
	position: relative;
	width: 100%;
	padding-top: 45%;
	object-fit: cover;
	margin: 0 0 30px 0;
	clear: both;
}

.newslist_img img {
	width: 100%;
	display: block;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.news_date {
	font-size: 12px;
	color: #464637;
	margin-bottom: 15px;
}

.news_cat {
	min-width: 135px;
	background-color: #AA906C;
	color: #FFFFFF;
	font-size: 13px;
	padding: 1px 10px 3px 10px;
	letter-spacing: 0.18em;
	margin-bottom: 15px;
	float: left;
	clear: both;
}

.news_ttl {
	font-size: 14px;
	border-bottom: #000000 1px solid;
	padding-bottom: 15px;
	margin-bottom: 15px;
	clear: both;
}

.news_txt {
	line-height: 1.7em;
}

/*======================================================================================
NEWS DETAIL PAGE
======================================================================================*/
@media screen and (max-width:899px) {
	.news_detail_wrap {
		width: 96%;
		margin: 0 2%;
	}
}

@media screen and (min-width:900px) and (max-width:1279px) {
	.news_detail_wrap {
		width: 90%;
		margin: 0 5%;
	}
}

@media screen and (min-width:1280px) {
	.news_detail_wrap {
		max-width: 900px;
		margin: 0 auto;
	}
}

.news_detail_wrap p {
	line-height: 1.7em;
	margin-bottom: 55px;
	font-size: 14px;
}

.news_detail_wrap img {
	max-width: 100%;
	height: auto;
	display: block;
}

.prev_next {
	width: 100%;
	display: block;
	clear: both;
	overflow: hidden;
	margin: 100px 0 100px 0;
}

.prev a {
	max-width: 250px;
	width: 45%;
	float: left;
	display: block;
	color: #FFFFFF;
	background-color: #AA906C;
	padding: 13px 0;
	text-align: center;
	font-family: 'Amiri', serif;
	font-size: 18px;
	letter-spacing: 0.1em;
	background-image: url("images/arrow_prev.png");
	background-repeat: no-repeat;
	background-position: 5% 50%;
}

.next a {
	max-width: 250px;
	width: 45%;
	float: right;
	display: block;
	color: #FFFFFF;
	background-color: #AA906C;
	padding: 13px 0;
	text-align: center;
	font-family: 'Amiri', serif;
	font-size: 18px;
	letter-spacing: 0.1em;
	background-image: url("images/arrow_next.png");
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

.prev a:hover,
.next a:hover {
	opacity: 0.5;
}

/*======================================================================================
FAQ PAGE
======================================================================================*/
.faq {
	width: 100%;
	display: block;
	clear: both;
}

.faq dt {
	font-size: 14px;
	margin-bottom: 30px;
	background-image: url("images/faq_square.png");
	background-repeat: no-repeat;
	background-position: left top 3px;
	padding-left: 30px;
	line-height: 1.8em;
}

.faq dd {
	padding-left: 40px;
	margin-bottom: 60px;
	line-height: 1.8em;
}

/*======================================================================================
SHOP PAGE
======================================================================================*/

@media screen and (max-width:999px) {
	.shop_bg {
		width: 100%;
		display: block;
		clear: both;
		float: left;
		position: relative;
		top: -45px;
	}

	.shop_bg::before {
		content: '';
		position: absolute;
		background-color: #F2F2F2;
		width: 100%;
		height: 2000px;
		left: 0;
		top: 45px;
		z-index: -10;
	}

	.shop_list {
		width: 100%;
		display: block;
		flex-wrap: wrap;
		clear: both;
	}

	.shop_list li {
		width: 100%;
		margin-bottom: 80px;
	}

	.shop_name_en {
		font-family: 'Amiri', serif;
		font-size: 48px;
		line-height: 1.0em;
		margin-bottom: 25px;
	}

	.shop_address {
		height: 100px;
	}

	.shop_btn a:nth-child(1) {
		width: 100%;
		font-size: 18px;
		padding: 16px 0;
		margin-bottom: 10px;
		margin-top: 50px;
	}

	.shop_btn a:nth-child(2),
	.shop_btn a:nth-child(3) {
		width: 48%;
		font-size: 18px;
	}

	.shop_btn a img {
		margin-right: 5px;
	}
}

@media screen and (min-width:1000px) and (max-width:1279px) {
	.shop_bg {
		width: 100%;
		display: block;
		clear: both;
		float: left;
		position: relative;
		top: -45px;
	}

	.shop_bg::before {
		content: '';
		position: absolute;
		background-color: #F2F2F2;
		width: 100%;
		height: 1020px;
		left: 0;
		top: 45px;
		z-index: -10;
	}

	.shop_list {
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		clear: both;
	}

	.shop_list li {
		width: 44.5%;
		margin-bottom: 120px;
	}

	.shop_name_en {
		font-family: 'Amiri', serif;
		font-size: 50px;
		line-height: 1.0em;
		margin-bottom: 25px;
	}

	.shop_address {
		height: 100px;
	}

	.shop_btn a {
		max-width: 240px;
		width: 32%;
		font-size: 15px;
	}

	.shop_btn a img {
		margin-right: 10px;
	}
}

@media screen and (min-width:1280px) {
	.shop_bg {
		width: 100%;
		display: block;
		clear: both;
		float: left;
		position: relative;
		top: -65px;
	}

	.shop_bg::before {
		content: '';
		position: absolute;
		background-color: #F2F2F2;
		width: 100%;
		height: 1020px;
		left: 0;
		top: 65px;
		z-index: -10;
	}

	.shop_list {
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		clear: both;
	}

	.shop_list li {
		width: 44.5%;
		margin-bottom: 120px;
	}

	.shop_name_en {
		font-family: 'Amiri', serif;
		font-size: 60px;
		line-height: 1.0em;
		margin-bottom: 25px;
	}

	.shop_address {
		height: 100px;
	}

	.shop_btn a {
		max-width: 240px;
		width: 31%;
		font-size: 18px;
	}

	.shop_btn a img {
		margin-right: 10px;
	}
}

.shop_name_ja {
	font-size: 22px;
	margin-bottom: 40px;
}

.shop_img {
	width: 100%;
	margin-bottom: 35px;
}

.shop_img img {
	width: 100%;
	display: block;
}

.shop_address {
	color: #45525F;
	font-size: 14px;
	line-height: 1.6em;
}

.shop_btn {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	clear: both;
}

.shop_btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #AA906C;
	color: #FFFFFF;
	font-family: 'Amiri', serif;
	padding: 13px 0;
	background-image: url("images/arrow_white_yoko.png");
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

.shop_btn a:hover {
	opacity: 0.5;
}

/*======================================================================================
RECRUIT PAGE
======================================================================================*/
@media screen and (max-width:749px) {
	.recruit_btn_wrap {
		width: 100%;
		display: block;
		clear: both;
		margin-bottom: 100px;
	}

	.recruit_btn {
		width: 80%;
		margin: 0 10% 30px 10%;
	}

	.recruit_wrap {
		width: 100%;
		display: block;
		clear: both;
		background-color: #F2F2F2;
		padding-bottom: 50px;
		margin-bottom: 150px;
	}

	.recruit_cat {
		width: 80%;
		height: 240px;
		position: relative;
		top: -50px;
	}

	.recruit_contents {
		width: 100%;
	}
}

@media screen and (min-width:750px) and (max-width:1469px) {
	.recruit_btn_wrap {
		max-width: 100%;
		min-width: 60%;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		clear: both;
		margin: 0 auto 100px auto;
	}

	.recruit_btn {
		width: 30%;
		margin: 0 1.5% 30px 1.5%;
	}

	.recruit_wrap {
		width: 100%;
		display: flex;
		clear: both;
		background-color: #F2F2F2;
		padding-bottom: 50px;
		margin-bottom: 150px;
	}

	.recruit_cat {
		width: 33%;
		height: 240px;
		position: relative;
		top: -50px;
	}

	.recruit_contents {
		width: 67%;
	}
}

@media screen and (min-width:1470px) {
	.recruit_btn_wrap {
		width: 60%;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		clear: both;
		margin: 0 20% 100px 20%;
	}

	.recruit_btn {
		width: 30%;
		margin: 0 1.5% 30px 1.5%;
	}

	.recruit_wrap {
		width: 100%;
		display: flex;
		clear: both;
		background-color: #F2F2F2;
		padding-bottom: 50px;
		margin-bottom: 150px;
	}

	.recruit_cat {
		width: 36%;
		height: 240px;
		position: relative;
		top: -50px;
	}

	.recruit_contents {
		width: 64%;
	}
}

.recruit_btn a {
	width: 100%;
	display: block;
	color: #FFFFFF;
	background-color: #AA906C;
	text-align: center;
	font-size: 14px;
	padding: 20px 30px;
	background-image: url("images/arrow_white_yoko.png");
	background-repeat: no-repeat;
	background-position: 90% 50%;
}

.recruit_btn a:hover {
	opacity: 0.5;
}

.recruit_cat {
	background-image: url("images/recruit_cat_bg.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	font-size: 32px;
	color: #FFFFFF;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	padding: 0 45px 25px 0;
}

/*======================================================================================
COMPANY PAGE
======================================================================================*/
@media screen and (max-width:899px) {
	.company_topimg_copy {
		width: 80%;
		height: 34vw;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		clear: both;
		font-family: 'Amiri', serif;
		color: #FFFFFF;
		font-size: 30px;
		line-height: 1.0em;
		margin: 0 10%;
	}
}

@media screen and (min-width:900px) and (max-width:1279px) {
	.company_topimg_copy {
		width: 80%;
		height: 39vw;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		clear: both;
		font-family: 'Amiri', serif;
		color: #FFFFFF;
		font-size: 70px;
		line-height: 1.0em;
		margin: 0 10%;
	}
}

@media screen and (min-width:1280px) {
	.company_topimg_copy {
		width: 80%;
		height: 39vw;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		clear: both;
		font-family: 'Amiri', serif;
		color: #FFFFFF;
		font-size: 90px;
		line-height: 1.0em;
		margin: 0 10%;
	}
}

@media screen and (max-width:499px) {
	.company_intro {
		width: 96%;
		display: block;
		clear: both;
		margin: 0 2% 150px 2%;
		overflow: hidden;
	}

	.company_intro_ttl {
		font-size: 20px;
		line-height: 1.3em;
		margin-bottom: 35px;
	}

	.company_intro_txt {
		color: #45525F;
		font-size: 13px;
		line-height: 2.2em;
	}
}

@media screen and (min-width:500px) and (max-width:1279px) {
	.company_intro {
		width: 100%;
		display: block;
		clear: both;
		padding: 0 50px;
		margin: 0 auto 150px auto;
		overflow: hidden;
	}

	.company_intro_ttl {
		font-size: 32px;
		line-height: 1.3em;
		margin-bottom: 35px;
	}

	.company_intro_txt {
		color: #45525F;
		font-size: 15px;
		line-height: 2.2em;
	}
}

@media screen and (min-width:1280px) {
	.company_intro {
		max-width: 1730px;
		width: 86%;
		display: block;
		clear: both;
		padding: 0 70px;
		margin: 0 auto 150px auto;
		overflow: hidden;
	}

	.company_intro_ttl {
		font-size: 32px;
		line-height: 1.0em;
		margin-bottom: 35px;
	}

	.company_intro_txt {
		color: #45525F;
		font-size: 15px;
		line-height: 2.2em;
	}
}

@media screen and (max-width:749px) {
	.company_profile_wrap {
		width: 100%;
		display: block;
		clear: both;
		background-color: #F2F2F2;
		padding-bottom: 50px;
	}

	.company_profile_l {
		background-image: url("images/company_profile_bg.jpg");
		background-repeat: no-repeat;
		background-position: center top;
		width: 80%;
		height: 100px;
		margin-right: 20%;
		position: relative;
		top: -50px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.company_profile_l_ttl {
		color: #FFFFFF;
		font-family: 'Amiri', serif;
		line-height: 1.0em;
		font-size: 40px;
	}

	.company_profile_r {
		width: 100%;
	}

	.company_info {
		width: 96%;
		margin: 50px 2% 0 2%;
	}

	.company_info dl {
		width: 100%;
		display: flex;
		align-items: flex-start;
		border-bottom: #000000 1px solid;
		padding-bottom: 15px;
		margin-bottom: 30px;
		font-size: 13px;
		line-height: 1.8em;
	}

	.company_info dl dt {
		width: 160px;
		position: relative;
		padding-left: 25px;
	}

	.company_info dl dt::before {
		content: '';
		border-left: #AA906C 3px solid;
		height: 14px;
		position: absolute;
		top: 6px;
		left: 15px;
	}

	.company_info dl dd {
		width: calc(100% - 160px);
	}
}

@media screen and (min-width:750px) and (max-width:1279px) {
	.company_profile_wrap {
		width: 100%;
		display: flex;
		clear: both;
		background-color: #F2F2F2;
	}

	.company_profile_l {
		background-image: url("images/company_profile_bg.jpg");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: cover;
		width: 33%;
		position: relative;
		top: -50px;
	}

	.company_profile_l_ttl {
		color: #FFFFFF;
		font-family: 'Amiri', serif;
		line-height: 1.0em;
		font-size: 50px;
		margin: 50px 50px 0 30px;
	}

	.company_profile_r {
		width: 67%;
	}

	.company_info {
		width: 90%;
		margin: 145px 5% 80px 5%;
	}

	.company_info dl {
		width: 100%;
		display: flex;
		align-items: flex-start;
		border-bottom: #000000 1px solid;
		padding-bottom: 15px;
		margin-bottom: 30px;
		font-size: 14px;
		line-height: 1.8em;
	}

	.company_info dl dt {
		width: 180px;
		position: relative;
		padding-left: 25px;
	}

	.company_info dl dt::before {
		content: '';
		border-left: #AA906C 3px solid;
		height: 14px;
		position: absolute;
		top: 6px;
		left: 15px;
	}

	.company_info dl dd {
		width: calc(100% - 180px);
	}
}

@media screen and (min-width:1280px) and (max-width:1469px) {
	.company_profile_wrap {
		width: 100%;
		display: flex;
		clear: both;
		background-color: #F2F2F2;
	}

	.company_profile_l {
		background-image: url("images/company_profile_bg.jpg");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: cover;
		width: 33%;
		position: relative;
		top: -50px;
	}

	.company_profile_l_ttl {
		color: #FFFFFF;
		font-family: 'Amiri', serif;
		line-height: 1.0em;
		font-size: 50px;
		margin: 50px 50px 0 30px;
	}

	.company_profile_r {
		width: 67%;
	}

	.company_info {
		width: 750px;
		margin: 145px calc(100% - 815px) 80px 60px;
	}

	.company_info dl {
		width: 100%;
		display: flex;
		align-items: flex-start;
		border-bottom: #000000 1px solid;
		padding-bottom: 15px;
		margin-bottom: 30px;
		font-size: 14px;
		line-height: 1.8em;
	}

	.company_info dl dt {
		width: 180px;
		position: relative;
		padding-left: 25px;
	}

	.company_info dl dt::before {
		content: '';
		border-left: #AA906C 3px solid;
		height: 14px;
		position: absolute;
		top: 6px;
		left: 15px;
	}

	.company_info dl dd {
		width: calc(100% - 180px);
	}
}

@media screen and (min-width:1470px) {
	.company_profile_wrap {
		width: 100%;
		display: flex;
		clear: both;
		background-color: #F2F2F2;
	}

	.company_profile_l {
		background-image: url("images/company_profile_bg.jpg");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: cover;
		width: 36%;
		position: relative;
		top: -50px;
	}

	.company_profile_l_ttl {
		color: #FFFFFF;
		font-family: 'Amiri', serif;
		line-height: 1.0em;
		font-size: 68px;
		margin: 50px 50px 0 calc(100% - 505px);
	}

	.company_profile_r {
		width: 64%;
	}

	.company_info {
		width: 750px;
		margin: 145px calc(100% - 815px) 80px 60px;
	}

	.company_info dl {
		width: 100%;
		display: flex;
		align-items: flex-start;
		border-bottom: #000000 1px solid;
		padding-bottom: 15px;
		margin-bottom: 30px;
		font-size: 14px;
		line-height: 1.8em;
	}

	.company_info dl dt {
		width: 180px;
		position: relative;
		padding-left: 25px;
	}

	.company_info dl dt::before {
		content: '';
		border-left: #AA906C 3px solid;
		height: 14px;
		position: absolute;
		top: 6px;
		left: 15px;
	}

	.company_info dl dd {
		width: calc(100% - 180px);
	}
}

/*======================================================================================
PRIVACY POLICY PAGE
======================================================================================*/
.privacy_ttl {
	font-size: 25px;
	border-bottom: #000000 1px solid;
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.privacy_box {
	width: 100%;
	display: block;
	clear: both;
}

.privacy_box dt {
	font-size: 14px;
	margin-bottom: 15px;
	background-image: url("images/faq_square.png");
	background-repeat: no-repeat;
	background-position: left top 3px;
	padding-left: 30px;
	line-height: 1.8em;
}

.privacy_box dd {
	padding-left: 40px;
	margin-bottom: 60px;
	line-height: 2.0em;
}

.privacy_under {
	padding-left: 40px;
	margin-bottom: 60px;
	line-height: 2.0em;
}

/*======================================================================================
ESTHETIC PAGE
======================================================================================*/
@media screen and (max-width:899px) {
	.esthetic_topimg_copy {
		width: 80%;
		height: 34vw;
		display: flex;
		align-items: flex-end;
		clear: both;
		font-family: 'Amiri', serif;
		color: #91867F;
		font-size: 30px;
		line-height: 1.0em;
		margin: 0 10%;
	}
}

@media screen and (min-width:900px) and (max-width:1279px) {
	.esthetic_topimg_copy {
		width: 80%;
		height: 38vw;
		display: flex;
		align-items: flex-end;
		clear: both;
		font-family: 'Amiri', serif;
		color: #91867F;
		font-size: 70px;
		line-height: 1.0em;
		margin: 0 10%;
	}
}

@media screen and (min-width:1280px) {
	.esthetic_topimg_copy {
		width: 80%;
		height: 38vw;
		display: flex;
		align-items: flex-end;
		clear: both;
		font-family: 'Amiri', serif;
		color: #91867F;
		font-size: 90px;
		line-height: 1.0em;
		margin: 0 10%;
	}
}

.reason_bg {
	width: 100%;
	display: block;
	clear: both;
	float: left;
	background-image: url("images/esthetic_reason_bg.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}

@media screen and (max-width:499px) {
	.reason_intro {
		width: 96%;
		margin: 90px 2% 110px 2%;
		color: #FFFFFF;
		font-size: 23px;
		text-align: center;
		line-height: 1.2em;
	}
}

@media screen and (min-width:500px) and (max-width:1279px) {
	.reason_intro {
		width: 96%;
		margin: 90px 2% 110px 2%;
		color: #FFFFFF;
		font-size: 26px;
		text-align: center;
		line-height: 1.3em;
	}
}

@media screen and (min-width:1280px) {
	.reason_intro {
		width: 1200px;
		margin: 90px auto 110px auto;
		color: #FFFFFF;
		font-size: 26px;
		text-align: center;
		line-height: 1.3em;
	}
}

@media screen and (max-width:699px) {
	.reason_box li {
		width: 48%;
		padding-top: 65px;
		margin-bottom: 70px;
	}

	.reason_box li:nth-child(3),
	.reason_box li:nth-child(4) {
		margin-bottom: 0;
	}

	.reason_ttl {
		height: 80px;
		font-size: 15px;
		line-height: 1.6em;
		margin-bottom: 10px;
	}
}

@media screen and (min-width:700px) and (max-width:1279px) {
	.reason_box li {
		width: 23%;
		padding-top: 65px;
	}

	.reason_ttl {
		height: 100px;
		font-size: 15px;
		line-height: 1.6em;
		margin-bottom: 10px;
	}
}

@media screen and (min-width:1280px) {
	.reason_box li {
		width: 23%;
		padding-top: 65px;
	}

	.reason_ttl {
		font-size: 16px;
		line-height: 1.6em;
		margin-bottom: 10px;
	}
}

.reason_box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	clear: both;
	color: #FFFFFF;
	margin-bottom: 110px;
}

.reason_number {
	width: 118px;
	font-size: 18px;
	font-family: 'Amiri', serif;
	background-color: #AA906C;
	text-align: center;
	padding: 5px 0 4px 0;
	margin-bottom: 15px;
	position: relative;
}

.reason_number::before {
	content: '';
	border-right: #FFFFFF 1px solid;
	height: 50px;
	position: absolute;
	left: 50%;
	top: -65px;
}

.reason_img {
	width: 100%;
	margin-bottom: 20px;
}

.reason_img img {
	width: 100%;
	display: block;
}

.reason_txt {
	font-size: 13px;
	line-height: 1.6em;
}

.esthetician_bg {
	width: 100%;
	display: block;
	clear: both;
	float: left;
	background-color: #F2F2F2;
	padding: 120px 0 280px 0;
}

@media screen and (max-width:799px) {
	.esthetician_wrap {
		width: 100%;
		display: block;
		clear: both;
	}

	.esthetician_img {
		width: 90%;
		margin-right: 10%;
	}

	.esthetician_r {
		width: 96%;
		margin: 0 2%;
	}

	.esthetician_txt {
		font-size: 14px;
		margin-bottom: 50px;
		line-height: 1.8em;
	}
}

@media screen and (min-width:800px) {
	.esthetician_wrap {
		width: 100%;
		display: flex;
		clear: both;
	}

	.esthetician_img {
		width: 50%;
		margin-right: 50px;
	}

	.esthetician_r {
		max-width: 750px;
		width: 37.5%;
	}

	.esthetician_txt {
		font-size: 14px;
		margin-bottom: 50px;
		line-height: 1.8em;
		max-width: 100%;
		width: 600px;
	}
}

.esthetician_img img {
	width: 100%;
	display: block;
}

.esthetician_name {
	font-size: 23px;
	border-bottom: #000000 1px solid;
	padding-bottom: 15px;
	margin: 60px 0 30px 0;
}

.esthetician_name span {
	font-family: 'Amiri', serif;
	font-size: 25px;
	color: #AA906C;
	margin-right: 40px;
}

.esthetician_profile {
	width: 120px;
	background-color: #AA906C;
	color: #FFFFFF;
	font-family: 'Amiri', serif;
	font-size: 18px;
	text-align: center;
	padding: 5px 0 4px 0;
	margin-bottom: 15px;
}

.esthetic_shop_bg {
	width: 100%;
	display: block;
	clear: both;
	float: left;
	background-image: url("images/esthetic_shop_bg.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	padding-bottom: -120px;
}

@media screen and (max-width:999px) {
	.max_con1730.esthetic {
		position: relative;
		top: -110px;
	}

	.shop_list.esthetic li:last-child {
		margin-bottom: 0;
	}
}

@media screen and (min-width:1000px) and (max-width:1279px) {
	.max_con1730.esthetic {
		position: relative;
		top: -110px;
	}

	.shop_list.esthetic li {
		margin-bottom: 0;
	}
}

@media screen and (min-width:1280px) {
	.max_con1730.esthetic {
		position: relative;
		top: -120px;
	}

	.shop_list.esthetic li {
		margin-bottom: 0;
	}

}

.esthetic_shop_plan a {
	width: 100%;
	display: block;
	clear: both;
	background-color: #AA906C;
	color: #FFFFFF;
	font-size: 18px;
	text-align: center;
	padding: 35px 0;
	background-image: url("images/arrow_white_yoko.png");
	background-repeat: no-repeat;
	background-position: 95% 50%;
	margin-bottom: 35px;
}

.esthetic_shop_plan a:hover {
	opacity: 0.5;
}

.shop_address.esthetic {
	color: #FFFFFF;
}

.esthetic_line a {
	width: 100%;
	display: flex;
	align-items: center;
	clear: both;
	font-size: 14px;
	color: #FFFFFF;
	margin-bottom: 30px;
}

.esthetic_line a img {
	margin-right: 5px;
}

.esthetic_line a:hover {
	opacity: 0.5;
}

/*======================================================================================
CONTACT PAGE
======================================================================================*/
.contact_txt {
	font-size: 14px;
	margin-bottom: 80px;
	line-height: 1.8em;
}

.contact_txt span {
	color: #B20000;
}

.contact_chui {
	font-size: 12px;
	line-height: 1.8em;
	color: #B20000;
	width: 100%;
}

@media screen and (max-width:709px) {
	.contact_box {
		width: 100%;
		font-size: 14px;
		display: block;
		clear: both;
		border-bottom: #AAAAAA 1px solid;
		padding-bottom: 25px;
		margin-bottom: 25px;
	}

	.contact_box_title {
		width: 100%;
		display: flex;
		align-items: flex-start;
		background-image: url("images/faq_square.png");
		background-repeat: no-repeat;
		background-position: left top;
		padding-left: 30px;
		margin-bottom: 20px;
	}

	.contact_box_field {
		width: 100%;
		line-height: 1.8em;
	}

	.contact_box_field.select {
		display: flex;
		align-items: center;
	}

	.contact_box .w460 input[type="text"],
	.contact_box .w460 input[type="email"] {
		width: 100%;
	}

	.contact_box .w700 input[type="text"],
	.contact_box .w100p input[type="text"] {
		width: 100%;
	}

	.contact_box .w80p input[type="text"] {
		width: 80%;
	}

	.contact_box .w30p input[type="text"] {
		width: 30%;
	}

	.contact_box input[type="text"],
	input[type="select"],
	input[type="textarea"],
	input[type="tel"],
	input[type="email"],
	input[type="date"],
	textarea {
		width: 100%;
		padding: 10px;
		border: #EEEEEE 1px solid;
		margin-bottom: 5px;
	}

}

@media screen and (min-width:710px) {
	.contact_box {
		width: 100%;
		font-size: 14px;
		display: flex;
		justify-content: space-between;
		clear: both;
		border-bottom: #AAAAAA 1px solid;
		padding-bottom: 25px;
		margin-bottom: 25px;
	}

	.contact_box_title {
		width: 30%;
		display: flex;
		align-items: flex-start;
		background-image: url("images/faq_square.png");
		background-repeat: no-repeat;
		background-position: left top;
		padding-left: 30px;
		margin: 7px 0;
	}

	.contact_box_field {
		width: calc(70% - 30px);
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		line-height: 1.8em;
	}

	.contact_box .w460 input[type="text"],
	.contact_box .w460 input[type="email"] {
		max-width: 460px;
		width: 460px;
	}

	.contact_box .w700 input[type="text"] {
		max-width: 700px;
		width: 700px;
	}

	.w100p input[type="text"] {
		width: 100% !important;
	}

	.contact_box input[type="text"],
	input[type="select"],
	input[type="textarea"],
	input[type="tel"],
	input[type="email"],
	input[type="date"],
	textarea {
		width: auto;
		padding: 10px;
		border: #EEEEEE 1px solid;
		margin-bottom: 5px;
	}
}

.contact_box_title span {
	width: 47px;
	background-color: #B22D00;
	color: #FFFFFF;
	font-size: 13px;
	padding: 2px 5px;
	text-align: center;
	border-radius: 5px;
	margin-left: 10px;
}

span.hissu1,
span.hissu2 {
	display: none;
}

.contact_box input[name="your-name"],
input[name="your-furigana"],
input[name="your-email"],
input[name="venue"] {
	max-width: 460px !important;
	width: 460px !important;
}

.contact_box input[name="your-address"] {
	max-width: 700px;
	width: 700px;
}

.contact_box input[name="your-tel01"],
input[name="your-tel02"],
input[name="your-tel03"] {
	max-width: 100px;
}

.contact_box input[name="your-message"],
input[type="textarea"],
textarea {
	width: 100%;
}

.contact_box .w460 input {
	max-width: 460px;
	width: 460px;
}

.contact_box .w700 input {
	max-width: 700px;
	width: 700px;
}

.contact_box .w280 input {
	max-width: 280px;
	width: 280px;
}

select::-ms-expand {
	display: none;
}

.select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 7px 30px 7px 10px;
	font-size: 93%;
	line-height: 1.1em;
	border: #EEEEEE 1px solid;
	background-image: url(images/contact_select.png);
	background-repeat: no-repeat;
	background-size: 16px 8px;
	background-position: right 10px center;
	background-color: #FFFFFF;
}

.contact_box input[name="your-zip-code"] {
	width: 150px;
}

.contact_zipbox {
	display: flex;
	align-items: center;
}

span.zipmark {
	float: left;
	margin-right: 10px;
}

input[type="submit"],
input[type="back"],
input[type="button"],
button[type="submit"] {
	display: block;
	max-width: 380px;
	width: 90%;
	margin: 80px auto 80px auto;
	color: #FFFFFF;
	background-color: #aa906c;
	font-size: 14px;
	text-align: center;
	padding: 25px 0;
	border: none;
	background-image: url("images/arrow_yoko.png");
	background-repeat: no-repeat;
	background-position: 90% 50%;
	cursor: pointer;
}

input[type="submit"]:hover,
input[type="back"]:hover,
input[type="button"]:hover,
button[type="submit"]:hover {
	opacity: 0.5;
	transition: 0.5s;
}

.mw_wp_form .horizontal-item {
	margin-left: 10px;
}

/*THANKS PAGE*/
.thanks1 {
	font-size: 16px;
	margin: 50px 0 20px 0;
	line-height: 2.0em;
}

.thanks2 {
	font-size: 14px;
	margin-bottom: 100px;
	line-height: 2.0em;
}