@charset "UTF-8";
* {
	margin: 0;   
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html, body {
	color: #1a1a1a;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	/*font-size: 16px;*/
	font-style: normal;
	/*font-weight: 500;*/
	/*line-height: 2;*/
	vertical-align: baseline;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	list-style: none;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.5;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	color: #1a1a1a;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
	transition: .5s ease;
}
a:hover {
	color: #1a1a1a !important;
	opacity: .6;
	cursor: pointer;
}
img {
	max-width: 100%;
	height: auto;
	transition: .5s ease;
}
@media screen and (max-width: 640px) {
	html, body {
		font-size: 14px;
	}
}


/*------------------------------------
ページのフェードイン
------------------------------------*/
body {
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

/*エフェクト*/
.effect > .ef-fade02 {
	transition: .8s;
}
.ef-fade02 {
	opacity: 0;
	transform: translate(0, 60px);
	-webkit-transform: translate(0, 60px);
}
.fade02 {
	opacity: 1.0;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}


/*------------------------------------
改行
------------------------------------*/
.br-sp {
	display: none;
}
@media screen and (max-width: 640px) {
	.br-pc {
		display: none;
	}
	.br-sp {
		display: block;
	}
}


/*------------------------------------
フォント
------------------------------------*/
.gothic {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 640px) {}


/*------------------------------------
h1
------------------------------------*/
main > h1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin: 80px 0;
}
main > h1 span {
	display: block;
	width: fit-content;
	font-size: 24px;
	line-height: 1.2;
}
main > h1 .jp {
	font-size: 40px;
}
@media screen and (max-width: 640px) {
	main > h1 {
		margin: 24px 0;
	}
	main > h1 span {
		font-size: 16px;
	}
	main > h1 .jp {
		font-size: 24px;
	}
}


/*------------------------------------
.g-h
------------------------------------*/
.g-h {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-bottom: 40px;
}
.g-h span {
	display: block;
	width: fit-content;
	font-size: 24px;
	line-height: 1.2;
}
.g-h .jp {
	font-size: 40px;
}
@media screen and (max-width: 640px) {
	.g-h {
		margin-bottom: 24px;
	}
	.g-h span {
		font-size: 16px;
	}
	.g-h .jp {
		font-size: 24px;
	}
}


/*------------------------------------
.link
------------------------------------*/
.link a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #1a1a1a;
	max-width: 400px;
	width: 100%;
	height: 80px;
	color: #1a1a1a;
	margin: 0 auto;
}
.link a span {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	margin-right: 16px;
}
.link a .arrow {
	background-image: url("../images/arrow.svg");
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 26px;
	height: 13px;
}
@media screen and (max-width: 640px) {
	.link a {
		max-width: 280px;
		height: 56px;
		padding: 0;
	}
	.link a span {
		font-size: 16px;
	}
}


/*--------------------------------------------------------------------------
ヘッダー
--------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {}


/*------------------------------------
.reserve-fixed
------------------------------------*/
#hnav {
	display: none;
}
.reserve-fixed {
	position: fixed;
	top: 120px;
	right: 0;
	z-index: 98;
}
.reserve-fixed a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f39800;
	width: 48px;
	height: 240px;
	font-weight: 700;
	color: #fff !important;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
}
.reserve-fixed a:hover.
.reserve-fixed a:focus {
	color: #fff !important;
}
@media screen and (max-width: 640px) {
	.ft-floating_menu {
		display: none !important;
	}
	.reserve-fixed {
		display: flex;
		gap: 5px;
		top: auto;
		right: auto;
		bottom: 0;
		left: 0;
		width: 100%;
		margin: 0;
	}
	.reserve-fixed li {
		width: calc((100% - 5px)/2);
	}
	.reserve-fixed a {
		width: 100%;
		height: 64px;
		font-size: 20px;
		writing-mode: horizontal-tb;
	}
}


/*--------------------------------------------------------------------------
#page-top
--------------------------------------------------------------------------*/
#page-top {
	position: fixed;
	right: 40px;
	bottom: 40px;
	margin: 0;
	z-index: 24;
}
#page-top a {
	display: block;
	background: url("../images/page-top.svg") no-repeat center;
	background-size: 44px auto;/*この場合は高さが自動設定*/
	width: 44px;
	height: 44px;
	text-align: center;
	text-decoration: none;
}
@media screen and (max-width: 768px){
	#page-top {
		right: 4%;
		bottom: 80px;
	}
}


/*--------------------------------------------------------------------------
フッター
--------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {}


/*不要*/
body a#scroll-to-top {
	display: none !important;
}
