@charset "utf-8";

/*-------------------------------------------------------------------------------------------------------------------------------
* base
------------------------------------------------------------------------------------------------------------------------------- */
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.04em;
	color: #000000;
	-webkit-text-size-adjust: none;
	overflow-y: scroll;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
a {
	color: inherit;
	text-decoration: none;
	opacity: 1;
	transition: opacity 0.5s ease;
}
/*a:hover {
	opacity: 0.6;
}*/
img{
	-webkit-backface-visibility: hidden;
}
@media screen and (max-width:767px) {
	body {
		font-size: 15px;
		line-height: 1.6;
		letter-spacing: 0.02em;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	a {
		opacity: 1;
		transition: all 0;
	}
	:hover {
		opacity: 1 !important;
	}
	img{
		width: 100%;
	}
}


/* all_wrapper
===================================================================== */
#all_wrapper {
	width: 100%;
	min-width: 1080px;
}
#all_wrapper.fixed{
	position: fixed;
}
@media screen and (max-width:767px) {
	#all_wrapper {
		min-width: inherit;
	}
}


/* header 
===================================================================== */
header {
	position: fixed;
	z-index: 10001;
	width: 100%;
	min-width: 1080px;
	height: 80px;
	top: 0;
	left: 0;
	transition: .5s;
}
header.bg{
	background: #FFF;
}
header .wrapper{
	position: relative;
	padding: 26px 25px;
}
header .h_logo{
	width: 180px;
}
@media screen and (max-width:767px) {
	header {
		min-width: inherit;
		height: 70px;
		background: #FFF;
	}
	header .wrapper{
		padding: 22px 24px;
	}
}

/* h_nav */
header .h_nav{
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
}
header .h_nav ul{
	display: flex;
	padding: 0 20px 0;
}
header .h_nav ul li{
	padding: 0 20px;
	text-align: center;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
	font-weight: bold;
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: 0.06em;
}
header .h_nav ul li span{
	display: block;
	font-family: 'Work Sans', sans-serif;
	font-weight: 600;
	font-size: 12px;
	color: #1EC3DC;
}
header .h_nav ul li a {
	position: relative;
	display: block;
	height: 80px;
	padding: 22px 0 0;
}
header .h_nav ul li a::before {
	content: '';
	position: absolute;
	bottom: 0%;
	left: 0px;
	width: 100%;
	height: 3px;
	background: #1EC3DC;
	display: block;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform 0.4s;
}
header .h_nav ul li a:hover::before {
	transform-origin: left top;
	transform: scale(1, 1)
}
header .h_nav ul li.current a::before{
	transform-origin: left top;
	transform: scale(1, 1);
	transition: none;
}
header .h_nav .h_support a{
	position: relative;
	overflow: hidden;
	display: block;
	width: 100px;
	height: 80px;
	padding: 15px 0 0;
	background: #1EC3DC;
	text-align: center;
}
header .h_nav .h_support a::after {
	position: absolute;
	z-index: 2;
	display: block;
	content: '';
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #E50012;
	transition: all .25s ease;
}
header .h_nav .h_support a:hover::after {
	top: 0;
	left: 0;
}
header .h_nav .h_support a img{
	width: 25px;
	position: relative;
	z-index: 3;
}
header .h_nav .h_support a span{
	position: relative;
	z-index: 3;
	display: block;
	padding: 5px 0 0;
	color: #FFF;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
	font-weight: bold;
	font-size: 13px;
}
@media screen and (max-width:767px) {
	header .h_nav{
		display: none;
	}
}

/* h_menu */
header .h_menu{
	display: none;
}
@media screen and (max-width:767px) {
	header .h_menu{
		display: block;
		width: 70px;
		height: 70px;
		position: absolute;
		top: 0;
		right: 0;
		background: #1EC3DC;
	}
	header .h_menu .menu-trigger,
	header .h_menu .menu-trigger span {
		display: inline-block;
		transition: all .4s;
	}
	header .h_menu .menu-trigger {
		position: absolute;
		top: 24px;
		left: 21px;
		display: block;
		width: 26px;
		height: 21px;
	}
	header .h_menu .menu-trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #FFF;
		border-radius: 0;
	}
	header .h_menu .menu-trigger span:nth-of-type(1) {
		top: 0;
	}
	header .h_menu .menu-trigger span:nth-of-type(2) {
		top: 10px;
	}
	header .h_menu .menu-trigger span:nth-of-type(3) {
		top: 20px;
	}
	header .h_menu.active .menu-trigger span:nth-of-type(1) {
		top: 11px;
		transform: rotate(-45deg);
	}
	header .h_menu.active .menu-trigger span:nth-of-type(2) {
		display: none;
	}
	header .h_menu.active .menu-trigger span:nth-of-type(3) {
		top: 11px;
		transform: rotate(45deg);
	}
}


/* nav (drawer_menu)
===================================================================== */
nav{
	display: none;
}

@media screen and (max-width:767px) {
	nav{
		display: block;
	}
	nav .drawer_menu {
		position: fixed;
		z-index: 10000;
		width: 100%;
		height: 100%;
		background: #1EC3DC;
		padding: 70px 40px 40px;
		transform: translate(100%);
		transition: all .5s;
		opacity: 0;
		overflow: auto;
	}
	nav .drawer_menu.open{
		opacity: 1;
		transform: translate(0);
	}
	nav .drawer_menu .content{
		padding: 50px 0 0;
	}
	
	/* d_nav */
	nav .d_nav {
		padding: 0 0 30px;
	}
	nav .drawer_menu .d_nav > li{
		padding: 10px 0;
		font-size: 20px;
		font-weight: bold;
		opacity: 0;
		transform : translate(0, 30px);
		transition: all 1.0s 0.2s;
	}
	nav .drawer_menu .d_nav > li:nth-child(2){
		transition: all 1.0s 0.4s;
	}
	nav .drawer_menu .d_nav > li:nth-child(3){
		transition: all 1.0s 0.6s;
	}
	nav .drawer_menu .d_nav > li:nth-child(4){
		transition: all 1.0s 0.8s;
	}
	nav .drawer_menu .d_nav > li.fadeIn{
		opacity: 1;
		transform : translate(0, 0);
	}
	nav .d_nav li a{
		color: #FFF;
	}
	nav .d_nav > li > ul{
		padding: 5px 0 0 1em;
		color: #FFF;
	}
	nav .d_nav > li > ul > li{
		font-size: 18px;
		font-weight: normal;
	}
	
	/* .d_support */
	nav .d_support{
		opacity: 0;
		transform : translate(0, 30px);
		transition: all 1.0s 1.0s;
	}
	nav .d_support.fadeIn{
		opacity: 1;
		transform : translate(0, 0);
	}
	nav .d_support a{
		display: block;
		padding: 15px 20px;
		background: #FFF;
		color: #1EC3DC;
		font-size: 20px;
		line-height: 1;
	}
	nav .d_support a img{
		width: 21px;
		vertical-align: middle;
		margin-right: 10px;
	}
}


/* main
===================================================================== */
main .wrapper.under{
	width: 860px;
	margin: 0 auto;
	padding: 80px 0;
}
@media screen and (max-width:767px) {
	main .wrapper.under{
		width: 100%;
		padding: 70px 25px 40px;
	}
}

/* pankuzu */
.pankuzu{
	padding: 40px 0;
}
.pankuzu ul{
	display: flex;
	flex-wrap: wrap;
}
.pankuzu ul li{
	position: relative;
	font-size: 12px;
	color: #B2B2B2;
	padding: 0 30px 0 0;
}
.pankuzu ul li:not(:last-child)::after{
	content: '';
	position: absolute;
	background: #E5E5E5;
	height: 1px;
	width: 9px;
	top: 50%;
	right: 10px;
}
.pankuzu ul li.current{
	color: #000000;
}
@media screen and (max-width:767px) {
	.pankuzu{
		padding: 30px 0;
	}
	.pankuzu ul li{
		font-size: 11px;
	}
}

/* page_title */
.page_title {
	padding: 0 0 60px;
}
.page_title .en{
	display: block;
	font-family: 'Work Sans', sans-serif;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.06em;
	color: #1EC3DC;
}
.page_title .jp{
	position: relative;
	display: block;
	font-size: 26px;
	font-weight: bold;
	letter-spacing: 0.12em;
}
.page_title .jp::after{
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	width: 60px;
	height: 1px;
	background: #000;
	margin-left: 20px;
}
@media screen and (max-width:767px) {
	.page_title {
		padding: 0 0 30px;
	}
	.page_title .en{
		font-size: 14px;
	}
	.page_title .jp{
		font-size: 20px;
	}
	.page_title .jp::after{
		content: '';
		display: inline-block;
		position: absolute;
		top: 50%;
		width: 25px;
		height: 1px;
		background: #000;
		margin-left: 15px;
	}
}


/* footer
===================================================================== */
footer .wrapper{
	width: 1040px;
	margin: 0 auto;
	padding: 0 0 30px;
}
footer a:hover{
	transition: 0.2s;
}
footer a:hover{
	color: #1EC3DC;
}
@media screen and (max-width:767px) {
	footer .wrapper{
		width: 100%;
		padding: 0 0 20px;
	}
}

/* f_nav01 */
footer .f_nav01{
	width: 1040px;
	margin: 0 auto;
	padding: 30px 0;
	border-top: 1px solid #E5E5E5;
}
footer .f_nav01 > ul{
	display: flex;
	justify-content: center;
}
footer .f_nav01 > ul > li{
	padding: 0 45px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
	font-weight: bold;
	font-size: 15px;
	letter-spacing: 0.06em;	
}
footer .f_nav01 > ul > li > ul{
	padding: 5px 0;
}
footer .f_nav01 > ul > li > ul > li{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 13px;
}
@media screen and (max-width:767px) {
	footer .f_nav01{
		width: 100%;
		padding: 20px 30px;
	}
	footer .f_nav01 > ul{
		display: block;
	}
	footer .f_nav01 > ul > li{
		padding: 5px 0;
	}
	footer .f_nav01 > ul > li > ul{
		padding: 0 0 0 1em;
	}
	footer .f_nav01 > ul > li > ul > li{
		font-size: 14px;
	}
}

/* f_link */
footer .f_link{
	border-top: 1px solid #E5E5E5;
	padding: 30px 0 50px;
}
footer .f_link h3{
	display: none;
}
footer .f_link .content{
	display: flex;
	justify-content: space-between;
}
footer .f_link .content ul{
	width: 320px;
	box-sizing: content-box;
}
footer .f_link .content ul:not(:first-child){
	border-left: 1px solid #E5E5E5;
	padding-left: 30px;
}
footer .f_link .content ul li{
	font-size: 12px;
	line-height: 2;
}
footer .f_link .content ul li::before{
	content: "- ";
}
@media screen and (max-width:767px) {
	footer .f_link{
		border-top: 1px solid #E5E5E5;
		border-bottom: 1px solid #E5E5E5;
		padding: 0;
		width: calc(100% - 60px);
		margin: 0 auto;
	}
	footer .f_link h3{
		display: block;
		padding: 20px 0;
		position: relative;
	}
	footer .f_link h3 .mark{
		position: absolute;
		top: 20px;
		right: 0;
		display: block;
		width: 21px;
		height: 21px;
	}
	footer .f_link h3 .mark span {
		display: inline-block;
		transition: all .4s;
		background-color: #333333;
		border-radius: 0;
	}
	footer .f_link h3 .mark span:nth-of-type(1) {
		position: absolute;
		top: 10px;
		left: 0;
		width: 100%;
		height: 1px;
	}
	footer .f_link h3 .mark span:nth-of-type(2) {
		position: absolute;
		top: 0;
		left: 10px;
		width: 1px;
		height: 100%;
	}
	footer .f_link h3.active .mark span:nth-of-type(2) {
		transform: rotate(90deg);
	}
	footer .f_link .content{
		display: none;
		padding: 0 0 20px;
	}
	footer .f_link .content ul{
		width: 100%;
	}
	footer .f_link .content ul:not(:first-child){
		border-left: none;
		padding-left: 0;
	}
}

/* f_nav02 */
footer .f_nav02{
	padding: 20px 0 20px;
}
footer .f_nav02 .f_logo{
	width: 200px;
	margin: 0 auto;
}
footer .f_nav02 ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 15px 0 0;
}
footer .f_nav02 ul li{
	font-size: 12px;
}
footer .f_nav02 ul li:not(:first-child)::before{
	content: "｜";
	padding: 0 2px;
}
@media screen and (max-width:767px) {
	footer .f_nav02{
		padding: 30px 0 15px;
	}
	footer .f_nav02 ul li{
		font-size: 12px;
	}
}

/* f_nav02 */
footer .copyright{
	text-align: center;
	font-family: 'Work Sans', sans-serif;
	font-weight: 500;
	font-size: 11px;
}


/* pagetop
=====================================================================
#pagetop{
	display: none;
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 50px;
}
#pagetop img{
	width: 100%;
}
@media screen and (max-width:767px) {
	#pagetop{
		right: 10px;
		bottom: 10px;
		width: 50px;
	}
} */

