@charset "utf-8";

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

:root {
	/* base color */
	--base-font-color: #FFF;

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

	/* site color */
	--primary: #3689DA;
	--priary-hover: #f55;
	--secondary: #79B6F2;
	--secondary-hover: #55f;
	--tertiary: #0f0;
	--tertiary-hover: #5f5;
	--quaternary: #f0f;
	--quaternary-hover: #f5f;
	--fifth: #ff0;
	--fifth-hover: #ff5;
	--sixth: #0ff;
	--sixth-hover: #5ff;

	--white: #FFF;
	--black: #000;
	--translucent-black: rgba(0, 0, 0, 0.7);
	--light-black: #232323;
	--blue: #5BA2E8;

	--base-bg: #7A7A7A;

	--banner-primary: rgba(41, 68, 94, 0.74);

	/* 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: "Shippori Mincho B1", 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: "Qwitcher Grypen", cursive;
	/* --font-family02: ; */
	/* --font-family03: ; */

}

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

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

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.6;
	font-size: 1.6rem;
	font-weight: 600;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
	background: url(../../../../uploads/main_bg.jpg)repeat-y center top;
	overflow-x: hidden;
}

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

.d-md-none {
	display: none;
}

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

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

.bg-translucent-black {
	background: var(--translucent-black);
}

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

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

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

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

.text-shadow01 {
	text-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.3);
}

.text-center {
	text-align: center;
}

.text-decoration01 {
	position: relative;
	z-index: 1;
	background: linear-gradient(to top, rgba(54, 137, 218, 0.32), rgba(54, 137, 218, 0));
}
/* 
.text-decoration01::before {
	content: "";
	display: block;
	width: 92%;
	height: 100%;
	background: linear-gradient(to top, rgba(54, 137, 218, 0.32), rgba(54, 137, 218, 0));
	position: absolute;
	top: 1rem;
	right: 0;
	left: 0;
	margin: auto;
	z-index: -1;
} */

.text01 {
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 2.5;
	text-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.3);
}

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

.text02 {
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.title01 {
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.33333;
}

.title01 strong {
	margin: 0 1.5rem;
	font-size: 3.5rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.45714;
	text-shadow: 0 0 1.5rem rgba(54, 137, 218);
}

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

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

.btn01 a {
    max-width: 26.6rem;
    width: 100%;
    padding: 2rem 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.1rem solid var(--white);
    position: relative;
    transition: all .3s;
}

.btn01 a::before {
    content: "";
    display: block;
    width: 4.8rem;
    height: 0.1rem;
    background: var(--white);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 90%;
    margin: auto;
    transition: all .3s;
}

.btn01 a:hover::before {
    width: 6.3rem;
}

.tel-btn01 {
    max-width: 27rem;
    width: 100%;
    padding: 1.7rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem ;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: 0.1rem solid var(--white);
	gap: 1rem;
}

.tel-btn01::before {
    content: "";
    display: block;
    width: 1.6rem;
    height: 3.3rem;
    background: url(../../../../uploads/tel_white.svg)center/contain no-repeat;
}

.tel-btn02 {
    padding: 0 0 0.8rem;
    max-width: 22rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    border-bottom: 0.1rem solid var(--white);
	text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.3);
	gap: 2rem;
}

.tel-btn02::before {
    content: "";
    display: block;
    width: 1.6rem;
    height: 3.3rem;
    background: url(../../../../uploads/tel_white.svg)center/contain no-repeat;
}

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

.web-btn01 a {
	max-width: 27rem;
	width: 100%;
	padding: 2rem 1.5rem;
	display: inline-flex;
	flex: 0 0 2.9rem;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--black);
	background: var(--white);
	transition: all .3s;
	gap: 2rem;
}

.en-US .web-btn01 {
	max-width: 30rem;
}

.en-US .web-btn01 a {
	max-width: 30rem;
}

.web-btn01 a::before {
    content: "";
    display: block;
    width: 2.9rem;
    height: 2.9rem;
    background: url(../../../../uploads/calendar_black.svg)center/contain no-repeat;
	transition: all .3s;

}

.web-btn01 a:hover {
	color: var(--white);
	background: var(--blue);
}

.web-btn01 a:hover::before {
	background: url(../../../../uploads/calendar_white.svg)center/contain no-repeat;
}

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

.web-btn02 a {
    padding: 0 2rem 1.1rem 0;
    max-width: 22rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--white);
    border-bottom: 0.1rem solid var(--white);
	text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.3);
	gap: 2.6rem;
}

.en-US .web-btn02 a {
	text-align: center;
}

.web-btn02 a:hover {
	text-decoration: underline;
}


.web-btn02 a::before {
    content: "";
    flex: 0 0 2.9rem;
    width: 2.9rem;
    height: 2.9rem;
    background: url(../../../../uploads/calendar_white.svg) center/contain no-repeat;
    transition: all .3s;
}

.sns-link01 {
    max-width: 2.8rem;
    width: 100%;
}

.sns-link01 a {
    display: block;
    width: 100%;
    transition: all .3s;
}

.sns-link01 a:hover {
    transform: scale(1.1);
}

.banner01 {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 56.9rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.banner01.banner-primary::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: var(--banner-primary);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 1;
}
.banner01-img-box {
    width: 100%;
	transition: all .3s;
}

.banner01-text-set {
    max-width: 20rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 2;
}

.banner01-title {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    line-height: 1.42857;
}

.banner01-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
}

.banner01-arrow-box {
    margin: -0.2rem 0 0;
    max-width: 7.7rem;
    width: 100%;
}

.banner01-title-box {
    text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.3);
}

.banner01:hover .banner01-img-box {
    transform: scale(1.1);
}

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

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

}

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

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

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

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

	.d-md-none {
		display: block;
	}

	.sp-none {
		display: none;
	}

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

	.text01 {
		font-size: 1.4rem;
	}

	.text01 strong {
		font-size: 1.8rem;
	}

	.banner01 {
		max-width: 100%;
	}

	.banner01-img-box img {
		height: 100% !important;
	}

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

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

	
	.banner01-img-box {
		height: 13.5rem;
	}

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

	.title01 {
		font-size: 2.2rem;
	}

	.title01 strong {
		margin: 0.8rem;
		font-size: 2.5rem;
	}

	.text01 {
		font-size: 1.3rem;
	}

	.text01 strong {
		font-size: 1.7rem;
	}

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

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

	.btn01 a {
		max-width: 22rem;
		width: 100%;
		padding: 1.2rem 1.4rem;
		font-size: 1.6rem;
	}

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

}

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