@charset "utf-8";

/* ==========================================
カスタムプロパティ
========================================== */

:root {
	/* base color */
	--base-font-color: #6D3E09;

	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;
	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;

	/* site color */
	--primary: #00A49F;
	--primary-hover: #f55;
	--secondary: #84C5C3;
	--secondary-hover: #55f;
	--tertiary: #5CA7C9;
	--tertiary-hover: #5f5;
	--quaternary: #00A49F;
	--quaternary-hover: #f5f;
	--fifth: #FCF7E1;
	--fifth-hover: #ff5;
	--sixth: #4E300E;
	--sixth-hover: #5ff;
	--seventh: #06C755;
	--eighth: #0072A4;
	--ninth: #706D49;

	--white: #FFF;
	--black: #343434;

	--bg-primary: #FCF7E1;
	--bg-secondary: #AFA887;
	--bg-tertiary: #6D3E09;

	--border-primary: #6D3E09;

	--gradation-primary: linear-gradient(to bottom, rgba(88, 87, 61, 0), rgba(18, 17, 12, 0.63));
	--gradation-secondary: linear-gradient(to right, rgba(78, 48, 14, 0), rgba(78, 48, 14, 95%), rgba(78, 48, 14, 100%), rgba(78, 48, 14, 100%));
	--gradation-tertiary: linear-gradient(to left, rgba(0, 164, 159, 100%)91%,rgba(0, 164, 159, 14%), rgba(0, 164, 159, 0));

	/* btn color */
	--btn-gradation-primary: linear-gradient(102deg, transparent 0%, transparent 28%, #00A49F 30%, #00A49F 100%);;
	--btn-primary: var(--primary);
	--btn-primary-hover: var(--primary-hover);
	--btn-secondary: var(--secondary);
	--btn-secondary-hover: var(--secondary-hover);
	--btn-tertiary: var(--tertiary);
	--btn-tertiary-hover: var(--tertiary-hover);
	--btn-quaternary: var(--quaternary);
	--btn-quaternary-hover: var(--quaternary-hover);
	--btn-fifth: var(--fifth);
	--btn-fifth-hover: var(--fifth-hover);
	--btn-sixth: var(--sixth);
	--btn-sixth-hover: var(--sixth-hover);

	/* font family */
	--base-font-family: "Noto Sans JP", sans-serif, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	/* --base-font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
	--font-family01: "Noto Sans JP", sans-serif;
	--font-family02: "Kaisei HarunoUmi", serif;
	--font-family03: "RocknRoll One", sans-serif;

}

/* ==========================================
共通
========================================== */

html {
	/* font-size: var(--root-font-size); */
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.6;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
	background: var(--bg-primary) url(../../../../uploads/body_bg.png) repeat-y center top;
}

input {
	appearance: auto;
	border: 1px solid var(--ui-border-color);
}

input:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

textarea {
	border: 1px solid var(--ui-border-color);
}

textarea:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

img {
	max-width: 100%;
	height: auto;
}

.padding01 {
	padding: 0 1.5rem;
}

.sns-link {
    max-width: 5rem;
    width: 100%;
}

.sns-link a {
    display: block;
}

.sns-link a img {
    transition: all .3s;
}

.sns-link a:hover img {
    transform: scale(1.2, 1.2);
}

.cover-bottom-bg {
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
	position: relative;
}

.cover-bottom-bg img {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/* ==========================================
カラー
========================================== */

.color-primary {
	color: var(--primary);
}

.color-secoundary {
	color: var(--secondary);
}

.color-tertiary {
	color: var(--tertiary);
}

.color-quaternary {
	color: var(--quaternary);
}

.color-fifth {
	color: var(--fifth);
}

.color--eighth {
	color: var(--eighth);
}

.color-white {
	color: var(--white);
}

.color-black {
	color: var(--black);
}

.bg-secondary {
	background: var(--bg-secondary);
}

/* ==========================================
テキスト
========================================== */

.title01 {
	font-size: 3.5rem;
	font-weight: 700;
	font-family: var(--font-family02);
	letter-spacing: 0.05em;
	line-height: 1.1428em;
}

.title01-deco {
	margin: 0 2rem 0 0;
	font-size: 6rem;
	line-height: 1.37em;
	 text-decoration: underline; /* 下線 */
	text-decoration-thickness: 1.5rem; /* 線の太さ */
	text-decoration-color: var(--primary); /* 線の色 */
	text-underline-offset: -0.4rem; /* 線の位置。テキストに重なるようにやや上部にする */
	text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
	position: relative;
	top: 0.6rem;
}

.title02 {
	font-size: 5rem;
	font-weight: 700;
	font-family: var(--font-family02);
	letter-spacing: 0.05em;
}

.text01 {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	line-height: 2.5em;
}

/* ==========================================
ボタン
========================================== */

.btn01 {
    max-width: 37.7rem;
    width: 100%;
}

.btn01 a {
    width: 100%;
    padding: 1.8rem 1.5rem 2.3rem 7rem;
    display: block;
	justify-content: center;
    font-size: 2.3rem;
    font-weight: 700;
    font-family: var(--font-family02);
    letter-spacing: 0.07em;
	text-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 16%);
	box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 16%);
    position: relative;
    overflow: hidden;
	transition: all .3s;
}

.btn01 a::before {
    content: "";
    display: block;
    max-width: 8rem;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: var(--btn-gradation-primary);
}

.btn01 a::after {
    content: "";
    display: block;
    max-width: 2.4rem;
    width: 100%;
    height: 5rem;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto;
    background: url(../../../../uploads/arrow_white.svg)center center / contain no-repeat;
	transition: all .3s;
}

.btn01 a:hover {
	opacity: 0.7;
}

.btn01 a:hover::after {
	transform: translateX(6px);
}

.btn01-color-primary a {
	color: var(--white);
	background: var(--secondary);
}

.btn01-color-secondary a {
	color: var(--primary);
	background: var(--fifth);
}

.btn02 {
    max-width: 28.8rem;
    width: 100%;
}

.btn02 a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1.4rem 1.5rem 1.1rem;
    font-size: 2.7rem;
    font-weight: 400;
    font-family: var(--font-family03);
    letter-spacing: 0.05em;
    border-radius: 1rem;
	text-shadow: none;
	box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 16%);
    transition: all .3s;
}

.btn02 a span {
	margin: 0 0 -0.5rem;
    font-size: 1.7rem;
}

.btn02 a:hover {
    transform: translateY(-0.6rem);
}

.btn02-color-primary {
	color: var(--white);
	background: var(--seventh);
}

.btn03 {
    max-width: 28.8rem;
    width: 100%;
}

.btn03 a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2.3rem 1.5rem 2.4rem;
    font-size: 2.7rem;
    font-weight: 400;
    font-family: var(--font-family03);
    letter-spacing: 0.05em;
    border-radius: 1rem;
	text-shadow: none;
	box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 16%);
    transition: all .3s;
}

.btn03 a span {
    font-size: 1.7rem;
}

.btn03 a:hover {
    transform: translateY(-0.6rem);
}

.btn03-color-primary {
	color: var(--white);
	background: var(--eighth);
}

.btn03-color-sixth {
	color: var(--white);
	background: var(--sixth);
}

.btn04 {
    max-width: 46.6rem;
    width: 100%;
    padding: 1.3rem;
    background: var(--secondary);
	box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 16%);
}

.btn04 a {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-family02);
    color: var(--fifth);
	background: var(--primary);
	transition: all .3s;
}

.btn04 a:hover {
    color: var(--fifth);
	background: var(--ninth);
}

.btn04 a::before {
    content: "";
    display: block;
    margin: 0 2rem 0 0;
    width: 4.3rem;
    height: 4.1rem;
    background: url(../../../../uploads/btn_illust01.png)center center / contain no-repeat;
}

/* ==========================================
スマホ固定ヘッダー
========================================== */

.sp-header {
	width: 100%;
	height: 8rem;
	display: none;
	padding: 0 8rem 0 0;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
}

.sp-header-block {
	width: 100%;
	height: 100%;
	flex: 1;
	border-right: solid 1px;
}

.sp-header-block-color {
	background: var(--primary);
	border-color: var(--white);
	color: var(--white);
}

.sp-header-link {
	width: 100%;
	height: 100%;
}

.sp-header-link > a {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sp-header-link > a:before {
	content: "";
	display: inline-block;
	max-width: 3rem;
	width: 100%;
	height: 3rem;
	font-size: 2.5rem;
	font-weight: 900;
	text-align: center;
}

.sp-header-link-pagetop > a:before {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-tel > a:before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-contact > a:before {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

/* ---------- ハンバーガーボタン ---------- */

.sp-nav-btn {
	width: 8rem;
	height: 8rem;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: fixed;
	top: auto;
	bottom: 0;
	right: 0;
	z-index: 9999;
}

.sp-nav-btn-color {
	background: var(--secondary);
	color: var(--white);
}

.sp-nav-btn-bar-box {
	max-width: 4rem;
	width: 100%;
	height: 3rem;
	display: flex;
	position: relative;
}

.sp-nav-btn-bar {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--white);
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	transition: .3s;
}

.sp-nav-btn-bar-top {
	top: 10%;
}

.sp-nav-btn-bar-center {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-bottom {
	top: 90%;
	transform: translateY(-100%);
}

.sp-nav-btn-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

.js-open .sp-nav-btn-bar-top {
	top: 50%;
	transform: rotate(35deg) translateY(-50%);
}

.js-open .sp-nav-btn-bar-center {
	opacity: 0;
}

.js-open .sp-nav-btn-bar-bottom {
	top: 50%;
	transform: rotate(-35deg) translateY(-50%);
}

/* ---------- ハンバーガーメニュー ---------- */

.js-sp-nav {
	display: none;
	max-width: 1920px;
	width: 100%;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	transition: ease .5s;
	z-index: 999;
}

.sp-nav.js-open {
	right: 0;
}

.sp-nav-bg {
	background: var(--primary-light);
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 10rem 1.5rem;
}

.sp-nav-list {
	padding: 10rem 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
}

.sp-nav-list::-webkit-scrollbar {
	display:none;
}

.sp-nav-list-item {
	width: 100%;
	display: block;
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	position: relative;
	border-bottom: solid 1px;
}

.sp-nav-list-item a{
	display: block;
	padding: 1.5rem 0;
	font-size: 1.6rem;
	transition: .3s;
}

.sp-nav-list-item a:hover{
	opacity: .6;
}

.sp-nav-list-item-color{
	border-bottom-color: var(--sp-border-color);
}


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1550px) {

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1024px) {

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

	/* ==========================================
	テキスト
	========================================== */

	.title01-deco {
		font-size: 4rem;
	}

	.title01 {
		font-size: 2.5rem;
	}

	.title02 {
		font-size: 3.5rem;
	}

	.text01 {
		font-size: 1.6rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 768px) {

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	.title02 {
		font-size: 3.5rem;
	}

	/* ==========================================
	共通
	========================================== */

	.sns-link {
		max-width: 4rem;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header {
		display: flex;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn {
		display: flex;
	}

	/* ---------- ハンバーガーメニュー ---------- */

	.js-sp-nav {
		display: block;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 576px) {

	html {
		/* 12px */
		font-size: 2.08333vw;
	}
	
	/* ==========================================
	テキスト
	========================================== */

	.title01-deco {
		font-size: 3rem;
		text-decoration-thickness: 1rem;
	}

	.title01 {
		font-size: 2rem;
	}

	.title02 {
		font-size: 2.3rem;
	}

	.text01 {
		font-size: 1.4rem;
	}

	/* ==========================================
	ボタン
	========================================== */

	.btn01 {
		max-width: 30rem;
	}

	.btn01 a {
		font-size: 1.6rem;
		padding: 1.5rem 1.5rem 2rem 7rem;
	}

	.btn02 a {
		font-size: 2.2rem;
	}

	.btn02 a span {
		font-size: 1.3rem;
	}

	.btn03 a {
		padding: 1.8rem 1.5rem 1.8rem;
		font-size: 2.2rem;
	}

	.btn04 a {
		font-size: 2.2rem;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */
	.sp-header{
		height: 6rem;
		padding: 0 6rem 0 0;
	}

	.sp-header-link > a:before{
		font-size: 2rem;
	}

	.sp-header-link-text{
		font-size: 1rem;
		margin: 0;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn{
		width: 6rem;
		height: 6rem;
	}

	.sp-nav-btn-bar-box{
		max-width: 3rem;
	}

	.sp-nav-btn-text{
		font-size: 1rem;
	}

	.sp-nav-btn-text{
		margin: 0;
	}

	/* ---------- ハンバーガーメニュー ---------- */

	.sp-nav-list-item a{
		padding: 1.2rem 0;
		font-size: 1.45rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 414px) {

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

	/* ==========================================
	テキスト
	========================================== */

	.title01-deco {
		font-size: 2.4rem;
	}

	.title01 {
		font-size: 1.8rem;
	}

	.title02 {
		font-size: 2.1rem;
	} 

	.text01 {
		font-size: 1.4rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */