@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Roboto:wght@400&display=swap');
@import url('https://cdn.jsdelivr.net/npm/yakuhanjp@3.3.1/dist/css/yakuhanjp.min.css');

/*
	commons.css
---------------------------------------------------------------------------------------------------------------------------------------------*/
/* common
--------------------------------------------------------------------------------------------------------*/
em, i { font-style: normal;}
a { text-decoration: none; color: inherit;}
textarea { resize: vertical;}
img { vertical-align: bottom; max-width: 100%; height: auto;}

.is-pc-only { display: block!important;}
.is-sp-only { display: none!important;}
.is-pc-only-inline { display: inline-block!important;}
.is-sp-only-inline { display: none!important;}

@media (max-width: 767px) {
	.is-pc-only { display: none!important;}
	.is-sp-only { display: block!important;}
	.is-pc-only-inline { display: none!important;}
	.is-sp-only-inline { display: inline-block!important;}
}

iframe[name='google_conversion_frame'] {
	position: absolute;
	top: 0;
}

/* font-size
--------------------------------------------------------------------------------------------------------*/
html { font-size: 62.5%;}
body {
	font-size: 16px;
	font-size: 1.6rem;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* input
--------------------------------------------------------------------------------------------------------*/
input[type=text], input[type=password], input[type=checkbox], input[type=email],input[type=radio], input[type=submit], input[type=button],
select, textarea {
	font-family: 'Hiragino Sans', 'Helvetica Neue', 'ヒラギノ角ゴ Pro', Hiragino Kaku Gothic Pro, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', YuGothic, Arial, 'メイリオ', Meiryo, sans-serif;
	border: none;
	outline: 0;
}

/* body
--------------------------------------------------------------------------------------------------------*/
body {
	font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.0;
	background: repeating-linear-gradient(
		45deg, #f9f4ef 0%, #f9f4ef 25%, #f6f0ea 25%, #f6f0ea 50%
	);
	background-size: 8px 8px;
	color: #000;
}
body {
	min-width: 1080px;
}
@media screen and (max-width: 767px) {
	body {
		min-width: initial;
	}
}


/* font
--------------------------------------------------------------------------------------------------------*/
.fw-l { font-weight: 300!important;}
.fw-r { font-weight: 400!important;}
.fw-m { font-weight: 500!important;}
.fw-sb { font-weight: 600!important;}
.fw-bd { font-weight: 700!important;}
.fw-ex { font-weight: 800!important;}
.fw-bk { font-weight: 900!important;}

.ff-rbt { font-family: 'Roboto', sans-serif;}

.fs-it { font-style: italic!important;}
.ffs-pa { font-feature-settings: 'palt';}



/* text
--------------------------------------------------------------------------------------------------------*/
.txt-up { text-transform: uppercase;}
.txt-cap { text-transform: capitalize;}
.txt-just {
	text-align: justify;
	text-justify: inter-ideograph;
}

/* opacity
--------------------------------------------------------------------------------------------------------*/
a.opacity {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (min-width: 768px) {
	a.opacity:hover { opacity: 0.65;}
}

/* phone
--------------------------------------------------------------------------------------------------------*/
@media (min-width: 768px) {
	.is-calling {
		pointer-events: none;
	}
}

/* common parts
--------------------------------------------------------------------------------------------------------*/
.flex {
	display: -webkit-flex;
	display: flex;
}
.f-align-ce {
	-webkit-align-items: center;
	align-items: center;
}
.f-align-bl {
	-webkit-align-items: baseline;
	align-items: baseline;
}
.f-align-fs {
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.f-align-fe {
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.f-just-sb {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.f-just-ce {
	-webkit-justify-content: center;
	justify-content: center;
}
.f-direct-cl {
	-webkit-flex-direction: column;
	flex-direction: column;
}
.f-wrap {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}


/* wrapper
---------------------------------------------------------*/
#wrapper {
	position: relative;
}

/* inner
---------------------------------------------------------*/
.inner {
	width: 100%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/* headline
---------------------------------------------------------*/
.headline {
	text-align: center;
}

/* content-bg
---------------------------------------------------------*/
#content-bg {
	position: relative;
	overflow: hidden;
}
@media (min-width: 768px) {
	#content-bg::before,
	#content-bg::after {
		content: '';
		position: absolute;
		top: 20px;
		width: 295px;
		height: 100%;
		background-image: url(../images/common/content-bg.png);
		background-color: transparent;
		background-position: right top;
		background-repeat: repeat-y;
		z-index: -1;
	}
	#content-bg::before {
		left: -3.5rem;
	}
	#content-bg::after {
		right: -7rem;
	}
}
@media (max-width: 1420px) {
	#content-bg::before {
		left: calc(295 / 1040 * 100vw);
		-webkit-transform: translate(-150.0%, 0);
		transform: translate(-150.0%, 0);
	}
	#content-bg::after {
		right: calc(295 / 1040 * 100vw);
		-webkit-transform: translate(150.0%, 0);
		transform: translate(150.0%, 0);
	}
}

/* header
--------------------------------------------------------------------------------------------------------*/
header .inner {
	padding-top: 1.5rem;
	padding-right: 3.2rem;
	padding-bottom: 1.5rem;
	padding-left: 3.2rem;
	position: relative;
}
header h1 img {
	width: 199px;
}
@media (min-width: 768px) {
	header .inner {
		max-width: 1440px;
	}
}
@media (max-width: 767px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 10;
		background: repeating-linear-gradient(
			45deg, #f9f4ef 0%, #f9f4ef 25%, #f6f0ea 25%, #f6f0ea 50%
		);
		background-size: 8px 8px;
	}
	header .inner {
		padding-top: calc(20 / 750 * 100vw);
		padding-right: calc(36 / 750 * 100vw);
		padding-bottom: calc(16 / 750 * 100vw);
		padding-left: calc(36 / 750 * 100vw);
	}
	header h1 img {
		width: calc(273 / 750 * 100vw);
	}
}

/* sptoggle
--------------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
	#sptoggle {
		position: absolute;
		top: calc(30 / 750 * 100vw);
		right: calc(30 / 750 * 100vw);
		width: calc(54 / 750 * 100vw);
		height: calc(36 / 750 * 100vw);
	}
	#sptoggle a span {
		width: 100%;
		height: calc(4 / 750 * 100vw);
		background-color: #451812;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	#sptoggle a span:not(:last-child) {
		margin-bottom: calc(12 / 750 * 100vw);
	}
	#sptoggle a.active span:nth-of-type(1) {
		-webkit-transform: translate(0, calc(16 / 750 * 100vw)) rotate(-45deg);
		transform: translate(0, calc(16 / 750 * 100vw)) rotate(-45deg);
	}
	#sptoggle a.active span:nth-of-type(2) {
		opacity: 0;
	}
	#sptoggle a.active span:nth-of-type(3) {
		-webkit-transform: translate(0, calc(16 / 750 * -100vw)) rotate(45deg);
		transform: translate(0, calc(16 / 750 * -100vw)) rotate(45deg);
	}
}
/* gnav
---------------------------------------------------------*/
#gnav {
	display: none;
}
@media (max-width: 767px) {
	#gnav {
		position: fixed;
		top: calc(100 / 750 * 100vw);
		left: 0;
		width: 100%;
		z-index: 11;
		border-top: 2px solid #451812;
		box-shadow: 0 2px 4px 1px rgb(0, 0, 0, 0.25);
	}
	#gnav .inner {
		padding-right: calc(40 / 750 * 100vw);
		padding-left: calc(40 / 750 * 100vw);
		background: repeating-linear-gradient(
			45deg, #f9f4ef 0%, #f9f4ef 25%, #f6f0ea 25%, #f6f0ea 50%
		);
		background-size: 8px 8px;
	}
	#gnav ul {
		padding-bottom: calc(40 / 750 * 100vw);
	}
	#gnav ul li:not(:last-child) {
		border-bottom: 1px solid #221815;
	}
	#gnav ul li a {
		display: block;
		font-size: calc(32 / 750 * 100vw);
		color: #221815;
		text-align: center;
		padding-top: calc(40 / 750 * 100vw);
		padding-bottom: calc(40 / 750 * 100vw);
	}
	#gnav ul li:last-child a {
		color: #461913;
		text-decoration: underline;
	}
}

/* article
--------------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
	article {
		padding-top: calc(100 / 750 * 100vw);
	}
	.featherlight-inner article {
		padding-top: 0;
	}
}

/* hero
--------------------------------------------------------------------------------------------------------*/
#hero .inner {
	display: flex;	
	justify-content: center;
	align-items: flex-end;
	padding-top: 1.5rem;
	padding-bottom: 5rem;
}
#hero h2 img {
	width: 475px;
}
@media (max-width: 767px) {
	#hero .inner {
		padding-top: calc(45 / 750 * 100vw);
		padding-bottom: calc(65 / 750 * 100vw);
	}
	#hero h2 img {
		width: calc(618 / 750 * 100vw);
	}
}
/* featherlight
--------------------------------------------------------------------------------------------------------*/
.featherlight title.featherlight-inner {
	display: none;
}
.featherlight:last-of-type {
	background-color: rgba(0, 0, 0, 0.25);
}
.featherlight .featherlight-content {
	border-bottom: none;
	padding-right: 40px;
	padding-bottom: 25px;
	padding-left: 40px;
	box-shadow: 5px 4px 9px 0 rgba(0, 0, 0, 0.3);
}
.featherlight .featherlight-close-icon {
	color: #461913;
}
@media (min-width: 768px) {
	html.with-featherlight {
		overflow: auto;
	}
	.featherlight .featherlight-close-icon {
		line-height: 65px;
		width: 65px;
		font-size: 4.5rem;
	}
}
@media (max-width: 767px) {
	.featherlight .featherlight-content {
		padding-top: calc(75 / 750 * 100vw);
		padding-right: calc(30 / 750 * 100vw);
		padding-bottom: calc(35 / 750 * 100vw);
		padding-left: calc(30 / 750 * 100vw);
		margin-right: calc(50 / 750 * 100vw);
		margin-left: calc(50 / 750 * 100vw);
	}
	.featherlight .featherlight-close-icon {
		position: fixed;
		top: calc(16 / 750 * 100vw);
		right: calc(54 / 750 * 100vw);
		line-height: calc(70 / 750 * 100vw);
		width: calc(70 / 750 * 100vw);
		font-size: calc(56 / 750 * 100vw);
		background-color: rgba(255, 255, 255, 0.8);
	}
}

/* sp-pagetop
--------------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
	#sp-pagetop {
		position: fixed;
		right: calc(30 / 750 * 100vw);
		z-index: 100;
	}
	#sp-pagetop.is-fix {
		bottom: calc(30 / 750 * 100vw)!important;
	}
	#sp-pagetop a {
		width: calc(104 / 750 * 100vw);
		height: calc(104 / 750 * 100vw);
		background-color: rgba(99, 100, 100, 0.8);
		border-radius: 50%;
	}
	#sp-pagetop a span {
		width: 100%;
		height: 100%;
		position: relative;
	}
	#sp-pagetop a span::after {
		content: '';
		position: absolute;
		top: 44.0%;
		left: 56.0%;
		width: calc(26 / 750 * 100vw);
		height: calc(26 / 750 * 100vw);
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(-45deg) translate(-50%, -50%);
		transform: rotate(-45deg) translate(-50%, -50%);
	}
}

/* footer
--------------------------------------------------------------------------------------------------------*/
footer {
	background-color: #ffa000;
}
footer .inner {
	padding-top: 4.0rem;
	padding-bottom: 2.5rem;
}
footer #copyright {
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: #fff;
	-webkit-justify-content: center;
	justify-content: center;
}
@media (min-width: 768px) {
	footer #copyright span:first-child {
		margin-right: 0.5em;
	}
}
@media (max-width: 767px) {
	footer .inner {
		padding-top: calc(140 / 750 * 100vw);
		padding-bottom: calc(55 / 750 * 100vw);
	}
	footer #copyright {
		font-size: calc(28 / 750 * 100vw);
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-align-items: center;
		align-items: center;
	}
	footer #copyright span:first-child {
		margin-bottom: 0.25em;
	}
}

/* fnav
---------------------------------------------------------*/
#fnav {
	margin-bottom: 4.5rem;
}
#fnav ul {
	-webkit-justify-content: center;
	justify-content: center;
}
#fnav a {
	display: block;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	color: #fff;
}
@media (min-width: 768px) {
	#fnav ul li {
		margin-right: 2.4rem;
		margin-left: 2.4rem;
	}
	#fnav a {
		text-decoration: underline;
	}
	#fnav a:hover {
		text-decoration: none;
	}
}
@media (max-width: 767px) {
	#fnav {
		margin-bottom: calc(130 / 750 * 100vw);
	}
	#fnav ul {
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-align-items: center;
		align-items: center;
	}
	#fnav ul li:not(:last-child) {
		margin-bottom: calc(70 / 750 * 100vw);
	}
	#fnav a {
		font-size: calc(32 / 750 * 100vw);
	}
}

/*
	commons.css End
---------------------------------------------------------------------------------------------------------------------------------------------*/