@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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 {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}

html {
	font-size: 62.5%;
}

body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP', sans-serif;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

a, a:link {
	color: #555;
	text-decoration: none;
}

a:visited {
	color: #555;
}

a:hover {
	color: #555;
}

a:active {
	color: #555;
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1100px;
	color: #555;
	font-size: 2rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}

body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}

#container {
	padding-top: 90px;
	text-align: left;
}

#main {
	margin: 0 auto;
	max-width: 890px;
}

a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}

/*.sphead {
	display: 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;
	}

	#container {
		padding-top: 45px;
	}

	#main {
		margin: 0 17px;
	}

	a:hover, a:hover img {
		opacity: 1 !important;
	}

	.pc {
		display: none !important;
	}

	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}

	/*.sphead {
	display: block;
	width: 100%;	
	}*/
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 90px;
	padding: 14px 32px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	z-index: 100;
	transition: .3s;
}

#gHeader h1 img {
	transition: .3s;
}

h1 img.thbnr {
	display: none;
}

@media all and (min-width: 897px) {
	.menuBox {
		display: none !important;
	}

	#gHeader.fixHeader {
		padding: 14px 45px 16px 52px;
		height: 56px;
	}

	#gHeader.fixHeader h1 img {
		width: 140px;
	}
}

@media all and (max-width: 896px) {
	#gHeader {
		height: 80px;
		padding: 0 !important;
		justify-content: center;
	}

	h1 {
		display: flex;
		flex-direction: column;
		width: 100%;
		align-items: center;

	}

	h1 img.splogo {
		width: 90px;
	}

	/* h1 img.thbnr {
			display: block;
		width: 100%;
		margin-top: 15px
	} */
	#toggle {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		z-index: 1002;
	}

	.menu {
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		background: linear-gradient(90deg, #2FC8DF 0%, #39C3B1 30%, #59B42B 100%);
	}

	.menu img {
		margin-right: 12px;
		vertical-align: -4px;
	}

	.menu p {
		display: inline-block;
		color: #fff;
		font-size: 1.8rem;
		font-weight: bold;
	}

	#toggle .close {
		padding-top: 8px;
		margin: 0 auto 15px;
		display: none;
		width: 40px;
		height: 40px;
		color: #fff;
		font-weight: 500;
		text-align: center;
		background-color: #5DB31E;
		border-radius: 50%;
		cursor: pointer;
		box-sizing: border-box;
	}

	#toggle.active .menu {
		display: none;
	}

	#toggle.active .close {
		display: block;
	}

	#toggle .close p {
		margin-top: -9px;
		font-size: 1.2rem;
		transform: scale(0.54);
		;
	}

	.menuBox {
		padding: 0 33px;
		position: fixed;
		top: 100%;
		left: 0;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		background-color: #fff;
		box-sizing: border-box;
		z-index: 1001;
		transition: .3s;
	}

	.menuBox.open {
		top: 0;
	}

	.menuBox .home {
		margin: 52px 0 8px;
	}

	.menuBox .home a {
		padding: 2px 0 2px 42px;
		display: inline-block;
		font-size: 2rem;
		font-weight: bold;
		background: url("../../img/common/icon03.png") no-repeat left 4px;
		background-size: 30px auto;
	}

	.menuBox>ul {
		margin-bottom: 70px;
	}

	.menuBox>ul>li {
		margin-bottom: 14px;
		padding-left: 28px;
		font-size: 1rem;
		background: url("../../img/common/icon04.png") no-repeat 5px 13px;
		background-size: 11px auto;
		border-bottom: 1px solid #C8E72A;
	}

	.menuBox>ul>li>a {
		padding: 4px 0 2px;
		display: block;
		color: #808080;
		font-weight: 300;
	}

	.menuBox>ul>.liStyle>a {
		position: relative;
	}

	.menuBox>ul>.liStyle>a:before {
		position: absolute;
		right: 10px;
		top: 50%;
		width: 3px;
		height: 13px;
		margin-top: -5px;
		background-color: #555;
		content: "";
		transition: .3s;
	}

	.menuBox>ul>.liStyle>a:after {
		position: absolute;
		right: 5px;
		top: 50%;
		width: 13px;
		height: 3px;
		background-color: #555;
		content: "";
	}

	.menuBox>ul>.liStyle>a.on:before {
		transform: rotate(45deg);
	}

	.menuBox>ul>.liStyle>a.on:after {
		transform: rotate(45deg);
	}

	.menuBox>ul>.liStyle02 {
		background: none;
		border-bottom: none;
	}

	.menuBox>ul>li>a:last-child {
		margin-bottom: 0;
	}

	.menuBox>ul>li>a span {
		margin-right: 8px;
		color: #555;
		font-size: 1.8rem;
		font-weight: bold;
		vertical-align: -2px;
	}

	.menuBox>ul>li>ul {
		display: none;
		margin: 0 0 8px;
	}

	.menuBox>ul>li li {
		margin: 8px 18px 2px 0;
		font-size: 1.4rem;
		display: inline-block;
	}

	.menuBox>ul>li .liStyle {
		margin-right: 40px;
	}

	.menuBox>ul>li li a {
		color: #555;
	}

	.menuBox>ul>li:last-child>a {
		margin-bottom: 15px;
	}
}

/*------------------------------------------------------------
	gNavi
------------------------------------------------------------*/
#gNavi {
	margin-top: 10px;
}

#gNavi>ul {
	display: flex;
	justify-content: flex-end;
}

#gNavi>ul>li {
	margin-left: 35px;
	position: relative;
	font-size: 1.6rem;
	font-weight: 300;
	text-align: center;
	transition: .3s;
}

#gNavi>ul>li>a {
	display: inline-block;
	color: #525252;
}

#gNavi ul li img {
	width: 65px;
	margin-top: -10px;
}

#gNavi ul li a:hover {
	opacity: 0.3;
	transition: .3s;
}

#gNavi li .jp {
	transition: .3s;
	font-size: 1.2rem;
}

#gNavi li .eng {
	display: block;
	color: #555;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.1;
	transition: .3s;
}

#gNavi li .on {
	color: #ccc;
}

#gNavi li .on .eng {
	color: #ccc;
}

#gNavi li .dropMenu {
	display: none;
	padding-top: 30px;
	position: absolute;
	left: 50%;
	width: 170px;
	transform: translateX(-50%);
	top: 100%;
	z-index: 10;
}

#gNavi li .dropMenu ul {
	padding: 40px 10px 25px;
	background-color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

#gNavi li .dropMenu li {
	margin-bottom: 20px;
	font-size: 2rem;
}

@media all and (min-width: 897px) {
	.fixHeader #gNavi>ul>li {
		margin-left: 63px;
	}

	.fixHeader #gNavi li .eng {
		font-size: 1.4rem;
	}

	.fixHeader #gNavi li .jp {
		display: none;
	}

	#gNavi li a:hover {
		color: #ccc;
	}

	#gNavi li a:hover .eng {
		color: #ccc;
	}
}

@media all and (max-width: 1300px) {
	#gNavi>ul>li {
		margin-left: 20px;
	}

	.fixHeader #gNavi>ul>li {
		margin-left: 30px;
	}
}

@media all and (max-width: 1140px) {
	#gNavi>ul>li {
		font-size: 1.4rem;
	}

	.fixHeader #gNavi>ul>li {
		margin-left: 20px;
	}

	#gNavi li .eng,
	.fixHeader #gNavi li .eng {
		font-size: 1.4rem;
	}
}

@media all and (min-width: 897px)and (max-width: 1140px) {
	#gNavi ul li img {
		width: 65px;
		margin-top: -10px;
	}
}

@media all and (max-width: 896px) {
	#gNavi {
		display: none;
	}
}

/*------------------------------------------------------------
	パンクズリスト
------------------------------------------------------------*/
#pagePath {
	margin: 0 auto 60px;
	max-width: 960px;
	display: flex;
	justify-content: flex-end;
}

#pagePath li {
	margin-left: 6px;
	color: #000;
	font-size: 1.8rem;
}

#pagePath a {
	margin-right: 4px;
	color: #000;
}

@media all and (min-width: 897px) {
	#pagePath a:hover {
		text-decoration: underline;
	}
}

@media all and (max-width: 896px) {
	#pagePath {
		display: none;
	}
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding-top: 60px;
	border-top: 8px solid #5DB31E;
	background-color: #fff;

	/* add */
	/* max-width: 1200px;
	margin: 0 auto; */
	/* add */
}

#gFooter .fInner {
	margin: 0 auto;
	max-width: 980px;
}

#gFooter .fMark {
	/* display: flex;
	justify-content: space-evenly;
	align-items: center;
	margin-bottom: 38px;
	flex-wrap: wrap;
	width: 980px;
	margin: 0 auto 38px; */

	/* add */
	max-width: 1200px;
	margin: 0 auto 20px;
	background: white;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(20, 1fr);
    padding: 40px;
    gap: 20px;
    /* margin-bottom: 20px; */
	/* add */
}

#gFooter .fMark li {
	/* display: flex;
	width: 23%;
	margin: 0 2% 2.8% 0; */

	/* add */
	grid-column: auto / 4 span;
	text-align: center;
	/* add */
}

#gFooter .fMark li:nth-child(3) {
	/* width: 16%; */
}

#gFooter .fMark li:last-child {
	margin-right: 0;
}

#gFooter .fNavi {
	margin: 0 -4px 42px;
	display: flex;
	justify-content: space-between;
}

#gFooter .fNavi>li {
	width: 20%;
}

#gFooter .fNavi>li:nth-of-type(2) {
	margin-right: 5%;
}

#gFooter .fNavi>li .ttl a {
	padding-left: 19px;
	display: inline-block;
	color: #5DB31E;
	font-weight: bold;
	background: url("../../img/common/icon02.png") no-repeat left 12px;
	background-size: 12px auto;
	font-size: 1.8rem;
}

#gFooter .fNavi>li ul {
	margin: 0 0 23px 19px;
	padding-bottom: 27px;
	border-bottom: 1px dashed #707070;
}

#gFooter .fNavi>li ul:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

#gFooter .fNavi>li li {
	margin-top: 10px;
}

#gFooter .fNavi>li li a {
	font-size: 1.6rem;
}

#gFooter .banner {
	margin: -20px 0 26px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#gFooter .banner li a {
	margin: 20px 20px 0 0;
	display: inline-block;
}

#gFooter .banner li a:last-child {
	margin-right: 0;
}

#gFooter .logoBox {
	margin: 0 -10px 50px 0;
	display: flex;
	align-items: center;
}

#gFooter .logoBox .rTxt {
	margin: 25px 0 0 23px;
	width: 695px;
}

#gFooter .logoBox .rTxt li {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.7;
}

#gFooter .logoBox .rTxt li span {
	margin-right: 5px;
	font-weight: bold;
}

#gFooter .link {
	margin-bottom: 13px;
	font-size: 1.6rem;
	text-align: center;
}

#gFooter .link a {
	margin: 0 7px;
}

#gFooter .copyright {
	padding: 16px;
	font-size: 1.8rem;
	text-align: center;
	background-color: #F4F4F4;
	border-top: 1px solid #707070;
}

.ftw {
	margin-left: 0px;
}

@media all and (min-width: 897px) {
	#gFooter .fNavi>li a:hover, #gFooter .link a:hover {
		text-decoration: underline;
	}

	#gFooter .banner li a:hover {
		opacity: 0.7;
	}
}

@media all and (max-width: 896px) {
	#gFooter {
		padding: 45px 0 60px;
		border-top-width: 4px;
	}

	#gFooter .fInner {
		margin: 0 25px;
	}

	#gFooter .fMark {
		flex-direction: column;
		margin: 0 auto 20px;
		width: 80%;
	}

	#gFooter .fMark li {
		width: auto;
		margin-bottom: 30px;
	}

	#gFooter .fMark li:nth-child(3) {
		width: 50%;
	}

	#gFooter .fNavi {
		margin: 0 25px 0 12px;
		flex-wrap: wrap;
	}

	#gFooter .fNavi>li {
		margin-bottom: 55px;
		width: 52%;
	}

	#gFooter .fNavi>li:nth-of-type(2) {
		margin-right: 0;
	}

	#gFooter .fNavi>li:nth-child(2n) {
		width: 39%;
	}

	#gFooter .fNavi>li .ttl {
		margin-bottom: 23px;
	}

	#gFooter .fNavi>li .ttl a {
		padding-left: 10px;
		font-size: 1.6rem;
		background-size: 6px auto;
	}

	#gFooter .fNavi>li ul {
		margin: 0 0 10px 10px;
		padding-bottom: 14px;
	}

	#gFooter .fNavi>li li {
		margin-top: 14px;
	}

	#gFooter .fNavi>li li a {
		font-size: 1.4rem;
	}

	#gFooter .fNavi>li .listStyle li {
		margin-top: 2px;
	}

	#gFooter .banner {
		margin: -10px 0 0;
	}

	#gFooter .banner li a {
		margin: 10px 0 0;
	}

	#gFooter .banner li img {
		width: 100%;
	}

	#gFooter .banner li:nth-child(3) {
		display: flex;
		justify-content: space-between;
	}

	#gFooter .banner li:nth-child(3) a {
		width: 48%;
	}

	#gFooter .banner li:nth-child(4) {
		display: flex;
		justify-content: space-between;
	}

	#gFooter .banner li:nth-child(4) a {
		width: 48%;
	}

	#gFooter .logoBox {
		margin: 0 -10px 38px 0;
		flex-wrap: wrap;
	}

	#gFooter .logoBox .fLogo {
		display: flex;
	}

	#gFooter .logoBox .fLogo a {
		width: 42.5%;
	}

	#gFooter .logoBox .fLogo a:first-child {
		margin: -3px 24px 0 0;
		width: 48%;
	}

	#gFooter .logoBox .rTxt {
		margin: -5px 0 0;
		width: 100%;
	}

	#gFooter .logoBox .rTxt li {
		margin-top: 13px;
		font-size: 1.4rem;
		line-height: 1.3;
	}

	#gFooter .logoBox .rTxt li span {
		margin: 0 0 2px;
		display: inline-block;
	}

	#gFooter .link {
		margin: 0 -15px 30px;
		padding: 25px 12px 54px;
		font-size: 1.4rem;
		text-align: left;
		border-top: 1px solid #F4F4F4;
		border-bottom: 1px solid #F4F4F4;
	}

	#gFooter .link a {
		display: inline-block;
		margin: 0 0 15px;
	}

	#gFooter .copyright {
		padding: 23px 10px;
		font-size: 0.9rem;
		border-top: none;
	}

	.ftw {
		margin: 0 0 40px 0;
		max-width: 48%;
		float: left;
	}
}

@media all and (max-width: 359px) {
	#gFooter .fInner {
		margin: 0 15px;
	}

	#gFooter .fNavi {
		margin: 0;
	}
}