@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
@media all and (min-width: 897px) and (max-width: 1180px) {
	html {
		font-size: 0.847vw;
	}
}
@media all and (max-width: 374px) {
	html {
		font-size: 2.667vw;
	}
}
body, table, input, textarea, select, option {
	font-family: '游明朝','Yu Mincho','YuMincho','Hiragino Mincho Pro','Noto Serif JP',serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
chrome_annotation {
	border: none !important;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
address {
	font-style: normal;
}
a,
a:link {
	color: #000;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: none;
}
a:active {
	color: #000;
}
@media (hover: hover) and (min-width: 897px) {
    a:hover {
       opacity: 0.7;
    }
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #000;
	font-size: 1.8rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
/* .fixed {
	position: fixed;
	width: 100%;
	height: 100%;
} */
#container {
	position: relative;
	text-align: left;
	overflow: hidden;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader h1 {
	padding-left: 1.2rem;
	font-size: 1.2rem;
	font-weight: normal;
	color: #fff;
	background-color: #191f09;
	text-align: center;
}
#gHeader h1 a {
	color: #fff;
}
.menu {
	right: 5rem;
	top: 5rem;
	position: absolute;
	width: 15rem;
	height: 15rem;
	cursor: pointer;
	z-index: 101;
	transition: opacity .25s ease;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	box-sizing: border-box;
}
.menu.on {
	right: 28rem;
}
.menu > div {
	margin: 0 auto;
	width: 15rem;
	height: 15rem;
	position: relative;
}
.menu span {
	background-color: #131e37;
	border: none;
	height: 2rem;
	width: 100%;
	border-radius: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	cursor: pointer;
}
.menu span:nth-of-type(2) {
	top: 6rem;
}
.menu span:nth-of-type(3) {
	top: 12rem;
}
.menu.on .top {
	-webkit-transform: translateY(6rem) translateX(0) rotate(45deg);
	-ms-transform: translateY(6rem) translateX(0) rotate(45deg);
	transform: translateY(6rem) translateX(0) rotate(45deg);
}
.menu.on .middle {
	opacity: 0;
}
.menu.on .bottom {
	-webkit-transform: translateY(-6rem) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-6rem) translateX(0) rotate(-45deg);
	transform: translateY(-6rem) translateX(0) rotate(-45deg);
}
.menuBox {
	padding: 4rem 0;
	position: absolute;
	right: 0;
	transform: translatex(100%);
	top: 0;
	background-color: #fff;
	transition: .3s;
	z-index: 100;
}
.menuBox.open {
	transform: translateX(0);
}
.menuBox .menuList {
	border-top: 0.1rem solid #191f09;
}
.menuBox li {
	border-bottom: 0.1rem solid #191f09;
}
.menuBox a {
	padding: 1.3rem 2.5rem 1.1rem 3.5rem;
	color: #191f09;
	font-size: 3rem;
	display: block;
}
@media (hover: hover) and (min-width: 897px) {
	.menu:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	#gHeader h1 {
		padding-top: 0.1rem;
		font-size: 0.8rem;
	}
	.menu {
		right: 2rem;
		top: 4rem;
		width: 4rem;
		height: 4rem;
	}
	.menu.on {
		right: 20rem;
	}
	.menu > div {
		width: 4rem;
		height: 3rem;
	}
	.menu span {
		height: 0.6rem;
	}
	.menu span:nth-of-type(2) {
		top: 1.5rem;
	}
	.menu span:nth-of-type(3) {
		top: 3rem;
	}
	.menu.on .top {
		-webkit-transform: translateY(1.5rem) translateX(0) rotate(45deg);
		-ms-transform: translateY(1.5rem) translateX(0) rotate(45deg);
		transform: translateY(1.5rem) translateX(0) rotate(45deg);
	}
	.menu.on .bottom {
		-webkit-transform: translateY(-1.5rem) translateX(0) rotate(-45deg);
		-ms-transform: translateY(-1.5rem) translateX(0) rotate(-45deg);
		transform: translateY(-1.5rem) translateX(0) rotate(-45deg);
	}
	.menuBox {
		padding: 3rem 0;
	}
	.menuBox a {
		padding: 1.1rem 2rem 1rem 3rem;
		font-size: 2rem;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter .fInner {
	padding: 2.8rem 0 2rem;
	background: url(../img/common/footer_bg.jpg) no-repeat center top/cover;
}
#gFooter .pageTop {
	margin: 0 1.3rem 1.2rem 0;
	text-align: right;
}
#gFooter .pageTop a {
	margin-left: auto;
	border-radius: 1.6rem;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 10rem;
	height: 10rem;
	color: #010101;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	background: rgb(1, 1, 1, 1) url(../img/common/arrow.png) no-repeat center top 0.7rem/4rem auto;
}
#gFooter .fLogo {
	margin-bottom: 1.3rem;
}

#gFooter .fLogo img {
	width: 300px;
	margin-top: -120px;
}

#gFooter .fLogo a:hover {
	opacity: 1;
}
#gFooter .midBox {
	position: absolute;
	left: 50%;
	width: 42.6rem;
	transform: translateX(-50%);
	top: 12.2rem;
	text-align: center;
}
#gFooter .time {
	color: #fff;
	font-size: 2rem;
	line-height: 1.3;
	font-weight: bold;
	font-style: oblique;
	font-family: "Hina Mincho", serif;
}
#gFooter .time a {
	margin-left: 0.5rem;
	color: #fff;
	font-size: 3.8rem;
	letter-spacing: 0.05em;
}
#gFooter .time small {
	display: block;
	font-size: 1.8rem;
}
#gFooter .time small span {
	margin-left: 1rem;
	font-size: 2.2rem;
	vertical-align: -0.2rem;
}
#gFooter .time small .line {
	margin: 0 3rem;
	font-size: 4rem;
	line-height: 1;
	vertical-align: -0.5rem;
}
#gFooter .fNavi {
	margin-bottom: 9.2rem;
	width: 22%;
	max-width: 27.5rem;
	margin-left: auto;
}
#gFooter .fNavi a {
	padding-left: 2.7rem;
	position: relative;
	color: #fff;
	line-height: 2.2;
	display: inline-block;
}
#gFooter .fNavi a:before {
	position: absolute;
	left: 0;
	top: 0;
	content: "◎";
}
#gFooter p {
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
}
#gFooter address {
	padding: 1.8rem;
	color: #fff;
	font-size: 1.4rem;
	font-style: normal;
	text-align: center;
	background-color: #0e162c;
}


        #back-to-top {
            position: fixed;
            bottom: 20px; /* ブラウザ下からの距離 */
            right: 20px; /* ブラウザ右からの距離 */
            width: 50px;
            height: 50px;
            background-color: black; /* 黒丸 */
            border-radius: 50%; /* 丸型にする */
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 100; /* 他の要素より前に表示する */
            display: none; /* 最初は非表示 */
        }

        /* 矢印アイコンのスタイル */
        #back-to-top::before {
            content: '↑'; /* 矢印 */
            color: white;
            font-size: 24px;
        }


@media all and (max-width: 896px) {
	#gFooter .fInner {
		background-position: left 15% top;
	}
	#gFooter .pageTop {
		margin: 0 0 1.2rem;
	}
	#gFooter .pageTop a {
		border-radius: 1rem;
		width: 6rem;
		height: 6rem;
		font-size: 1.8rem;
		background-position: center top 0.5rem;
		background-size: 2.8rem auto;
	}
	#gFooter .midBox {
		margin: 0 auto 3rem;
		position: static;
		left: auto;
		width: 26rem;
		transform: translateX(0);
	}
	#gFooter .time {
		font-size: 2rem;
	}
	#gFooter .time a {
		font-size: 3.2rem;
		white-space: nowrap;
	}
	#gFooter .time small {
		font-size: 1.2rem;
	}
	#gFooter .time small span {
		margin-left: 0.5rem;
		font-size: 2rem;
	}
	#gFooter .time small .line {
		margin: 0 2rem;
		font-size: 4rem;
		vertical-align: -0.4rem;
	}
	#gFooter .fNavi {
		margin: 0 -0.5rem 3rem;
		width: auto;
		max-width: inherit;
		margin-left: 0;
		display: flex;
		flex-wrap: wrap;
	}
	#gFooter .fNavi li {
		padding: 0.5rem;
		width: 33.3%;
		font-size: 1.3rem;
	}
	#gFooter .fNavi li:nth-child(3n-1) {
		width: 30%;
	}
	#gFooter .fNavi li:nth-child(3n) {
		width: auto;
		flex: 1;
	}
	#gFooter .fNavi a {
		padding-left: 1.9rem;
	}
	#gFooter p {
		font-size: 1.1rem;
	}
	#gFooter address {
		padding: 1rem 2rem;
		font-size: 1.1rem;
	}
	#gFooter .fLogo img {
		width: 150px;
		margin-top: -100px;
}
}
