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

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

:root {
	--font-family_1: "Asul", "Yu Gothic", "YuGothic", "游ゴシック体", "YuGothic UI", sans-serif;
	--font-family_2: "Namdhinggo", "Noto Sans JP", sans-serif;
	--font-family_3: "", cursive;

	--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: 500;
	--font-weight_l: 600;

	--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: #73322C;
	--color_2: #8C564A;
	--color_3: #BF6C5A;
	--color_4: #F2E4DC;
	--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%;

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

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

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

body {
	color: var(--color_00);
	font-family: var(--font-family_1);
	font-weight: var(--font-weight_s);
	letter-spacing: 0.05em;
	text-align: left;
}

body .no-scroll {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color_00);
	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);
	color: var(--color_03);
	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: 200px 0;
}

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

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

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

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

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

/*block 左寄せ*/
.block-left {
	display: block;
	text-align: left;
}

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

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

.flex-item {}

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

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

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

.sectiontitle {
	position: relative;
	text-align: center;
	padding-bottom: 25px;
	margin: 0 auto 50px auto;
	max-width: 500px;
}

.sectiontitle::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 1px;
	background: var(--color_2);
}

.sectiontitle h2 {
	font-size: 50px;
	line-height: 1.5em;
}

.sectiontitle h2 i {
	padding-right: 10px;
}

.sectiontitle-annotation {
	padding-top: 10px;
	font-size: var(--font-size_s);
}

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

/*------------------------------------
表デザイン
------------------------------------*/
/*表デザイン1*/
.table_1 {
	table-layout: auto;
	width: 100%;
	margin: 10px auto;
}

.table_1 tr {}

.table_1 th {
	font-size: var(--font-size_s);
	font-weight: var(--font-weight_l);
	padding: 7px 10px;
	border-bottom: solid 1px var(--color_08);
}

.table_1 td {
	padding: 7px 10px;
	font-size: var(--font-size_ss);
	border-bottom: solid 1px var(--color_08);
}

/*表デザイン2*/
.table_2 {
	table-layout: auto;
	width: 100%;
	border-collapse: collapse;
}

.table_2 tr {
	border-bottom: solid 2px var(--color_03);
}

.table_2 tr:last-child {
	border: none;
}

.table_2 th {
	font-weight: 500;
	padding-left: 10px;
}

.table_2 td:nth-child(even) {
	width: 65%;
}

/*------------------------------------
ボタンデザイン
------------------------------------*/
/*ベタ塗り丸ボタン*/
.btn_1,
.btn_2,
.btn_3 {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 25px auto 0px auto;
	max-width: 300px;
}

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

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

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

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

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

.btn_1 a,
.btn_2 a,
.btn_3 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: solid 1px var(--color_00);
	transition: 0.3s ease-out;
}

.btn_1 a:hover,
.btn_2 a:hover,
.btn_3 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,
.btn_3 a:hover::before {
	background: var(--color_00);
	transform: rotate(45deg) translate(5px, -5px);
}

.btn_1 a:hover::after,
.btn_2 a:hover::after,
.btn_3 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_2);
	border: solid 1px var(--color_2);
}

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

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

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

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

.btn_3 i {}

.btn_3 a::before::after {}

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

.btn_3 a::before {}

.btn_3 a::after {}

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

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

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

/*下線ボタン*/
.btn_4 {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 15px auto 0px auto;
	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-image: linear-gradient(0deg, var(--color_1), var(--color_2));
	border: solid 1px var(--color_1);
	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);
}

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

.accodion-title {
	position: relative;
	cursor: pointer;
	font-size: var(--font-size_s);
	padding: 20px 40px 20px 15px;
	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 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);
}

/*------------------------------------
その他のパーツ
------------------------------------*/
/*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 p {
	max-width: 600px;
	margin: 35px auto 0;
	line-height: 2em;
}


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

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

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

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

#header .header-logo img {
	width: 250px;
	height: auto;
}

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

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

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

/*スマホナビ*/
#navi {
	position: fixed;
	top: 0;
	right: -70%;
	width: 80%;
	max-width: 700px;
	height: 100vh;
	opacity: 0;
	padding: 75px;
	background: var(--color_00);
	transition: var(--ease_2);
	pointer-events: none;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 100;
}

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

#navi .navi-left{

}

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

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

#navi .navi-right{
	
}

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

#navi .contents-list{
	text-align: left;
}

#navi .contents-list ul {
	margin: 15px auto auto 0;
}

#navi .menu {}

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

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

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

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

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

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

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

#navi .menu .submenu a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
}

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

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

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

#navi .menu .sub-toggle {
	position: absolute;
	top: 25px;
	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);
}

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

.hamburger span {
	background: var(--color_00);
	height: 3px;
	left: 17px;
	border-radius: var(--radius_10);
	position: absolute;
	transition: var(--ease_2);
	width: 30px;
}

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

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

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

.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_s);
	font-weight: 600;
	color: var(--color_00);
}

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

.nav_open .hamburger span{
	background: var(--color_f);
}

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

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

.nav_open .hamburger span:nth-child(3) {
	top: 20px;
	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;
}

/*------------------------------------
スマホナビ展開時の背景
------------------------------------*/
.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_s);
	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: 75px;
	right: -250px;
	width: 250px;
	padding: 30px 60px 30px 30px;
	background: var(--color_f);
	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_00);
}

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

body {
	top: 0px !important;
}

/*------------------------------------
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;
	transition: var(--ease_1);
}

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

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

/*------------------------------------
フロートコンタクトボタン
------------------------------------*/
#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-image: linear-gradient(0deg, var(--color_1), var(--color_2));
	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: 15px;
	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: 0 !important;
	background: none !important;
	box-shadow: var(--shadow_1);
	outline: solid 3px var(--color_f);
	border-radius: var(--radius_10) !important;
}

.card-item img {
	width: 100% !important;
	height: 100% !important;
	border-radius: var(--radius_10);
}

/*------------------------------------
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;
}

/*------------------------------------
トップページ・背景
------------------------------------*/
.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);
}

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

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

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

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

#mainvisual .mv-pack .mv-left {
	margin: auto;
}

#mainvisual .mv-pack .mv-inner {
	flex-wrap: wrap;
}

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

#mainvisual .mv-pack .mv-inner .mv-logo img {
	width: 200px;
	margin: auto;
}

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

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

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

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

#mainvisual .mv-pack .main-slider {
	width: 100%;
	height: calc(100vh - 120px);
}

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

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

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

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

#mainvisual .mv-info-item{
	width: 50%;
	height: 120px;
}

#mainvisual .mv-info-item:nth-child(1){
	flex-wrap: nowrap;
	background-image: linear-gradient(0deg, var(--color_1), var(--color_2));
}

#mainvisual .mv-info-item:nth-child(1) p{
	font-size: var(--font-size_mm);
	color: var(--color_f);
}

#mainvisual .mv-info-item:nth-child(1) img{
	width: 150px;
	margin-left: 10px;
}

#mainvisual .mv-info-item:nth-child(2){
	gap: 25px;
}

#mainvisual .mv-info-item:nth-child(2) a{
}

#mainvisual .mv-info-item:nth-child(2) i{
	font-size: 35px;
}

#mainvisual .mv-info-item:nth-child(2) img{
	width: 35px;;
}

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

#greeting .bg_1 img{

}

#greeting .flex-pack {
}

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

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

#greeting .flex-item:nth-child(1) h2{
	position: relative;
	font-size: var(--font-size_m);
	color: var(--color_3);
}

#greeting .flex-item:nth-child(1) h2::after{
	content: '';
	position: absolute;
	bottom: -15px;
	right: 0;
	width: 100%;
	height: 1px;
	background: var(--color_3);
}

#greeting .flex-item:nth-child(1) h3{
	margin-top: 35px;
	font-size: var(--font-size_l);
	color: var(--color_3);
	line-height: 1.5em;
}

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

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

#greeting .flex-item:nth-child(2) img{
	width: 300px;
}

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

#features::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: var(--color_09);
	z-index: -1;
}

#features .features-header{
}

#features .features-image {
	position: absolute;
	top: 50%;
	left: calc(50% - 70px);
	width: auto;
	max-width: 800px;
	height: 800px;
	transform: translateY(-50%);
	box-shadow: -70px 70px 0 var(--color_08);
}

#features .features-image img{
	width: 100%;
	height: 100%;
}

#features .content {
	width: 600px;
	margin: 150px auto 0 0;
	padding: 125px 100px 150px;
	outline: solid 1px var(--color_05);
	outline-offset: -15px;
}

#features .swiper4{
	position: relative;
}

#features .swiper4 .swiper-wrapper{
}

#features .swiper-slide {
	width: 100%;
}

/*ページネーション*/
#features .swiper-pagination {
	position: absolute;
	top: 200px;
	left: 0%;
	font-family: var(--font-family_3);
	color: var(--color_02);
	letter-spacing: 0em;
	pointer-events: none;
}

/*現在のスライド番号*/
#features .swiper-pagination-current {
	font-size: 2rem;
}

/*スライド総数*/
#features .swiper-pagination-total {
	font-size: var(--font-size_s);
}

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

#salon .flex-pack{
	align-items: start;
	gap: 100px;
}

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

#salon .flex-item:nth-child(2){
	margin-top: 100px;
}

#salon .flex-item .caption{
	padding: 15px 25px;
	width: 100%;
}

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

#salon .flex-item .caption h3 span{
	margin-right: 10px;
}

#salon .flex-item .caption p{
	margin-top: 5px;
	font-size: var(--font-size_sss);
}

#salon .flex-item img{
	width: 100%;
	padding: 0 50px;
}

#salon .btn-pack{
	gap: 20px;
	margin: auto 25px;
	transform: translateY(-50%);
}

#salon .btn-item{
	width: calc((100% - 40px) / 2);
	margin-top: 0px;
	background: var(--color_f);
}

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

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

#news .swiper-wrapper {}

#news .swiper-slide {
	width: 100%;
}

#news .swiper-slide img {
	height: 300px;
}

#news .swiper-slide .caption {
	margin-top: 10px;
}

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

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

#news .swiper-slide .caption .header .cat{
	font-size: var(--font-size_ss);
}

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

#news .swiper-slide .caption h3 {
	margin-top: 10px;
	text-align: left;
	font-size: var(--font-size_s);
	font-weight: var(--font-weight_s);
}

/*------------------------------------
トップページ・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%;
}

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

#gallery .gallery-pack {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-auto-rows: 120px;
	gap: 50px;
}

#gallery .gallery-item {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	object-fit: cover;
	overflow: hidden;
}

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

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

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

#gallery .gallery-item:nth-child(4) {
	grid-column: 4 / span 2;
	grid-row: 4 / span 2;
	padding: 35px;
}

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

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

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

/*------------------------------------
トップページ・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;
}

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

#subvisual .sv-image{
	position: relative;
}

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

#subvisual .sv-image .wrapper-wide{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1200px;
	height: 100%;
}

#subvisual .sv-logo{
	position: absolute;
	top: 25px;
	left: 0;
}

#subvisual .sv-logo img{
	width: 250px;
	height: auto;
}

#subvisual .sv-title {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

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

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

/*------------------------------------
下層ページ・店舗・info
------------------------------------*/
#sub-info {
	padding-top: 50px;
}

#sub-info .flex-pack {
	align-items: start;
	gap: 100px;
}

#sub-info .flex-item {
}

#sub-info .flex-item:nth-child(1){
	width: 60%;
	margin-top: 50px;
}

#sub-info .flex-item:nth-child(1) .content{
	margin-top: 0px;
	background: var(--color_09);
	box-shadow: none;
}

#sub-info .flex-item:nth-child(2){
	width: 40%;
	box-shadow: -175px 175px 0px var(--color_08);
}

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

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

#sub-access .flex-pack {
	align-items: start;
}

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

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

#sub-access .flex-item:nth-child(1) iframe{
	width: 100%;
	height: 350px;
}

#sub-access .flex-item:nth-child(2){
	margin-top: 50px;
	padding: 25px;
	background: var(--color_f);
}

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

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

#sub-policy .policy-pack {}

#sub-policy .policy-header {}

#sub-policy .policy-header h2 {}

#sub-policy .policy-item {}

#sub-policy .policy-item h3 {}

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

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

#archive .flex-pack {
	flex-wrap: wrap;
	align-items: baseline;
	gap: 40px;
}

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

#archive .flex-item img {
	height: 300px;
	margin-bottom: 10px;
}

#archive .flex-item h3 {
	font-size: var(--font-size_m);
	font-weight: var(--font-weight_l);
	margin-bottom: 5px;
}

#archive .flex-item p {
	font-size: var(--font-size_ss);
	margin-bottom: 5px;
}

#archive .more {
	font-size: var(--font-size_s);
	text-decoration: underline;
}

#archive .archive-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 5px;
}

/*投稿一覧・ページネーション*/
.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_00);
	background: var(--color_09);
	border-radius: var(--radius_10);
}

.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_00);
	border-radius: var(--radius_10);
}

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

/*投稿ページ*/
#page {}

#page .page-container {}

#page .page-header {
	display: flex;
	align-items: center;
	gap: 10px;
}

#page .page-category {
	color: var(--color_f);
	background: var(--color_2);
	padding: 0px 10px;
}

#page .page-container h1 {
	margin: 10px auto 25px;
	font-size: var(--font-size_ll);
}

#page .page-content {}

#page .page-content p {
	margin-bottom: 15px;
}

/*前のページ・次のページ*/
#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 {
	text-decoration: underline;
	color: var(--color_00);
}

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

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

#page-header h1 {
	margin-bottom: 20px;
	font-size: var(--font-size_ll);
}

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

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

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

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

/*------------------------------------
共通パーツ・パンくずリスト
------------------------------------*/
.bread-pack {
}

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

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

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

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

.contents-pack a {
	color: var(--color_f);
}

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

.contents-list h3 {
	font-size: var(--font-size_mm);
	color: var(--color_06);
}

.contents-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 15px auto auto 10px;
}

.contents-list li {
	width: 100%;
	font-size: var(--font-size_ss);
	color: var(--color_f);
}

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

/*------------------------------------
共通パーツ・menu
------------------------------------*/
#menu {
}

#menu .menu-pack{
}

#menu .accodion-title {
	background: var(--color_f);
}

#menu h3 {
	font-size: var(--font-size_m);
}

#menu h3 span {
	padding-left: 10px;
	font-size: var(--font-size_ss);
	color: var(--color_03);
	letter-spacing: 0.1em;
}

#menu 

/*------------------------------------
共通パーツ・reserve
------------------------------------*/
#reserve {
	background: var(--color_09);
}

#reserve .flex-pack {
	flex-wrap: nowrap;
}

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


/*------------------------------------
問い合わせフォーム
------------------------------------*/
.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);
}

/*------------------------------------
footer
------------------------------------*/
#footer {
	position: relative;
	background-image: linear-gradient(0deg, var(--color_00), var(--color_01));
	z-index: 1;
	padding-top: 0;
}

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

#footer .flex-item {
	width: 50%;
	color: var(--color_f);
}

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

#footer .footer-logo {}

#footer .footer-logo img {
	width: 250px;
	height: auto;
	margin: auto;
}

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

/*------------------------------------
ここからタブレット〜スマホ用
------------------------------------*/
@media screen and (max-width: 699px) {

	.section-container_1 {
		padding: 75px 0;
	}

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

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

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

	.title_l {
		font-size: 75px;
	}

	.title_m {
		font-size: 45px;
	}

	.title_s {
		font-size: 35px;
	}

	.sectiontitle h2 {
		font-size: 40px;
	}

	.content {
		margin: 0px;
		padding: 50px 25px;
	}

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

	#navi-pc ul {
		display: none;
	}

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

	/*header*/
	#header .header-bg {
		background: none;
	}

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

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

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

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

	/*ハンバーガーボタン*/
	.hamburger {
		position: fixed;
		top: 5px;
		right: 0;
	}

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

	/*langボタン*/
	#lang-button {
		position: fixed;
		top: 4px;
		right: 60px;
	}

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

	/*フロートコンタクトボタン*/
	#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;
	}

	/*TOPに戻るボタン*/
	.top-btn a {
		width: 75px;
		height: 75px;
	}

	/*PC用追従ボタン*/
	.contact-btn-pc {
		display: none;
	}

	/*トップページ・mainvisual*/
	#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 .main-slider {
		width: 100%;
		height: 275px;
	}

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

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

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

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

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

	#news .swiper-slide {
		height: 250px;
	}

	#news .swiper-slide:nth-child(odd) {
		margin-top: 0;
		margin-bottom: 75px;
	}

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

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

	/*トップページ・greeting*/
	#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%;
	}

	/*トップページ・features*/
	#features {
		padding-top: 100px;
	}

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

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

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

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

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

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

	/*トップページ・parallax*/
	#parallax .parallax-container {
		height: 200px;
	}

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

	/*トップページ・access*/
	#gallery {
		padding: 50px 0 200px 0;
	}

	#gallery .gallery-pack {
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: 90px;
		gap: 25px;
	}

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

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

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

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

	/*トップページ・sns*/
	#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);
	}

	/*下層ページ・メインビジュアル*/
	#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 .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-access .flex-pack {
		flex-wrap: wrap-reverse;
	}

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

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

	/*下層ページ・menu*/
	#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;
	}

	/*下層ページ・投稿一覧*/
	#archive .flex-pack {
		gap: 50px;
	}

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

	#archive .flex-item img {
		height: 250px;
	}

	/*投稿ページ*/
	#page .page-date {
		font-size: var(--font-size_ss);
	}

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

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

	/*前のページ・次のページ*/
	#post-navigation .flex-pack {
		flex-wrap: nowrap;
		gap: 20px;
	}

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

	/*共通パーツ・menu*/
	#menu {
	}

	#menu .menu-item {
		padding: 50px 25px;
	}

	#menu .menu-pack:last-child {
	}

	#menu h3 {
	}

	#menu h3 span {
		font-size: var(--font-size_ss);
	}

	#menu .flex-pack {
	}

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

	#menu .flex-item h4 {
	}

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

	#menu .flex-item span {
		display: block;
		margin-top: 5px;
		font-size: var(--font-size_ss);
	}

	#menu .flex-item tr {
	}

	#menu .flex-item th {
	}

	#menu .flex-item th::after {
	}

	#menu .flex-item p {
	}

	#menu .flex-item td {
	}

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

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

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

	#footer .footer-logo img {
		width: 180px;
		height: auto;
		margin: auto;
	}

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

	#footer .flex-item:nth-child(2) .contents-list li {
		font-size: var(--font-size_ss);
	}

	#footer .flex-item:nth-child(2) .contents-list a {
		font-size: var(--font-size_ss);
	}

}