@charset "utf-8";

/*header
---------------------------------------------*/
header {
	position: fixed;
	z-index: 100;
	width: 100%;
	top: 0;
	transition: 0.4s;
	height: 80px;
	background-color: #FFF;
}
header .logo {
	padding: 25px 0 0 30px;
	float: left;
}


/* gnav
---------------------------------------------------- */
.zdo_drawer_menu {
	float: right;
}
.zdo_drawer_menu button {
	display: none;
}
#gnav {
	margin: 20px 20px 0 0;
}
#gnav ul {
	text-align: right;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
#gnav ul li {
	display: inline-block;
	margin-left: 23px;
	position: relative;
}
#gnav ul.menu > li.btn1 a {
	width: 150px;
	text-align: center;
	color: #FFF;
	box-sizing: border-box;
	transition: 0.5s;
	border-radius: 50px;
	background: #ef8200;
}
#gnav ul.menu > li.btn1 a:hover {
	opacity: 0.7;
}
#gnav ul.menu > li.btn1 a span {
	background-image: url(../images/common/mail.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 15px auto;
	padding-left: 22px;
}
#gnav ul.menu > li a.plus:after {
	content: " ＋";
	color: #ef8200;
}
#gnav ul li.sp {
	display: none;
}
#gnav ul li a {
	text-decoration: none;
	line-height: 40px;
	font-size: 15px;
	display: block;
	position: relative;
	font-family: 'LINESeedJP_Bd';
}
#gnav ul li a.sp {
	display: none;
}
#gnav > ul > li:hover a {
	position: relative;
}
#gnav > ul > li:hover .child {
	max-height: 9999px;
	opacity: 1;
}
#gnav > ul > li > a {
	display: block;
	transition: all .2s ease-in;
	position: relative;
	z-index: 10;
}
#gnav > ul .child {
	transition: all .2s ease-in;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	width: 160%;
	left: -30%;
	text-align: left;
	position: absolute;
	background-color: #10B0C1;
}
#gnav > ul .child .menu_inner {
	padding: 0;
}
#gnav > ul .child .menu_inner li {
	margin: 0;
	text-align: center;
	font-size: 90%;
	display: block;
	background-color: #ef8200;
	border-top: 1px solid #FFF;
}
#gnav > ul .child .menu_inner li:last-child {
	border-bottom: none;
}
#gnav > ul .child .menu_inner li a {
	line-height: 45px;
	color: #FFF;
}


/* footer
---------------------------------------------------- */
footer .f_menu {
	padding: 40px 0;
	background-color: #ef8200;
}
footer .f_menu .contents {
	display: grid;
	color: #FFF;
	line-height: 2.4;
	grid-template-columns: 1fr 1fr;
}
footer .f_menu .contents div {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
footer .f_menu .contents a {
	color: #FFF;
}
footer .f_menu .contents a:hover {
	opacity: 0.7;
}
footer .f_menu .contents .sub {
	padding-left: 20px;
}
footer .f_copy {
	padding: 10px 0;
	text-align: right;
}


/* contents
---------------------------------------------------- */
.contents {
	max-width: 1200px;
	margin: 0 auto;
}
.blc {
	margin: 50px 0;
}


/* h
---------------------------------------------------- */
.ttl_h2 {
	font-size: 80px;
	margin-bottom: 50px;
	text-align: left;
	line-height: 1.3;
	position: relative;
	font-family: 'KozGo-B';
	letter-spacing: 0.02em;
}
.ttl_h2 span {
	display: block;
	font-size: 30px;
}


/* anc
---------------------------------------------------- */
.anc {
	margin-top: -120px;
	padding-top: 120px;
	display: block;
}


/* page_top
---------------------------------------------------- */
#page_top {
	width: 60px;
	height: 60px;
	position: fixed;
	right: 0;
	z-index: 100;
	border-radius: 20px 0 0 0;
	overflow: hidden;
}
#page_top a {
	display: block;
	width: 60px;
	height: 60px;
}
#page_top a img {
	width: 60px;
	height: 60px;
}


@media only screen and (max-width: 767px) {


/* header
---------------------------------------------------- */
header {
	height: 50px;
	width: 100%;
	padding: 0;
	min-width: 100%;
}
header .logo {
	padding: 13px 0 0 10px;
}
header .logo img {
	height: 24px;
	padding: 0;
	display: block;
}
#gnav ul.menu > li.btn1 a {
	background: transparent;
	border: none;
	border-radius: 0;
	width: 100%;
	text-align: left;
}
#gnav ul.menu > li.btn1 a:before {
	display: none;
}
#gnav ul.menu > li.btn1 a:after {
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -4px;
	content: "";
	width: 6px;
	height: 6px;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	left: inherit;
	border-radius: 0;
	background: none;
}
#gnav ul.menu > li.btn1 a:hover {
	background: transparent;
	color: inherit;
}

/* menu */
#gnav {
	margin: 0;
	padding: 0;
	border-radius: 0;
	background-color: #ef8200;
}
#gnav ul.menu {
	border-top: 1px solid #FFF;
	margin-top: 50px;
}
#gnav ul.menu li {
	width: 100%;
	height: auto;
	margin: 0;
	line-height: 50px;
	float: left;
	border-bottom: 1px solid #FFF;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: left;
}
#gnav ul li.sp {
	display: block;
}
#gnav ul.menu li a {
	display: block;
	color: #FFFFFF!important;
	line-height: 48px;
	font-size: 15px;
	font-weight: normal;
	text-decoration: none;
	padding: 0 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	border: none;
	position: relative;
}
#gnav ul.menu li a.pc {
	display: none;
}
#gnav ul.menu li a:after {
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -4px;
	content: "";
	width: 6px;
	height: 6px;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#gnav ul.menu li ul li a {
	padding: 0 20px;
	font-size: 15px;
}
#gnav ul.menu li ul li:last-child {
	border-bottom: none;
}
#gnav ul.menu > li:last-child a {
	background-color: transparent;
	border-radius: 0;
	padding: 0 10px;
}
.panel-btn{
	display: inline-block;
	position: relative;
	width: 38px;
	height: 38px;
	border: 1px solid #FFF;
}
.panel-btn-icon{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 2px;
	margin: -1px 0 0 -10px;
	background: #FFF;
	transition: .2s;
}
.panel-btn-icon:before, .panel-btn-icon:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 2px;
	background: #FFF;
	transition: .3s;
}
.panel-btn-icon:before{
	margin-top: -8px;
}
.panel-btn-icon:after{
	margin-top: 6px;
}
.panel-btn .close{
	background: transparent;
}
.panel-btn .close:before, .panel-btn .close:after{
	margin-top: 0;
}
.panel-btn .close:before{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.panel-btn .close:after{
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
.demo {
	margin: 0;
}
.demo a {
	display: block;
}
.demo .child {
	display: none;
	padding: 0;
	border-top: 1px solid #FFF;
}
.demo .child > li:last-child {
	border-bottom: 0;
}
#gnav ul.menu li a.toggle:after {
	position: absolute;
	top: 50%;
	right: 28px;
	margin-top: -25px;
	content: '＋';
	font-size: 22px;
	color: #FFF;
	font-weight: normal;
	border: none;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
#gnav ul.menu li a.toggle.active:after {
	content: '－';
	font-size: 22px;
}
#gnav ul .child {
	position: inherit;
	transition: all 0s ease-in;
}
#gnav ul .child .contents {
	padding: 0!important;
	max-width: 100%;
}
#gnav ul .child .contents ul {
	float: none;
	padding: 8px 0;
	width: 100%;
	border-top: 1px solid #FFF;
}
#gnav ul .child .contents ul:first-child {
	border-top: none;
	padding: 0;
}
#gnav ul .child .contents ul li {
	border: none;
	line-height: 32px;
	padding: 0;
	width: 100%;
	border-bottom: 1px solid #FFF;
}
#gnav ul .child .contents ul li:last-child {
	border-bottom: none;
}
#gnav ul .child .contents ul li a {
	line-height: 30px;
	font-size: 13px;
	padding: 5px 20px;
	display: block;
}
#gnav ul .child .contents ul li p {
	font-size: 14px;
	font-weight: normal;
}
#gnav > ul .child {
	max-height: 100%;
	opacity: 1;
	width: 100%;
	left: 0;
	padding: 0;
	border-radius: 0;
}
#gnav > ul .child .menu_inner li {
	text-align: left;
	border-top: none;
}
#gnav > ul .child .menu_inner li a {
	line-height: 42px;
	font-size: 14px;
}
#gnav ul .child .contents ul li a::after {
	left: inherit;
	right: 20px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#gnav > ul > li:hover a::before {
	display: none;
}
#gnav ul li a::before {
	display: none!important;
}
#gnav > ul .child .menu_inner li.sp {
	display: block;
}


/* footer
---------------------------------------------------- */
footer .f_menu .contents div {
	display: grid;
	grid-template-columns: 1fr;
}
footer .f_copy {
	text-align: center;
}


/* contents
---------------------------------------------------- */
.contents {
	max-width: 90%;
	padding: 0;
}
.blc {
	margin: 30px 0;
}


/* h
---------------------------------------------------- */
.ttl_h2 {
	font-size: 44px;
	margin-bottom: 30px;
}
.ttl_h2 span {
	font-size: 18px;
}


/* anc
---------------------------------------------------- */
.anc {
	margin-top: -80px;
	padding-top: 80px;
	display: block;
}


/* page_top
---------------------------------------------------- */
#page_top {
	width: 47px;
	height: 47px;
	position: fixed;
	bottom: 0;
}
#page_top a {
	display: block;
	width: 47px;
	height: 47px;
}
#page_top a img {
	width: 47px;
	height: 47px;
}


}