@charset "utf-8";
:root {
--base-color: #777;
--white: #FFFFFF;
--black: #000000;
--blue: #5DB9C9;
--light-blue: #A3E6F2;
}
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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, footer, header, main, hgroup, menu, nav, summary {
	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: 1300px) {
	html {
		font-size: calc(1000vw / 1300);
	}
}
@media all and (max-width: 374px) {
	html {
		font-size: calc(1000vw / 375);
	}
}
body, table, input, textarea, select, option {
	font-family: "Noto Sans JP", sans-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: var(--base-color);
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: var(--base-color);
}
a:hover {
	color: var(--base-color);
}
a:active {
	color: var(--base-color);
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: var(--base-color);
	font-size: 1.4rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
p {
	line-height: 2;
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	text-align: left;
	padding-top: 8rem;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
.pad a:hover,
.pad a:hover img {
	opacity: 1 !important;
}
@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;
	}
	#container {
		padding-top: 6rem;
	}
	p {
		line-height: 1.8;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	height: 8rem;
	background-color: #fff;
	z-index: 99;
}
#gHeader .hBox {
	padding: 1.5rem 4rem 0.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#gHeader .logo {
	width: 16rem;
}
#gHeader .rightBox {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
#gHeader .comBtn {
	margin-left: 4rem;
}
#gHeader .insBtn {
	margin: 0.3rem 0 0 3rem;
}
@media all and (max-width: 896px) {
	#gHeader {
		position: absolute;
		height: 6rem;
	}
	#gHeader .hBox {
		padding: 2rem 7rem 0.5rem 2rem;
	}
	#gHeader .logo {
		width: 14rem;
	}
	#gHeader .insBtn {
		margin: 0.1rem 0 0 3rem;
	}
}





#gNav {
	font-size: 1.4rem;
	font-weight: 600;
	font-family: "Noto Serif JP", serif;
	letter-spacing: 0.04em;
}
#gNav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0 2.4rem;
}
#gNav ul li {
	position: relative;
}
#gNav ul li::after {
	width: 1px;
	height: 2rem;
	position: absolute;
	top: 0.1rem;
  	right: -1.3rem;
	background-color: var(--blue);
	content: "";
}
#gNav ul li:last-child:after {
	display: none;
}
@media all and (min-width: 897px) {
	#gNav ul a:hover {
		opacity: 0.65;
	}
}

.menu {
	position: fixed;
	top: 2.3rem;
  	right: 1.4rem;
	height: 1.4rem;
	width: 3.2rem;
	cursor: pointer;
	z-index: 1000;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.menu::after {
	width: 6rem;
	height: 6rem;
	position: absolute;
	top: -2.3rem;
	right: -1.4rem;
	background-color: #fff;
	content: "";
	z-index: -1;
	border-radius: 0 0 0 1rem;
	opacity: 0.96;
}
.menu.on .top {
	transform: translateY(0.7rem) translateX(0) rotate(-45deg);
}
.menu.on .middle {
	opacity: 0;
}
.menu.on .bottom {
	width: 100%;
	transform: translateY(-0.7rem) translateX(0) rotate(45deg);
}
.menu span {
	height: 1px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	cursor: pointer;
	background: #333333;
	border: none;
}
.menu span:nth-of-type(2) {
	top: 0.7rem;
}
.menu span:nth-of-type(3) {
	top: 1.4rem;
	width: 63%;
}

@media all and (min-width: 897px) {
	.menuBox {
		display: none !important;
	}
}
.menuBox {
	position: fixed;
	top: 0;
	height: 100%;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 888;
	display: none;
	overflow-y: auto;
}
.menuBox .logo {
	width: 14rem;
	position: absolute;
	top: 2.1rem;
	left: 2rem;
}
.menuBox .innerBox {
	padding: 12.2rem 1.2rem;
	position: relative;
}
.menuBox .naviUl {
	margin: 0 auto 14.7rem;
	width: 73%;
	font-size: 1.8rem;
	font-weight: 600;
	text-align: center;
}
.menuBox .naviUl a {
	padding: 1.5rem 0 1.7rem;
	display: block;
}
.menuBox .naviUl li {
	border-bottom: 1px solid var(--blue);
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	margin-top: 11.9rem;
	padding: 12rem 0 5.7rem;
	color: var(--white);
	background-color: #8EAFB5;
}
#gFooter a {
	color: var(--white);
}
#gFooter .fBox {
	max-width: 120rem;
}
#gFooter .fLogo {
	margin-bottom: 1rem;
}
#gFooter .fLogo img {
	width: 22rem;
}
#gFooter .fLogo a {
	display: inline-block;
}
#gFooter .flexBox {
	display: flex;
	justify-content: space-between;
}
#gFooter .fNavi {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	gap: 4.8rem;
}
#gFooter .fNavi .innerUl {
	display: flex;
	flex-wrap: wrap;
	gap: 4.8rem;
}
#gFooter .fNavi .innerUl > li > a {
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--white);
}
#gFooter .fNavi .innerUl ul {
	margin: 2.3rem -8.5rem 0 0;
	font-size: 1.4rem;
}
#gFooter .fNavi .innerUl ul li {
	margin-bottom: 0.9rem;
}
#gFooter .fNavi .innerUl ul li:last-child {
	margin-bottom: 0;
}
#gFooter .fTxt {
	margin-bottom: 1.4rem;
	letter-spacing: 0.1em;
}
#gFooter .txtUl {
	margin-bottom: 5.9rem;
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	font-family: "Noto Serif JP", serif;
}
#gFooter .txtUl span {
	display: inline-block;
	vertical-align: middle;
}
#gFooter .txtUl .ttl {
	color: #8EAFB5;
	font-size: 1.2rem;
	line-height: 1;
	padding: 0.5rem 0.6rem;
	font-family: "Noto Sans JP", sans-serif;
	background-color: #fff;
	font-weight: 700;
	border-radius: 0.2rem;
	margin: 0.2rem 0.6rem 0 0;
}
#gFooter .txtUl .txt {
	font-size: 2.6rem;
	font-weight: 400;
	letter-spacing: 0.04em;
}
#gFooter .insBtn {
	margin-top: 0.4rem;
}
#gFooter address {
	margin-top: 11.8rem;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
}
@media all and (min-width: 897px) {
	#gFooter a:hover {
		opacity: 0.65;
	}
}
@media all and (max-width: 896px) {
	#gFooter .fNavi .innerUl {
		display: block;
	}
	#gFooter .flexBox {
		display: block;
	}
	#gFooter .insBtn {
		margin-top: 0;
		text-align: center;
	}
	#gFooter .txtUl {
		margin-bottom: 5rem;
		display: block;
	}
	#gFooter .insBtn img {
		width: 4rem;
	}
	#gFooter address {
		margin: 2.8rem -3.5rem 0;
		font-size: 1rem;
		text-align: center;
		letter-spacing: 0;
	}
	#gFooter .fNavi .innerUl > li > a {
		padding-bottom: 0;
		border-bottom: none;
	}
	#gFooter {
		margin-top: 7rem;
		padding: 6rem 2rem 7.9rem;
	}
	#gFooter .fTxt {
		margin-bottom: 1.9rem;
		line-height: 1.45;
	}
	#gFooter .fLogo {
		margin-bottom: 1.2rem;
	}
	#gFooter .txtUl .ttl {
		padding: 0.4rem 0.6rem 0.6rem;
		margin: 0.3rem 0.6rem 0 0;
	}
	#gFooter .txtUl li {
		margin-bottom: 0.4rem;
	}
	#gFooter .fNavi {
		margin-bottom: 4.8rem;
		font-size: 1.4rem;
		letter-spacing: 0.05em;
		justify-content: space-between;
		gap: 0;
	}
	#gFooter .fNavi > li {
		width: 47.6%;
	}
	#gFooter .fNavi > li:last-child {
		flex: 1;
	}
	#gFooter .fNavi .innerUl li {
		margin-bottom: 1.8rem;
	}
	#gFooter .fNavi .innerUl li:last-child {
		margin-bottom: 0;
	}
	#gFooter .fNavi .innerUl ul {
		margin: 1.7rem -1.5rem 0 0;
		font-size: 1.4rem;
	}
	#gFooter .fNavi .innerUl ul a {
		display: inline-block;
		padding-left: 2rem;
		position: relative;
	}
	#gFooter .fNavi .innerUl ul a::before {
		width: 0.3rem;
		height: 0.3rem;
		border-radius: 50%;
		position: absolute;
		top: 1.1rem;
		left: 0.9rem;
		overflow: hidden;
		background-color: var(--white);
		content: "";
	}
	#gFooter .fNavi .innerUl ul li {
		margin-bottom: 1.8rem;
	}
}