/*
Thame Name:tanpopo
Thame URL:
Description:開発中・・・
Author:Katayama
Version:0.8
*/

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



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

/* hover時に少し濃くする */
#wpadminbar:hover {
	background: rgba(0, 0, 0, 0.8) !important;
}

/*------------------------------------
変数
------------------------------------*/
:root {
	--font-family_1: "Vollkorn", 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', serif;
	--font-family_2: "Roboto", sans-serif;
	--font-family_3: "Kaushan Script", serif;

	--font-size_sss: 0.8rem !important;
	--font-size_ss: 0.9rem !important;
	--font-size_s: 1rem !important;
	--font-size_mm: 1.1rem !important;
	--font-size_m: 1.3rem !important;
	--font-size_l: 1.7rem !important;
	--font-size_ll: 2rem !important;
	--font-size_lll: 3rem !important;

	--font-weight_s: 400;
	--font-weight_m: 600;
	--font-weight_l: 700;

	--color_00: #111;
	--color_01: #222;
	--color_02: #666666;
	--color_03: #999999;
	--color_04: #bfbfbf;
	--color_05: #c2c2c2;
	--color_06: #c5c5c5;
	--color_07: #d6d6d6;
	--color_08: #eeeeee;
	--color_09: #f6f6f6;
	--color_1: #bc002d;
	--color_2: #D92929;
	--color_3: #F2D1C9;
	--color_4: #D97B59;
	--color_5: #F2E399;
	--color_6: #A8615A;
	--color_f: #fff;
	--color_bs: #00000033;

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

	--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_04);
	--border_3: solid 1px var(--color_08);

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

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

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

	--bg_1: repeating-linear-gradient(-45deg, var(--color_08), var(--color_08) 2px, transparent 2px, transparent 5px);
}

@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: 1.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;
	color: var(--color_00);
	font-family: var(--font-family_2);
	font-weight: var(--font-weight_s);
	letter-spacing: 0.05em;
	text-align: left;
}

body .no-scroll {
	overflow: hidden;
}

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

h1,
h2,
h3 {}

h4,
h5,
h6 {}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.3rem;
}

p {
	font-size: var(--font-size_s);
	font-weight: var(--font-weight_s);
	letter-spacing: 0.05em;
	line-height: 1.8em;
}

ul,
ol {
	list-style: none;
}

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

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

table {
	line-height: 1.4em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 699px) {
	.block-item {
		margin: 100px 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;
}

/*------------------------------------
見出し・大
------------------------------------*/
.section-title_1 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-left: 15px;
	text-align: center;
}

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

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

.section-title_2 {
	justify-content: center;
	gap: 15px;
	margin: 0 auto 50px auto;
	padding-right: 50px;
}

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

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

.section-title_2 p {
	text-align: center;
	font-family: var(--font-family_2);
	font-weight: var(--font-weight_l);
	color: var(--color_2);
}

.section-title_2 p {
	text-align: center;
	font-family: var(--font-family_2);
	font-weight: var(--font-weight_l);
	color: var(--color_2);
}

.section-title_2 h2 {
	font-size: 55px;
	line-height: 1em;
}

.section-title_3 {
	margin: 0 auto 25px auto;
	padding: 25px 15px 0px;
	text-align: center;
}

.section-title_3 span {
	color: var(--color_1);
	font-family: var(--font-family_2);
	font-weight: var(--font-weight_l);
}

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

.section-title_3 p {
	margin-top: 10px !important;
	font-size: var(--font-size_sss);
	line-height: 1.5em !important;
}

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

.section-title_4 span {}

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

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

.section-title_5 {
	position: relative;
	margin: 0 auto 25px auto;
}

.section-title_5 span {
	font-size: var(--font-size_mm);
	color: var(--color_1);
}

.section-title_5 h3 {
	font-size: var(--font-size_l);
}

@media screen and (max-width: 699px) {
	.section-title_1 h2 {
		margin-left: 5px;
		font-size: 40px;
	}

	.section-title_2 {
		margin: 0 auto 25px auto;
	}

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

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

	.section-title_2 .text {}

	.section-title_2 span {}

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

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

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

	.section-title_4 p {}
}

/*------------------------------------
見出し・小
------------------------------------*/
.title_l {
	font-size: 100px;
	line-height: 1;
}

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

.title_s {
	font-size: 45px;
	line-height: 1;
}

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

	.title_m {
		font-size: 45px;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.table_2,
	.table_3 {}

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

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

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

	.table_2 .row,
	.table_3 .row {}

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

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

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

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

/*------------------------------------
グリッドレイアウト
------------------------------------*/
.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_1,
.btn_2 {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 25px auto 0px auto;
	max-width: 300px;
}

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

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

.btn_1 a::before,
.btn_1 a:after,
.btn_2 a::before,
.btn_2 a:after {
	position: absolute;
	content: '';
	width: 10px;
	height: 2px;
	background: var(--color_f);
	border-radius: var(--radius_5);
	transition: var(--ease_2);
}

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

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

.btn_1 a,
.btn_2 a {
	width: 100%;
	text-align: center;
	color: var(--color_f);
	letter-spacing: 0.3em;
	text-shadow: var(--text-shadow_1);
	background: var(--color_00);
	padding: 12px 40px;
	border-radius: var(--radius_5);
	border: solid 1px var(--color_00);
	transition: var(--ease_2);
}

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

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

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

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

.btn_2 i {}

.btn_2 a::before::after {}

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

.btn_2 a::before {}

.btn_2 a::after {}

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

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

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

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

/*アイコン+矢印つきボタン*/
.btn_3 {
	margin: 25px auto 0px auto;
}

.btn_3 a {
	position: relative;
	display: block;
	text-align: center;
	margin: auto;
	width: 100%;
	max-width: 250px;
	padding: 12px 40px;
	border: solid 2px var(--color_01);
	transition: var(--ease_2);
}

.btn_3 .arrow {
	content: "";
	position: absolute;
	top: 50%;
	right: -20px;
	display: inline-block;
	width: 40px;
	height: 2px;
	margin-left: 10px;
	border-radius: var(--radius_1);
	background-color: var(--color_00);
	transition: var(--ease_2);
}

.btn_3 .arrow::after {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	right: 0;
	width: 10px;
	height: 2px;
	border-radius: var(--radius_1);
	background-color: var(--color_00);
	transform: rotate(45deg);
	transform-origin: calc(100% - 2px) 50%;
}

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

.btn_3 a:hover .arrow {
	transform: translateX(10px);
}

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

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

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

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

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

.btn_4 a {
	width: 100%;
	text-align: center;
	color: var(--color_00);
	padding: 10px 20px;
	border-bottom: solid 1px var(--color_00);
}

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

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

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

/*赤ベタ塗りボタン*/
.btn_5 {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 25px auto 0px auto;
}

.btn_5 a {
	position: relative;
	display: block;
	width: 250px;
	text-align: center;
	letter-spacing: 0.3em;
	font-family: var(--font-family_3);
	font-size: var(--font-size_m);
	color: var(--color_f);
	background: var(--color_2);
	border: solid 1px var(--color_2);
	padding: 20px 0px;
	transition: var(--ease_2);
}

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

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

.accordion-area li {
	margin: 25px 0;
	background: var(--color_f);
	border: solid 2px var(--color_03);
	border-radius: var(--radius_3);
}

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

.accodion-title {
	position: relative;
	cursor: pointer;
	padding: 20px 40px 20px 15px;
	transition: var(--ease_1);
	font-size: 5px;
}

.accodion-title p {}

.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 p {
	color: var(--color_1);
}

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

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

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

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

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

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

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

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

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

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

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

/*------------------------------------
その他のパーツ
------------------------------------*/
/*SNSアイコン*/
.icon-list {
	display: flex;
	align-items: start;
	justify-content: flex-start;
	gap: 25px;
	margin: 10px;
}

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

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

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

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

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

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

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

/*白背景のテキストボックス*/
.content {
	position: relative;
	display: block;
	max-width: 1000px;
	margin: 100px auto;
	padding: 100px;
	background: var(--color_f);
	box-shadow: var(--shadow_1);
}

.content::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	width: 100%;
	height: 100%;
	border: solid 1px var(--color_02);
}

.content p {
	max-width: 600px;
	margin: 35px auto 0;
	line-height: 2em;
}

@media screen and (max-width: 699px) {
	.content {
		margin: 0px;
		padding: 50px 25px;
	}

	.content p {
		margin: 35px 10px;
	}

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


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

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

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

#header .header-logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 180px;
	background-image: linear-gradient(0deg, var(--color_1), var(--color_2));
}

#header .header-logo img {
	width: 120px;
	height: auto;
	margin-bottom: 20px;
}

/*PCメニュー白背景*/
#header .header-bg {
	position: fixed;
	top: 0px;
	right: 0;
	width: 100vw;
	height: 75px;
	background: var(--color_f);
	box-shadow: var(--shadow_2);
	opacity: 0;
	z-index: 9;
}

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

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

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

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

	#header .header-logo a {
		width: 125px;
		height: 125px;
	}

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

/*------------------------------------
スマホナビ・コンテンツ
------------------------------------*/
.nav {}

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

#navi .navi-container {
	align-items: start;
	gap: 50px;
	height: 100%;
}


#navi .navi-left,
#navi .navi-right {}

/*スマホナビ・左半分*/
#navi .navi-left {
	width: calc(40% - 25px);
	height: 100%;
}

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

/*スマホナビ・右半分*/
#navi .navi-right {
	width: calc(60% - 25px);
}

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

/*スマホナビ・メインメニュー*/
#navi .menu {}

#navi .menu .navi-pack {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

#navi .menu li {
	cursor: pointer;
	position: relative;
	text-align: left;
	width: 100%;
	padding-bottom: 15px;
	line-height: 1.5em;
}

#navi .menu li::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--color_01);
}

#navi .menu .navi-item {}

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

#navi .menu .navi-item span {
	color: var(--color_1);
}

/*スマホナビ・展開メニュー*/
#navi .menu .submenu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	max-height: 0;
	padding: 0 30px;
	overflow: hidden;
	transition: all 0.5s ease-out;
}

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

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

#navi .menu .submenu a {
	width: 100%;
}

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

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

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

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

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

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

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

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

/*スマホナビ・下*/

#navi .menu-bottom {
	margin-top: 50px;
}

#navi .menu-bottom ul {
	gap: 15px;
}

#navi .menu-bottom .menu-bottom-item {
	border: solid 1px var(--color_01);
	width: calc((100% - 25px) / 2);
	text-align: center;
}

#navi .menu-bottom a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 35px 5px;
}

#navi .menu-bottom p {
	font-family: var(--font-family_1);
	font-size: var(--font-size_ll);
	font-weight: var(--font-weight_l);
	line-height: 1.2em;
}

#navi .menu-bottom span {
	color: var(--color_1);
}

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

/* フェードアニメーション表示状態 */
#navi .navi-item.animate,
#navi .menu-bottom-item.animate {
	opacity: 1;
	transform: translateX(0);
}

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

	#navi {
		padding: 0px 25px 50px 25px;
	}

	#navi .navi-container {}

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

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

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

	#navi .navi-right {
		padding-top: 100px;
	}

	#navi .navi-right img {}

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

	#navi .menu {}

	#navi .menu .navi-pack {
		gap: 5px;
		margin: 0;
	}

	#navi .menu .navi-item {
		width: 100%;
		padding-top: 15px;
	}

	#navi .menu .navi-item p {
		font-size: var(--font-size_ll);
		line-height: 1.2em;
	}

	#navi .menu .navi-item span {
		font-size: var(--font-size_ss);
	}

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

	#navi .menu .submenu span {
		font-size: var(--font-size_s);
	}

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

	#navi .menu-bottom {}

	#navi .menu-bottom ul {}

	#navi .menu-bottom .menu-bottom-item {}

	#navi .menu-bottom a {
		padding: 25px 5px;
	}

	#navi .menu-bottom p {
		font-size: var(--font-size_m);
	}

	#navi .menu-bottom span {
		font-size: var(--font-size_ss);
	}

}

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

.hamburger p {
	white-space: nowrap;
	position: absolute;
	left: 50%;
	bottom: 2px;
	transform: translateX(-50%);
	font-family: var(--font-family_3);
	font-size: var(--font-size_ss);
	font-weight: 600;
	color: var(--color_00);
}

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

}

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

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

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

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

.nav_open .hamburger span {
	top: 20px;
	background: var(--color_01);
	/* 全部中央集合 */
}

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

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

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

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

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

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

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

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

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

/*------------------------------------
スマホナビ展開時の背景
------------------------------------*/
.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;
}

/*------------------------------------
langageボタン
------------------------------------*/
#lang-button {
	cursor: pointer;
	position: fixed;
	top: 10px;
	right: 120px;
	width: 60px;
	height: 60px;
	z-index: 101;
	pointer-events: painted;
}


#lang-button i {
	position: absolute;
	top: 9px;
	left: 50%;
	transform: translateX(-50%);
	font-size: var(--font-size_l);
	color: var(--color_00);
	height: auto;
}

#lang-button p {
	white-space: nowrap;
	position: absolute;
	left: 50%;
	bottom: 2px;
	transform: translateX(-50%);
	font-family: var(--font-family_3);
	font-size: var(--font-size_ss);
	font-weight: 600;
	color: var(--color_00);
}

.lang {
	position: relative;
	display: flex;
	z-index: 103;
}

.lang-pack {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	position: fixed;
	top: 80px;
	right: -250px;
	width: 250px;
	padding: 30px 60px 30px 30px;
	background: #00000099;
	box-shadow: var(--shadow_2);
	opacity: 0;
	pointer-events: none;
}

.lang-item {
	width: 100%;
}

.lang-item img {
	width: 30px;
	box-shadow: var(--shadow_3);
}

.lang-item button {
	display: flex;
	gap: 10px;
	text-decoration: none;
	color: var(--color_f);
}

.lang-pack .close-btn {
	margin-top: 10px;
	display: block;
}

.translate-buttons {
	margin-left: 50px;
}

#google_translate_element {
	display: none;
}

.goog-te-banner-frame,
.goog-te-gadget {
	display: none !important;
}

.skiptranslate {
	display: none !important;
}

@media screen and (max-width: 699px) {
	#lang-button {
		position: fixed;
		top: 4px;
		right: 60px;
	}

	#lang-button p {
		font-size: var(--font-size_ss);
	}
}

/*------------------------------------
PCナビ
------------------------------------*/
#navi-pc {
	top: 0;
	right: 0;
	width: 100%;
	pointer-events: none;
	z-index: 102;

}

#navi-pc ul {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

}

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

#navi-pc .menu li {}

#navi-pc li a {
	padding: 25px 10px;
	text-decoration: none;
	font-family: var(--font-family_1);
	font-size: var(--font-size_s);
	position: relative;
}

#navi-pc li a::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: var(--color_2);
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	transition: var(--ease_1);
}

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

#navi-pc li a:hover::after {
	width: 30px;
}

#navi-pc li i {
	padding-left: 10px;
}

#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;
	background: var(--color_f);
	list-style-type: none;
	padding: 15px 0 25px 0;
	margin: 0;
	box-shadow: var(--shadow_1);
	overflow: hidden;
}

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

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

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

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

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

/*------------------------------------
フロートコンタクトボタン
------------------------------------*/
#contact-btn {
	position: fixed;
	width: 100%;
	bottom: -100px;
	left: 0;
	opacity: 0;
	z-index: 50;
}

#contact-btn ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
	padding: 0 5px 10px 0;
	width: 100%;
}

#contact-btn li {
	display: flex;
	align-items: center;
	width: 100px;
	height: 100px;
}

#contact-btn li:first-child {}

#contact-btn a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	padding: 18px 5px;
	color: var(--color_f);
	font-weight: var(--font-weight_l);
	background: var(--color_4);
	box-shadow: var(--shadow_1);
	border-radius: var(--radius_10);
	transition: var(--ease_1);
	cursor: pointer;
}

#contact-btn a:hover {}

#contact-btn p {
	font-family: var(--font-family_3);
	font-weight: var(--font-weight_l);
}

#contact-btn li:last-child {}

#contact-btn li:last-child a {
	background: var(--color_1);
	color: var(--color_f);
}

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

#contact-btn img {
	width: 35px;
	margin: auto;
}

#contact-btn p {
	font-size: var(--font-size_s);
}

/*アプリ展開ボタン*/
#delivery-btn {
	position: relative;
}

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

.card-menu {
	background: none;
	position: absolute;
	bottom: 115px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
}

.card-item {
	position: relative;
	width: 65px;
	height: 65px;
	padding: 0;
	background: none;
	transform: translateY(40px);
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
	transition: none;
}

.card-item a {
	width: 65px !important;
	height: 65px !important;
	padding: 10px !important;
	box-shadow: var(--shadow_1);
	border-radius: var(--radius_10) !important;
}

.card-item:nth-child(1) a {
	background: #299345 !important;
}

.card-item:nth-child(2) a {
	background: #EC4E2D !important;
}

.card-item:nth-child(3) a {
	background: var(--color_f) !important;
}

.card-item img {
	width: 100% !important;
	height: 100% !important;
}

@media screen and (min-width: 599px) {
	#contact-btn {
		display: none;
	}
}

@media screen and (max-width: 699px) {
	#contact-btn li {
		width: 80px;
		height: 80px;
	}

	#contact-btn a {
		padding: 10px 5px;
	}

	#contact-btn li:first-child {
		display: flex;
	}

	#contact-btn i {
		font-size: 1.4rem;
	}

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

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

	.card-menu {
		bottom: 90px;
	}

	.contact-btn-pc {
		display: none;
	}
}

/*------------------------------------
TOPに戻るボタン
------------------------------------*/
.top-btn {
	position: fixed;
	bottom: -90px;
	opacity: 0;
	right: 5px;
	z-index: 51;
}

.top-btn a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	border: solid 2px var(--color_f);
	border-radius: var(--radius_10);
	padding: 7px;
	color: var(--color_f);
}

.top-btn i {
	font-size: var(--font-size_l);
	line-height: 0;
}

.top-btn p {
	font-size: var(--font-size_ss);
	line-height: 0;
}

@media screen and (max-width: 699px) {
	.top-btn a {
		width: 75px;
		height: 75px;
	}
}

/*------------------------------------
トップページ・背景
------------------------------------*/
.main-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: var(--fixed-vh);
	transform: scale(1.3);
	transform-origin: center top;
	will-change: transform;
	z-index: -2;
}

.main-bg img {
	height: 100% !important;
	filter: grayscale(1) blur(3px) opacity(0.6);
}

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

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

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

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


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


/*------------------------------------
トップページ・mainvisual
------------------------------------*/
#mainvisual {
	position: relative;
	padding: 80px 0 0 0;
	text-align: center;
}

#mainvisual .mv-pack {
	position: relative;
	width: 100%;
	max-width: 1999px;
	margin: auto;
}

#mainvisual .mv-pack .flex-pack {
	flex-wrap: wrap-reverse;
	justify-content: space-between;
	gap: 50px;
	margin-left: 50px;
	margin-right: 0px;
}

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

#mainvisual .mv-pack .mv-left {
	max-width: 450px;
	margin: auto;
}

#mainvisual .mv-pack .mv-inner {
	display: flex;
	margin-top: 50px;
}

#mainvisual .mv-pack .mv-inner .mv-logo {
	width: 50%;
}

#mainvisual .mv-pack .mv-inner .mv-logo img {
	width: 120px;
}

#mainvisual .mv-pack .mv-inner .mv-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 50%;
	margin-top: 35px;
}

#mainvisual .mv-pack .mv-inner .mv-menu-item {
	width: 100%;
	padding: 10px;
	text-align: right;
}

#mainvisual .mv-pack .mv-inner .mv-menu-item a {
	font-family: var(--font-family_1);
	font-size: var(--font-size_lll);
	font-weight: var(--font-weight_m);
}

#mainvisual .mv-pack .flex-item:nth-child(1) .mv-caption {
	margin-top: 75px;
}

#mainvisual .mv-pack .flex-item:nth-child(1) .mv-caption p {
	margin-top: 35px;
	font-size: var(--font-size_m);
}

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

#mainvisual .mv-pack .swiper1 {
	width: 100%;
	height: calc(100vh - 160px);
	max-height: 800px;
}

#mainvisual .mv-pack .swiper1 .swiper-slide {
	overflow: hidden;
}

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

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

#mainvisual .image_1 {
	max-width: 800px;
}

@media screen and (max-width: 699px) {
	#mainvisual {
		padding: 73px 0 0 0;
	}

	#mainvisual .mv-pack .flex-pack {
		gap: 0px;
		margin-left: 0px;
		margin-right: 0px;
	}

	#mainvisual .mv-pack .flex-item:nth-child(1) {
		flex-wrap: wrap;
		width: 100%;
		margin: auto 15px;
	}

	#mainvisual .mv-pack .mv-left {
		width: 100%;
	}

	#mainvisual .mv-pack .flex-item:nth-child(1) .mv-caption {
		margin-top: 40px;
		text-align: left;
	}

	#mainvisual .mv-pack .flex-item:nth-child(1) .mv-caption p {
		margin-top: 15px;
		font-size: var(--font-size_s);
	}

	#mainvisual .mv-pack .mv-inner {
		margin: 35px 20px auto 25px;
	}

	#mainvisual .mv-pack .mv-inner .mv-logo {
		width: 40%;
	}

	#mainvisual .mv-pack .mv-inner .mv-logo img {
		width: 80px;
	}

	#mainvisual .mv-pack .mv-inner .mv-menu {
		width: 60%;
		margin-top: 20px;
	}

	#mainvisual .mv-pack .mv-inner .mv-menu-item {
		padding: 7px;
	}

	#mainvisual .mv-pack .mv-inner .mv-menu-item a {
		font-size: var(--font-size_l);
	}

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

	#mainvisual .mv-pack .swiper1 {
		width: 100%;
		height: 275px;
	}

	#mainvisual .mv-pack .swiper1 .swiper-slide img {
		height: 300px;
	}

	#mainvisual .image_1 {
		max-width: 90%;
	}
}

/*------------------------------------
トップページ・news
------------------------------------*/
#update {
	padding-top: 50px;
}

#update .flex-item:nth-child(1) {
	width: 30%;
	text-align: center;
}

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

#update .swiper3 {
	width: 100%;
}

#update .swiper-wrapper {}

#update .swiper-slide {}

#update .swiper3 .swiper-slide.is-odd {
	margin-top: 75px;
}

#update .swiper-slide .image-link {
	width: 100%!important;
	height: 300px;
}

#update .swiper-slide img {
	width: 100%!important;
	height: 100%;
}

#update .swiper-slide .caption {
	margin-top: 15px;
}

#update .swiper-slide .caption p {
	font-size: var(--font-size_m);
}

#update .swiper-slide .caption h3 {
	font-size: var(--font-size_m);
}

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

	#update .flex-item:nth-child(1) {
		width: 100%;
		text-align: left;
	}

	#update .flex-item:nth-child(2) {
		margin: 0 calc(50% - 50vw);
		width: 100vw;
	}

	#update .swiper-slide .image-link {
	width: 100%!important;
	height: 200px;
}

	#update .swiper-slide img {
	}

	#update .swiper3 .swiper-slide.is-odd {
		margin-top: 50px;
	}

	#update .swiper-slide .caption p {
		font-size: var(--font-size_mm);
	}

	#update .swiper-slide .caption h3 {
		font-size: var(--font-size_mm);
	}
}

/*------------------------------------
トップページ・greeting
------------------------------------*/
#greeting {
	height: 100%;
	padding: 100px 0;
	background-image: var(--bg_1);
}

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

#greeting .bg_1 {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
}

#greeting .bg_1 img {
	height: 100%;
	filter: grayscale(1) opacity(0.1);
}

#greeting .bg_2 {
	position: absolute;
	top: 100px;
	left: 0;
	z-index: 1;
}

#greeting .bg_2 img {
	width: 850px;
	height: 450px;
}

#greeting .greeting-title {
	position: absolute;
	top: 150px;
	left: 50%;
	z-index: 3;
}

#greeting .flex-pack {
	margin: auto;
	padding: 0 10px;
	height: auto;
}

#greeting .flex-item {
	width: 100%;
	z-index: 2;
}

#greeting .content {
	position: relative;
	margin: 350px auto 0 auto;
}

#greeting .content h2 {
	line-height: 3.5rem;
}

#greeting .content h2 span {}

#greeting .content h2 span:nth-child(1) {
	font-size: var(--font-size_m);
}

#greeting .content h2 span:nth-child(2) {
	font-size: var(--font-size_lll);
}

#greeting .content p {}

#greeting .content .btn_5 {
	z-index: 10;
}

#greeting .swiper2 {
	position: relative;
	overflow: hidden;
	transform: translateY(-50px);
	z-index: 3;
}

#greeting .swiper2 .swiper-wrapper {
	transition-timing-function: linear;
	display: flex;
	height: 500px;
}

#greeting .swiper2 .swiper-slide {}

#greeting .swiper2 .swiper-slide[data-index="1"] {
	width: 500px;
	height: 400px;
	margin-top: 100px;
}

#greeting .swiper2 .swiper-slide[data-index="2"] {
	width: 300px;
	height: 300px;
}

#greeting .swiper2 .swiper-slide[data-index="3"] {
	width: 500px;
	height: 350px;
	margin-top: 75px;
	margin-bottom: 75px;
}

#greeting .swiper2 .swiper-slide[data-index="4"] {
	width: 250px;
	height: 250px;
}

#greeting .swiper2 .swiper-slide[data-index="5"] {
	width: 300px;
	height: 400px;
	margin-top: 100px;
}

#greeting .swiper2 .swiper-slide[data-index="6"] {
	width: 500px;
	height: 350px;
	margin-top: 75px;
	margin-bottom: 75px;
}

#greeting .swiper2 .swiper-slide[data-index="7"] {
	width: 250px;
	height: 350px;
}

#greeting .swiper2 .swiper-slide[data-index="8"] {
	width: 450px;
	height: 300px;
	margin-top: 100px;
}

#greeting .swiper2 .swiper-slide[data-index="9"] {
	width: 250px;
	height: 300px;
	margin-top: 200px;
}

#greeting .swiper2 .swiper-slide[data-index="10"] {
	width: 500px;
	height: 350px;
	margin-top: 75px;
	margin-bottom: 75px;
}

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

@media screen and (max-width: 699px) {
	#greeting {
		padding: 50px 0 25px 0;
	}

	#greeting .wrapper-wide {
		padding: 150px 0 0 0;
	}

	#greeting .bg_2 {
		top: 25px;
		left: 0;
	}

	#greeting .bg_2 img {
		width: 350px;
		height: 250px;
	}

	#greeting .content {
		margin: 50px 10px 0 10px;
		padding-bottom: 100px;
	}

	#greeting .swiper2 {
		margin-top: 0px;
	}

	#greeting .swiper2 .swiper-wrapper {
		height: 250px;
	}

	#greeting .swiper2 .swiper-slide[data-index="1"] {
		width: 250px;
		height: 200px;
		margin-top: 50px;
	}

	#greeting .swiper2 .swiper-slide[data-index="2"] {
		width: 150px;
		height: 150px;
	}

	#greeting .swiper2 .swiper-slide[data-index="3"] {
		width: 250px;
		height: 200px;
		margin-top: 25px;
		margin-bottom: 25px;
	}

	#greeting .swiper2 .swiper-slide[data-index="4"] {
		width: 150px;
		height: 150px;
	}

	#greeting .swiper2 .swiper-slide[data-index="5"] {
		width: 150px;
		height: 200px;
		margin-top: 50px;
	}

	#greeting .swiper2 .swiper-slide[data-index="6"] {
		width: 200px;
		height: 150px;
		margin-top: 50px;
		margin-bottom: 50px;
	}

	#greeting .swiper2 .swiper-slide[data-index="7"] {
		width: 150px;
		height: 200px;
	}

	#greeting .swiper2 .swiper-slide[data-index="8"] {
		width: 250px;
		height: 150px;
		margin-top: 100px;
	}

	#greeting .swiper2 .swiper-slide[data-index="9"] {
		width: 150px;
		height: 200px;
		margin-top: 50px;
	}

	#greeting .swiper2 .swiper-slide[data-index="10"] {
		width: 150px;
		height: 100px;
		margin-top: 75px;
		margin-bottom: 75px;
	}

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

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

#infoslider .swiper-slide {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	height: 600px;
}

#infoslider .swiper-slide .main {
	position: absolute;
	top: 0;
	right: 0;
	width: 800px;
	height: 450px;
	z-index: 1;
}

#infoslider .swiper-slide .content {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 10px auto;
	z-index: 2;
}

#infoslider .swiper-slide .content p {
	margin-top: 15px;
}

#infoslider .swiper-slide .content .title_m {}

#infoslider .swiper-slide .content .open {
	font-size: var(--font-size_mm);
}

#infoslider .swiper-pagination {
	position: absolute;
	bottom: 25px;
	left: 0;
}

#infoslider .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background: var(--color_07);
	opacity: 1;
	margin: 0 6px;
	border-radius: 50%;
	transition: var(--ease_3);
}

#infoslider .swiper-pagination-bullet-active {
	background: var(--color_00);
}

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

	#infoslider .swiper-slide {
		height: 650px;
	}

	#infoslider .swiper-slide .main {
		margin: 0 calc(50% - 50vw);
		width: 100vw;
		height: 250px;
	}

	#infoslider .swiper-slide .content {
		top: 175px;
		left: 0;
		padding-bottom: 25px;
	}

	#infoslider .swiper-slide .content p {
		margin-top: 15px;
	}

	#infoslider .swiper-button-next,
	#infoslider .swiper-button-prev {
		content: none !important;
	}

	#infoslider .swiper-button-prev::after,
	#infoslider .swiper-button-next::after {
		content: none !important;
	}
}

/*------------------------------------
トップページ・parallax
------------------------------------*/
#parallax {
	padding: 0;
}

#parallax .parallax-container {
	overflow: hidden;
	position: relative;
	height: 300px;
}

#parallax .parallax {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0%;
	left: 0%;
}

@media screen and (max-width: 699px) {
	#parallax .parallax-container {
		height: 200px;
	}

	#parallax .parallax {
		top: 0%;
		left: 0%;
	}
}

/*------------------------------------
トップページ・access
------------------------------------*/
#access {
	background-image: var(--bg_1);
	overflow: hidden;
}

/*aboutレイアウト*/
#access .grid-pack {
	grid-template-columns: repeat(8, 1fr);
	gap: 50px;
}

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

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

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

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

#access .grid-item iframe {
	width: 100%;
	height: 100%;
}

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

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



/*------------------------------------
トップページ・sns
------------------------------------*/
#sns {
	position: relative;
	padding-top: 50px;
	padding-bottom: 0;
}

#sns .sns-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1;
}

#sns .sns-bg img {
	width: 100%;
	height: 100%;
	transform: scale(1.1);
	filter: blur(5px);
}

#sns .sns-caption {
	max-width: 800px;
	margin: auto;
}

#sns .sns-caption p {}

#sns .flex-pack {
	flex-wrap: nowrap;
	align-items: end;
	max-width: 800px;
	margin-top: 25px;
}

#sns .flex-item {}

#sns .flex-item:nth-child(1) {
	display: block;
	text-align: center;
	width: 35%;
}

#sns .flex-item:nth-child(1) img {
	width: 200px;
}

#sns .flex-item:nth-child(2) {
	width: 65%;
	text-align: center;
	padding-bottom: 35px;
}

#sns .flex-item:nth-child(2) a {
	display: flex;
	align-items: center;
	justify-content: center;
}

#sns .flex-item:nth-child(2) i {
	font-size: var(--font-size_l);
}

#sns .flex-item:nth-child(2) img {
	transition: var(--ease_2);
}

#sns .facebook img {
	width: auto;
	height: 18px;
}

#sns .tiktok img {
	width: auto;
	height: 21px;
}

@media screen and (max-width: 699px) {
	#sns .flex-item:nth-child(1) {
		width: 50%;
	}

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

	#sns .flex-item:nth-child(2) {
		width: 50%;
		text-align: center;
		padding-bottom: 20px;
	}

	#sns .flex-item:nth-child(2) a {
		font-size: var(--font-size_s);
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

.swiper5 .swiper-pagination {}

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

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

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

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


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


/*------------------------------------
下層ページ・メインビジュアル
------------------------------------*/
#subvisual {
	position: relative;
	margin: 80px 0 0 0;
	z-index: -10;
}

#subvisual .sv-image img {
	height: 400px;
}

#subvisual .sv-caption {
	display: block;
	width: 100%;
	margin: 75px auto;
}

#subvisual .sv-caption h1 {
	margin-bottom: 25px;
	font-size: 65px;
}

#subvisual .sv-caption p {
	font-size: var(--font-size_mm);
}

@media screen and (max-width: 699px) {
	#subvisual {
		margin: 80px 0 0 0;
	}

	#subvisual .sv-image img {
		height: 300px;
	}

	#subvisual .sv-caption {
		margin: 50px auto;
	}

	#subvisual .sv-caption h1 {
		font-size: var(--font-size_lll);
	}

	#subvisual .sv-caption p {
		font-size: var(--font-size_s);
	}
}

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

#sub-about-activities .flex-pack {
	flex-wrap: wrap;
	gap: 100px;
}

#sub-about-activities .flex-item {
	display: flex;
	width: 100%;
}

#sub-about-activities .sub-about-activities-item {
	display: block;
	flex-wrap: wrap;
	width: 60%;
}

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

#sub-about-activities .flex-item:nth-child(odd) {
	justify-content: flex-start;
}

#sub-about-activities .flex-item:nth-child(even) {
	justify-content: flex-end;
}

#sub-about-activities .sub-about-activities-item .thumbnail {
	overflow: hidden;
	display: block;
}

#sub-about-activities .sub-about-activities-item img {
	height: 400px;
	object-fit: cover;
	transition: var(--ease_3);
}

#sub-about-activities .sub-about-activities-item img:hover {
	scale: 1.1;
}

#sub-about-activities .activities-header {
	display: flex;
	align-items: center;
	gap: 15px;
}

#sub-about-activities .date {
	font-size: var(--font-size_ss);
}

.category {
	font-size: var(--font-size_sss);
	border: solid 1px var(--color_01);
	padding: 3px 10px;
}

#sub-about-activities .sub-about-activities-item h3 {
	margin-top: 15px;
	font-size: var(--font-size_l);
}

#sub-about-activities .sub-about-activities-item p {
	margin-top: 15px;
}

#sub-about-profile {}

#sub-about-profile .flex-pack {}

#sub-about-profile .flex-item {
	width: 50%;
}

#sub-about-contact {
	background: var(--color_08);
}

#sub-about-contact .flex-pack {}

#sub-about-contact .flex-item {
	width: 50%;
}

@media screen and (max-width: 699px) {
	#sub-about-activities .flex-pack {
		gap: 75px;
	}

	#sub-about-activities .sub-about-activities-item {
		width: 100%;
	}

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

	#sub-about-activities .sub-about-activities-item img {
		height: 200px;
		object-fit: cover;
	}

	#sub-about-activities .sub-about-activities-item h3 {
		margin-top: 15px;
		font-size: var(--font-size_l);
	}

	#sub-about-activities .sub-about-activities-item p {
		margin-top: 15px;
	}

	#sub-about-profile .flex-pack {
		flex-wrap: wrap-reverse;
	}

	#sub-about-profile .flex-item {
		width: 100%;
	}

	#sub-about-contact .flex-item {
		width: 100%;
	}
}

/*------------------------------------
下層ページ・menu
------------------------------------*/
#sub-menu {
	padding-top: 0;
}

#sub-menu .flex-pack {}

#sub-menu .flex-item {}

#sub-menu .flex-item:nth-child(1) {}

#sub-menu .flex-item:nth-child(2) {}

#sub-menu .menu-pack {
	position: relative;
	margin: 0px auto 100px auto;
}

#sub-menu .menu-pack .menu-bg {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	height: 300px;
	opacity: 0.2;
	z-index: -1;
}

#sub-menu .menu-pack h3 {
	padding: 50px 0 0px 0;
	font-size: var(--font-size_ll);
}

@media screen and (max-width: 699px) {
	#sub-menu .menu-pack {
		margin: 0px auto 75px auto;
	}

	#sub-menu .menu-pack .menu-bg {
		height: 150px;
	}

	#sub-menu .menu-pack h3 {
		padding: 20px 0 0 10px;
		font-size: var(--font-size_l);
	}

	#sub-menu .accordion-area li {
		margin: 15px auto;
	}

	#sub-menu .accodion-title {
		gap: 15px;
		height: 60px;
	}

	#sub-menu .accodion-title p {
		font-size: var(--font-size_s);
		font-weight: var(--font-weight_l);
	}

	#sub-menu .accodion-title img {
		width: 120px;
		height: 60px;
	}
}

/*------------------------------------
下層ページ・menu・アコーディオン
------------------------------------*/
#sub-menu .accordion-area {}

#sub-menu .accordion-area li {
	border: none;
	border-radius: none;
	margin: 20px auto;
	border-radius: 10px;
	box-shadow: var(--shadow_1);
	overflow: hidden;
}

#sub-menu .accordion-area section {
	border: none;
}

#sub-menu .accodion-title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 25px;
	padding: 0;
	height: 100px;
}

#sub-menu .accodion-title::before,
#sub-menu .accodion-title::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 2px;
	background: var(--color_00);
	transition: var(--ease_2);
	z-index: 10;
}

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

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

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

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

#sub-menu .accodion-title p {
	font-size: var(--font-size_m);
	color: var(--color_00);
	white-space: nowrap;
}

#sub-menu .accodion-title img {
	width: 200px;
	height: 100px;
}

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

#sub-menu .box-content {
	padding: 0 0 30px;
}

#sub-menu .close-btn {
	width: 150px;
	margin: 20px auto 0;
	padding: 8px 20px 8px 30px;
	color: var(--color_00);
	background: none;
	border: solid 1px var(--color_00);
	border-radius: 0;
	font-size: var(--font-size_ss);
}

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

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

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

@media screen and (max-width: 699px) {
	#sub-menu .accodion-title img {
		width: 120px;
		height: 100px;
	}
}


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

#sub-delivery .flex-pack {}

#sub-delivery .flex-item {
	width: 100%;
	padding: 10px;
	box-shadow: var(--shadow_1);
}

#sub-delivery .flex-item a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: var(--ease_1);
	font-family: var(--font-family_2);
}

#sub-delivery .flex-item a:hover {
	opacity: 0.7;
}

#sub-delivery .flex-item img {
	width: 75px;
	height: 75px;
}

#sub-delivery .flex-item p {}

#sub-delivery .flex-item i {
	transition: var(--ease_1);
}

#sub-delivery .flex-item a:hover i {
	transform: translateX(5px);
}

@media screen and (max-width: 699px) {
	#sub-delivery .flex-pack {
		gap: 25px;
	}
}

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

#sub-reserve .flex-pack {
	max-width: 600px;
}

#sub-reserve .flex-item {
	width: 100%;
	padding: 10px;
	box-shadow: var(--shadow_1);
}

#sub-reserve .flex-item a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: var(--ease_1);
}

#sub-reserve .flex-item a:hover {
	opacity: 0.7;
}

#sub-reserve .flex-item img {
	width: 75px;
	height: 75px;
}

#sub-reserve .flex-item p {
	font-size: var(--font-size_l);
}

#sub-reserve .flex-item i {
	transition: var(--ease_1);
}

#sub-reserve .flex-item a:hover i {
	transform: translateX(5px);
}

/*------------------------------------
下層ページ・問い合わせ
------------------------------------*/
#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;
}

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

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

#post-archive .flex-item {
	gap: 50px;
	width: 100%;
	padding-bottom: 50px;
	border-bottom: var(--border_1);
}

#post-archive .flex-item:nth-last-child(1) {
	border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

/*------------------------------------
投稿一覧・次のページ/前のページ
------------------------------------*/
.pagination {
	text-align: center;
	margin-top: 40px;
}

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

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

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

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

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

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


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


/*------------------------------------
投稿ページ・メインビジュアル
------------------------------------*/
#post-visual {}

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

#post-visual .flex-item {}

#post-visual .flex-item {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	height: 500px;
}

#post-visual .flex-item img {
	width: 100%;
	height: 100%;
}

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

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

	#post-visual .flex-item {}

	#post-visual .flex-item {
		height: 250px;
	}

	#post-visual .flex-item img {}
}

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

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

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

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

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

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

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

#post .post-content {}

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

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

	#post .post-header .flex {}

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

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

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

	#post .post-container {}

	#post .post-content {}
}


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

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

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

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

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

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

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

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


/*------------------------------------ここから固定ページコンテンツ------------------------------------*/


/*------------------------------------
固定ページ・コンテンツ
------------------------------------*/
#page-contents {}


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

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


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

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

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

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

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

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

#contactForm {
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thanks-message h3 {}

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

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

/*------------------------------------
共通パーツ・メニューの小リスト
------------------------------------*/
.contents-pack {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
}

.contents-pack a {}

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

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

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

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

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

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

	.contents-pack a {}

	.contents-list {
		width: 100%;
	}

	.contents-list h3 {}

	.contents-list ul {}

	.contents-list li {}

	.contents-list a {}
}

/*------------------------------------
共通パーツ・フッターのCTAバナーエリア
------------------------------------*/
#banner-area {
	background: var(--color_f);
	background-image:
		radial-gradient(circle, var(--color_08) 1.5px, transparent 1.5px),
		radial-gradient(circle, var(--color_08) 1.5px, transparent 1.5px);
	background-position: 0 0, 3px 3px;
	background-size: 6px 6px;
	background-repeat: repeat;
}

#banner-area .flex-pack {}

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

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

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

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

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

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

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

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

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

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

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

	#banner-area .flex-item a {}

	#banner-area .flex-item img {}

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

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


/*------------------------------------ここからフッターコンテンツ------------------------------------*/


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

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

#footer .flex-item {}

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

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

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

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

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

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

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

#footer .contents-list h3 {
	font-size: var(--font-size_m);
}

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

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

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

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

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

	#footer {
		padding-top: 0;
	}

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

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

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

	#footer .flex-item:nth-child(1) .footer-logo {}

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

	#footer .flex-item:nth-child(1) .icon-list {}

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

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

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

	#footer .contents-list h3 {}

	#footer .contents-list li {}

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