@charset "UTF-8";

/* General Settings
------------------------------------------ */

* {
	box-sizing: border-box;
}
html {
	scroll-padding-top: 80px;
}
body {
	position: relative;
	color: #202020;
	background: #f8f8f8;
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 2.0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'メイリオ', Meiryo, sans-serif;
	font-weight: 400;
	margin: 0;
	padding: 0;
}
main {
	position: relative;
	padding-top: 80px;
}
article {
	position: relative;
}
h1,h2,h3,h4,h5,h6 {
	font-family: NotoSansJP, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'メイリオ', Meiryo, sans-serif;
	font-weight: 500;
	line-height: 1.6;
	margin: 0 0 1em;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
ul, ol {
	margin: 0;
	padding: 0;
}
ul li, ol li {
	list-style-type: none;
}

dl, dt, dd, figure {
	margin: 0;
	padding: 0;
}
p {
	word-wrap: break-word;
}
a {
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
a[href*="tel:"] {
	pointer-events: none;
}
.alignl {
	text-align: left;
}
.alignc {
	text-align: center;
}
.alignr {
	text-align: right;
}

@media screen and (max-width: 800px) {
	body {
		font-size: 16px;
		font-size: 1rem;
	}
}
/*-------------------------------------
 for block editor
 --------------------------------------*/
.aligncenter,
.aligncenter img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
img.alignright {
	margin-left: auto;
}
.wp-block-button__link {
	border-radius: 0;
}
.wp-block-buttons .wp-block-button {
	display: block;
	margin: 0 auto 60px;
}
.wp-block-buttons .wp-block-button:last-child {
	margin-right: auto;
}

/*-------------------------------------
 common
--------------------------------------*/

strong {
	font-family: NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
}

.btn {
	width: 400px;
	height: 80px;
	margin: 0 auto;
}
.btn a {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	letter-spacing: .075em;
	border: 2px solid #00aa83;
	background-color: #FFF;
	color: #00aa83;
	border-radius: 40px 40px;
	font-family: NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1;
}
.btn a:hover {
	background-color: #00aa83;
	color: #FFF;
}

.pc-mode {
	display: block;
}
img.pc-mode {
	display: inline;
}
.sp-mode {
	display: none;
}
.spnav {
	display: none;
}
.half-wrap {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
}


/* common responsive
--------------------------------------*/
@media screen and (max-width: 1200px) {
	html {
		scroll-padding-top: 60px;
	}
}
@media screen and (max-width: 480px) {
	.btn {
		width: 100%;
	}
}

/*-------------------------------------
 header
--------------------------------------*/
header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 80px;
	background-color: #FFF;
}
header h1 {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	align-items: center;
	max-width: 385px;
	width: 100%;
	padding-left: 2.4%;
	margin: 0 1.5% 0 0;
}
header h1 a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	align-items: center;
	width: inherit;
}
header h1 img {
	width: inherit;
}
header .gnav > ul {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	align-items: center;
	height: 80px;
}
header .gnav > ul > li {
	margin-right: 2em;
}
header .gnav > ul > li > a {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	height: 100%;
	color: #202020;
	font-family: NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .05em;
	padding: 8px 0;
	overflow: hidden;
}
header .gnav > ul > li > a::before {
	content: '';
	position: absolute;
	left: -100%;
	bottom: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #00aa83;
	transition: all .5s ease;
}
header .gnav > ul > li > a:hover::before {
	left: 0;
}
header .gnav > ul > li:last-child {
	margin-right: 0;
}
header .gnav > ul > li:last-child a {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 80px;
	background-color: #0b308e;
	color: #FFF;
}
header .gnav > ul > li:last-child a:hover {
	background-color: #00aa83;
}
header .gnav > ul > li:last-child a::before {
	content: '';
	position: static;
	display: inline-block;
	width: 26px;
	height: 16px;
	background: url( ../img/icon-mail-w.png ) no-repeat center center;
	background-size: contain;
	margin-right: .3em;
}
header .gnav .parent-menu {
	position: relative;
}
header .gnav .parent-menu > a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	align-items: center;
}
header .gnav .parent-menu > a::after {
	content: '';
	display: block;
	width: 15px;
	height: 9px;
	background: url(../img/arrow-down-gr.svg) no-repeat center center;
	background-size: contain;
	margin-left: .3em;
	transition: all .5s ease;
}
header .gnav .parent-menu > a:hover::after {
	background: url(../img/arrow-down-green.svg) no-repeat center center;
	background-size: contain;
	transform: rotate(-180deg);
}
header .sub-menu {
	position: absolute;
	left: 0;
	top: 2em;
	display: none;
	width: 200%;
	z-index: 101;
	font-size: 1rem;
	margin: 0;
}
header .sub-menu li {
	width: auto;
}
header .sub-menu li:nth-child(4n) {
	margin-right: 0;
}
header .sub-menu li a {
	position: relative;
	display: block;
	padding: 1.2em 1.5em;
	line-height: 1.5;
	background-color: #00aa83;
	color: #FFF;
}
header .sub-menu li a:hover {
	background-color: #0b308e;
}


/* header responsive
--------------------------------------*/
@media screen and (max-width: 1500px) {

}
@media screen and (max-width: 1400px) {

}
@media screen and (max-width: 1300px) {
	header h1 {
		max-width: 300px;
	}
	header .gnav > ul > li {
		margin-right: 1.5em;
	}
}
@media screen and (max-width: 1200px) {
	a[href*="tel:"] {
		pointer-events: initial;
	}
	header {
		height: 60px;
	}
	main {
		padding-top: 60px;
	}
	header h1 {
		width: 80%;
	}
	header h1 img {
		width: 100%;
	}
	header .gnav {
		display: none;
	}
	.spnav {
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: end;
		justify-content: flex-end;
	}
	/*------------------------------------------ drawer nav関連　*/
	.drawer-hamburger {
		color: #0b308e;
	}
	.drawer--right.drawer-open .drawer-hamburger {
		right: 0;
	}
	.drawer-hamburger-icon, 
	.drawer-hamburger-icon:after, 
	.drawer-hamburger-icon:before {
		background-color: #0b308e;
	}
	.drawer-nav {
		width: 50%;
		background-color: #0b308e;
		color: #FFF;
	}
	.drawer--right .drawer-nav {
		right: -50%;
	}
	.drawer-open .drawer-hamburger {
		color: #FFF;
	}
	.drawer-open .drawer-hamburger-icon:after, 
	.drawer-open .drawer-hamburger-icon:before {
		background-color: #FFF;
	}
	.drawer-menu {
		padding: 65px 10%;
	}
	.drawer-menu > li {
		border-bottom: 1px solid #FFF;
		line-height: 1.5;
	}
	.drawer-menu a {
		position: relative;
		display: block;
		padding: 1em 1em 1em .5em;
		color: #FFF;
	}
	.drawer-menu > li > a::after {
		content: '';
		position: absolute;
		right: .5em;
		top: 50%;
		transform: translateY(-50%);
		display: block;
		width: 8px;
		height: 14px;
		background: url(../img/arrow03-w.svg) no-repeat center center;
		background-size: contain;
	}
	.drawer-menu > li.drawer-dropdown > a::before,
	.drawer-menu > li.drawer-dropdown > a::after {
		content: '';
		position: absolute;
		right: .5em;
		top: 50%;
		transform: translateY(-50%);
		display: block;
		width: 14px;
		height: 2px;
		background-color: #FFF;
		transition: all .5s ease;
	}
	.drawer-menu > li.drawer-dropdown > a::after {
		transform: translateY(-50%) rotate(90deg);
	}
	.drawer-menu > li.drawer-dropdown.open > a::after {
		transform: translateY(-50%) rotate(180deg) ;
	}
	.drawer-menu-item {
		font-size: 1.125rem;
	}
	.drawer-dropdown-menu {
		background-color: transparent;
		font-size: 1rem;
	}
	.drawer-dropdown-menu li a {
		position: relative;
		padding: 0 .5em 0 1.5em;
	}
	.drawer-dropdown-menu li a::before {
		content: '';
		position: absolute;
		left: .5em;
		top: 50%;
		transform: translateY(-50%);
		display: block;
		width: 10px;
		height: 1px;
		background-color: #FFF;
	}
}
@media screen and (max-width: 800px) {
	.drawer-nav {
		width: 100%;
	}
	.drawer--right .drawer-nav {
		right: -100%;
	}
}
@media screen and (max-width: 700px) {
	/* main {
		padding-top: 60px;
	}
	header {
		height: 60px;
	}
	header .nav-toggle {
		height: 60px;
	}
	header .tel-btn {
		width: 60px;
		height: 60px;
	}
	.drawer-hamburger {
		height: 60px;
	} */
}
@media screen and (max-width: 480px) {
	/* body {
		font-size: 15px;
		font-size: 1.5rem;
	}
	header h1 a {
		font-size: 2rem;
	}
	header h1 figure {
		width: 34px;
	}
	.drawer-menu-item,
	.drawer-dropdown-menu {
		font-size: 1.5rem;
	} */
}
@media screen and (max-width: 420px) {
	/* header h1 a {
		font-size: 1.6rem;
	}
	header h1 figure {
		width: 30px;
	}
	header .nav-toggle {
		width: 52px;
	}
	.drawer-hamburger {
		width: 30px;
	}
	header .tel-btn {
		width: 52px;
	}
	header .tel-btn a::after {
		background-size: 23px;
	} */
}
@media screen and (max-width: 350px) {
	/* header h1 figure {
		width: 28px;
		margin-right: .1em;
	}
	header .nav-toggle {
		width: 46px;
	}
	.drawer-hamburger {
		width: 24px;
	}
	header .tel-btn {
		width: 46px;
	} */
}

/*-------------------------------------
 footer
--------------------------------------*/
footer {
	width: 100%;
	padding: 100px 10.9% 30px;
	background: url(../img/bg-footer.png) no-repeat center top;
	background-size: cover;
	color: #FFF;
	font-family: NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
}
footer a {
	color: #FFF;
}
footer .inner {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: end;
	width: 60%;
}
footer .fnav {
	width: 40%;
	line-height: 1.5;
}
footer .fnav li a {
	position: relative;
	display: inline-block;
	padding: 4px 0;
	overflow: hidden;
}
footer .fnav li a::before {
	content: '';
	position: absolute;
	left: -100%;
	bottom: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #FFF;
	transition: all .5s ease;
}
footer .fnav li a:hover::before {
	left: 0;
}
footer h2 {
	width: 390px;
}
.f-zeb {
	width: 100px;
	height: 100px;
	margin:  0 0 0 2em;
}
.f-zeb a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0;
	background-color: #FFF;
}
footer .fnav ul {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
}
footer .fnav ul li {
	margin-right: 2em;
}
footer .fnav ul li:last-child {
	margin-right: 0;
}
footer .copy {
	font-family: NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 400;
	font-size: .9375rem;
	text-align: right;
	margin: 0;
}
#pagetop {
	display: none;
}
#pagetop a {
	position: fixed;
	right: 0;
	bottom: 0;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: #04ade2;
	border: 2px solid #04ade2;
}
#pagetop.fixed {
	display: block
}
#pagetop a:hover {
	opacity: .8;
}
#pagetop a::after {
	content: '';
	display: block;
	width: 30px;
	height: 20px;
	background: url(../img/arrow3-w.svg) no-repeat center center;
	background-size: contain;
	transform: rotateZ(180deg);
	z-index: 1;
}
/* footer responsive
--------------------------------------*/
@media screen and (max-width: 1400px) {
	footer {
		padding: 100px 5% 30px;
	}
}
@media screen and (max-width: 1200px) {
	footer {
		padding: 80px 5% 30px;
	}
	footer .half-wrap {
		flex-wrap: wrap;
	}
	footer .inner {
		width: 100%;
		margin-bottom: 2em;
	}
	footer .fnav {
		width: 100%;
		margin-bottom: 2em;
	}
	footer .fnav ul {
		-webkit-box-pack: start;
		justify-content: flex-start;
	}
	footer .about-blk {
		padding-bottom: 0;
	}
	footer .marks {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 800px) {
	footer h2 {
		width: 300px;
	}
}
@media screen and (max-width: 700px) {
	.f-zeb {
		margin-left: 0;
	}
	footer .company-blk {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	footer {
		padding: 60px 3% 20px;
	}
	footer h2 {
		margin-bottom: 1em;
	}
	footer .copy {
		text-align: left;
		padding: 1.3em 0;
	}
	footer .fnav ul {
		flex-wrap: wrap;
	}
	footer .fnav ul li {
		width: 50%;
		margin-right: 0;
		padding-right: 1em;
	}
}


/* Animation -------------------------------*/
.fadeup {
	opacity: 0;
}
.fadeup.active {
	animation-name: fadeUpAnime;
	animation-duration: 0.6s;
	animation-fill-mode: forwards;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}