@charset "UTF-8";
/* CSS Document */
html {
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
}
html.wf-active,
html.loading-delay {
	visibility: visible;
	opacity: 1;
} 


* {
    word-break: break-all;
	}

body {
	/*font-family: 'Sawarabi Gothic', sans-serif;*/
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	color: #000;
	line-height: 1.6;
	letter-spacing: 0.02em;
	background-color: #f2f2f2;
}
#wrapper {
	overflow: hidden;
}
a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
a img {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
a:hover {
	/*color: #0038a9;*/
	color: #808080;
}
.inner {
	max-width: 1240px;
	margin-right: auto;
	margin-left: auto;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
/* font */
.sg {
	font-family: 'Sawarabi Gothic', sans-serif;
	font-weight: 400;
}
.ub {
	font-family: 'Unbounded', cursive;
	font-weight: 400;
}

/* fade */
.fadeUpTrigger {
	opacity: 0;
}
/* fadeup */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1.6s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
  from {
	opacity: 0;
	transform: translateY(180px);
  }
  to {
	opacity: 1;
	transform: translateY(0);
  }
}

/* zoomout */
@keyframes zoomOutAnime {
  from {
		transform: scale(1.2);
		opacity: 0;
  }
	to {
		transform:scale(1);
		opacity: 1;
	}
}
.zoomOutTrigger {
	opacity: 0;
}
.zoomOut {
	animation-name: zoomOutAnime;
	animation-duration: 1.8s;
	animation-fill-mode: forwards;
}

/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	/*background-color: rgba(255, 255, 255, 0.95);*/
	width: 100%;
}
header.is-animation {
	background-position: top center;
	background-color: rgba(255, 255, 255, 0.95);
	transition: 1s;
	box-shadow: 0 2px 13px rgba(0, 0, 0, 0.2);
}
header .h_inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
header .h_inner .left .logo a {
	font-size: 40px;
	line-height: 1;
}
header .h_inner .left .logo a img {
	max-width: 140px;
}
header .h_inner .left .logo a span {
	font-size: 26px;
}
header .h_inner .right .global-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .h_inner .right .global-nav .global-nav_list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item {
	position: relative;
	overflow: hidden;
	margin: 0 16px;
	text-align: center;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item:last-of-type {
	margin-right: 0;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item a {
	font-size: 16px;
	/*font-family: 'Unbounded', cursive;*/
	font-weight: 700;;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: -100%;
	width: 100%;
	height: 1px;
	background-color: #808080;
	transition: .3s;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item:hover:after {
	left: 0;
}

/* btn */
.btn02 {
	display: inline-block;
	border-radius: 50px;
	position: relative;
	transition: all .2s linear;
	width: 240px;
	padding: 8px 72px 8px 30px;
}
.btn02:before {
	position: absolute;
}
.btn01:before {
	top: calc(50% - 16px);
	right: 32px;
	width: 32px;
	height: 32px;
	transition: all .2s linear;
}
.btn02:before {
	top: calc(50% - 13px);
	right: 32px;
	width: 26px;
	height: 26px;
	transition: all .2s linear;
}
.btn01:hover:before {
	right: 26px;
}
.btn02:hover:before {
	right: 26px;
}

/* btn_wy */
.btn_wy {
	background-color: #fff;
	color: #0038a9;
	border: 1px solid #0038a9;
}
.btn_wy:hover {
	background-color: #0038a9;
	color: #fff ;
}
.btn_wy:before {
	content: url("../img/common/btn_bl.svg");
}
.btn_wy:hover:before {
	content: url("../img/common/btn_bl_h.svg");
}

/* btn_bk */
.btn_bk {
	background-color: #000;
	color: #fff;
	border: 1px solid #000;
}
.btn_bk:hover {
	background-color: #fff;
	color: #000;
}
.btn_bk:before {
	content: url("../img/common/btn_wy.svg");
}
.btn_bk:hover:before {
	content: url("../img/common/btn_bk.svg");
}

/* footer */
footer {
	padding-bottom: 60px;
}
footer .f_content {
	background-color: #f2f2f2;
}
footer .f_content .f_inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 46px 20px 20px;
}
footer .f_content .f_inner .f_desc01 {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
footer .f_content .f_inner .f_desc01 .left {
	width: calc(30%);
}
footer .f_content .f_inner .f_desc01 .left .f_logo a {
	font-size: 40px;
	font-weight: bold;
	line-height: 1;
}
footer .f_content .f_inner .f_desc01 .left .f_logo a img {
	max-width: 180px;
}
footer .f_content .f_inner .f_desc01 .left .f_logo a span {
	font-size: 26px;
}
footer .f_content .f_inner .f_desc01 .left .add {
	padding-top: 16px;
	font-size: 20px;
	font-weight: bold;
}
footer .f_content .f_inner .f_desc01 .right {
	width: calc(70%);
	display: flex;
	flex-direction: row-reverse;
}
footer .f_content .f_inner .f_desc01 .right .f_nav {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer .f_content .f_inner .f_desc01 .right .f_nav li {
	margin: 0 16px;
	text-align: center;
}
footer .f_content .f_inner .f_desc01 .right .f_nav li:nth-of-type(5) {
	margin-right: 0;
}
footer .f_content .f_inner .f_desc01 .right .f_nav li a {
	font-size: 16px;
	/*font-family: 'Unbounded', cursive;*/
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	font-weight: 700;
}
footer .f_content .f_inner .f_desc02 {
	padding-top: 70px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
footer .f_content .f_inner .f_desc02 .left {
	width: calc(50%);
}
footer .f_content .f_inner .f_desc02 .left .tel a {
	font-size: 40px;
	/*font-family: 'Unbounded', cursive;*/
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
footer .f_content .f_inner .f_desc02 .left .mail a {
	font-size: 20px;
	/*font-family: 'Unbounded', cursive;*/
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}

footer .f_content .f_inner .f_desc02 .right {
	width: calc(50%);
	display: flex;
	flex-direction: row-reverse;
}
footer .f_content .f_inner .f_desc02 .right .privacy a {
	color: #959595;
	font-size: 12px;
}
footer .f_content .f_inner .f_desc02 .right .privacy a:hover {
	color: #000;
}
footer .f_content .f_inner .copy {
	text-align: center;
	font-size: 12px;
	padding-top: 46px;
}

@media screen and (max-width: 1300px) {
	footer .f_content .f_inner .f_desc01 .left .add {
	font-size: 15px;
	}
}

@media screen and (max-width: 1000px) {
	body {
		font-size: 14px;
	}
	/* 共通 */
	.inner {
		width: 100%;
		max-width: 100%;
	}
	/*header*/
	header {
		position: fixed;
		background-color: rgba(255, 255, 255, 0.9);
		box-shadow: 0 2px 13px rgb(0 0 0 / 20%);
	}
	header .h_inner {
		width: 100%;
		height: 60px;
		padding: 0 16px 0;
	}
	header .h_inner.is-animation {
		box-shadow: 0 0 0 rgb(0 0 0 / 0%);
		background-color: rgba(0, 0, 0, 0);
	}
	header.is-animation .h_inner {
		height: 60px;
	}
	header .h_inner .left .logo a {
		font-size: 30px;
		font-weight: bold;
	}
	header .h_inner .left .logo a span {
    font-size: 16px;
	}
	.global-nav {
		position: fixed;
		right: -320px;
		top: 0;
		width: 300px;
		height: 100vh;
		padding-top: 40px;
		background-color: rgba(255, 255, 255, 0.95);
		transition: all .6s;
		z-index: 9999;
		overflow-y: auto;
	}
	header .h_inner .right .global-nav {
    display: block;
}
	header .h_inner .right .global-nav .global-nav_list {
		display: block;
		padding: 20px 0 40px;
	}
	header .h_inner .right .global-nav .global-nav_list .global-nav_item {
		margin: 0 0;
		position: static;
		width: 100%;
		padding: 8px 0;
	}
	header .h_inner .right .global-nav .global-nav_list .global-nav_item:before {
		display: none;
	}
	header .h_inner .right .global-nav .global-nav_list .global-nav_item a {
		text-align: left;
	}
	header .h_inner .right .global-nav .global-nav_list .global-nav_item a {
		padding: 12px 0 12px 40px;
		display: block;
		font-size: 1rem;
	}
	header .h_inner .right .global-nav .global-nav_list .global-nav_item a:hover {
		color: #000;
	}
	header .h_inner .right .h_btn {
		padding: 0 40px;
		display: block;
	}
	header .h_inner .right .h_btn li:first-of-type {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 20px;
	}
	header .h_inner .right .h_btn li:last-of-type {
		margin-left: 0;
	}

/* hamburgeメニュー */
	.hamburger {
		position: absolute;
		right: 16px;
		top: 14px;
		width: 32px;
		height: 30px;
		cursor: pointer;
		z-index: 9999;
	}
	.hamburger_line {
		position: absolute;
		right: 0;
		height: 2px;
		background-color: #000;
		transition: all .6s;
	}
	.hamburger_line1 {
		top: 6px;
		width: 30px;
	}
	.hamburger_line2 {
		top: 14px;
		width: 24px;
	}
	.hamburger_line3 {
		top: 22px;
		width: 16px;
	}
	.nav-open .global-nav {
		right: 0;
	}
	.nav-open .hamburger_line1 {
		transform: rotate(45deg);
		top: 16px;
		width: 32px;
	}
	.nav-open .hamburger_line2 {
		width: 0;
		left: 50%;
	}
	.nav-open .hamburger_line3 {
		transform: rotate(-45deg);
		top: 16px;
		width: 32px;
	}

/* footer */
	footer {
		padding-bottom: 20px;
	}
	footer .f_content .f_inner {
		width: 100%;
		padding: 40px 6vw 20px;
	}
	footer .f_content .f_inner .f_desc01 {
		display: block;
	}
	footer .f_content .f_inner .f_desc01 .right {
		width: 100%;
		display: block;
	}
	footer .f_content .f_inner .f_desc01 .left {
		width: 100%;
		padding-top: 80px;
	}
	footer .f_content .f_inner .f_desc01 .left .add {
		font-size: 18px;
	}
	footer .f_content .f_inner .f_desc01 .right .f_nav li {
		margin: 0 10px;
	}
	footer .f_content .f_inner .f_desc01 .right .f_nav li a {
		font-size: 1rem;
	}
	footer .f_content .f_inner .f_desc02 {
		padding-top: 20px;
	}
	footer .f_content .f_inner .f_desc02 .left .tel a {
		font-size: min(7vw,30px);
	}
}

@media screen and (max-width: 767px) {
/* btn */
.btn02 {
	width: 220px;
}
.btn01:before {
	right: 22px;
}
.btn02:before {
	right: 22px;
}
.btn01:hover:before {
	right: 18px;
}
.btn02:hover:before {
	right: 18px;
}










/* footer */
	footer .f_content .f_inner .f_desc01 .right .f_nav li {
		margin: 0 0 16px;
		width: calc(50% - 10px);
	}
	footer .f_content .f_inner .f_desc01 .right .f_nav li a {
		display: block;
	}
	footer .f_content .f_inner .f_desc01 .left .f_logo {
		text-align: center;
	}
	footer .f_content .f_inner .f_desc01 .left .add {
		font-size: 15px;
		text-align: center;
	}
	footer .f_content .f_inner .f_desc02 {
		padding-top: 20px;
		display: block;
	}
	footer .f_content .f_inner .f_desc02 .right {
		width: 100%;
	}
	footer .f_content .f_inner .f_desc02 .left {
		width: 100%;
		text-align: center;
	}
	footer .f_content .f_inner .f_desc02 .left .mail a {
		font-size: 15px;
	}
}

@media screen and (max-width: 600px) {
/* footer */
	footer .f_content .f_inner .f_desc01 .right .f_nav {
		display: block;
	}
	footer .f_content .f_inner .f_desc01 .right .f_nav li {
		margin: 0 0 16px;
		width: 100%;
	}
	footer .f_content .f_inner .f_desc01 .left .f_logo a {
		font-size: 36px;
	}
	footer .f_content .f_inner .f_desc01 .left .f_logo a span {
		font-size: 22px;
	}
}

@media screen and (max-width: 340px) {
/* header */
	header .h_inner .right .global-nav .global-nav_list .global-nav_item {
		padding: 0 0;
	}
	.global-nav {
		right: -300px;
		width: 280px;
	}
}
