/*
Thame Name:NEALD
Thame URL:
Description:NEALDブランドサイト
Author:Katayama
Version:1.0
*/

/*------------------------------------
汎用パーツ
------------------------------------*/
/*--
* {
	border: solid 1px var(--color_03);
}
--*/

:root {
	--font-family_1: "Zen Old Mincho", serif;
	--font-family_2: "Zen Old Mincho", serif;
	--font-family_3: "Instrument Serif", sans-serif;

	--font-size_sss: 0.7rem !important;
	--font-size_ss: 0.9rem !important;
	--font-size_s: 1rem !important;
	--font-size_mm: 1.2rem !important;
	--font-size_m: 1.4rem !important;
	--font-size_l: 1.7rem !important;
	--font-size_ll: 2rem !important;
	--font-size_lll: 3rem !important;
	--font-size_llll: 4.5rem !important;

	--font-weight_s: 500;
	--font-weight_m: 600;
	--font-weight_l: 700;
	--font-weight_ll: 800;

	--color_00: #1a1a1a;
	--color_01: #2a2a2a;
	--color_02: #5e5e5e;
	--color_03: #8c8c8c;
	--color_04: #b1b1b1;
	--color_05: #b5b5b5;
	--color_06: #b8b8b8;
	--color_07: #c9c9c9;
	--color_08: #e4e4e4;
	--color_09: #efefef;
	--color_1: #261201;
	--color_2: #59442A;
	--color_3: #8C6F4A;
	--color_4: #D9B991;
	--color_5: #F2E2C4;
	--color_6: #A8615A;
	--color_f: #fff;
	--color_line: #27ba67;
	--color_bs: #00000033;

	--shadow_1: 3px 3px 7px #0000001A;
	--shadow_2: 2px 2px 5px #0000001A;
	--shadow_3: 1px 1px 2px #0000001A;
	--shadow_0: 2px 2px 0 #1a1a1a;

	--circle_1: 57% 43% 56% 44% / 41% 42% 58% 59%;
	--circle_2: 40% 60% 41% 59% / 50% 37% 63% 50%;
	--circle_3: 64% 36% 41% 59% / 50% 54% 46% 50%;
	--circle_4: 38% 62% 35% 65% / 63% 42% 58% 37%;

	--border_1: solid 2px var(--color_01);
	--border_2: solid 2px var(--color_04);
	--border_3: solid 2px var(--color_08);

	--radius_05: 5px;
	--radius_1: 10px;
	--radius_2: 20px;
	--radius_3: 30px;
	--radius_4: 40px;
	--radius_5: 50px;
	--radius_10: 100px;
	--radius_50: 50%;

	--flex_1: 100%;
	--flex_2: 47%;
	--flex_3: 32%;
	--flex_4: 22%;

	--ease_1: 0.2s ease-out;
	--ease_2: 0.4s ease-out;
	--ease_3: 0.6s ease-out;
}

@media screen and (max-width: 699px) {
	:root {
		--font-size_sss: 0.6rem !important;
		--font-size_ss: 0.7rem !important;
		--font-size_s: 0.8rem !important;
		--font-size_mm: 1rem !important;
		--font-size_m: 1.2rem !important;
		--font-size_l: 1.5rem !important;
		--font-size_ll: 1.8rem !important;
		--font-size_lll: 2.8rem !important;
		--font-size_llll: 4.3rem !important;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 100%;
}

body {
	background: var(--color_f);
	top: 0px !important;
	color: var(--color_00);
	font-family: var(--font-family_1);
	font-weight: var(--font-weight_s);
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
}

body .no-scroll {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family_1);
	font-weight: var(--font-weight_l);
}

h1,
h2,
h3 {}

h4,
h5,
h6 {}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.3rem;
}

p,
i {
	font-family: var(--font-family_2);
	font-size: var(--font-size_s);
	color: var(--color_02);
	font-weight: var(--font-weight_s);
	letter-spacing: 0.05em;
	line-height: 1.8em;
}

ul,
ol {
	list-style: none;
}

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

p a {
	text-decoration: underline;
}

img,
video {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

table {
	line-height: 1.4em;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
}

/*------------------------------------
レイアウト
------------------------------------*/
/*セクションコンテナ*/
.section-container_1 {
	position: relative;
	padding: 150px 0;
}

.section-container_2 {
	position: relative;
	padding: 100px 0;
}

/*幅 通常*/
.wrapper {
	max-width: 1100px;
	height: auto;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}

/*幅 幅広*/
.wrapper-wide {
	max-width: 1400px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

/*幅 画面一杯*/
.wrapper-fullwide {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	height: auto;
}

/*block センター合わせ*/
.block-pack {
	display: block;
	margin: auto;
	text-align: center;
}

.block-item {
	margin: 200px auto;
	text-align: left;
}

.block-item:nth-child(1) {
	margin-top: 0;
}

.block-item:nth-last-child(1) {
	margin-bottom: 0;
}

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

.flex-pack {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
}

.flex-item {}

@media screen and (max-width: 699px) {
	.section-container_1 {
		padding: 75px 0;
	}

	.section-container_2 {
		padding: 50px 0;
	}

	.wrapper,
	.wrapper-wide {
		padding-left: 15px;
		padding-right: 15px;
	}

	.block-item {
		margin: 100px auto;
	}


	.flex-pack {
		flex-wrap: wrap;
	}
}

/*------------------------------------
セクション見出し
------------------------------------*/
.title_l {
	font-size: 100px;
	line-height: 1.5em;
}

.title_m {
	font-size: 65px;
	line-height: 1.5em;
}

.title_s {
	font-size: 30px;
	line-height: 1.5em;
}

.box-title_1 {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-50%);
	padding: 10px 25px;
	font-size: var(--font-size_m);
	color: var(--color_f);
	background: var(--color_01);
}

.section-title_1 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-left: 15px;
	text-align: center;
}

.section-title_1 h2 {
	margin-left: 20px;
	font-size: 65px;
	font-weight: var(--font-weight_s);
	line-height: 1.5em;
	letter-spacing: 0.5em;
}

.section-title_1 p {
	font-size: var(--font-size_mm);
}

.section-title_2 {
	justify-content: flex-start;
	gap: 15px;
	margin: 0 auto 50px auto;
}

.section-title_2 .icon i {
	font-size: 65px;
	color: var(--color_01);
}

.section-title_2 .icon img {
	width: 65px;
}

.section-title_2 .text {}

.section-title_2 span {}

.section-title_2 h2 {
	font-size: 35px;
	letter-spacing: 0.2em;
	line-height: 1.5em;
}

.section-title_3 {
	margin: 0 auto 25px auto;
	padding: 25px 15px;
	border-top: solid 1px var(--color_01);
	border-bottom: solid 1px var(--color_01);
}

.section-title_3 h2 {
	font-size: var(--font-size_l);
}

.section-title_3 p {
	margin-top: 15px;
	font-size: var(--font-size_ss);
}

.section-title_4 {
	position: relative;
	text-align: center;
	margin: 0 auto 60px auto;
}

.section-title_4 span {
	color: var(--color_3);
}

.section-title_4 h2 {
	font-size: var(--font-size_ll);
}

.section-title_4 p {
	margin-top: 15px;
	font-size: var(--font-size_ss);
}

@media screen and (max-width: 699px) {
	.title_l {
		font-size: 45px;
	}

	.title_m {
		font-size: 35px;
	}

	.title_s {
		font-size: 20px;
	}

	.box-title {
		font-size: var(--font-size_s);
	}

	.section-title_1 h2 {
		margin-left: 5px;
		font-size: 27px;
	}

	.section-title_2 .icon i {
		font-size: 45px;
	}

	.section-title_2 .icon img {
		width: 45px;
	}

	.section-title_2 h2 {
		font-size: 25px;
	}

	.section-title_4 h2 {
		font-size: var(--font-size_l);
	}
}

/*------------------------------------
リストデザイン
------------------------------------*/
/*リストデザイン1*/
.list_1 {
	font-size: var(--font-size_s);
	line-height: 2.2em;
}

/*------------------------------------
表デザイン
------------------------------------*/
/*表2列・3列*/
.table_2,
.table_3 {
	flex-wrap: wrap;
	gap: 15px;
	margin: 15px auto;
}

.table_2 .row-header,
.table_2 .row,
.table_3 .row-header,
.table_3 .row {
	gap: 15px;
	width: 100%;
}

.table_2 .row-header,
.table_3 .row-header {
	padding-bottom: 5px;
	border-bottom: solid 2px var(--color_03);
}

.table_2 .row-header p,
.table_3 .row-header p {
	font-weight: var(--font-weight_m);
}

.table_2 .row,
.table_3 .row {
	padding-bottom: 10px;
	border-bottom: dotted 1px var(--color_03);
}

.table_2 .cell {
	width: calc((100% - 15px) / 2);
}

.table_3 .cell {
	width: calc((100% - 30px) / 3);
}

.table_2 .cell,
.table_3 .cell p {}

.table_2 .cell:nth-child(1) p,
.table_3 .cell:nth-child(1) p {}

.table_2 .cell:nth-child(2) p,
.table_3 .cell:nth-child(2) p {}

.table_2 .cell:nth-child(3) p,
.table_3 .cell:nth-child(3) p {}

.table_2 .note,
.table_3 .note {
	margin-top: 15px;
}

.table_2 .note p,
.table_3 .note p {
	font-size: var(--font-size_ss);
}

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

	.table_2 .row-header p,
	.table_3 .row-header p {
		font-size: var(--font-size_ss);
		font-weight: var(--font-weight_m);
	}

	.table_2 .row,
	.table_3 .row {}

	.table_2 .cell {
		width: calc((100% - 15px) / 2);
	}

	.table_3 .cell {
		width: calc((100% - 30px) / 3);
	}

	.table_2 .cell p,
	.table_3 .cell p {
		font-size: var(--font-size_sss);
	}

	.table_2 .note,
	.table_3 .note {
		margin-top: 15px;
	}

	.table_2 .note p,
	.table_3 .note p {
		font-size: var(--font-size_sss);
	}
}

/*------------------------------------
グリッドレイアウト
------------------------------------*/
.grid-pack {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 50px;
	gap: 100px;
}

.grid-item {
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.grid-item img {
	width: 100%;
	height: 100%;
}

.grid-item-inner {
	padding: 50px;
}

@media screen and (max-width: 699px) {
	.grid-pack {
		display: flex;
		flex-wrap: wrap;
		gap: 50px;
	}

	.grid-item img {
		height: 100%;
	}

	.grid-item-inner {
		padding: 0px;
	}
}

/*------------------------------------
ボタンデザイン
------------------------------------*/
/*ベタ塗り丸ボタン*/
.btn-pack {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
}

.btn-pack .btn_1,
.btn-pack .btn_2,
.btn-pack .btn_3 {
	margin: 35px 0 0 0;
}

.btn_1,
.btn_2,
.btn_3 {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 35px auto 0 auto;
	width: 250px;
}

.btn_1 i,
.btn_2 i,
.btn_3 i {
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);

}

.btn_1 a,
.btn_2 a,
.btn_3 a {
	width: 100%;
	text-align: center;
	font-size: var(--font-size_sss);
	color: var(--color_f);
	text-shadow: var(--text-shadow_1);
	background: var(--color_01);
	padding: 5px 40px;
	border: solid 1px var(--color_01);
	transition: 0.3s ease-out;
}

.btn_1 a::before::after,
.btn_2 a::before::after,
.btn_3 a::before::after {
	content: '';
	position: absolute;
}

.btn_1 a::before,
.btn_1 a:after,
.btn_2 a::before,
.btn_2 a:after,
.btn_3 a::before,
.btn_3 a:after {
	position: absolute;
	content: '';
	width: 8px;
	height: 1px;
	background: var(--color_f);
	transition: var(--ease_2);
}

.btn_1 a::before,
.btn_2 a::before,
.btn_3 a::before {
	top: 44%;
	right: 20px;
	transform: rotate(45deg);
}

.btn_1 a::after,
.btn_2 a::after,
.btn_3 a::after {
	top: 55%;
	right: 20px;
	transform: rotate(-45deg);
}

.btn_1 a:hover,
.btn_2 a:hover,
.btn_3 a:hover {
	color: var(--color_01);
	text-shadow: none;
	background: rgba(0, 0, 0, 0);
}

.btn_1 a:hover::before,
.btn_2 a:hover::before,
.btn_3 a:hover::before {
	background: var(--color_01);
	transform: rotate(45deg) translate(5px, -5px);
}

.btn_1 a:hover::after,
.btn_2 a:hover::after,
.btn_3 a:hover::after {
	background: var(--color_01);
	transform: rotate(-45deg) translate(5px, 5px);
}

/*ベタ塗り丸ボタン(red)*/
.btn_2 {}

.btn_2 i {}

.btn_2 a::before::after {}

.btn_2 a::before,
.btn_2 a:after {}

.btn_2 a::before {}

.btn_2 a::after {}

.btn_2 a {
	background: var(--color_2);
	border: solid 1px var(--color_2);
}

.btn_2 a:hover {
	color: var(--color_2);
}

.btn_2 a:hover::before {
	background: var(--color_2);
}

.btn_2 a:hover::after {
	background: var(--color_2);
}

/*ベタ塗り丸ボタン(write)*/
.btn_3 {}

.btn_3 i {}

.btn_3 a::before::after {}

.btn_3 a::before,
.btn_3 a:after {
	background: var(--color_00);
}

.btn_3 a::before {}

.btn_3 a::after {}

.btn_3 a {
	color: var(--color_00);
	background: none;
	border: solid 1px var(--color_00);
}

.btn_3 a:hover {
	color: var(--color_f);
	background: var(--color_00);
}

.btn_3 a:hover::before,
.btn_3 a:hover::after {
	background: var(--color_f);
}

/*下線ボタン*/
.btn_4 {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 15px auto 0px auto;
	width: 250px;
}

.btn_4 a::before::after {
	content: '';
	position: absolute;
}

.btn_4 a::before,
.btn_4 a:after {
	position: absolute;
	content: '';
	width: 8px;
	height: 2px;
	background: var(--color_05);
	border-radius: var(--radius_5);
	transition: var(--ease_2);
}

.btn_4 a::before {
	top: 44%;
	right: 20px;
	transform: rotate(45deg);
}

.btn_4 a::after {
	top: 54%;
	right: 20px;
	transform: rotate(-45deg);
}

.btn_4 a {
	width: 100%;
	text-align: center;
	color: var(--color_00);
	padding: 10px 20px;
	font-size: var(--font-size_s);
	letter-spacing: 0.3em;
	border-bottom: solid 1px var(--color_00);
	transition: var(--ease_2);
}

.btn_4 a:hover {
	color: var(--color_05);
	text-shadow: none;
}

.btn_4 a:hover::before {
	background: var(--color_05);
	transform: rotate(45deg) translate(5px, -5px);
}

.btn_4 a:hover::after {
	background: var(--color_05);
	transform: rotate(-45deg) translate(5px, 5px);
}

/*小さな枠ボタン*/
.btn_5 {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 25px auto 0px auto;
}

.btn_5 a {
	position: relative;
	display: block;
	width: 250px;
	text-align: center;
	font-size: var(--font-size_ss);
	border: solid 1px var(--color_1);
	padding: 5px 10px;
	transition: var(--ease_2);
}

.btn_5 a:hover {
	color: var(--color_2);
	background: var(--color_09);
}

/*------------------------------------
アコーディオン
------------------------------------*/
.accordion-area {
	list-style: none;
	width: 100%;
	margin: 0 auto;
}

.accordion-area li {
	margin: 25px auto;
	background: var(--color_f);
	border-bottom: solid 1px var(--color_03);
}

.accordion-area section {
	border: 1px solid var(--color_05);
}

.accodion-title {
	position: relative;
	cursor: pointer;
	padding: 20px 40px 20px 15px;
	border-radius: var(--radius_5);
	transition: var(--ease_1);
	_
}

.accodion-title::before,
.accodion-title::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 2px;
	background: var(--color_02);
	transition: var(--ease_2);
}

.accodion-title::before {
	top: 48%;
	right: 20px;
	transform: rotate(-45deg);
}

.accodion-title::after {
	top: 48%;
	right: 26px;
	transform: rotate(45deg);
}

.accodion-title.close::before {
	transform: rotate(0deg);
}

.accodion-title.close::after {
	transform: rotate(-0deg);
}

.accodion-title h3 {
	font-size: var(--font-size_s);
}

.accodion-title h3 span {
	margin-right: 10px;
	font-size: var(--font-size_l);
	color: var(--color_4);
}

.box {
	max-height: 0;
	overflow: hidden;
	transition: var(--ease_2);
}

.box-content {
	padding: 10px 40px 30px 30px;
}

.box-content span {
	padding-right: 10px;
	font-size: var(--font-size_l);
	color: var(--color_5);
}

.close-btn {
	display: block;
	margin: 30px auto 0;
	padding: 8px 20px 8px 20px;
	color: var(--color_f);
	background: var(--color_01);
	border: none;
	cursor: pointer;
	position: relative;
	font-size: var(--font-size_sss);
	letter-spacing: 0.1em;
	line-height: 1.5;
	text-align: center;
	width: 100px;
}

.close-btn::before,
.close-btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 15px;
	width: 10px;
	height: 2px;
	background: var(--color_f);
	transform: translateY(-50%);
}

.close-btn::before {
	transform: translateY(-50%) rotate(45deg);
}

.close-btn::after {
	transform: translateY(-50%) rotate(-45deg);
}

/*------------------------------------
パララックス
------------------------------------*/
.parallax-container {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	width: 100%;
	height: 100%;
}

.parallax-inner {
	position: absolute;
	inset: -15% 0 -15% 0;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

.parallax-inner>img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
}

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

/*------------------------------------
その他のパーツ
------------------------------------*/
/*SNSアイコン*/
.icon-list {
	gap: 25px;
	margin: 25px auto;
}

.icon-list i {
	font-size: 30px;
}

.icon-list img {
	width: 30px;
}

/*簡易ショップ情報*/
.shop-info ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.shop-info li {
	width: 100%;
	font-size: var(--font-size_ss);
	padding: 3px 0;
}

.shop-info a {
	font-size: var(--font-size_l);
	font-weight: var(--font-weight_l);
}

/*テキストアニメーションの改行を防ぐ(不要)*/
.word {
	display: flex;
	margin-right: 1rem;
}

/*------------------------------------
デザインパーツ
------------------------------------*/
/*ボックス1*/
.box_1 {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 25px 15px;
	background: var(--color_f);
	border: var(--border_1);
}

/*ボックス2*/
.box_2 {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 25px 15px;
	background: var(--color_f);
	border-top: var(--border_1);
	border-bottom: var(--border_1);
}

.box_2::before,
.box_2::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 95%;
	background: var(--color_01);
}

.box_2::before {
	top: 0;
	left: 0;
}

.box_2::after {
	bottom: 0;
	right: 0;
}

/*ボックス3*/
.box_3 {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 25px 15px;
}

/*テキストボックス*/
.content_1 {
	margin: 50px auto;
}

.content_1 h3 {
	vertical-align: var(--font-size_mm);
}

.content_1 p {
	margin-top: 30px;
	line-height: 2.5em;
}

/*注記*/
.note {
	margin: 25px auto;
	padding: 15px;
	background: var(--color_09);
}

.note p {
	font-size: var(--font-size_sss);
}

/*画像ボックス*/
.image-box_1 {}

/*親要素内で位置固定する*/
.sticky {
	position: sticky;
	top: 0px;
	z-index: 103;
	pointer-events: none;
}

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

	/*テキストボックス*/
	.content_1 {
		margin: 25px auto;
	}

	.content_1 p {
		margin-top: 20px;
		line-height: 2em;
	}

	.sticky {
		position: fixed;
		top: 0px;
	}
}

/*------------------------------------
header
------------------------------------*/
#header {
	margin: 0 auto;
}

#header .nav {
	text-align: center;
}

/*メインロゴ*/
#header .header-logo {
	position: fixed;
	top: 25px;
	left: 45px;
	z-index: 10;
}

#header .header-logo a {
	display: flex;
	align-items: center;
	justify-content: center;
}

#header .header-logo img {
	width: 120px;
	height: auto;
	transition: var(--ease_2);
}

/*PCメニュー白背景*/
#header .header-bg {
	position: fixed;
	top: 0px;
	right: 0;
	width: 100vw;
	height: 75px;
	z-index: 9;
}

/*白背景・固定ロゴ*/
#header .header-bg .header-logo_2 {
	position: absolute;
	top: 0;
	left: 10px;
	height: 75px;
}

#header .header-bg .header-logo_2 img {
	width: auto;
	height: 100%;
	padding: 15px 0;
}

@media screen and (max-width: 699px) {
	#header .header-bg {
		background: none;
	}

	#header .header-bg a {
		display: none;
	}

	#header .header-logo {
		position: absolute;
		top: 25px;
		left: 15px;
	}

	#header .header-logo img {
		width: 80px;
	}
}

/*スマホナビ*/
.nav {}

#navi {
	position: fixed;
	top: 0;
	right: -10%;
	width: 80%;
	max-width: 650px;
	height: 100vh;
	opacity: 0;
	padding: 75px;
	background: var(--color_09);
	transition: var(--ease_2);
	pointer-events: none;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 100;
}

#navi .navi-pack {
	align-items: start;
	gap: 50px;
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: solid 1px var(--color_01);
}

#navi .navi-left {}

#navi .navi-left img {
	width: 150px;
}

#navi .navi-left,
#navi .navi-right {
	width: calc((100% - 100px) / 2);
}

#navi .navi-right {}

#navi .navi-right img {
	width: 150px;
}

#navi .contents-list {
	width: calc((100% - 50px) / 3);
	text-align: left;
}

#navi .menu {}

#navi .menu ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-left: 25px;
}

#navi .menu li {
	cursor: pointer;
	position: relative;
	text-align: left;
	width: 100%;
	padding-bottom: 7px;
}

#navi .menu .nav-item {
	max-width: 100%;
}

/* アニメーション初期状態 */
#navi .nav-item,
#navi .contents-list {
	opacity: 0;
	transform: translateX(25px);
	transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* アニメーション表示状態 */
#navi .nav-item.animate,
#navi .contents-list.animate {
	opacity: 1;
	transform: translateX(0);
}

#navi .menu .nav-item p {
	position: relative;
	font-family: var(--font-family_1);
	font-size: var(--font-size_mm);
	font-weight: var(--font-weight_l);
}

#navi .menu .submenu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	max-height: 0;
	padding: 0 30px;
	overflow: hidden;
	transition: all 0.5s ease-out;
}

#navi .menu .submenu.open {
	max-height: 500px;
	padding: 30px;
}

#navi .menu .submenu li {
	width: 100%;
	padding-bottom: 0;
	border-bottom: none;
}

#navi .menu .submenu a {
	display: flex;
	gap: 20px;
	width: 100%;
}

#navi .menu .submenu img {
	width: 30%;
}

#navi .menu .submenu .sub-caption {
	width: 70%;
}

#navi .menu .submenu p {
	padding: 0;
	font-size: var(--font-size_s);
	font-weight: var(--font-weight_l);
	line-height: 1.2em;
}

#navi .menu .sub-toggle {
	position: absolute;
	top: 17px;
	right: 40px;
}

#navi .menu .sub-toggle span {
	background-color: var(--color_00);
	height: 2px;
	position: absolute;
	transition: 0.6s ease-out;
	width: 15px;
}

#navi .menu .sub-toggle span:nth-child(1) {}

#navi .menu .sub-toggle span:nth-child(2) {
	transform: rotate(90deg);
}

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

	#navi {
		padding: 50px 25px;
	}

	#navi .navi-pack {}

	#navi .navi-left {
		display: none;
	}

	#navi .navi-left,
	#navi .navi-right {
		width: 100%;
	}

	#navi .contents-list {
		width: calc((100% - 25px) / 2);
	}

	#navi .menu ul {
		gap: 10px;
		margin: 0;
	}

	#navi .menu li {
		cursor: pointer;
		position: relative;
		text-align: left;
		width: 100%;
	}

	#navi .menu .nav-item {
		max-width: 100%;
	}

	#navi .menu .nav-item p {
		font-size: var(--font-size_mm);
	}

	#navi .menu .submenu p {
		font-size: var(--font-size_ss);
	}

	#navi .menu .sub-toggle {
		top: 13px;
	}
}

/*------------------------------------
ハンバーガーボタン
------------------------------------*/
.hamburger {
	cursor: pointer;
	width: 60px;
	height: 60px;
	position: fixed;
	top: 15px;
	right: 30px;
	z-index: 101;
	pointer-events: painted;
}

.hamburger span {
	background: var(--color_01);
	height: 2px;
	left: 17px;
	border-radius: var(--radius_10);
	position: absolute;
	width: 26px;
	transition: top 0.3s ease-in-out, transform 0.3s ease-in-out 0.25s, opacity 0.3s ease-in-out 0.25s, width 0.3s ease-in-out 0.25s;
}

.hamburger span:nth-child(1) {
	top: 18px;
}

.hamburger span:nth-child(2) {
	top: 26px;
}

.hamburger span:nth-child(3) {
	top: 34px;
}

/*メニューオープン時*/
.nav_open #navi {
	right: 0;
	opacity: 1;
	pointer-events: all;
}

.nav_open .hamburger span {
	top: 26px;
	background: var(--color_01);
}

.nav_open .hamburger span:nth-child(1) {
	transform: rotate(45deg);
}

.nav_open .hamburger span:nth-child(2) {
	opacity: 0;
	width: 0;
}

.nav_open .hamburger span:nth-child(3) {
	transform: rotate(-45deg);
}

.nav_open .overlay {
	opacity: 0.8;
	visibility: visible;
	z-index: 99;
}

/*クローズボタン*/
.navi-close {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color_00);
}

.navi-close i {
	padding-right: 10px;
}

@media screen and (max-width: 699px) {
	.hamburger {
		position: fixed;
		top: 5px;
		right: 0;
	}

	.hamburger p {
		font-size: var(--font-size_ss);
	}
}

/*------------------------------------
スマホナビ展開時の背景
------------------------------------*/
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	background: var(--color_00);
	cursor: pointer;
	transition: var(--ease_1);
	visibility: hidden;
	z-index: 10;
}

/*------------------------------------
PCナビ
------------------------------------*/
#navi-pc {
	position: fixed;
	top: 0;
	right: 40px;
	width: 100%;
	z-index: 5;
	pointer-events: none;
}

/*白背景*/
#navi-pc .bg {
	position: fixed;
	top: -100px;
	right: 0;
	width: 930px;
	height: 70px;
	background: var(--color_f);
	border-radius: 0 0 0 20px;
	box-shadow: 0px 3px 5px #00000011;
	opacity: 0;
	z-index: 0;
}

#navi-pc ul {
	position: relative;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	list-style-type: none;
	padding-right: 80px;
}

#navi-pc li {
	padding: 25px 0px;
	position: relative;
	pointer-events: all;
}

#navi-pc li a {
	padding: 25px 20px;
	text-decoration: none;
	font-size: var(--font-size_sss);
	color: var(--color_01);
	position: relative;
	transition: var(--ease_2);
}

#navi-pc li a:hover {
	color: var(--color_07);
}

#navi-pc li i {
	margin-left: 10px;
	color: var(--color_01);
	transition: var(--ease_2);
}

#navi-pc .contact a,
#navi-pc .store a {
	padding: 10px 25px;
	border: solid 1px var(--color_01);
	border-radius: var(--radius_5);
}

#navi-pc .contact a {}

#navi-pc .contact i {}

#navi-pc .store a {
	color: var(--color_01);
}

#navi-pc .has-submenu>a::after {
	display: none;
}

#navi-pc .submenu {
	display: none;
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	list-style-type: none;
	padding: 5px 0 25px 0;
	margin: 0;
	overflow: hidden;
	background: var(--color_f);
}

#navi-pc .submenu li {
	margin: 0;
	padding: 5px 10px;
}

#navi-pc .submenu li a {
	padding: 10px;
	margin: auto 20px;
	font-size: var(--font-size_sss);
	white-space: nowrap;
	text-decoration: none;
	color: var(--color_01);
}

#navi-pc .submenu li a::after {
	bottom: -5px !important;
}

#navi-pc .submenu li a:hover {
	color: var(--color_07);
}

#navi-pc .nav-item:hover .submenu {
	display: block;
	max-height: 500px;
	transition: var(--ease_1);
}

@media screen and (max-width: 699px) {
	#navi-pc ul {
		display: none;
	}
}

/*------------------------------------
フロート問い合わせボタン(SP)
------------------------------------*/
#contact-btn {
	display: none;
	justify-content: center;
	width: 100%;
	position: fixed;
	bottom: -100px;
	right: 0;
	opacity: 0;
	z-index: 50;
}

#contact-btn a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 50px;
	text-align: center;
	padding: 8px 0px;
	color: var(--color_f);
	background: var(--color_f);
	cursor: pointer;
}

#contact-btn .mail {
	width: calc((100% - 65px) / 3);
	background: var(--color_2);
}

#contact-btn .instagram {
	width: calc((100% - 65px) / 3);
	background-image: linear-gradient(to right, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,59,1) 100%);
}

#contact-btn .line {
	width: calc((100% - 65px) / 3);
	background: var(--color_line);
}

#contact-btn .top {
	width: 65px;
	background: var(--color_00);
}

#contact-btn i {
	font-size: 20px;
	color: var(--color_f);
}

#contact-btn img {
	width: 22px;
}

#contact-btn p {
	width: 100%;
	margin-top: 3px;
	font-family: var(--font-family_3);
	font-size: var(--font-size_sss);
	color: var(--color_f);
	font-weight: var(--font-weight_m);
	letter-spacing: 0.05em;
	line-height: 1em;
}

@media screen and (max-width: 699px) {
	#contact-btn {
		display: flex;
	}
}

/*------------------------------------
フロート問い合わせボタン(PC)
------------------------------------*/
#contact-pc {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 100;
}

#contact-pc a {
	display: flex;
	align-items: center;
	width: 200px;
	padding: 10px 15px;
	color: var(--color_01);
}

#contact-pc a:nth-child(1) {
	background: var(--color_09);
}

#contact-pc a:nth-child(2) {
	background: var(--color_08);
}

#contact-pc i,
#contact-pc img {
	width: 25px;
	height: 25px;
	margin-right: 10px;
	font-size: 25px;
}

#contact-pc img {
	width: 25px;
	height: 25px;
	margin-right: 10px;
}

#contact-pc p {}

/*------------------------------------
トップページ・オープニングアニメーション
------------------------------------*/
#opening {
	position: fixed;
	inset: 0;
	background: var(--color_f);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	pointer-events: auto;
	/* 初期状態は有効 */
}

#opening.is-hidden {
	opacity: 0;
	pointer-events: none;
	/* 消えたらクリックを透過 */
	transition: opacity 1s ease;
}

.logo {
	width: 150px;
	opacity: 0;
}

@media screen and (max-width: 699px) {
	.logo {
		width: 100px;
	}
}


/*------------------------------------
トップページ・mainvisual
------------------------------------*/
#mainvisual {
	position: relative;
	overflow: hidden;
	height: 100vh;
}

#mainvisual .swiper1 {
	position: relative;
	width: 100vw;
	height: calc(100vh - 180px);
	margin-top: 90px;
	z-index: -1;
}

#mainvisual .swiper1 .swiper-slide {}

#mainvisual .swiper1 .swiper-slide img {
	width: 100%;
	height: 100%;
	transform: scale(1.1);
	transition: transform 8s linear;
}

#mainvisual .swiper1 .swiper-slide-active img {
	transform: scale(1.0);
}

#mainvisual .mv-pack {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	z-index: 2;
}

#mainvisual .mv-copy {
	text-align: center;

}

#mainvisual .mv-copy h2 {
	font-size: var(--font-size_l);
	color: var(--color_f);
	text-shadow: var(--shadow_3);
}

#mainvisual .mv-copy p {
	font-size: var(--font-size_s);
	color: var(--color_f);
	text-shadow: var(--shadow_3);
}

@media screen and (max-width: 699px) {
	#mainvisual {
		height: 350px;
		margin-top: 70px;
	}

	#mainvisual .swiper1 {
		height: 100%;
		margin-top: 0px;
	}

	#mainvisual .mv-copy {
		text-align: center;
	}

	#mainvisual .mv-copy h2 {
		font-size: var(--font-size_m);
	}

	#mainvisual .mv-copy p {
		font-size: var(--font-size_sss);
	}
}

/*------------------------------------
トップページ・greeting
------------------------------------*/
#greeting {
	overflow-x: hidden;
}

#greeting .grid-pack {
	grid-auto-rows: 100px;
	gap: 150px 100px;
}

#greeting .grid-item {}

#greeting .grid-item img {}

#greeting .grid-item:nth-child(1) {
	grid-column: 1 / span 3;
	grid-row: 1 / span 3;
}

#greeting .grid-item:nth-child(2) {
	grid-column: 4 / span 5;
	grid-row: 1 / span 3;
}

#greeting .grid-item:nth-child(3) {
	grid-column: 1 / span 3;
	grid-row: 4 / span 2;
}

#greeting .grid-item:nth-child(4) {
	grid-column: 4 / span 5;
	grid-row: 3 / span 4;
}

#greeting .grid-item:nth-child(5) {
	grid-column: 3 / span 6;
	grid-row: 6 / span 2;
}

#greeting .grid-item-inner h2 {
	position: relative;
	display: inline-block;
	font-size: var(--font-size_ll);
	background: var(--color_f);
	z-index: 1;
}

#greeting .grid-item-inner h2::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -225px;
	width: 200px;
	height: 1px;
	background: var(--color_03);
	z-index: -1;
}

#greeting .grid-item-inner p {
	margin-top: 25px;
	line-height: 2.5em;
}

#greeting .grid-item-inner .btn_4 {
	margin-top: 50px;
}

#greeting .swiper2 {
	height: 100%;
}

#greeting .swiper2 .swiper-wrapper {}

#greeting .swiper2 .swiper-slide {}

#greeting .swiper2 .swiper-slide img {
	height: 100%;
}

@media screen and (max-width: 699px) {
	#greeting {}

	#greeting .grid-pack {
		gap: 50px;
	}

	#greeting .grid-item:nth-child(1) {}

	#greeting .grid-item:nth-child(2),
	#greeting .grid-item:nth-child(3),
	#greeting .grid-item:nth-child(5) {
		height: 250px;
		padding: 0;
	}

	#greeting .grid-item img {
		width: 100%;
		height: 100%;
	}

	#greeting .grid-item-inner h2 {
		font-size: var(--font-size_ll);
	}

	#greeting .grid-item-inner h2::after {
		top: 50%;
		right: -325px;
		width: 300px;
	}

	#greeting .grid-item-inner p {
		margin-top: 25px;
	}
}

/*------------------------------------
トップページ・updates
------------------------------------*/
#updates {
	padding-bottom: 200px;
}

#updates .flex-pack {
	justify-content: flex-start;
	gap: 0;
}

#updates .flex-item {}

#updates .flex-item:nth-child(1) {
	width: 40%;
}

#updates .flex-item:nth-child(2) {
	width: 60%;
}

#updates .flex-item:nth-child(2) .post-pack {
	flex-wrap: wrap;
	gap: 80px;
}

#updates .flex-item:nth-child(2) .post-item {
	position: relative;
	justify-content: flex-start;
	gap: 50px;
	width: 100%;
}

#updates .flex-item:nth-child(2) .post-item::before,
#updates .flex-item:nth-child(2) .post-item:nth-last-child(1)::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--color_01);
}

#updates .flex-item:nth-child(2) .post-item::before {
	top: -40px;
}

#updates .flex-item:nth-child(2) .post-item:nth-last-child(1)::after {
	bottom: -40px;
}

#updates .flex-item:nth-child(2) .btn_1 {
	margin-top: 75px;
}

@media screen and (max-width: 699px) {
	#updates {
		padding-bottom: 100px;
	}

	#updates .flex-pack {
		flex-wrap: wrap;
		gap: 50px;
	}

	#updates .flex-item:nth-child(1) {
		width: 100%;
	}

	#updates .flex-item:nth-child(2) {
		width: 100%;
	}

	#updates .flex-item:nth-child(2) .post-pack {
		flex-wrap: wrap;
		gap: 50px;
	}

	#updates .flex-item:nth-child(2) .post-item {
		gap: 50px;
	}

	#updates .flex-item:nth-child(2) .post-item::before {
		top: -25px;
	}

	#updates .flex-item:nth-child(2) .post-item:nth-last-child(1)::after {
		bottom: -25px;
	}
}

/*------------------------------------
post-grid
------------------------------------*/
#post-grid::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background-image: linear-gradient(0deg, var(--color_f), var(--color_09));
	z-index: -1;
}

.post-grid-grid {
	display: flex;
	flex-wrap: wrap;
}

.grid-sizer,
.post-grid-item {
	width: 25%;
	box-sizing: border-box;
}

.post-grid-item {
	position: relative;
	padding: 15px;
	transition: all 0.3s ease;
}

.post-grid-item a {}

.post-grid-item img {
	border-radius: var(--radius_1);
	transition: var(--ease_1);
}

.post-grid-item a:hover img {
	filter: brightness(0.3);
}

.post-grid-item p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: var(--font-size_ss);
	opacity: 0;
	transition: var(--ease_2);
}

.post-grid-item a:hover p {
	color: var(--color_f);
	opacity: 1;
}

@media screen and (max-width: 699px) {
	.post-grid-grid {
		padding: 0;
	}

	.grid-sizer,
	.post-grid-item {
		width: 50%;
		padding: 5px;
	}

	.post-grid-item {}
}

/*------------------------------------
トップページ・order・access
------------------------------------*/
#order,
#access {
	padding-bottom: 250px;
}

#order .order-pack,
#access .access-pack {}

#order .grid-item,
#access .grid-item {}

#order .grid-item img,
#access .grid-item img {}

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

	#order,
	#access {
		padding-bottom: 100px;
	}
}

/*orderレイアウト*/
#order {
	background: var(--color_09);
}

#order .grid-item:nth-child(1) {
	grid-column: 4 / span 3;
	grid-row: 1 / span 3;
}

#order .grid-item:nth-child(2) {
	grid-column: 1 / span 3;
	grid-row: 1 / span 5;
}

#order .grid-item:nth-child(3) {
	grid-column: 5 / span 2;
	grid-row: 4 / span 3;
}

#order .grid-item:nth-child(4) {
	grid-column: 1 / span 4;
	grid-row: 5 / span 3;

}

#order .grid-item:nth-child(5) {
	grid-column: 1 / span 6;
	grid-row: 8 / span 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#order .grid-item-inner p {
	line-height: 2.5em;
}

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

	#order .grid-item:nth-child(1),
	#order .grid-item:nth-child(3),
	#order .grid-item:nth-child(4) {
		height: 250px;
	}
}

/*オーダーメイドの流れ*/
.order-flow {
	width: 100%;
	max-width: 1100px;
	margin: auto;
}

.order-flow .flex-pack {
	position: relative;
	gap: 25px;
}

.order-flow .flex-pack::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 2px;
	background-image: linear-gradient(-90deg, var(--color_01), var(--color_08));
}

.order-flow .flex-item {
	position: relative;
	width: calc((100% - 100px) / 5);
	aspect-ratio: 1 / 1;
	padding: 35px 0;
	text-align: center;
	border-radius: var(--radius_1);
}

.order-flow .flex-item:nth-child(1) {
	border-color: var(--color_05);
}

.order-flow .flex-item:nth-child(2) {
	border-color: var(--color_04);
}

.order-flow .flex-item:nth-child(3) {
	border-color: var(--color_03);
}

.order-flow .flex-item:nth-child(4) {
	border-color: var(--color_02);
}

.order-flow .flex-item:nth-child(5) {
	border-color: var(--color_01);
}

.order-flow .flex-item img {
	width: 55px;
	height: 55px;
	margin: auto;
}

.order-flow .number {
	margin-top: 10px;
	font-size: var(--font-size_sss);
	color: var(--color_03);
}

.order-flow .flex-item p {
	font-size: var(--font-size_mm);
	line-height: 1em;
}

@media screen and (max-width: 699px) {
	.order-flow .flex-pack::before {
		display: none;
	}

	.order-flow .flex-item {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 25px;
		width: 100%;
		height: auto;
		aspect-ratio: auto;
		padding: 10px 0 10px 25px;
		border-radius: var(--radius_1);
	}

	.order-flow .flex-item::before {
		content: '';
		position: absolute;
		bottom: -15px;
		left: 50%;
		transform: translateX(-50%);
		width: 35px;
		height: 20px;
		background: var(--color_01);
		clip-path: polygon(0 0, 100% 0, 50% 100%);
	}

	.order-flow .flex-item:nth-child(1)::before {
		background: var(--color_05);
	}

	.order-flow .flex-item:nth-child(2)::before {
		background: var(--color_04);
	}

	.order-flow .flex-item:nth-child(3)::before {
		background: var(--color_03);
	}

	.order-flow .flex-item:nth-child(4)::before {
		background: var(--color_02);
	}

	.order-flow .flex-item:nth-last-child(1)::before {
		display: none;
	}

	.order-flow .flex-item img {
		width: 55px;
		height: 55px;
		margin: 0;
	}

	.order-flow .number {
		margin-top: 0px;
	}

	.order-flow .flex-item p {}
}

/*accessタイトル*/
#access .access-title {
	overflow: hidden;
	position: relative;
	height: 600px;
	margin-bottom: 100px;
}

#access .access-title img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: visible;
}

#access .access-title .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

#access .access-title .inner h2 {
	color: var(--color_f);
	text-shadow: var(--shadow_1);
	line-height: 1.3em;
}

#access .access-title .inner p {
	margin-top: 10px;
	color: var(--color_f);
	text-shadow: var(--shadow_2);
}

@media screen and (max-width: 699px) {
	#access .access-title {
		height: 400px;
	}

	#access .access-title .inner h2 {
		color: var(--color_f);
		text-shadow: var(--shadow_1);
	}

	#access .access-title .inner p {
		margin-top: 10px;
		color: var(--color_f);
		text-shadow: var(--shadow_2);
	}
}

/*accessレイアウト*/
#access .grid-item:nth-child(1) {
	grid-column: 1 / span 3;
	grid-row: 2 / span 3;
}

#access .grid-item:nth-child(1) iframe {
	width: 100%;
	height: 100%;
}

#access .grid-item:nth-child(2) {
	grid-column: 4 / span 3;
	grid-row: 1 / span 6;
}

#access .grid-item:nth-child(3) {
	grid-column: 1 / span 3;
	grid-row: 6 / span 3;
	padding-right: 150px;
}

#access .grid-item:nth-child(4) {
	grid-column: 4 / span 3;
	grid-row: 7 / span 4;
}

#access .grid-item:nth-child(4) p {
	margin-top: 15px;
}

#access .grid-item:nth-child(5) {
	grid-column: 1 / span 3;
	grid-row: 9 / span 5;
	padding: 50px;
}

#access .grid-item:nth-child(5) img {
}

#access .grid-item:nth-child(6) {
	grid-column: 4 / span 3;
	grid-row: 11 / span 4;
	padding-left: 150px;
}

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

	#access .grid-item:nth-child(1),
	#access .grid-item:nth-child(2),
	#access .grid-item:nth-child(3),
	#access .grid-item:nth-child(6) {
		height: 250px;
		padding: 0;
	}

	#access .grid-item:nth-child(5){
		aspect-ratio: 1 / 1;
		padding: 0;
	}
}

/*------------------------------------
トップページ・instagram
------------------------------------*/
#instagram {
	background: var(--color_09);
}

#instagram .swiper4 {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

#instagram .swiper-slide {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}

#instagram .swiper-slide:hover img,
#instagram .swiper-slide:hover video {
	filter: brightness(0.5);
}

#instagram .swiper-slide img,
#instagram .swiper-slide video {
	width: 100%;
	height: 350px;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

#instagram .swiper-slide .instagram-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2rem;
	color: rgba(255, 255, 255, 0);
	transition: color 0.3s ease-in-out;
	pointer-events: none;
}

#instagram .swiper-slide:hover .instagram-icon {
	color: var(--color_f);
}

.instagram-posts {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.swiper4 .swiper-button-prev,
.swiper4 .swiper-button-next {
	width: 60px;
	height: 60px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	justify-content: center;
	align-items: center;
}

.swiper4 .swiper-button-prev::after,
.swiper4 .swiper-button-next::after {
	content: "";
	width: 12px;
	height: 12px;
	border: solid var(--color_f);
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
}

.swiper4 .swiper-button-prev::after {
	transform: rotate(135deg) translate(-0.5px, -0.5px);
}

.swiper4 .swiper-button-next::after {
	transform: rotate(-45deg) translate(-0.5px, -0.5px);
}

.swiper4 .swiper-pagination {}

.swiper4 .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 2px;
}

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

	.swiper4 .swiper-button-prev,
	.swiper4 .swiper-button-next {
		width: 30px;
		height: 30px;
	}

	.swiper4 .swiper-button-prev::after,
	.swiper4 .swiper-button-next::after {
		width: 6px;
		height: 6px;
	}
}

/*------------------------------------
下層ページ・メインビジュアル
------------------------------------*/
#subvisual_1 {
	position: relative;
	height: 100vh;
	max-height: 800px;
	overflow: hidden;
	z-index: -10;
}

#subvisual_1 .wrapper-wide {
	position: relative;
	width: 35%;
	height: 100%;
}

#subvisual_1 .sv-caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#subvisual_1 .sv-caption .inner h1 {
	font-size: 50px;
	color: var(--color_01);
	line-height: 1em;
}

#subvisual_1 .sv-caption .inner p {
	margin-top: 30px;
	font-size: var(--font-size_s);
	color: var(--color_01);
}

#subvisual_1 .sv-image {
	width: 65%;
	height: 100%;
	margin: auto 0 auto auto;
	overflow: hidden;
}

#subvisual_1 .sv-image img {
	height: calc(100% - 180px);
	margin-top: 90px;
}

@media screen and (max-width: 699px) {
	#subvisual_1 {
		flex-wrap: wrap-reverse;
		margin-top: 70px;
		height: 350px;
	}

	#subvisual_1 .wrapper-wide {
		position: relative;
		width: 100%;
		height: 150px;
	}

	#subvisual_1 .sv-caption {
		position: relative;
	}

	#subvisual_1 .sv-caption .inner h1 {
		font-size: 30px;
	}

	#subvisual_1 .sv-caption .inner p {
		margin-top: 15px;
		font-size: var(--font-size_ss);
	}

	#subvisual_1 .sv-image {
		width: 100%;
		height: 250px;
	}

	#subvisual_1 .sv-image img {
		height: 100%;
		margin-top: 0;
	}
}

#subvisual_2 {}

/*------------------------------------
下層ページ・about
------------------------------------*/
#about {}

/*orderレイアウト*/
#about .grid-item:nth-child(1) {
	grid-column: 4 / span 3;
	grid-row: 1 / span 3;
}

#about .grid-item:nth-child(2) {
	grid-column: 1 / span 3;
	grid-row: 1 / span 5;
}

#about .grid-item:nth-child(3) {
	grid-column: 1 / span 3;
	grid-row: 7 / span 4;
}

#about .grid-item:nth-child(4) {
	grid-column: 4 / span 3;
	grid-row: 4 / span 3;
}

#about .grid-item:nth-child(5) {
	grid-column: 5 / span 2;
	grid-row: 9 / span 4;
}

#about .grid-item:nth-child(6) {
	grid-column: 2 / span 3;
	grid-row: 11 / span 4;
}

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

	#about .grid-item:nth-child(1),
	#about .grid-item:nth-child(3),
	#about .grid-item:nth-child(5) {
		height: 250px;
	}
}

#about-info {
	background: var(--color_09);
}

#about-info .block-pack {
	max-width: 600px;
}

#about-info .table_2 .cell:nth-child(1) {
	width: 30%;
}

/*------------------------------------
下層ページ・quality
------------------------------------*/
#quality {}

#quality .image-box_1 {
	height: 500px;
}

#quality .image-box_1 img {
	height: 100%;
}

.woodtype {}

.woodtype .flex-pack {
	flex-wrap: wrap;
	gap: 100px;
}

.woodtype .flex-item {
	gap: 25px;
	width: 100%;
}

.woodtype .flex-item .left {
	width: calc(70% - 12.5px);
}

.woodtype .flex-item .left h3 {
	margin-bottom: 20px;
}

.woodtype .flex-item .left p {
	font-size: var(--font-size_ss);
}

.woodtype .flex-item .right {
	width: calc(30% - 12.5px);
}

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

	#quality .image-box_1 {
		height: 300px;
	}

	.woodtype .flex-item {
		flex-wrap: wrap-reverse;
	}

	.woodtype .flex-item .left {
		width: 100%;
	}

	.woodtype .flex-item .right {
		width: 50%;
	}
}


/*------------------------------------
下層ページ・ordermade
------------------------------------*/
/*ordermade*/
#ordermade-intro {}

#ordermade-intro .grid-item:nth-child(1) {
	grid-column: 4 / span 3;
	grid-row: 1 / span 3;
}

#ordermade-intro .grid-item:nth-child(2) {
	grid-column: 1 / span 3;
	grid-row: 1 / span 5;
}

#ordermade-intro .grid-item:nth-child(3) {
	grid-column: 5 / span 2;
	grid-row: 4 / span 3;
}

#ordermade-intro .grid-item:nth-child(4) {
	grid-column: 1 / span 4;
	grid-row: 5 / span 3;
}

#ordermade-intro .grid-item-inner p {
	line-height: 2.5em;
}

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

	#ordermade-intro .grid-item:nth-child(1),
	#ordermade-intro .grid-item:nth-child(3),
	#ordermade-intro .grid-item:nth-child(4) {
		height: 250px;
	}

	#ordermade-intro .grid-item-inner p {}
}

/*ordermade-detail*/
#ordermade-detail {}

#ordermade-detail .flex-pack {
	position: relative;
	flex-wrap: wrap;
	gap: 100px;
}

#ordermade-detail .flex-pack::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 45px;
	transform: translate(0%, -50%);
	width: 2px;
	height: calc(100% - 500px);
	background-image: linear-gradient(0deg, var(--color_01), var(--color_08));
}

#ordermade-detail .flex-item {
	gap: 50px;
	width: 100%;
	padding: 50px;
}

#ordermade-detail .flex-item .left {
	width: calc(60% - 25px);
}

#ordermade-detail .flex-item .right {
	width: calc(40% - 25px);
}

#ordermade-detail .flex-item .right img {
	height: 250px;
}

#ordermade-detail .note h4 {
	font-size: var(--font-size_ss);
}

#ordermade-detail .deliverydate {
	margin: 5px auto;
}

#ordermade-detail .deliverydate p:nth-child(1) {
	padding-bottom: 10px;
}

@media screen and (max-width: 699px) {
	#ordermade-detail .flex-pack {
		gap: 50px;
	}

	#ordermade-detail .flex-item {
		flex-wrap: wrap-reverse;
		gap: 25px;
		padding: 50px 25px;
	}

	#ordermade-detail .flex-item .left {
		width: 100%;
	}

	#ordermade-detail .flex-item .left .btn-pack {
		flex-wrap: wrap;
		gap: 15px;
		margin-top: 25px;
	}

	#ordermade-detail .flex-item .left .btn-pack .btn_5 {
		margin-top: 0;
	}

	#ordermade-detail .flex-item .right {
		width: 100%;
	}

	#ordermade-detail .flex-item .right img {
		height: 200px;
	}
}

/*------------------------------------
下層ページ・Q&A
------------------------------------*/
#faq {}

#faq .wrapper {
	margin-bottom: 100px;
}

/*------------------------------------
下層ページ・contact
------------------------------------*/
#sub-contact {
	background: var(--color_09);
}

/*------------------------------------
下層ページ・policy
------------------------------------*/
#sub-policy {}

#sub-policy .policy-pack {}

#sub-policy .policy-header {}

#sub-policy .policy-header h2 {}

#sub-policy .policy-item {}

#sub-policy .policy-item h3 {}

#sub-policy .policy-header p,
#sub-policy .policy-item p {
	margin: 15px auto 50px auto;
}

/*------------------------------------
下層ページ・投稿一覧・news
------------------------------------*/
#post-news {}

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

/*------------------------------------
下層ページ・投稿一覧・works
------------------------------------*/
#post-works {}

#post-works .flex-pack {
	flex-wrap: wrap;
	align-items: flex-start;
}

#post-works .flex-item {
	gap: 50px;
	width: 100%;
}

#post-works .flex-item .image {
	width: calc((100% - 50px) / 2);
	height: 300px;
}

#post-works .flex-item .image img {
	width: 100%;
	height: 100%;
	transition: var(--ease_1);
}

#post-works .flex-item .caption {
	width: calc((100% - 50px) / 2);
}

#post-works .flex-item .caption .flex {
	justify-content: flex-start;
	gap: 10px;
}

#post-works .flex-item .caption .date {
	font-size: var(--font-size_sss);
}

#post-works .flex-item .caption .category {
	padding: 3px 10px;
	font-size: var(--font-size_sss);
	background: var(--color_09);
}

#post-works .flex-item .title {
	font-size: var(--font-size_s);
}

#post-works .flex-item .text {
	font-size: var(--font-size_ss);
}

@media screen and (max-width: 699px) {
	#post-works .flex-item {
		flex-wrap: wrap;
		gap: 10px;
	}

	#post-works .flex-item .image {
		width: 100%;
		height: 200px;
	}

	#post-works .flex-item .caption {
		width: 100%;
	}
}

/*------------------------------------
下層ページ・投稿一覧・products
------------------------------------*/
#post-products {}

#post-products .post-products-container {
	align-items: flex-start;
	gap: 50px;
}

#post-products .post-products-pack {
	width: 100%;
}

#post-products .products-list {
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 50px;
}

#post-products .products-list .products-list-item {
	width: calc((100% - 100px) / 3);
	height: auto;
}

#post-products .products-list-item a {
	display: block;
	width: 100%;
}

#post-products .products-list-item a:hover {}

#post-products .products-list-item .image {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
}

#post-products .products-list-item .image img {
	width: 100%;
	height: 100%;
	transition: var(--ease_1);
}

#post-products .products-list-item a:hover .image img {
	filter: brightness(0.5);
}

#post-products .products-list-item .more {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--color_f);
	transition: var(--ease_1);
	opacity: 0;
}

#post-products .products-list-item a:hover .more {
	opacity: 1;
}

#post-products .products-list-item .caption {
	width: 100%;
	margin-top: 10px;
}

#post-products .products-list-item .caption .title {
	font-size: var(--font-size_sss);
	line-height: 1.8em;
}

#post-products .products-list-item .caption .category {
	font-size: var(--font-size_sss);
}

#post-products .products-list-item .caption .price-wrap {
	font-size: var(--font-size_ss);
	font-weight: var(--font-weight_ll);
}

#post-products .products-list-item .caption .size-wrap {
	font-size: var(--font-size_sss);
	white-space: nowrap;
}

@media screen and (max-width: 699px) {
	#post-products .products-list {
		gap: 25px;
	}

	#post-products .products-list .products-list-item {
		width: calc((100% - 50px) / 2);
	}
}

/*フィルター機能*/
/* 共通デザイン */
.category-header {
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.category-header p {
	font-weight: var(--font-weight_ll);
}

.cat-filter {
	width: 100%;
	padding: 3px 7px;
	text-align: left;
	font-size: var(--font-size_sss);
	border: none;
	background: transparent;
	cursor: pointer;
}

.cat-filter.active {
	background-color: var(--color_01);
	color: var(--color_f);
}

/* PC表示（従来通りサイドバー固定） */
@media (min-width: 769px) {
	.category-filter {
		display: block;
		position: sticky;
		top: 0;
		width: 20%;
		background: none;
		box-shadow: none;
		height: auto;
	}

	.filter-toggle,
	.filter-close,
	.filter-overlay {
		display: none;
	}
}

/* スマホ表示（スライドイン） */
@media (max-width: 768px) {
	.filter-toggle {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 6px;
		/* アイコンと文字の間隔 */
		position: fixed;
		bottom: 65px;
		left: 15px;
		z-index: 98;
		background: var(--color_01);
		color: var(--color_f);
		border: none;
		padding: 10px 15px;
		border-radius: 25px;
		font-size: var(--font-size_s);
		font-weight: 600;
		cursor: pointer;
		box-shadow: var(--shadow_1);
	}

	.filter-toggle .filter-icon {
		font-size: 1.1em;
		color: var(--color_f);
	}

	.filter-toggle .filter-text {}

	.category-filter {
		display: block;
		position: fixed;
		top: 0;
		left: -100%;
		/* ← 右ではなく左に隠す */
		width: 65%;
		height: 100%;
		background: var(--color_f);
		box-shadow: var(--shadow_1);
		transition: left 0.4s ease-out;
		z-index: 98;
		padding: 20px;
		overflow-y: auto;
	}

	.category-filter.open {
		left: 0;
		/* ← 出現も左 */
	}

	.filter-close {
		background: none;
		border: none;
		font-size: 1.5rem;
		cursor: pointer;
		color: var(--color_01);
	}

	.filter-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 97;
	}

	.filter-overlay.show {
		display: block;
	}
}


/*投稿一覧・ページネーション*/
.pagination {
	text-align: center;
	margin-top: 40px;
}

.pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	list-style: none;
}

.pagination li {
	width: 45px;
	height: 45px;
	color: var(--color_01);
	background: var(--color_09);
}

.pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transition: var(--ease_1);
}

.pagination .current {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--color_f);
	background: var(--color_01);
}

.pagination li a:hover {
	color: var(--color_f);
	background: var(--color_01);
}

/*------------------------------------
投稿ページ用(works)
------------------------------------*/
#postvisual-works {}

#postvisual-works .flex-pack {
	position: relative;
	flex-wrap: wrap;
	gap: 0;
	padding-top: 90px;
}

#postvisual-works .flex-item {}

#postvisual-works .flex-item:nth-child(1) {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
}

#postvisual-works .flex-item:nth-child(1) .inner {}

#postvisual-works .flex-item:nth-child(1) .title {
	font-size: var(--font-size_ll);
	white-space: nowrap;
}

#postvisual-works .flex-item:nth-child(1) p {
	margin-bottom: 10px;
}

#postvisual-works .flex-item:nth-child(2) {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	height: 500px;
}

#postvisual-works .flex-item:nth-child(2) img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 699px) {
	#postvisual-works {}

	#postvisual-works .flex-pack {
		flex-wrap: wrap-reverse;
		gap: 50px;
		padding-top: 70px;
	}

	#postvisual-works .flex-item:nth-child(1) {
		width: 100%;
	}

	#postvisual-works .flex-item:nth-child(1) .title {
		font-size: var(--font-size_l);
	}

	#postvisual-works .flex-item:nth-child(2) {
		height: 250px;
	}
}

/*------------------------------------
投稿ページ用(商品紹介)
------------------------------------*/
.wp-block-columns.is-layout-flex {
	gap: 0px !important;
}

/*------------------------------------
投稿ページ・メインコンテンツ
------------------------------------*/
#post {}

#post .post-header {
	margin-bottom: 50px;
}

#post .post-header .flex {
	justify-content: flex-start;
	gap: 10px;
}

#post .post-header .flex .date {}

#post .post-header .flex .category {
	padding: 3px 10px;
	font-size: var(--font-size_sss);
	background: var(--color_09);
}

#post .post-header .title {
	margin-top: 25px;
}

#post .post-container {}

#post .post-content {}

@media screen and (max-width: 699px) {
	#post {}

	#post .post-header {
		margin-bottom: 25px;
	}

	#post .post-header .title {
		margin-top: 25px;
		font-size: var(--font-size_l);
	}
}

/*------------------------------------
投稿ページ・前のページ・次のページ
------------------------------------*/
#post-navigation {
	padding: 50px 0;
	background: var(--color_08);
}

#post-navigation .flex-pack {
	justify-content: center;
	gap: 40px;
}

#post-navigation .flex-item {
	text-align: center;
	width: calc((100% - 80px) / 3);
}


#post-navigation .flex-item a {
	font-size: var(--font-size_ss);
	text-decoration: underline;
}

#post-navigation .flex-item a:hover {
	text-decoration: underline;
	color: var(--color_03);
}

@media screen and (max-width: 699px) {
	#post-navigation .flex-pack {
		flex-wrap: nowrap;
		gap: 20px;
	}

	#post-navigation .flex-item {
		width: calc((100% - 40px) / 3);
	}

	#post-navigation .flex-item a {
		font-size: var(--font-size_sss);
	}
}

/*------------------------------------
WP新規作成ページ用テンプレート
------------------------------------*/
#page-header {}

#page-header h1 {}

#page-header p {
	margin-bottom: 20px;
}

#page-header ul {
	list-style: none;
}

#page-header a {
	display: inline-block;
	border-radius: var(--radius_5);
	font-size: var(--font-size_ss);
	color: var(--color_f);
	text-shadow: var(--shadow_1);
	background: var(--color_2);
	padding: 5px 10px;
}

#page-container {
	margin-bottom: 25px;
}

@media screen and (max-width: 699px) {
	#page .page-date {
		font-size: var(--font-size_ss);
	}

	#page .page-category {
		font-size: var(--font-size_ss);
	}

	#page .page-container h1 {
		font-size: var(--font-size_l);
	}

}

/*------------------------------------
共通パーツ・パンくずリスト
------------------------------------*/
.bread-pack {
	background-image: linear-gradient(90deg, var(--color_f), var(--color_09));
}

.breadcrumbs {
	padding: 10px 0;
	font-size: var(--font-size_ss);
	color: var(--color_03);
}

.breadcrumbs a {
	color: var(--color_03);
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

/*------------------------------------
共通パーツ・コンテンツリスト
------------------------------------*/
.contents-pack {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
}

.contents-pack a {}

.contents-list {
	width: calc((100% - 75px) / 4);
}

.contents-list h3 {
	font-size: var(--font-size_s);
	color: var(--color_3);
}

.contents-list ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.contents-list li {
	width: 100%;
	font-size: var(--font-size_sss);
	color: var(--color_01);
	line-height: 2.2em;
}

.contents-list a {
	text-decoration: underline var(--color_06);
	text-underline-offset: 5px;
}

@media screen and (max-width: 699px) {
	.contents-pack {
		gap: 10px;
	}

	.contents-pack a {}

	.contents-list {
		width: 100%;
	}
}

/*------------------------------------
共通パーツ・postslider
------------------------------------*/
#postslider {
	padding-top: 75px;
}

#postslider .swiper3 {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

#postslider .swiper-wrapper {}

#postslider .swiper-slide {
	width: 100%;
	margin-top: 10px;
}

#postslider .swiper-slide .image-link {
	width: 100%;
	height: 350px;
}

#postslider .swiper-slide img {
	height: 100%;
}

#postslider .swiper-slide .caption {
	margin-top: 5px;
	width: 100%;
}

#postslider .swiper-slide .caption .header {
	justify-content: flex-start;
	gap: 10px;
}

#postslider .swiper-slide .caption .header .date {
	font-size: var(--font-size_sss);
}

#postslider .swiper-slide .caption h3 {
	text-align: left;
	font-size: var(--font-size_ss);
	font-weight: var(--font-weight_s);
}

#postslider .swiper-slide .caption .cat {
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 5px;
}

#postslider .swiper-slide .cat a {
	padding: 5px 10px;
	font-family: var(--font-family_2);
	font-size: var(--font-size_sss);
	line-height: 1rem;
	letter-spacing: 0.05em;
	background: var(--color_09);
}

@media screen and (max-width: 699px) {
	#postslider .swiper-slide .image-link {
		height: 200px;
	}

	#postslider .swiper-slide img {
		height: 200px;
	}

	#postslider .swiper-slide .caption .cat {
		flex-wrap: wrap;
	}

	#postslider .swiper-slide .cat a {
		padding: 3px 5px;
		font-size: var(--font-size_sss);
		letter-spacing: 0em;
	}
}

/*------------------------------------
共通パーツ・最短納期
------------------------------------*/
.deliverydate {}

.deliverydate p {}

.deliverydate .date {
	font-size: var(--font-size_mm);
	color: var(--color_01);
}

.deliverydate .weekday {
	margin-left: 5px;
	font-size: var(--font-size_ss);
	color: var(--color_01);
}

/*------------------------------------
共通パーツ・フッター上のCTAバナーエリア
------------------------------------*/
#banner-area {}

#banner-area .flex-pack {}

#banner-area .flex-item {
	width: calc((100% - 100px) / 3);
	height: 250px;
}

#banner-area .flex-item a {
	position: relative;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: var(--ease_1);
	overflow: hidden;
}

#banner-area .flex-item a:hover {
	filter: brightness(1.3);
}

#banner-area .flex-item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	filter: brightness(0.7);
	transition: var(--ease_1);
}

#banner-area .flex-item a:hover img {
	transform: scale(1.1);
}

#banner-area .flex-item .inner {
	z-index: 1;
}

#banner-area .flex-item h3 {
	font-size: var(--font-size_l);
	color: var(--color_f);
}

#banner-area .flex-item p {
	font-size: var(--font-size_ss);
	color: var(--color_f);
}

@media screen and (max-width: 699px) {
	#banner-area {}

	#banner-area .flex-pack {
		gap: 15px;
	}

	#banner-area .flex-item {
		width: 100%;
		height: 100px;
	}

	#banner-area .flex-item h3 {
		font-size: var(--font-size_m);
	}

	#banner-area .flex-item p {
		font-size: var(--font-size_sss);
	}
}

/*------------------------------------
問い合わせフォーム
------------------------------------*/
.form-pack {
	padding: 100px 10px;
	background: var(--color_f);
	border: solid 2px var(--color_08);
}

.form-item {
	max-width: 800px;
	margin: auto;
}

#contactForm {
	width: 100%;
}

#contactForm .form-parts {
	margin-top: 25px;
}

#contactForm .form-parts input,
#contactForm .form-parts textarea {
	width: 100%;
	margin-bottom: 5px;
	padding: 5px 15px;
	background: var(--color_f);
	border-radius: var(--radius_1);
	box-shadow: inset 0px 0px 4px var(--color_bs);
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
	color: var(--color_05);
}

#contactForm .form-parts select {
	width: auto;
	padding: 5px;
	background: var(--color_f);
	box-shadow: inset 0px 0px 4px var(--color_bs);
}

#contactForm .value-radio {
	display: flex;
	flex-wrap: nowrap;
	gap: 25px;
}

#contactForm .value-radio label {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	font-size: var(--font-size_ss);
	white-space: nowrap;
}

#contactForm .value-radio input {
	margin-right: 5px;
	background: none;
	box-shadow: none;
}

#contactForm .attached-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	border: solid 1px var(--color_03);
}

#contactForm .custom-file-label {
	display: inline-block;
	padding: 7px 15px;
	background-image: linear-gradient(0deg, var(--color_03), var(--color_06));
	font-size: var(--font-size_ss);
	color: var(--color_f);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

#contactForm .custom-file-label input[type="file"] {
	display: block;
	position: absolute;
	inset: 0;
	left: 0;
	top: 0;
	opacity: 1;
	cursor: pointer;
	width: 100%;
	height: 100%;
	z-index: -1;
}

#contactForm .file-type {
	width: 100%;
}

#contactForm .file-name {
	margin-left: 10px;
	font-size: var(--font-size_ss);
	color: var(--color_03);
}

#contactForm .checkbox-area {
	margin-top: 10px;
}

#contactForm .checkbox-area a {
	text-decoration: underline;
	text-underline-offset: 5px;
}

#contactForm .checkbox-area input {
	box-shadow: none;
	width: auto;
	margin-right: 5px;
}

#contactForm .required-mark {
	color: var(--color_1);
	margin-left: 0.3em;
	font-size: 90%;
}

#contactForm .send {
	text-align: center;
}

#contactForm .send input {
	width: 250px;
	margin-top: 25px;
	padding: 10px 15px;
	background: var(--color_01);
	box-shadow: none;
	color: var(--color_f);
	border: solid 1px var(--color_01);
	transition: var(--ease_1);
}

#contactForm .send input:hover {
	color: var(--color_01);
	background: var(--color_f);
	box-shadow: none;
}

/*送信完了後*/
.thanks-message {}

.thanks-message h3 {}

.thanks-message p:nth-child(2) {
	margin-top: 25px;
}

.thanks-message p:nth-child(3) {
	color: var(--color_1);
}

/*------------------------------------
footer
------------------------------------*/
#footer {
	position: relative;
	background: var(--color_00);
	z-index: 1;
	padding-top: 100px;
}

#footer .flex-pack {
	padding: 50px 0 100px 0;
}

#footer .flex-item {}

#footer .flex-item:nth-child(1) {
	width: calc(30% - 25px);
}

#footer .flex-item:nth-child(1) .footer-logo {
	justify-content: flex-start;
}

#footer .flex-item:nth-child(1) .footer-logo img {
	width: 150px;
}

#footer .flex-item:nth-child(1) .icon-list {
	justify-content: flex-start;
	margin-top: 50px;
}

#footer .flex-item:nth-child(1) .icon-list i {
	color: var(--color_05);
}

#footer .flex-item:nth-child(1) .icon-list img {
	width: 30px;
}

#footer .flex-item:nth-child(2) {
	width: calc(70% - 25px);
}

#footer .contents-list h3 {
	color: var(--color_f);
}

#footer .contents-list li {
	color: var(--color_06);
}

#footer .copyright {
	padding: 25px 0;
	font-size: var(--font-size_ss);
	color: var(--color_f);
}

@media screen and (max-width: 699px) {
	#footer {
		position: relative;
		z-index: 1;
		padding-top: 0;
	}

	#footer .flex-pack {
		padding: 75px 25px;
		gap: 50px;
	}

	#footer .flex-item {
		gap: 25px;
		width: 100%;
		color: var(--color_f);
	}

	#footer {
		padding-top: 0;
	}

	#footer .flex-pack {
		flex-wrap: wrap-reverse;
		padding: 75px 25px;
		gap: 50px;
	}

	#footer .flex-item {
		gap: 25px;
		width: 100%;
	}

	#footer .flex-item:nth-child(1) {
		width: 100%;
	}

	#footer .flex-item:nth-child(1) .footer-logo img {
		width: 125px;
	}

	#footer .flex-item:nth-child(1) .icon-list i {
		color: var(--color_05);
	}

	#footer .flex-item:nth-child(2) {
		width: 100%;
	}

	#footer .copyright {
		padding: 25px 0;
		font-size: var(--font-size_ss);
		color: var(--color_f);
	}
}