/*
Thame Name:eyely
Thame URL:
Description:eyely
Author:Katayama
Version:1.0
*/

/*------------------------------------
開発用・border表示
------------------------------------*/
/*--
* {
	border: solid 0.5px var(--color_05);
}
--*/

/*------------------------------------
開発用・管理バーを半透明にする
------------------------------------*/
#wpadminbar {
	background: rgba(0, 0, 0, 0.3) !important;
	backdrop-filter: blur(6px);
	transition: background 0.3s ease;
}

#wpadminbar:hover {
	background: rgba(0, 0, 0, 0.8) !important;
}

/*------------------------------------
変数
------------------------------------*/
:root {
	--font-family_1: "dnp-shuei-gothic-gin-std", "Noto Sans Japanese", "Meiryo", sans-serif;
	--font-family_2: "PT Serif", "Noto Serif JP", 'MS明朝', 'MS Mincho', serif;
	--font-family_3: "Dosis", sans-serif;
	--font-family_4: "Playfair Display", serif;

	--font-size_sss: 0.7rem !important;
	--font-size_ss: 0.8rem !important;
	--font-size_s: 0.9rem !important;
	--font-size_mm: 1.1rem !important;
	--font-size_m: 1.3rem !important;
	--font-size_l: 1.6rem !important;
	--font-size_ll: 1.9rem !important;
	--font-size_lll: 2.5rem !important;
	--font-size_llll: 4.1rem !important;

	--font-weight_s: 300;
	--font-weight_m: 400;
	--font-weight_l: 500;
	--font-weight_ll: 600;

	--color_00: #262221;
	--color_01: #413c39;
	--color_02: #7d7772;
	--color_03: #9e9892;
	--color_04: #b9b3ac;
	--color_05: #c0b9b2;
	--color_06: #c7c1ba;
	--color_07: #d9d3cc;
	--color_08: #f0ebe6;
	--color_09: #f8f4f0;
	--color_0: #5b462c;
	--color_1: #907D68;
	--color_2: #AFA08E;
	--color_3: #CCC4B9;
	--color_4: #e7e4de;
	--color_5: #F6F6F5;
	--color_6: #ba4d4d;
	--color_7: #4e82a8;
	--color_8: #57a78b;
	--color_f: #fff;
	--color_line: #27ba67;
	--color_bs_00: #00000033;
	--color_bs_1: #5a504711;
	--color_bs_2: #5a504722;
	--color_bs_3: #5a504733;

	--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 1px var(--color_01);
	--border_2: solid 1px var(--color_02);
	--border_3: solid 1px var(--color_03);
	--border_4: solid 1px var(--color_04);
	--border_5: solid 1px var(--color_05);
	--border_f: solid 1px var(--color_f);

	--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.7rem !important;
		--font-size_ss: 0.8rem !important;
		--font-size_s: 0.9rem !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;
	}
}

/*------------------------------------
基本CSS
------------------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

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

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color_f);
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: opacity .8s ease;
	transition: opacity .8s ease;
}

body.fade::after {
	opacity: 1;
}

body .no-scroll {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: var(--font-weight_l);
	line-height: 1.5em;
}

h1,
h2,
h3 {}

h4,
h5,
h6 {}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.3rem;
}

p,
a,
i {
	font-family: var(--font-family_1);
	font-size: var(--font-size_s);
	color: var(--color_01);
	font-weight: var(--font-weight_m);
	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;
}

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

.white {
	color: var(--color_f) !important;
}

.black {
	color: var(--color_00) !important;
}

/*------------------------------------ここから汎用パーツ------------------------------------*/

/*------------------------------------
セクション
------------------------------------*/
.section-container_1 {
	position: relative;
	padding: 150px 0;
}

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

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

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

/*------------------------------------
コンテンツの幅を制限する
------------------------------------*/
.wrapper {
	max-width: 1000px;
	height: auto;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}

.wrapper__over-left {
	width: calc(50% + 500px);
	max-width: 100vw;
	margin-left: 0;
	margin-right: auto;
}

.wrapper__over-right {
	width: calc(50% + 500px);
	max-width: 100vw;
	margin-left: auto;
	margin-right: 0;
}

.wrapper-wide {
	max-width: 1200px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.wrapper-wide__over-left {
	width: calc(50% + 600px);
	max-width: 100vw;
	margin-left: 0;
	margin-right: auto;
}

.wrapper-wide__over-right {
	width: calc(50% + 600px);
	max-width: 100vw;
	margin-left: auto;
	margin-right: 0;
}

.wrapper-fullwide {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	height: auto;
}

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

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

/*------------------------------------
コンテンツを中央寄せ縦積みにする
------------------------------------*/
.block-pack {
	display: block;
	margin: auto;
}

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

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

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

@media screen and (max-width: 699px) {
	.block-item {
		margin: 75px auto;
	}
}

/*------------------------------------
コンテンツを横並びで配置
------------------------------------*/
.flex-pack {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
}

.flex-item {}

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

/*------------------------------------
子要素を横並びにするクラス
------------------------------------*/
.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

/*------------------------------------
枠パーツ
------------------------------------*/
.box_1 {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 30px 30px 35px 30px;
	background: var(--color_f);
	border: solid 1px var(--color_01);
	border-radius: var(--radius_1);
}

.box_1::after {
	content: '';
	position: absolute;
	width: calc(100% - 5px);
	height: calc(100% - 5px);
	pointer-events: none;
	bottom: -5px;
	right: -5px;
	border-right: solid 1px var(--color_01);
	border-bottom: solid 1px var(--color_01);
	border-radius: 0 0 12px 0;
}

.box_2 {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 35px 35px 40px 35px;
	background: var(--color_f);
	border: solid 1px var(--color_01);
	border-radius: var(--radius_1);
}

.box_2::after {
	content: '';
	position: absolute;
	inset: 5px;
	border: dotted 1px var(--color_01);
	border-radius: 6px;
	z-index: 1;
	pointer-events: none;
}

.box_3 {
	position: relative;
	width: 100%;
	height: 100%;
	margin-bottom: 5px;
	padding: 20px 20px 30px 20px;
	background: var(--color_f);
	border-radius: var(--radius_1);
	box-shadow: var(--shadow_3);
}

.box_4 {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 20px 20px 30px 20px;
	background: var(--color_f);
	border-radius: var(--radius_1);
	z-index: 0;
}

@media screen and (max-width: 699px) {
	.box_1 {
		padding: 25px 25px 35px 25px;
	}

	.box_2 {
		padding: 25px 25px 35px 25px;
	}

	.box_3 {}

	.box_4 {}
}

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

.content_1 .title {
	position: relative;
	font-family: var(--font-family_4);
	font-size: var(--font-size_m);
	color: var(--color_1);
	font-weight: lighter;
	letter-spacing: 0.1em;
	line-height: 1em;
}


.content_1 .sub-title {
	margin-top: 50px;
	font-family: var(--font-family_2);
	font-size: var(--font-size_ll);
	font-weight: var(--font-weight_ll);
	color: var(--color_01);
	letter-spacing: 0.1em;
	line-height: 1.85em;
}

.content_1 .caption {
	margin-top: 50px;
}

.content_1 .caption p {
	margin-bottom: 25px;
	font-size: var(--font-size_mm);
	line-height: 2.2em;
}

@media screen and (max-width: 699px) {
	.content_1 {
		margin: auto;
	}

	.content_1 .title {}


	.content_1 .sub-title {
		margin-top: 35px;
		font-size: var(--font-size_l);
	}

	.content_1 .caption {
		margin-top: 50px;
	}

	.content_1 .caption p {
		margin-bottom: 25px;
		font-size: var(--font-size_s);
	}
}

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

.content_2 .title {
	font-family: var(--font-family_4);
	font-size: var(--font-size_llll);
	color: var(--color_1);
	line-height: 1em;
}


.content_2 .sub-title {
	margin-top: 50px;
	font-family: var(--font-family_2);
	font-size: var(--font-size_l);
	font-weight: var(--font-weight_l);
	color: var(--color_01);
}

.content_2 .caption {
	margin-top: 50px;
}

.content_2 .caption p {
	margin-bottom: 25px;
	font-size: var(--font-size_mm);
	line-height: 2.2em;
}

@media screen and (max-width: 699px) {
	.content_2 {
		margin: 0;
	}

	.content_2 .title {
		font-size: var(--font-size_lll);
	}


	.content_2 .sub-title {
		font-size: var(--font-size_m);
	}

	.content_2 .caption {}

	.content_2 .caption p {
		font-size: var(--font-size_s);
	}
}

/*テキストボックス3*/
.content_3 {
	padding: 25px 25px;
}

.content_3 h2,
.content_3 h3 {
	font-family: var(--font-family_2);
	font-weight: var(--font-weight_l);
	line-height: 1.5em;
}

.content_3 p {
	margin-top: 15px;
	line-height: 2em;
}

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

/*テキストボックス4*/
.content_4 {}

.content_4 h2,
.content_4 h3 {
	font-family: var(--font-family_2);
	font-size: var(--font-size_l);
	font-weight: var(--font-weight_ll);
	line-height: 1.5em;
}


.content_4 p {
	margin-top: 10px;
	line-height: 2em;
}

/*注記*/
.note_1 {
	margin: 5px auto;
	font-size: 12px;
	font-weight: var(--font-weight_s);
	color: var(--color_03);
}

.note_2 {
	margin: 0px auto 25px;
	padding: 10px;
	background: var(--color_10);
}

.note_2 p {
	font-size: var(--font-size_sss);
	font-weight: var(--font-weight_s);
	color: var(--color_06);
}

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

/*------------------------------------
見出し
------------------------------------*/
.title_l {
	font-family: var(--font-family_4);
	font-size: 75px;
	color: var(--color_01);
	font-weight: var(--font-weight_l);
	line-height: 1.5em;
}

.title_m {
	font-family: var(--font-family_4);
	font-size: 50px;
	color: var(--color_01);
	font-weight: var(--font-weight_l);
	line-height: 1.5em;
}

.title_s {
	font-family: var(--font-family_4);
	font-size: 30px;
	color: var(--color_01);
	font-weight: var(--font-weight_l);
	line-height: 1.5em;
}

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

	.title_m {
		font-size: 35px;
	}

	.title_s {
		font-size: 25px;
	}
}


/*------------------------------------
大見出し
------------------------------------*/
.section-title_1 {
	margin-bottom: 50px;
}

.section-title_1::first-letter {
	font-size: 1.15em;
}

.section-title_1 h2,
.section-title_1 h3 {
	font-family: var(--font-family_4);
	font-size: 65px;
	color: var(--color_1);
	font-weight: var(--font-weight_l);
	line-height: 1.2em;
}

.section-title_1 p {
	font-family: var(--font-family_2);
	font-size: var(--font-size_mm);
	white-space: nowrap;
}

@media screen and (max-width: 699px) {
	.section-title_1 {
		margin-bottom: 25px;
	}

	.section-title_1 h2,
	.section-title_1 h3 {
		font-size: 45px;
	}

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

.section-title_2 {
	position: relative;
	text-align: left;
	width: 100%;
	padding-bottom: 30px;
	margin: 0 auto 50px auto;
}

.section-title_2 h2,
.section-title_2 h3 {
	font-family: var(--font-family_4);
	font-size: 25px;
	font-weight: var(--font-weight_l);
	letter-spacing: 0em;
	line-height: 1.5em;
}

.section-title_2 p {
	font-family: var(--font-family_2);
	font-size: var(--font-size_s);
}

.section-title_2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	border-radius: var(--radius_5);
	background: var(--color_1);
}

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

	.section-title_2 h2,
	.section-title_2 h3 {
		font-size: 20px;
	}
}

.section-title_3 {
	position: relative;
	width: 100%;
}

.section-title_3::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: var(--color_1);
	border-radius: var(--radius_5);
}

.section-title_3 h2,
.section-title_3 h3 {
	font-family: var(--font-family_4);
	font-size: var(--font-size_m);
	letter-spacing: 0.1em;
	padding-left: 15px;
}

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

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

.section-title_4 {
	position: relative;
	text-align: left;
	margin-bottom: 50px;
}

.section-title_4 h2 {
	font-family: var(--font-family_4);
	font-size: 95px;
	font-weight: var(--font-weight_l);
	color: var(--color_3);
}

.section-title_4 p {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(-15px);
	font-family: var(--font-family_2);
	font-size: 25px;
	font-weight: var(--font-weight_ll);
}

@media screen and (max-width: 699px) {
	.section-title_4 {
		margin-bottom: 25px;
	}

	.section-title_4 h2 {
		font-size: 55px;
	}

	.section-title_4 p {
		transform: translateY(-5px);
		font-size: 20px;
	}
}

.section-title_5 {
	position: absolute;
	top: 0;
	left: -50px;
	transform: translateX(-100%);
	display: flex;
}

.section-title_5 h2,
.section-title_5 h3 {
	font-family: var(--font-family_4);
	font-size: var(--font-size_llll);
	font-weight: var(--font-weight_l);
	color: var(--color_3);
	writing-mode: vertical-lr;
}

.section-title_5 p {
	font-family: var(--font-family_2);
	font-size: var(--font-size_mm);
	font-weight: var(--font-weight_ll);
	writing-mode: vertical-lr;
}

@media screen and (max-width: 699px) {
	.section-title_5 {
		position: relative;
		top: 0;
		left: 0;
		transform: translateX(0);
		display: block;
		margin-bottom: 25px;
	}

	.section-title_5 h2,
	.section-title_5 h3 {
		font-family: var(--font-family_2);
		font-size: 55px;
		writing-mode: horizontal-tb;
	}

	.section-title_5 p {
		position: absolute;
		bottom: 0;
		left: 0;
		transform: translateY(-5px);
		font-family: var(--font-family_2);
		font-size: 20px;
		writing-mode: horizontal-tb;
	}
}

.section-title_6 {
	position: relative;
	width: 100%;
	text-align: left;
	margin-bottom: 10px;
}

.section-title_6 h2 {
	font-family: var(--font-family_4);
	font-size: 45px;
	font-weight: var(--font-weight_l);
	color: var(--color_3);
}

.section-title_6 p {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(-3px);
	font-family: var(--font-family_2);
	font-size: 15px;
}

@media screen and (max-width: 699px) {
	.section-title_6 {
		margin-bottom: 25px;
	}

	.section-title_6 h2 {
		font-size: 60px;
	}

	.section-title_6 p {
		transform: translateY(-5px);
		font-size: 20px;
	}
}

.section-title_7 {
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 10px;
	text-align: left;
	margin-bottom: 25px;
}

.section-title_7 h2 {
	font-family: var(--font-family_4);
	font-size: 45px;
	font-weight: var(--font-weight_l);
	color: var(--color_1);
}

.section-title_7 p {
	font-family: var(--font-family_2);
	font-size: 17px;
}

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

	.section-title_7 h2 {
		font-size: 35px;
	}

	.section-title_7 p {}
}

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

/*リストデザイン2*/
.list_2 {
	font-size: var(--font-size_sss);
	line-height: 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 p,
.table_2 .row p,
.table_3 .row-header p,
.table_3 .row p {
	margin-top: 0;
	line-height: 1.5em;
}

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

.table_2 .row-header p,
.table_3 .row-header p {}

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

.table_2 .cell:nth-child(1) {
	width: calc(40% - 15px);
}

.table_2 .cell:nth-child(2) {
	width: calc(60% - 15px);
}

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

.table_2 .cell p,
.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);
	}

	.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,
	.table_2 .cell a,
	.table_3 .cell a {
		font-size: var(--font-size_sss);
	}

	.table_2 .note,
	.table_3 .note {}

	.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;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 25px;
}

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

/*共通*/
.btn_1,
.btn_2,
.btn_3 {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 75px auto 0 auto;
	width: 250px;
}

.btn_1 a,
.btn_2 a,
.btn_3 a {
	width: 100%;
	padding: 15px 40px;
	text-align: center;
	font-family: var(--font-family_3);
	font-size: var(--font-size_mm);
	line-height: 1em;
	letter-spacing: 0.1em;
	border: solid 1px var(--color_01);
	border-radius: var(--radius_05);
	transition: var(--ease_1);
}

.btn_1 a:hover,
.btn_2 a:hover,
.btn_3 a:hover {}

.btn_1 svg,
.btn_2 svg,
.btn_3 svg {
	position: absolute;
	top: 47%;
	right: 20px;
	transform: translate(0, -50%);
	width: 15px;
	transition: var(--ease_1);
}

.btn_1 a:hover svg,
.btn_2 a:hover svg,
.btn_3 a:hover svg {
	transform: translate(5px, -50%);
	fill: var(--color_1);
}

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

	.btn_1,
	.btn_2,
	.btn_3 {
		margin: 35px auto 0 auto;
	}
}

/*ベタ塗り*/
.btn_1 a {
	color: var(--color_f);
	background: var(--color_1);
	border-color: var(--color_1);
}

.btn_1 a:hover {
	color: var(--color_1);
	background: none;
}

.btn_1 svg {
	fill: var(--color_f);
}

.btn_1 a:hover svg {
	fill: var(--color_1);
}

/*ボーダー*/
.btn_2 a {
	color: var(--color_01);
	background: none;
	border-color: var(--color_01);
}

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

.btn_2 svg {
	fill: var(--color_01);
}

.btn_2 a:hover svg {
	fill: var(--color_f);
}

/*白ボーダー*/
.btn_3 a {
	color: var(--color_f);
	background: none;
	border-color: var(--color_f);
}

.btn_3 a:hover {
	background: var(--color_bs_00);
}

.btn_3 svg {
	fill: var(--color_f);
}

.btn_3 a:hover svg {
	fill: var(--color_f);
}

/*矢印と下線の小ボタン*/
.btn_4 {
	width: 100%;
	margin-top: 5px;
	margin-right: 5px;
	text-align: right;
}

.btn_4 a {
	position: relative;
	padding-bottom: 4px;
	font-family: var(--font-family_3);
	font-size: var(--font-size_s);
	color: var(--color_1);
	letter-spacing: 0.05em;
	transition: var(--ease_1);
	z-index: 1;
}

.btn_4 a:hover {
	opacity: 0.5;
}

.btn_4 a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	border-bottom: dotted 2px var(--color_1);
}

.btn_4 svg {
	width: 9px;
	height: 9px;
	margin-left: 2px;
	fill: var(--color_1);
	transition: var(--ease_1);
}

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

	.btn_4 a {
		font-size: var(--font-size_s);
	}

	.btn_4 a:hover {}

	.btn_4 a::after {}

	.btn_4 svg {
		width: 8px;
	}
}

/*テキスト&丸矢印が広がる*/
.btn_5 {
	margin-top: 65px;
}

.btn_5 a {
	position: relative;
	padding: 10px 15px 10px 10px;
	font-family: var(--font-family_3);
	font-size: var(--font-size_m);
	color: var(--color_01);
	letter-spacing: 0.15em;
	transition: var(--ease_2);
}

.btn_5 a:hover {
	color: var(--color_05);
}

.btn_5 .arrow {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 35px;
	height: 35px;
	transform: translate(35px, -50%);
	border: var(--border_1);
	border-radius: var(--radius_5);
	transition: var(--ease_2);
}

.btn_5 a:hover .arrow {
	width: 45px;
	height: 45px;
	transform: translate(40px, -50%);
	border: var(--border_5);
}

.btn_5 svg {
	width: 15px;
	fill: var(--color_01);
	transition: var(--ease_2);
}

.btn_5 a:hover svg {
	fill: var(--color_05);
}

@media screen and (max-width: 699px) {
	.btn_5 {
		margin-top: 35px;
	}
}

/*エントリー専用ボタン*/
.btn_entry {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 0 auto 0 auto;
	width: 300px;
}

.btn_entry a {
	width: 100%;
	padding: 15px 40px;
	text-align: center;
	font-family: var(--font-family_1);
	font-size: var(--font-size_mm);
	font-weight: var(--font-weight_l);
	background: var(--color_4);
	transition: var(--ease_1);
}

.btn_entry a:hover {
	filter: brightness(0.9);
}

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

/*リンクなしのダミーボタン(要素全体をホバー可した時用。今回は不使用)*/
.btn_dummy {
	display: flex;
	justify-content: center;
	position: relative;
	margin-top: 35px;
}

.btn_dummy .inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 10px 40px;
	background: var(--color_08);
	border-radius: var(--radius_5);
	transition: var(--ease_1);
}

.btn_dummy svg {
	width: 35px;
	fill: var(--color_00);
	transition: var(--ease_1);
}

.btn_dummy_pack:hover .inner {}

.btn_dummy_pack:hover .inner svg {
	fill: var(--color_00);
}

/*------------------------------------
画像ホバーエフェクト
------------------------------------*/
.more-pack {
	position: relative;
	overflow: hidden;
}

.more-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--font-family_2);
	font-size: var(--font-size_m);
	color: var(--color_f);
	opacity: 0;
	transition: var(--ease_1);
}

.more-pack img {
	height: 100%;
	transition: var(--ease_1);
}

.more-pack:hover img {
	filter: brightness(0.7) blur(3px);
	transform: scale(1.05);
}

.more-pack:hover .more-text {
	transform: translate(-50%, -50%);
	opacity: 1;
}

@media screen and (max-width: 699px) {
	.more-text {
		font-size: var(--font-size_mm);
	}
}

/*------------------------------------
アコーディオン
------------------------------------*/
.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_6);
}

.close-btn {
	display: block;
	margin: 30px auto 0;
	padding: 8px 20px 8px 20px;
	color: var(--color_f);
	background: var(--color_00);
	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);
}

/*------------------------------------
切り替えタブ
------------------------------------*/
.tabs {
	max-width: 100%;
}

.tab-list {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
}

.tab-list>* {
	flex: 0 0 calc((100% - 6px) / 3);
}

.tab-item {
	width: 100%;
	text-align: center;
	font-size: var(--font-size_s);
	white-space: nowrap;
	color: var(--color_f);
	background: var(--color_07);
	padding: 20px 0;
	cursor: pointer;
}

.tab-item.active {
	background: var(--color_1);
}

.tab-content {
	display: block;
}

.tab-panel {
	display: none;
	width: 100%;
	padding: 25px;
	background: var(--color_f);
}

.tab-panel h4 {}

.tab-panel.active {
	display: block;
}

.tab-panel h2 {
	font-size: 20px;
}

@media screen and (max-width: 799px) {
	.tab-item {
		font-size: var(--font-size_ss);
		padding: 10px 0;
	}
}

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

.parallax-1 {
	position: absolute;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

.parallax-1 {
	inset: -35% 0 -35% 0;
}

.parallax-1>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 {
	width: 100%;
	gap: 25px;
}

.icon-list a {
	display: flex;
	align-items: center;
}

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

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

/*------------------------------------
stycky
------------------------------------*/
.sticky {
	position: sticky;
	top: 0px;
	z-index: 1000;
}

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

/*------------------------------------
テキストアニメーション
------------------------------------*/
/*テキストアニメーション1*/
.textanimation1 {
	white-space: nowrap;
	/* 強制改行防止 */
}

.word {
	display: inline-flex;
}

.space {
	display: inline-block;
	width: 0.4em;
	/* スペース幅調整 */
}

/*テキストアニメーション2*/

/*------------------------------------
流れるテキスト
------------------------------------*/
.marquee-container {
	position: relative;
	width: 100%;
	height: 200px;
	margin: 0px auto;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.marquee-text {
	position: absolute;
	white-space: nowrap;
	will-change: transform;
	font-family: var(--font-family_4);
	font-size: 200px;
	font-weight: light;
	letter-spacing: 0;
	color: var(--color_f);
}

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

	.marquee-text {
		position: absolute;
		font-size: 100px;
	}
}


/*------------------------------------ここから共通パーツ------------------------------------*/

/*------------------------------------
共通パーツ・ロゴ
------------------------------------*/
.logo {}

.logo svg {
	width: 100px;
	fill: var(--color_01);
}

.logo .caption {
	margin-top: 5px;
	font-family: var(--font-family_1);
	font-size: var(--font-size_sss);
}

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

/*------------------------------------
共通パーツ・bg
------------------------------------*/
.bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg img {
	height: 100%;
}

/*------------------------------------
共通パーツ・パンくずリスト
------------------------------------*/
.bread_1 {
	position: absolute;
	top: 0;
	left: 0;
}

.bread_2 {
	position: relative;
}

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

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

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

/*------------------------------------
共通パーツ・投稿リスト
------------------------------------*/
.post-card {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 15px;
}

.post-card__image {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	border-radius: var(--radius_05);
}

.post-card__image img {
	width: 100%;
	height: 100%;
}

.post-card__text {
	width: 100%;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

.post-card__header {
	width: 100%;
	justify-content: flex-start;
	align-items: baseline;
	gap: 10px;
}

.post-card__header .date,
.post-card__header .slug {
	font-family: var(--font-family_2);
	font-size: var(--font-size_ss);
	color: var(--color_02);
}

.post-card__text .category {}

.post-card__text .category a {
	position: relative;
	font-size: var(--font-size_ss);
	color: var(--color_02);
	text-decoration: none;
}

.post-card__text .title {
	width: 100%;
	margin-top: 5px;
	margin-bottom: 10px;
}

.post-card__text .title p,
.post-card__text .title a {
	font-family: var(--font-family_1);
	font-size: var(--font-size_mm);
	font-weight: var(--font-weight_l);
}

.post-card__text .tag {
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 3px;
	width: 100%;
}

.post-card__text .tag a {
	position: relative;
	padding: 5px 7px;
	font-size: var(--font-size_sss);
	color: var(--color_02);
	line-height: 1.1em;
}

.post-card__text .tag a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 15px;
	background: var(--color_02);
}

.post-card__text .tag a:nth-last-child(1)::after {
	display: none;
}


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

	.post-card__text {}

	.post-card__text .category a,
	.post-card__text .category p {
		font-size: var(--font-size_sss);
	}

	.post-card__text .title {
		margin-top: 0;
		margin-bottom: 10px;
	}

	.post-card__text .title p,
	.post-card__text .title a {}
}

/*------------------------------------
共通パーツ・関連記事
------------------------------------*/
#related {}

#related .flex-pack {
	align-items: stretch;
	gap: 25px;
}

#related .flex-item {
	width: calc((100% - 50px) / 3);
}

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

	#related .flex-pack {
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: flex-start;
	}

	#related .post-card {
		flex-wrap: nowrap;
		align-items: center;
		width: 100%;
		padding: 15px;
	}

	#related .post-card {}

	#related .post-card__image {
		width: calc(30% - 7.5px);
		aspect-ratio: 1 / 1;
	}

	#related .post-card__image img {
		height: 100%;
	}

	#related .post-card__image:hover img {}

	#related .post-card__text {
		width: calc(70% - 7.5px);
	}

	#related .post-card__text .title {
		margin-bottom: 0;
	}

	#related .post-card__text .title a {
		font-size: var(--font-size_s);
	}

	#related .post-card__text .tag {
		display: none;
	}

	#related .post-card__text .btn_4 {}
}


/*------------------------------------
共通パーツ・salon共通
------------------------------------*/
#salons .post-card,
#job-search .post-card {
	gap: 15px;
}

#salons .post-card__image,
#job-search .post-card__image {
	aspect-ratio: 16 / 9;
}

#salons .post-card__image .category,
#job-search .post-card__image .category {
	gap: 5px;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
}

#salons .post-card__image .category p,
#job-search .post-card__image .category p {
	padding: 1px 7px;
	font-size: var(--font-size_sss);
	color: var(--color_f);
	background: var(--color_1);
	border-radius: var(--radius_5);
}

#salons .post-card__text,
#job-search .post-card__text {}

#salons .post-card__text .employment,
#job-search .post-card__text .employment {
	margin-top: 0;
}

#salons .post-card__text .employment a,
#salons .post-card__text .employment p,
#job-search .post-card__text .employment a,
#job-search .post-card__text .employment p {
	padding: 0px 10px;
	font-size: var(--font-size_sss);
	font-weight: var(--font-weight_l);
	background: var(--color_4);
	border: none;
	border-radius: var(--radius_5);
}

#salons .post-card__text .title,
#job-search .post-card__text .title {
	margin-top: 10px;
}

#salons .post-card__text .title a,
#job-search .post-card__text .title a {}

#salons .post-card__text .tag,
#job-search .post-card__text .tag {
	margin-top: 10px;
}

#salons .post-card__text .tag a,
#job-search .post-card__text .tag a {
	font-weight: var(--font-weight_l);
	background: none;
	border: var(--border_3);
	border-radius: var(--radius_5);
}

#salons .post-card__text .tag a::after,
#job-search .post-card__text .tag a::after {
	display: none;
}

#salons .post-card__text .url,
#job-search .post-card__text .url {
	width: 100%;
	margin-top: 10px;
}

#salons .post-card__text .url a,
#job-search .post-card__text .url p {
	font-size: var(--font-size_sss);
}

#salons .post-card__text .address,
#job-search .post-card__text .address {
	width: 100%;
}

#salons .post-card__text .address p,
#job-search .post-card__text .address p {
	font-size: var(--font-size_sss);
}


/*------------------------------------
問い合わせフォーム
------------------------------------*/
.form-pack {
	position: relative;
	margin-top: 50px;
	padding: 50px;
	background: var(--color_f);
}

.form-item {
	margin: auto;
}

#contactForm {
	width: 100%;
}

#contactForm .table_2 {}

#contactForm .form-parts {
	border-bottom: none;
}

#contactForm .form-parts .cell:nth-child(1) p {
	font-weight: var(--font-weight_ll);
}

#contactForm .required-mark {
	color: var(--color_6);
	margin-left: 5px;
}

#contactForm .form-parts input,
#contactForm .form-parts textarea {
	width: 100%;
	margin-bottom: 5px;
	padding: 5px 15px;
	background: var(--color_5);
}

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

#contactForm .form-parts select {
	width: auto;
	padding: 5px;
	background: var(--color_09);
	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 .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 .send {
	text-align: center;
}

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

#contactForm .send input:hover {
	color: var(--color_00);
	background: 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);
}

@media screen and (max-width: 699px) {
	.form-pack {
		padding: 50px 20px;
	}

	#contactForm .row {
		flex-wrap: wrap;
		border-bottom: none;
	}

	#contactForm .cell {
		width: 100%;
	}
}

/*------------------------------------
共通パーツ・投稿スライダー
------------------------------------*/
#postslider {
	padding-top: 75px;
}

#postslider .swiper3 {}

#postslider .swiper-wrapper {}

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

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

#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 {
	margin-top: 10px;
	text-align: left;
	font-size: var(--font-size_s);
	font-weight: var(--font-weight_m);
}

#postslider .swiper-slide .caption p {
	margin-top: 0px;
	font-size: var(--font-size_ss);
}

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

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


/*------------------------------------ここからヘッダーコンテンツ------------------------------------*/


/*------------------------------------
header
------------------------------------*/
#header {
	position: absolute;
	top: 0;
	/* 下層ページは従来通り */
	left: 0;
	width: 100%;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	transition: none;
	z-index: 10;
	pointer-events: none;
}

/* ★front-page のときだけ absolute 時は 20px 下げる（fixedの時は除外） */
body.header-front-only #header:not(.is-fixed) {
	top: 25px;
}

/* 固定モード：画面上部に固定 */
#header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
}


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

@media screen and (max-width: 699px) {
	#header {
		top: 0;
	}

	body.header-front-only #header:not(.is-fixed) {
		top: 0px;
	}
}

/*------------------------------------
header ロゴ
------------------------------------*/
.header-logo {
	position: absolute;
	top: 0;
	left: 25px;
	z-index: 1;
}

/* 固定モード：画面上部に固定 */
.header-logo.is-fixed {
	position: fixed;
	top: 0;
	left: 25px;
	z-index: 8;
	/* headerより上に */
}

.header-logo a {
	padding: 25px 0 0 0;
}

.header-logo img {}

.header-logo .caption {}

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

	.header-logo.is-fixed {
		left: 15px;
	}

	.header-logo img {
		width: 85px;
	}
}

/*------------------------------------
スマホナビ・コンテンツ
------------------------------------*/
#navi {
	position: fixed;
	top: 0;
	right: -5%;
	width: 100%;
	max-width: 1000px;
	height: 100vh;
	opacity: 0;
	padding: 125px 50px 75px 50px;
	background: var(--color_08);
	transition: right var(--ease_2), opacity var(--ease_2);
	pointer-events: none;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 104;
}

.nav_open #navi {
	right: 0;
	opacity: 1;
	pointer-events: auto;
}

@media screen and (max-width: 699px) {
	#navi {
		padding: 75px 35px;
	}
}

/*------------------------------------
スマホナビ・メインコンテンツ
------------------------------------*/
#navi .logo img {
	width: 85px;
}

#navi .navi-title {
	align-items: baseline;
	justify-content: flex-start;
	gap: 10px;
	margin-bottom: 20px;
}

#navi .navi-title h3 {
	font-family: var(--font-family_1);
	font-size: var(--font-size_ll);
	font-weight: var(--font-weight_l);
}

#navi .navi-title p {
	font-size: var(--font-size_ss);
	color: var(--color_02);
}

#navi .navi-pack {
	flex-wrap: wrap;
	gap: 35px;
}

#navi .navi-pack .logo {
	justify-content: flex-start;
	width: 100%;
	display: none;
}

#navi .menu-pack {
	width: 100%;
	margin: 25px auto;
}

#navi .menu {
	justify-content: flex-start;
	gap: 25px;
	list-style: none;
}

#navi .navi-item {
	cursor: pointer;
	position: relative;
	padding-right: 25px;
	border-right: var(--border_5);
}

#navi .navi-item:nth-last-child(1) {
	border-right: none;
}

#navi .navi-item a {
	font-size: var(--font-size_ll);
	font-weight: var(--font-weight_l);
}

@media screen and (max-width: 699px) {
	#navi {
		padding: 35px 30px 75px 30px;
	}

	#navi .navi-pack .logo {
		display: block;
	}

	#navi .navi-title h3 {
		font-size: var(--font-size_m);
	}

	#navi .navi-item a {
		font-size: var(--font-size_m);
	}

	#navi .navi-title p {
		font-size: var(--font-size_ss);
		color: var(--color_03);
	}

	#navi .menu {
		gap: 15px;
	}

	#navi .menu-pack {
		margin: 15px auto;
	}

	#navi .navi-item {
		padding-right: 15px;
	}
}

/*------------------------------------
スマホナビ・タグ一覧
------------------------------------*/
#navi .tag-pack {
	width: 100%;
}

#navi .tag-list {
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 15px 5px;
}

#navi .tag-item {}

#navi .tag-item a {
	padding: 7px 10px;
	font-size: var(--font-size_sss);
	line-height: 1em;
	background: var(--color_f);
	border: var(--border_2);
	border-radius: var(--radius_5);
}

/*------------------------------------
スマホナビ・検索窓
------------------------------------*/
#navi .navi-search {
	display: flex;
	justify-content: flex-start;
	width: 100%;
}

/* フォームを“器”として安定させる */
.navi-search form {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 350px;
	height: 35px;
	padding: 0 10px;
	box-sizing: border-box;
	background: var(--color_f);
	border: var(--border_2);
	border-radius: var(--radius_1);
	min-width: 0;
}

/* inputを“伸び縮みする中身”にする */
.navi-search input[type="search"] {
	-webkit-appearance: none;
	appearance: none;
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	outline: none;
	font-size: var(--font-size_ss);
}

/* もしボタンあるなら（Androidで押し出し防止） */
.navi-search button {
	flex: 0 0 auto;
	padding: 0 0;
	margin: 0;
}

@media screen and (max-width: 499px) {
	.navi-search form {
		max-width: 100%;
	}
}

/*------------------------------------
スマホナビ・ハンバーガーボタン
------------------------------------*/
.hamburger {
	cursor: pointer;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	z-index: 105;
	pointer-events: painted;
}

.hamburger span {
	background: var(--color_00);
	height: 2px;
	left: 13px;
	border-radius: var(--radius_10);
	position: absolute;
	width: 35px;
	transition: all var(--ease_2)
}

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

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

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

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

.nav_open .hamburger span {
	top: 28px;
}

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

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

.nav_open .hamburger span:nth-child(3) {
	transform: rotate(-35deg);
	outline: solid 3px var(--color_08);
}

.nav_open .overlay {
	opacity: 0.2;
	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 {
		right: 5px;
	}
}

/*スマホナビ展開時の背景*/
.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: absolute;
	top: 0;
	right: 250px;
	width: auto;
	height: 100px;
	z-index: 11;
	pointer-events: none;
}

#navi-pc .navi-pc-pack {
	position: relative;
	justify-content: flex-end;
	gap: 0;
	height: 100px;
	list-style-type: none;
}

#navi-pc .navi-pc-item {
	position: relative;
	pointer-events: all;
}

#navi-pc .navi-pc-item a {
	gap: 5px;
	padding: 0 20px;
	text-decoration: none;
	font-size: var(--font-size_mm);
	font-weight: var(--font-weight_l);
	position: relative;
	transition: var(--ease_2);
}

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

#navi-pc .navi-pc-item i {
	font-size: var(--font-size_ll);
	transition: var(--ease_2);
}

#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;
}

#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;
}

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

#navi-pc .submenu li a:hover {}

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

@media screen and (max-width: 999px) {
	#navi-pc .navi-pc-pack {
		display: none;
	}
}

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

#contact-btn a {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	height: 50px;
	border-radius: var(--radius_5);
	text-align: center;
	padding: 8px 0px;
	cursor: pointer;
}

#contact-btn a:nth-last-child(1) {
	border-right: none;
}

#contact-btn .tel {
	width: calc((100% - 50px) / 2);
	background: var(--color_3);
}

#contact-btn .tel p {}

#contact-btn .hp {
	width: calc((100% - 50px) / 2);
	background: var(--color_4);
}

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

#contact-btn .top i {
	font-size: var(--font-size_m);
	color: var(--color_f);
}

#contact-btn i {
	font-size: var(--font-size_ss);
}

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

#contact-btn p {
	margin-top: 3px;
	font-size: var(--font-size_mm);
	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;
}

#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 {}

/*------------------------------------
フロートボタン(PC&SP)
------------------------------------*/
#float-btn {
	position: absolute;
	top: 0;
	right: 115px;
	height: 100px;
	z-index: 100;
	pointer-events: all;
}

#float-btn a {
	flex-wrap: wrap;
	gap: 10px;
	padding: 5px 25px;
	background: var(--color_01);
	border-radius: var(--radius_05);
	transition: var(--ease_1);
}

#float-btn a:hover {
	background: var(--color_03);
}

#float-btn a svg {
	width: 16px;
	fill: var(--color_f);
}

#float-btn a p {
	color: var(--color_f);
}


@media screen and (max-width: 999px) {
	#float-btn {
		right: 55px;
	}

	#float-btn a {
		padding: 5px 20px;
		background: none;
	}

	#float-btn a:hover {
		background: none;
	}

	#float-btn a svg {
		width: 30px;
		fill: var(--color_00);
	}

	#float-btn a p {
		display: none;
	}
}

/*------------------------------------
トップページ・オープニングアニメーション
------------------------------------*/
/* JSが準備できるまで隠す（フライング防止） */
#opening .opening-1st,
#opening .opening-2nd {
	visibility: hidden;
}

#opening {
	position: fixed;
	inset: 0;
	background: var(--color_4);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	pointer-events: auto;
}

#opening .inner {
	text-align: center;
}

#opening .opening-1st {
	margin-top: 10px;
	font-size: var(--font-size_ss);
}

#opening .opening-2nd__mask {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
}

#opening .opening-2nd svg {
	width: 160px;
	fill: var(--color_01);
}

.site-main {
	opacity: 0;
}

@media screen and (max-width: 699px) {
	#opening .opening-1st {
		margin-top: 5px;
		font-size: var(--font-size_sss);
	}

	#opening .opening-2nd svg {
		width: 145px;
	}
}


/*------------------------------------ここからトップページコンテンツ------------------------------------*/


/*------------------------------------
フロントページ専用メインロゴ
------------------------------------*/
.main-logo {
	text-align: left;
	position: absolute;
	top: 0;
	left: 25px;
	height: 150px;
	z-index: 9;
}

.main-logo a {
	align-items: center;
	gap: 10px;
	padding-bottom: 15px;
}

.main-logo svg {
	width: 150px;
	padding-bottom: 5px;
	fill: var(--color_01);
}

.main-logo .caption {
	margin-top: 0;
	padding-top: 20px;
	font-size: 14px;
}

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

	.main-logo a {
		display: block;
		padding-bottom: 0;
	}

	.main-logo svg {
		width: 100px;
		padding-bottom: 0;
	}

	.main-logo .caption {
		margin-top: 0;
		padding-top: 0;
		font-size: 11px;
	}
}

/*------------------------------------
トップページ・mainvisual
------------------------------------*/
#mainvisual {
	height: calc(var(--fixed-vh) - 250px);
	margin-top: 150px;
}

#mainvisual .swiper1 {
	width: 100%;
	max-width: 1500px;
	height: 100%;
	margin-left: auto;
	overflow: hidden;
	border-radius: var(--radius_1);
}

#mainvisual .swiper1 .swiper-wrapper {
	height: 100%;
}

#mainvisual .swiper1 .swiper-slide {
	position: relative;
	overflow: hidden;
	height: 100%;
}

#mainvisual .swiper1 .post-card__image {
	position: relative;
	width: 1500px;
	height: 100%;
	z-index: 0;
}

#mainvisual .swiper1 .post-card__image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 75%;
	background: #121212;
	background: linear-gradient(0deg, rgba(18, 18, 18, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
	z-index: 0;
	pointer-events: none;
}

#mainvisual .swiper1 .post-card__image img {
	width: 100%;
	height: calc(var(--fixed-vh) - 250px);
}

#mainvisual .swiper1 .swiper-slide-active .post-card__image {}

#mainvisual .swiper1 .swiper-slide-active .post-card__image img {}

#mainvisual .swiper1 .post-card__text {
	position: absolute;
	bottom: 50px;
	left: 50px;
	width: auto;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .8s ease, transform .8s ease;
	transition-delay: .9s;
	z-index: 100;
}

#mainvisual .swiper1 .swiper-slide-active .post-card__text {
	opacity: 1;
	transform: translateY(0);
	z-index: 2;
}

#mainvisual .swiper1 .post-card__text .category a {
	font-size: var(--font-size_s);
	color: var(--color_f);
	text-shadow: var(--shadow_3);
}

#mainvisual .swiper1 .post-card__text .category p::before {
	display: none;
}

#mainvisual .swiper1 .post-card__text .title a {
	font-weight: var(--font-weight_ll);
	font-size: var(--font-size_ll);
	color: var(--color_f);
	text-shadow: var(--shadow_3);
}

#mainvisual .swiper1 .post-card__text .tag {
	justify-content: flex-start;
	gap: 10px;
}

#mainvisual .swiper1 .post-card__text .tag a {
	padding: 0;
	font-size: var(--font-size_ss);
	color: var(--color_f);
	text-shadow: var(--shadow_3);
	border: none;
	background: none;
}

#mainvisual .swiper1 .post-card__text .tag p::before {
	content: '#';
}

#mainvisual .swiper1 .post-card__text .tag a::after {
	display: none;
}

/*ページネーション*/
#mainvisual .swiper1-control {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 50px;
	z-index: 1;
	pointer-events: none;
}

#mainvisual .mainvisual-pagination {
	position: absolute;
	bottom: 25px;
	left: calc(100% + 25px);
	width: auto;
	z-index: 5;
	display: flex;
	align-items: baseline;
	gap: 0;
	font-family: var(--font-family_2);
	font-style: italic;
	color: var(--color_f);
	letter-spacing: .08em;
}

#mainvisual .mainvisual-pagination .swiper-pagination-current {
	font-size: var(--font-size_l);
	color: var(--color_f);
	text-shadow: var(--shadow_3);
}

#mainvisual .mainvisual-pagination .swiper-pagination-total {
	font-size: var(--font-size_s);
	color: var(--color_f);
	text-shadow: var(--shadow_3);
}

#mainvisual .mainvisual-pagination .slash {
	margin: 0 4px;
	text-shadow: var(--shadow_3);
}

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

	#mainvisual .swiper1 {
		border-radius: 0;
	}

	#mainvisual .swiper1 .swiper-wrapper {}

	#mainvisual .swiper1 .swiper-slide {}

	#mainvisual .swiper1 .post-card__image {
		width: 100vw;
		height: 500px;
		aspect-ratio: inherit;
	}

	#mainvisual .swiper1 .post-card__image img {
		width: 100%;
		height: 500px;
		max-height: 100%;
	}

	#mainvisual .swiper1 .swiper-slide-active .post-card__image {
		border-radius: 0;
	}

	#mainvisual .swiper1 .swiper-slide-active .post-card__image img {}

	#mainvisual .swiper1 .post-card__text {
		bottom: 50px;
		left: 0px;
		padding: 0 20px;
		transform: translateY(20px);
	}

	#mainvisual .swiper1 .swiper-slide-active .post-card__text {}

	#mainvisual .swiper1 .post-card__text .category a {
		font-size: var(--font-size_ss);
	}

	#mainvisual .swiper1 .post-card__text .category p::before {
		display: none;
	}

	#mainvisual .swiper1 .post-card__text .title a {
		font-size: var(--font-size_m);
	}

	#mainvisual .swiper1 .post-card__text .tag {
		justify-content: flex-start;
		gap: 10px;
	}

	#mainvisual .swiper1 .post-card__text .tag a {
		font-size: var(--font-size_ss);
	}

	#mainvisual .swiper1 .post-card__text .tag p::before {
		content: '#';
	}

	/*ページネーション*/
	#mainvisual .swiper1-control {}

	#mainvisual .mainvisual-pagination {
		bottom: 15px;
		left: calc(100% - 65px);
	}

	#mainvisual .mainvisual-pagination .swiper-pagination-current {
		font-size: var(--font-size_m);
	}

	#mainvisual .mainvisual-pagination .swiper-pagination-total {
		font-size: var(--font-size_sss);
	}

	#mainvisual .mainvisual-pagination .slash {
		font-size: var(--font-size_ss);
	}
}

/*------------------------------------
トップページ・greeting
------------------------------------*/
#greeting {
	margin-top: 100px;
	padding-bottom: 150px;
}

#greeting .flex-pack {
	height: 100%;
	align-items: stretch;
}

#greeting .left {
	width: calc(45% - 25px);
	height: 100%;
}

#greeting .right {
	width: calc(55% - 25px);
	position: relative;
}

#greeting .move-container {
	height: 875px;
}

#greeting .right .image {
	position: absolute;
	border-radius: var(--radius_1);
	overflow: hidden;
}

#greeting .right .image:nth-child(1) {
	top: 0;
	right: 0;
	width: 600px;
	height: 600px;
}

#greeting .right .image:nth-child(1) img {
	height: 100%;
}

#greeting .right .image:nth-child(2) {
	bottom: -100px;
	left: 0;
	width: 350px;
	height: 350px;
}

#greeting .right .image:nth-child(2) img {
	height: 100%;
}

#greeting .marquee-container {
	margin-top: 0;
}

#greeting .marquee-text {}

@media screen and (max-width: 699px) {
	#greeting {
		margin-top: 50px;
		padding-bottom: 100px;
	}

	#greeting .flex-pack {
		height: 100%;
		align-items: center;
	}

	#greeting .left {
		width: 100%;
	}

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

	#greeting .move-container {
		height: 300px;
	}

	#greeting .right .image {}

	#greeting .right .image:nth-child(1) {
		width: 300px;
		height: 300px;
		border-radius: 10px 0 0 10px;
	}

	#greeting .right .image:nth-child(1) img {}

	#greeting .right .image:nth-child(2) {
		width: 150px;
		height: 150px;
		border-radius: 0 10px 10px 0;
	}

	#greeting .right .image:nth-child(2) img {}

	#greeting .marquee-container {
		margin-top: 50px;
	}

	#greeting .marquee-text {}
}

/*------------------------------------
トップページ・tag&category
------------------------------------*/
#select {}

/*カテゴリー*/
#select .block-pack .flex-pack {
	align-items: stretch;
	gap: 0;
}

#select .block-pack .flex-item {
	width: calc(100% / 2);
}

#select .block-pack .flex-item:nth-child(1) {
	height: auto;
	border-radius: var(--radius_1);
}

#select .block-pack .flex-item:nth-child(1) img {
	height: 100%;
}

#select .block-pack .flex-item:nth-child(2) {
	margin-left: 150px;
}

#select .select-category-pack {
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 15px;
}

#select .select-category {
	margin-top: 0;
}

#select .select-category-item {
	width: 100%;
}

#select .select-category-item a {
	position: relative;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 15px;
	padding: 5px;
	font-size: var(--font-size_mm);
	background: var(--color_f);
	border: var(--border_3);
	border-radius: var(--radius_5);
	transition: var(--ease_3);
}

#select .select-category-item a:hover {
	background: var(--color_4);
}

#select .select-category-item img {
	width: 60px;
	height: 60px;
	border-radius: var(--radius_5);
}

#select .select-category-item p {
	width: calc((100% - 75px));
	white-space: nowrap;
}

#select .select-category-item .arrow {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	background: var(--color_5);
	border-radius: var(--radius_5);
}

#select .select-category-item svg {
	width: 15px;
	fill: var(--color_1);
}

#select .select-tag-item {}

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

	#select .block-pack .flex-pack {
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 50px;
	}

	#select .block-pack .flex-item {
		width: 100%;
	}

	#select .block-pack .flex-item:nth-child(1) {
		aspect-ratio: 3 / 2;
		height: auto;
	}

	#select .block-pack .flex-item:nth-child(1) img {}

	#select .block-pack .flex-item:nth-child(2) {
		margin-left: 0;
	}

	#select .select-category {
		width: 100vw;
		margin: calc(50% - 50vw);
		padding: 0 20px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	#select .select-category-pack {
		width: 550px;
		gap: 10px;
	}

	#select .select-category-item {
		width: calc((100% - 15px) / 2);
	}

	#select .select-category-item .arrow {
		display: none;
	}
}

/*タグ*/
#select .select-tag .swiper5 {
	width: 100%;
	margin: auto;
	-webkit-mask-image: linear-gradient(to right,
			transparent 0%,
			black 5%,
			black 95%,
			transparent 100%);
	mask-image: linear-gradient(to right,
			transparent 0%,
			black 5%,
			black 95%,
			transparent 100%);
}

#select .select-tag .swiper5 .swiper-wrapper {
	transition-timing-function: linear;
}

#select .select-tag .swiper5 .swiper-slide {
	width: auto;
}

#select .select-tag .swiper5 .swiper-slide a {
	padding: 10px 15px;
	background: var(--color_f);
	border: var(--border_3);
	border-radius: var(--radius_5);
	transition: var(--ease_3);
}

#select .select-tag .swiper5 .swiper-slide a:hover {
	background: var(--color_4);
}

@media screen and (max-width: 699px) {
	#select .select-tag .swiper5 {
		-webkit-mask-image: linear-gradient(to right,
				transparent 0%,
				black 5%,
				black 95%,
				transparent 100%);
		mask-image: linear-gradient(to right,
				transparent 0%,
				black 5%,
				black 95%,
				transparent 100%);
		width: 100vw;
		margin: 0 calc(50% - 50vw);
	}
}

/*------------------------------------
トップページ・topic
------------------------------------*/
#topic {}

#topic .swiper2 {
	position: relative;
	height: 100%;
}

#topic .swiper2 .swiper-wrapper {}

#topic .swiper2 .swiper-slide {}

#topic .swiper2 .swiper-slide-active {}

#topic .swiper2 .post-card {
	position: relative;
}

#topic .swiper2 .post-card__image {}

#topic .swiper2 .post-card__text {}


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

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

	#topic .swiper2 .swiper-wrapper {}

	#topic .swiper2 .swiper-slide:nth-child(1) {
		margin-left: 20px;
	}

	#topic .swiper2 .swiper-slide:nth-last-child(1) {
		margin-right: 20px;
	}

	#topic .swiper2 .swiper-slide {}

	#topic .swiper2 .post-card__image {}

	#topic .swiper2 .post-card__image img {}

	#topic .swiper2 .post-card__image:hover img {}
}

/*------------------------------------
トップページ・feature
------------------------------------*/
#feature {}

#feature .grid-pack {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: minmax(10px, auto);
	gap: 75px 50px;
}

#feature .grid-item {}

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

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

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

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

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

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

#feature .grid-item:nth-child(7) {
	grid-column: 1 / span 2;
	grid-row: 8 / span 2;
}

#feature .grid-item:nth-child(8) {
	grid-column: 3 / span 2;
	grid-row: 8 / span 2;
}

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

.grid-line {
	grid-column: 1 / -1;
	grid-row: 5;
	height: 1px;
	border-top: var(--border_5);
}

/*共通*/
#feature .post-card {
	align-items: flex-start;
}

#feature .post-card .header__1 {
	display: none;
}

#feature .post-card .post-card__image {
	aspect-ratio: 3 / 2;
}

#feature .post-card .post-card__text {
	align-items: flex-start;
}

/*1~3個目*/
#feature .grid-item:nth-child(1),
#feature .grid-item:nth-child(2),
#feature .grid-item:nth-child(3) {
	padding: 0;
	background: none;
	border: none;
}

#feature .grid-item:nth-child(1)::after,
#feature .grid-item:nth-child(2)::after,
#feature .grid-item:nth-child(3)::after {
	border: none;
}

/*1個目*/
#feature .grid-item:nth-child(1) {
	padding-right: 50px;
	padding-bottom: 50px;
	border-right: var(--border_5);
	border-radius: 0;
}

#feature .grid-item:nth-child(1) .header__1 {
	display: flex;
}

#feature .grid-item:nth-child(1) .header__1 .date {
	font-size: var(--font-size_mm);
}

#feature .grid-item:nth-child(1) .header__1 .date::before {
	content: 'New';
	margin-right: 10px;
	padding-right: 10px;
	font-size: var(--font-size_mm);
	border-right: var(--border_5);
}

#feature .grid-item:nth-child(1) .post-card__image {
	aspect-ratio: 3 / 2;
}

#feature .grid-item:nth-child(1) .post-card__text .category a {
	font-size: var(--font-size_s);
}

#feature .grid-item:nth-child(1) .post-card__text .title a {
	font-size: var(--font-size_ll);
}

#feature .grid-item:nth-child(1) .post-card__text .tag a {
	font-size: var(--font-size_s);
}

#feature .grid-item:nth-child(1) .post-card__text .btn_4 {}

#feature .grid-item:nth-child(1) .post-card__text .btn_4 a {
	font-size: var(--font-size_m);
}

#feature .grid-item:nth-child(1) .post-card__text .btn_4 svg {
	width: 13px;
	height: 13px;
}

/*2-3個目*/
#feature .grid-item:nth-child(2) .post-card__image,
#feature .grid-item:nth-child(3) .post-card__image {
	aspect-ratio: 16 / 9;
}

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

	#feature .grid-item {
		width: 100%;
	}

	.grid-line {
		display: none;
	}

	#feature .post-card {
		flex-wrap: nowrap;
		align-items: center;
		width: 100%;
		padding: 15px;
	}

	#feature .post-card .post-card__image {
		width: calc(30% - 7.5px);
		aspect-ratio: 1 / 1;
	}

	#feature .post-card .post-card__image img {
		height: 100%;
	}

	#feature .post-card .post-card__image:hover img {}

	#feature .post-card .post-card__text {
		width: calc(70% - 7.5px);
	}

	#feature .post-card .post-card__text .title {
		margin-bottom: 0;
	}

	#feature .post-card .post-card__text .title a {
		font-size: var(--font-size_s);
	}

	#feature .post-card .post-card__text .tag {
		display: none;
	}

	/*1個目*/
	#feature .grid-item:nth-child(1) {
		padding-right: 0;
		border-right: none;
	}

	#feature .grid-item:nth-child(1) .header__1 .date {
		font-size: var(--font-size_ss);
	}

	#feature .grid-item:nth-child(1) .post-card__text .category a {
		font-size: var(--font-size_sss);
	}

	#feature .grid-item:nth-child(1) .post-card__text .title a {}

	#feature .grid-item:nth-child(1) .post-card__text .tag a {
		font-size: var(--font-size_sss);
	}

	#feature .grid-item:nth-child(1) .post-card__text .btn_4 {}

	#feature .grid-item:nth-child(1) .post-card__text .btn_4 a {
		font-size: var(--font-size_s);
	}

	#feature .grid-item:nth-child(1) .post-card__text .btn_4 svg {
		width: 9px;
		height: 9px;
	}

	/*1-3個目*/
	#feature .post-card:nth-child(1),
	#feature .post-card:nth-child(2),
	#feature .post-card:nth-child(3) {
		flex-wrap: wrap;
		align-items: center;
		width: 100%;
		padding: 10px 10px 35px 10px;
		border-bottom: solid 1px var(--color_03);
		border-radius: 0;
	}

	#feature .post-card:nth-child(1) .header__1,
	#feature .post-card:nth-child(2) .header__1,
	#feature .post-card:nth-child(3) .header__1 {
		display: flex;
	}

	#feature .post-card:nth-child(1) .post-card__image,
	#feature .post-card:nth-child(2) .post-card__image,
	#feature .post-card:nth-child(3) .post-card__image {
		width: 100%;
		aspect-ratio: 3 / 2;
	}

	#feature .post-card:nth-child(1) .post-card__image img,
	#feature .post-card:nth-child(2) .post-card__image img,
	#feature .post-card:nth-child(3) .post-card__image img {
		height: 100%;
	}

	#feature .post-card:nth-child(1) .post-card__image:hover img,
	#feature .post-card:nth-child(2) .post-card__image:hover img,
	#feature .post-card:nth-child(3) .post-card__image:hover img {}

	#feature .post-card:nth-child(1) .post-card__text,
	#feature .post-card:nth-child(2) .post-card__text,
	#feature .post-card:nth-child(3) .post-card__text {
		width: 100%;
	}

	#feature .post-card:nth-child(1) .post-card__text .title,
	#feature .post-card:nth-child(2) .post-card__text .title,
	#feature .post-card:nth-child(3) .post-card__text .title {
		margin-bottom: 10px;
	}

	#feature .post-card:nth-child(1) .post-card__text .title a,
	#feature .post-card:nth-child(2) .post-card__text .title a,
	#feature .post-card:nth-child(3) .post-card__text .title a {
		font-size: var(--font-size_mm);
	}

	#feature .post-card:nth-child(1) .post-card__text .tag,
	#feature .post-card:nth-child(2) .post-card__text .tag,
	#feature .post-card:nth-child(3) .post-card__text .tag {
		display: flex;
	}

	#feature .post-card:nth-child(1) .post-card__text .tag a,
	#feature .post-card:nth-child(2) .post-card__text .tag a,
	#feature .post-card:nth-child(3) .post-card__text .tag a {
		font-size: var(--font-size_ss);
	}

	/*3個目*/
	#feature .post-card:nth-child(3) {
		border-bottom: none;
	}
}

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

#main-cta .flex-pack {}

#main-cta .left {
	width: calc(45% - 25px);
	height: 100%;
}

#main-cta .left .content_2 {}

#main-cta .right {
	position: relative;
	width: calc(55% - 25px);
}

#main-cta .move-container {
	height: 750px;
}

#main-cta .right .image {
	position: absolute;
	border-radius: var(--radius_1);
	overflow: hidden;
}

#main-cta .right .image:nth-child(1) {
	top: 0;
	right: 0;
	width: 600px;
	height: 600px;
}

#main-cta .right .image:nth-child(1) img {
	height: 100%;
}

#main-cta .right .image:nth-child(2) {
	bottom: -100px;
	left: 0;
	width: 350px;
	height: 350px;
}

#main-cta .right .image:nth-child(2) img {
	height: 100%;
}

@media screen and (max-width: 699px) {
	#main-cta {
		padding-bottom: 125px;
	}

	#main-cta .flex-pack {
		height: 100%;
		align-items: center;
		gap: 100px;
	}

	#main-cta .left {
		width: 100%;
		padding: 0 10px;
	}

	#main-cta .left .content_2 .title_l {
		font-size: 55px;
	}

	#main-cta .right {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
	}

	#main-cta .move-container {
		height: 350px;
	}

	#main-cta .right .image {}

	#main-cta .right .image:nth-child(1) {
		top: auto;
		bottom: 0;
		right: 0;
		width: 300px;
		height: 300px;
		border-radius: 10px 0 0 10px;
	}

	#main-cta .right .image:nth-child(1) img {}

	#main-cta .right .image:nth-child(2) {
		top: 0;
		left: 0;
		width: 150px;
		height: 150px;
		border-radius: 0 10px 10px 0;
	}

	#main-cta .right .image:nth-child(2) img {}
}


/*------------------------------------
トップページ・salons
------------------------------------*/
#salons {}

#salons .wrapper-wide {
	position: relative;
}

#salons .salons-item:nth-child(1) .section-title_5 {}

#salons .flex-pack {
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 100px 50px;
}

#salons .flex-item {
	width: calc((100% - 100px) / 3);
	height: auto;
}

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

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

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

	#salons .salons-item:nth-child(1) .section-title_5 {
		position: relative;
		top: 0;
	}

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

	#salons .flex-pack {
		flex-wrap: wrap;
		gap: 25px;
	}

	#salons .flex-item {
		width: 100%;
	}
}

/*------------------------------------
トップページ・SNS埋め込みパネル
------------------------------------*/
#instagram {}

#instagram .flex-pack {
	gap: 0;
}

#instagram .flex-item {}

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

#instagram .flex-item:nth-child(1) .inner {
	display: inline-block;
	margin-left: 0;
}

#instagram .flex-item:nth-child(1) .inner p:nth-child(2) {
	margin-top: 25px;
}

#instagram .flex-item:nth-child(1) .inner p:nth-child(3) {
	justify-content: flex-start;
	margin-top: 25px;
	font-size: var(--font-size_mm);
	line-height: 1em;
}

#instagram .flex-item:nth-child(1) .inner i {
	margin-left: 15px;
	font-size: var(--font-size_l);
	line-height: 1em;
}

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

#instagram .media-pack {
	flex-wrap: wrap;
	gap: 5px;
}

#instagram .media-item {
	position: relative;
	width: calc((100% - 10px) / 3);
	aspect-ratio: 1 / 1;
}

#instagram .media-item img {
	height: 100%;
	transition: var(--ease_1);
}

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

#instagram .media-item .instagram-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2rem;
	color: rgba(255, 255, 255, 0);
	transition: var(--ease_1);
	pointer-events: none;
}

#instagram .media-item:hover .instagram-icon {
	color: var(--color_f);
}

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

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

	#instagram .flex-item {}

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

	#instagram .flex-item:nth-child(1) .inner {
		margin-left: 0;
	}

	#instagram .flex-item:nth-child(1) .inner p:nth-child(2) {
		margin-top: 0;
	}

	#instagram .flex-item:nth-child(1) .inner p:nth-child(3) {}

	#instagram .flex-item:nth-child(1) .inner i {}

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

	#instagram .media-pack {
		gap: 2px;
	}

	#instagram .media-item {
		width: calc((100% - 4px) / 3);
	}

	#instagram .media-item img {}

	#instagram .media-item:hover img,
	#instagram .media-item:hover video {}

	#instagram .media-item .instagram-icon {}

	#instagram .media-item:hover .instagram-icon {}
}


/*------------------------------------ここから下層ページコンテンツ------------------------------------*/


/*------------------------------------
下層ページ・メインビジュアル
------------------------------------*/
#subvisual_2 {
	position: relative;
	height: 300px;
	margin-top: 100px;
}

#subvisual_2 .sv-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}

#subvisual_2 .sv-title h1 {
	position: relative;
	font-family: var(--font-family_2);
	font-size: var(--font-size_llll);
	font-weight: var(--font-weight_l);
	line-height: 1.1em;
	letter-spacing: 0em;
}

#subvisual_2 .sv-title p {
	margin-top: 15px;
	font-family: var(--font-family_2);
	font-size: var(--font-size_mm);
}

@media screen and (max-width: 699px) {
	#subvisual_2 {
		height: 175px;
		margin-top: 100px;
	}

	#subvisual_2 .sv-title {}

	#subvisual_2 .sv-title h1 {
		font-size: var(--font-size_lll);
	}

	#subvisual_2 .sv-title p {
		margin-top: 15px;
		font-size: var(--font-size_s);
	}
}

#subvisual_3 {
	position: relative;
	height: 250px;
	margin-top: 100px;
}

#subvisual_3 .sv-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}

#subvisual_3 .sv-title h1 {
	gap: 10px;
	font-size: var(--font-size_ll);
	font-weight: var(--font-weight_l);
	line-height: 1.3em;
}

#subvisual_3 .sv-title svg {
	width: 30px;
	fill: var(--color_00);
}

#subvisual_3 .sv-title p {
	margin-top: 5px;
}

@media screen and (max-width: 699px) {
	#subvisual_3 {
		height: 150px;
	}
}

#subvisual_4 {
	position: relative;
	height: 200px;
	margin-top: 100px;
}

#subvisual_4 .sv-title {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: left;
}

#subvisual_4 .sv-title h1 {
	position: relative;
	font-family: var(--font-family_2);
	font-size: var(--font-size_llll);
	color: var(--color_1);
	font-weight: var(--font-weight_l);
	line-height: 1em;
}

#subvisual_4 .sv-title p {
	margin-top: 15px;
	font-family: var(--font-family_2);
	font-size: var(--font-size_mm);
}

@media screen and (max-width: 699px) {
	#subvisual_4 {
		height: 150px;
	}

	#subvisual_4 .sv-title {}

	#subvisual_4 .sv-title h1 {
		font-size: var(--font-size_lll);
	}

	#subvisual_4 .sv-title p {
		margin-top: 15px;
		font-size: var(--font-size_s);
	}
}

/*------------------------------------
下層ページ・求人検索
------------------------------------*/
#job-search {}

#job-search .job-search-container {
	align-items: flex-start;
	gap: 50px;
}

#job-search .job-search-pack {
	width: 100%;
}

#job-search .products-list {
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 75px 35px;
}

#job-search .products-list .products-list-item {
	flex-wrap: wrap;
	width: calc((100% - 35px) / 2);
	height: auto;
}

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

	#job-search .job-search-container {
		align-items: flex-start;
		gap: 50px;
	}

	#job-search .job-search-pack {
		width: 100%;
	}

	#job-search .products-list {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 50px;
	}

	#job-search .products-list .products-list-item {
		flex-wrap: wrap;
		width: 100%;
		height: auto;
	}
}

/*フィルター機能*/
.cat-filter {
	width: 100%;
	padding: 3px 7px;
	text-align: left;
	font-size: var(--font-size_ss);
	border: none;
	background: transparent;
	cursor: pointer;
}

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

.filter-title {
	font-size: var(--font-size_mm);
}

.filter-group {
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
	margin: 15px auto 35px;
}

.tax-filter {
	padding: 0 10px;
	font-size: var(--font-size_ss);
	border: var(--border_2);
	border-radius: var(--radius_5);
}

.tax-filter.active {
	background: var(--color_00);
	color: var(--color_f);
	border-color: var(--color_00);
}

/*~の検索結果*/
.search-header {
	margin-bottom: 25px;
	font-size: var(--font-size_m);
}

/*PC表示（stickyサイドバー）*/
@media (min-width: 769px) {
	.category-filter {
		display: block;
		position: sticky;
		top: 0;
		width: 35%;
		padding: 50px;
		background: var(--color_f);
		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: 10px;
		left: 15px;
		z-index: 98;
		background: var(--color_00);
		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: 75%;
		height: 100%;
		background: var(--color_f);
		transition: left 0.4s ease-out;
		z-index: 98;
		padding: 50px 20px;
		overflow-y: auto;
	}

	.category-filter::before {
		display: none;
	}

	.category-filter.open {
		left: 0;
	}

	.filter-close {
		position: absolute;
		top: 15px;
		right: 15px;
		background: none;
		border: none;
		font-size: 1.5rem;
		cursor: pointer;
	}

	.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;
	}
}

/*------------------------------------
下層ページ・お問い合わせ
------------------------------------*/
#sub-contact {}

/*------------------------------------
下層ページ・利用規約/プライバシーポリシー共通
------------------------------------*/
#sub-legals {}

#sub-legals .legals-pack {}

#sub-legals .legals-header {}

#sub-legals .legals-header h2 {}

#sub-legals .legals-item {}

#sub-legals .legals-item h3 {}

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


/*------------------------------------ここから投稿一覧ページコンテンツ------------------------------------*/


/*------------------------------------
投稿リスト・縦積み
------------------------------------*/
#post-archive {}

#post-archive .post-main-content {
	flex-wrap: wrap;
	gap: 50px;
}

#post-archive .flex-item:nth-child(1) .post-card {
	align-items: center;
	gap: 50px;
}

#post-archive .flex-item:nth-child(1) .post-card .post-card__image {
	width: calc(35% - 25px);
	aspect-ratio: 3 / 2;
}

#post-archive .flex-item:nth-child(1) .post-card .post-card__image img {
	height: 100%;
}

#post-archive .flex-item:nth-child(1) .post-card .post-card__image .more-text {
	transform: translate(-50%, -90%);
}

#post-archive .flex-item:nth-child(1) .post-card .post-card__text {
	width: calc(65% - 25px);
}

#post-archive .flex-item:nth-child(1) .post-card .post-card__text p {
	margin-top: 0;
}

#post-archive .flex-item:nth-child(1) .post-card .post-card__text .title {}

#post-archive .flex-item:nth-child(1) .post-card .post-card__text .text p {
	font-size: var(--font-size_ss);
}


#post-archive .flex-item:nth-child(1) .post-card .post-card__text .tag {}

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

	#post-archive .post-main-content {}

	#post-archive .flex-item:nth-child(1) {
		padding-bottom: 50px;
	}

	#post-archive .flex-item:nth-child(1) .post-card {
		flex-wrap: wrap;
		gap: 25px;
	}

	#post-archive .flex-item:nth-child(1) .post-card .post-card__image {
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	#post-archive .flex-item:nth-child(1) .post-card .post-card__image img {}

	#post-archive .flex-item:nth-child(1) .post-card .post-card__text {
		width: 100%;
	}

	#post-archive .flex-item:nth-child(1) .post-card .post-card__text .text {
		font-size: var(--font-size_ss);
	}
}

/*------------------------------------
サイドバー
------------------------------------*/
.post-sideber {
	flex-wrap: wrap;
	gap: 25px;
	z-index: 0;
}

.post-sideber .post-card {
	align-items: center;
	gap: 15px;
	width: 100%;
	padding-bottom: 25px;
	border-bottom: var(--border_2);
}

.post-sideber .post-card__image {
	width: calc(30% - 7.5px);
	aspect-ratio: 1 / 1;
}

.post-sideber .post-card__image .more-text {
	font-size: var(--font-size_s);
}

.post-sideber .post-card__text {
	width: calc(70% - 7.5px);
}

.post-sideber .post-card__text .category a {
	font-size: var(--font-size_sss);
}

.post-sideber .post-card__text .title {
	margin-top: 0;
}

.post-sideber .post-card__text .title a {
	font-size: var(--font-size_ss);
}

@media screen and (max-width: 699px) {
	.post-sideber .post-card__text .title a {
		font-size: var(--font-size_s);
	}
}

/*------------------------------------
投稿リスト・ソート用タグ
------------------------------------*/
#post-archive .tag-list-pack {
	padding-bottom: 75px;
}

#post-archive .tag-list {
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
}

#post-archive .post-filter {
	padding: 5px 20px;
	font-size: var(--font-size_ss);
	font-weight: var(--font-weight_m);
	background: var(--color_4);
	border-radius: var(--radius_5);
}

#post-archive .post-filter.active {
	color: var(--color_f);
	background: var(--color_1);
}

@media screen and (max-width: 699px) {
	#post-archive .tag-list-pack {
		width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	#post-archive .tag-list {
		width: 500px;
	}
}

/*------------------------------------
投稿一覧・次のページ/前のページ
------------------------------------*/
.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;
	background: var(--color_4);
	border-radius: var(--radius_5);
}

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

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

}

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

}

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


/*------------------------------------ここから投稿ページコンテンツ------------------------------------*/


/*------------------------------------
投稿ページ・レイアウト
------------------------------------*/
#post-container {}

#post-container .post-content {}

#post-container .post-content p {}

@media screen and (max-width: 699px) {
	#post-container {
		padding-top: 35px;
	}
}

.post-main-pack {
	align-items: stretch;
	gap: 75px;
}

.post-main-pack .flex-item:nth-child(1) {
	width: calc(100% - 375px);
}

.post-main-pack .flex-item:nth-child(2) {
	width: 300px;
}

.post-main-content {
	width: 100%;
	margin-bottom: 50px;
}

@media screen and (max-width: 699px) {
	.post-main-pack {
		flex-wrap: wrap;
		gap: 25px;
	}

	.post-main-pack .flex-item:nth-child(1) {
		width: 100%;
	}

	.post-main-content {
		margin-bottom: 25px;
	}

	.post-main-pack .flex-item:nth-child(2) {
		width: 100%;
	}
}


/*------------------------------------
投稿ページ用ヘッダー
------------------------------------*/
#post-header {
	padding-top: 100px;
	padding-bottom: 50px;
}

#post-header .wrapper-wide {
	padding-top: 125px;
}

#post-header .post-header-pack {}

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

#post-header .post-meta .date p {
	font-size: var(--font-size_ss);
	color: var(--color_03);
}

#post-header .post-meta .category p {
	font-size: var(--font-size_ss);
}

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

#post-header .post-title h2 {
	font-family: var(--font-family_2);
	font-size: 35px;
	line-height: 1.3em;
}

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

#post-header .post-tag a {
	padding: 0 10px;
	font-size: var(--font-size_sss);
	background: var(--color_08);
}

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

#post-header .post-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
}

@media screen and (max-width: 699px) {
	#post-header .wrapper-wide {
		padding-top: 100px;
	}

	#post-header .post-title h2 {
		font-size: 25px;
	}
}

/*------------------------------------
投稿ページ・次のページ/前のページ
------------------------------------*/
#post-navigation {
	padding: 35px 0;
}

#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);
	}
}

/*------------------------------------
通常コンテンツ記事にcssをあてて見た目を整える
------------------------------------*/
.post-main-content h2,
.post-main-content h3 {
	position: relative;
	text-align: left;
	padding-bottom: 30px;
	margin: 0 auto 50px auto;
	font-family: var(--font-family_2);
	font-weight: var(--font-weight_l);
	letter-spacing: 0em;
	line-height: 1.5em;
}

.post-main-content h2::after,
.post-main-content h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	border-radius: var(--radius_5);
	background: var(--color_1);
}

.post-main-content h2 {
	font-size: 30px;
}

.post-main-content h3 {
	font-size: 25px;
}

.post-main-content h4 {
	font-family: var(--font-family_1);
	font-size: var(--font-size_mm);
	font-weight: var(--font-weight_l);
}

.post-main-content p {
	margin-top: 15px;
	line-height: 2em;
}

@media screen and (max-width: 699px) {
	.post-main-content h2 {
		font-size: 20px;
	}

	.post-main-content h3 {
		font-size: 20px;
	}
}

/*------------------------------------
インタビュー記事にcssをあてて見た目を整える
------------------------------------*/
.post-interview {
	flex-wrap: wrap;
	gap: 50px;
}

.post-interview .profile {
	width: 100%;
	gap: 50px
}

.post-interview .profile .image {
	width: calc(30% - 25px);
	aspect-ratio: 1 / 1;
}

.post-interview .profile .image img {
	height: 100%;
}

.post-interview .profile .text {
	width: calc(70% - 25px);
}

.post-interview .intro {
	width: 100%;
}

.post-interview .content {
	flex-wrap: wrap;
	gap: 25px;
	width: 100%;
}

.post-interview .content .inner {
	flex-wrap: wrap;
	gap: 15px;
}

.post-interview .content .inner .question {
	width: 100%;
	font-size: var(--font-size_mm);
}

.post-interview .content .inner .answer {
	width: 100%;
}


/*------------------------------------店舗ページ用CSS------------------------------------*/


/*------------------------------------
header
------------------------------------*/
#salon-header {
	padding-top: 100px;
	padding-bottom: 50px;
}

#salon-header .wrapper-wide {
	padding-top: 125px;
}

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

#salon-header .category p {
	font-size: var(--font-size_s);
}

#salon-header h2 {
	margin-top: 10px;
	margin-bottom: 35px;
	padding-bottom: 35px;
	font-family: var(--font-family_2);
	font-size: 50px;
	line-height: 1em;
	border-bottom: var(--border_1);
}

#salon-header p {
	font-size: var(--font-size_s);
	color: var(--color_03);
}

#salon-header .tag {
	justify-content: flex-start;
	gap: 10px;
	margin-top: 15px;
}

#salon-header .tag p {
	padding: 0px 10px;
	font-size: var(--font-size_sss);
	color: var(--color_02);
	background: var(--color_08);
}

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

	#salon-header .wrapper-wide {
		padding-top: 100px;
	}

	#salon-header .category p {
		font-size: var(--font-size_s);
	}

	#salon-header h2 {
		margin-top: 10px;
		margin-bottom: 25px;
		padding-bottom: 25px;
		font-size: 35px;
	}

	#salon-header p {
		font-size: var(--font-size_ss);
	}
}

/*------------------------------------
info
------------------------------------*/
#salon-info {
	padding-top: 0;
}

#salon-info .flex-pack {
	align-items: flex-start;
}

#salon-info .flex-item {}

#salon-info .flex-item:nth-child(1) {
	width: calc(40% - 25px);
}

#salon-info .flex-item:nth-child(2) {
	width: calc(60% - 25px);
}

#salon-info .flex-item:nth-child(2) img {
	aspect-ratio: 3 / 2;
}

@media screen and (max-width: 699px) {
	#salon-info .flex-pack {
		flex-wrap: wrap-reverse;
	}

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

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

/*------------------------------------
intro
------------------------------------*/
#salon-intro {}

#salon-intro .wrapper-wide {
	position: relative;
}

#salon-intro .salon-intro-pack {}

#salon-intro .salon-intro-item:nth-child(odd) {
	flex-wrap: wrap-reverse;
}

#salon-intro .salon-intro-item:nth-child(odd) .flex-item:nth-child(1) {
	width: calc(60% - 25px);
}

#salon-intro .salon-intro-item:nth-child(odd) .flex-item:nth-child(2) {
	width: calc(40% - 25px);
}

#salon-intro .salon-intro-item:nth-child(even) {}

#salon-intro .salon-intro-item:nth-child(even) .flex-item:nth-child(1) {
	width: calc(40% - 25px);
}

#salon-intro .salon-intro-item:nth-child(even) .flex-item:nth-child(2) {
	width: calc(60% - 25px);
}

@media screen and (max-width: 699px) {
	#salon-intro .salon-intro-item {
		gap: 0;
	}

	#salon-intro .salon-intro-item:nth-child(odd) .flex-item:nth-child(1),
	#salon-intro .salon-intro-item:nth-child(odd) .flex-item:nth-child(2),
	#salon-intro .salon-intro-item:nth-child(even) .flex-item:nth-child(1),
	#salon-intro .salon-intro-item:nth-child(even) .flex-item:nth-child(2) {
		width: 100%;
	}
}

/*------------------------------------
data
------------------------------------*/
#salon-data {}

#salon-data .wrapper-wide {}

#salon-data .flex-pack {
	flex-wrap: wrap;
}

#salon-data .flex-item {
	width: calc((100% - 100px) / 3);
	aspect-ratio: 1 / 1;
}

#salon-data .flex-item .inner {
	text-align: center;
}

#salon-data .flex-item .inner h3 {}

#salon-data .flex-item .inner p {
	margin-top: 25px;
	font-size: var(--font-size_l);
	color: var(--color_03);
}

#salon-data .flex-item .inner p span {
	font-size: 75px;
	font-weight: var(--font-weight_ll);
}

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

	#salon-data .wrapper-wide {}

	#salon-data .flex-pack {
		gap: 25px;
	}

	#salon-data .flex-item {
		width: calc((100% - 25px) / 2);
	}

	#salon-data .flex-item .inner {}

	#salon-data .flex-item .inner h3 {
		font-size: var(--font-size_s);
	}

	#salon-data .flex-item .inner p {
		margin-top: 25px;
		font-size: var(--font-size_mm);
	}

	#salon-data .flex-item .inner p span {
		font-size: 45px;
		font-weight: var(--font-weight_l);
	}
}

/*------------------------------------
tab
------------------------------------*/
#salon-tab {}

#salon-tab .tab-panel {
	gap: 100px;
	padding: 25px 75px;
}

#salon-tab .block-pack {
	width: 100%;
	max-width: 800px;
	margin: 50px auto 100px;
}

#salon-tab .flex-pack {
	flex-wrap: wrap;
}

#salon-tab .flex-item {
	width: calc((100% - 50px) / 2);
}

#salon-tab .flex-item .image {
	width: 100%;
}

#salon-tab .flex-item .text {
	width: 100%;
	margin-top: 20px;
}

#salon-tab .tab-panel .table_2 {}

#salon-tab .tab-panel .data {}

#salon-tab .tab-panel .data .image {}

#salon-tab .tab-panel .data .text {}

#salon-tab .tab-panel .data .text h3 {
	font-size: var(--font-size_mm);
}

#salon-tab .tab-panel .data .text p {
	margin-top: 5px;
	font-size: var(--font-size_ss);
}

@media screen and (max-width: 699px) {
	#salon-tab .block-pack {
		margin: 25px auto 50px;
	}

	#salon-tab .tab-panel {
		padding: 20px;
	}

	#salon-tab .flex-item {
		width: 100%;
	}
}

/*------------------------------------
recruit
------------------------------------*/
#salon-recruit {}

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



/*------------------------------------ここからフッターコンテンツ------------------------------------*/


/*------------------------------------
footer
------------------------------------*/
#footer {
	position: relative;
	padding-top: 150px;
	padding-bottom: 100px;
	z-index: 1;
}

#footer .footer_1 {
	flex-wrap: wrap;
	gap: 50px;
}

#footer .footer_1 .flex-item {
	width: 100%;
}

#footer .footer_1 .footer-logo {
	justify-content: center;
	text-align: center;
}

#footer .footer_1 .footer-logo svg {
	width: 150px;
	margin: auto;
}

x #footer .footer_1 .footer-logo .caption {
	margin-top: 10px;
}

#footer .footer_1 .footer-icon {}

#footer .footer_1 .footer-menu {
	gap: 35px;
}

#footer .footer_2 {
	justify-content: space-between;
	margin-top: 50px;
	padding-top: 50px;
	border-top: var(--border_5);
}

#footer .footer_2 .flex-item:nth-child(1) {
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 25px;
	width: 50%;
}

#footer .footer_2 .flex-item:nth-child(1) a {
	font-size: var(--font-size_ss);
}

#footer .footer_2 .flex-item:nth-child(2) {
	justify-content: flex-end;
	width: 50%;
}

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

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

	#footer .footer_1 {
		flex-wrap: wrap;
		gap: 50px;
	}

	#footer .footer_1 .flex-item {
		width: 100%;
	}

	#footer .footer_1 .footer-logo img {
		width: 125px;
	}

	#footer .footer_1 .footer-logo .caption {}

	#footer .footer_1 .footer-icon {}

	#footer .footer_1 .footer-menu {
		flex-wrap: wrap;
		gap: 25px;
	}

	#footer .footer_1 .footer-menu li {
		width: 100%;
		text-align: center;
	}

	#footer .footer_2 {}

	#footer .footer_2 .flex-item:nth-child(1) {
		flex-wrap: nowrap;
		justify-content: center;
		gap: 25px;
		width: 100%;
	}

	#footer .footer_2 .flex-item:nth-child(1) a {
		font-size: var(--font-size_ss);
	}

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

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