@charset "utf-8";

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

:root {
	/* base color */
	--base-font-color: #231C15;

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

	/* site color */
	--priary: #f00;
	--priary-hover: #f55;
	--secondary: #00f;
	--secondary-hover: #55f;
	--tertiary: #0f0;
	--tertiary-hover: #5f5;
	--quaternary: #f0f;
	--quaternary-hover: #f5f;
	--fifth: #ff0;
	--fifth-hover: #ff5;
	--sixth: #0ff;
	--sixth-hover: #5ff;

	--black: #231C15;
	--orange: #E66000;
	--light-orange01: #FAECE2;
	--light-orange02: #FAF2ED;
	--gradation-orange: linear-gradient(to right, rgba(230, 96, 0, 100%), rgba(243, 101, 0, 100%), rgba(255, 198, 158, 100%));
	--red: #BB0509;
	--light-red: #F8E5E5;
	--gray: #CCCCCC;
	--dark-gray: #707070;
	--light-gray: #F2F2F2;
	--half-gray: #E6E6E6;
	--white: #FFFFFF;

	/* btn color */
	--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: "Outfit", sans-serif;
	--font-family03: "Noto Serif JP", serif;

}

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

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

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.8;
	font-size: 1.6rem;
	font-weight: 500;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
	background-color: var(--white);
	position: relative;
}

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

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

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

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

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

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

.bg-light-red {
	background: var(--light-red);
}

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

.bg-light-orange01 {
	background: var(--light-orange01);
}

.bg-light-orange02 {
	background: var(--light-orange02);
}

.bg-gradation-orange {
	background: var(--gradation-orange);
}

.border-orange {
	border: 1px solid var(--orange);
}

.bg-half-gray {
	background: var(--half-gray);
}

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

.title01 {
	font-size: 4rem;
	letter-spacing: 0.05em;
	line-height: 1.55em;
	font-weight: 700;
}

.title02 {
	font-size: 3rem;
	letter-spacing: 0.05em;
	font-weight: 700;
}

.title03 {
    padding-bottom: 1.5rem;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
}

.title03::before {
    content: "";
    display: block;
    width: 4rem;
    height: 0.2rem;
    background: var(--orange);
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}


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

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

.text03 {
	font-size: 2rem;
	letter-spacing: 0.05em;
	line-height: 1.65em;
}

.font01 {
	font-family: var(--font-family01);
}

.font02 {
	font-family: var(--font-family02);
}

.font03 {
	font-family: var(--font-family03);
}

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

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

.btn01 a {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 2.5rem 1.4rem 3.5rem;
	border-radius: 3.5rem;
	background: var(--orange);
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--white);
	position: relative;
	transition: all .3s;
}

.btn01 a::after {
	content: "";
	display: block;
	width: 1.6rem;
	height: 1.3rem;
	margin: 0 0 0 1rem;
	background: url(../../../../uploads/arrow_white.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all .3s;
}

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

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

.btn02 a {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.6rem 2.5rem 1.8rem 3.5rem;
	border-radius: 3.5rem;
	background: var(--orange);
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--white);
	position: relative;
	transition: all .3s;
}

.btn02 a::after {
	content: "";
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 0 0 1rem;
	background: url(../../../../uploads/btn_icon01.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all .3s;
}

.btn02 a:hover::after {
	transform: translateY(6px);
}

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

.sns-link-btn a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	position: relative;
	transition: all .3s;
}

.sns-link-btn a:hover {
	opacity: 0.7;
}

.sns-link-btn a::before {
	content: "";
	display: block;
	width: 4rem;
	height: 4rem;
	margin: 0 2rem 0 0;
	background: url(../../../../uploads/instagram.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition: all .3s;
}

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

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

.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 {
		font-size: 3rem;
	}

	.text01 {
		font-size: 1.8rem;
	}

	.text02 {
		font-size: 1.8rem;
	}

	.text03 {
		font-size: 1.8rem;
	}

	/* .text02 {
		font-size: 1.5rem;
	}

	.text03 {
		font-size: 1.6rem;
	} */

}

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

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

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

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

	.title03 {
		font-size: 3rem;
	}

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

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

		/* ==========================================
	スマホ固定ヘッダー
	========================================== */
	.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;
	}

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

	.title01 {
		font-size: 2.4rem;
	}

	/* .text01 {
		font-size: 1.4rem;
	} */

	/* .text02 {
		font-size: 1.3rem;
	}

	.text03 {
		font-size: 1.4rem;
	} */

}

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

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

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

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

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

	/* .text02 {
		font-size: 1.2rem;
	} */

}

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