@charset "UTF-8";

/*-----------------------------------

	base

-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-size: 15px;
    font-size: 1.5em;
	color: #000000;
    line-height: 1.6;
	letter-spacing:0.05em;
	font-weight: 400;
	background: #ffffff;
	margin:0 !important;
	width: 100%;
	overflow: hidden;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
.contents_inner {
	max-width: 1230px;
    width: 95%;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
    color: #000000;
	text-decoration:none;
    cursor: pointer;
}
a:hover {
    opacity: 0.6;
	text-decoration:none;
}
.sp{
	display:none;
}
.pc{
	display:block;
}
.left{
	float: left;
}
.right{
	float: right;
}
@media screen and (max-width: 1230px) {
}
@media screen and (max-width: 840px) {
}
@media screen and (max-width: 640px) {
	body {
		font-size: 13px;
		font-size: 1.3em;
	}
    .sp{
        display:block;
    }
    .pc{
        display:none;
    }
}

/*-----------------------------------

	clearfix

-----------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}
/*-----------------------------------

	header

-----------------------------------*/
header {
    height: 75px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background: #FFF;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    padding: 0 2.5%;
/*     border-bottom: 1px solid #000; */
}
header #logo {
    width: 460px;
    line-height: 0;
}
header #logo img {
	display: block;
}
header #logo .front_logo {
	width: 140px;
}
header #nav_menu > ul {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    gap: 30px;
}
header #nav_menu ul > li > a,
header #nav_menu ul > li > span {
	font-size: 14px;
    line-height: 75px;
    height: 75px;
    cursor: pointer;
}
header #nav_menu ul > li {
    position: relative;
}
header #nav_menu ul > li > ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100%;
    background: #3e3a39;
    width: 210px;
    transition: .5s;
}
header #nav_menu ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
}
header #nav_menu ul > li > ul > li {
    border-bottom: 1px solid #fff;
}
header #nav_menu ul > li > ul > li > a {
    display: block;
    height: 52px;
    line-height: 52px;
    font-size: 12px;
    color: #fff;
    padding: 0 15px;
}
.menu_btn_wrap {
    display: none;
}
@media screen and (max-width: 1230px) {
    header #logo {
		width: 300px;
    }
    header #nav_menu > ul {
        gap: 15px;
    }
    header #nav_menu ul > li > a,
    header #nav_menu ul > li > span {
        font-size: 11px;
        letter-spacing: 0;
    }
    
}
@media screen and (max-width: 840px) {
    header {
        height: 70px;
    }
    .menu_btn_wrap {
		display: block;
		width: 70px;
		height: 70px;
		cursor:pointer;
		background: #FFF;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 999;
	}
	.menu_btn {
		width: 28px;
		height: 10px;
		display: block;
		position: absolute;
		top: 30px;
		left: 21px;
		background: #000;
		border-top: 5px solid #FFF;
		border-bottom: 5px solid #FFF;
		box-sizing: border-box;
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		z-index:999;
	}
	.menu_btn:before {
		content:'';
		position:absolute;
        width: 28px;
		height: 2px;
		background: #000;
		top:-5px;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.menu_btn:after {
		content:'';
		position:absolute;
        width: 28px;
		height: 2px;
		background: #000;
		bottom:-5px;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.menu_btn.active:before{
		-moz-transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
		transform:rotate(-135deg);
		top:-1px;
		left:0;
	}
	.menu_btn.active:after {
		-moz-transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		transform:rotate(135deg);
		bottom:-1px;
		left:0;
	}
    header #nav_menu {
        max-width: 300px;
		width: 100%;
		height: calc(100% - 70px);
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		background: #fff;
		position: fixed;
		top:70px;
		right: -100%;
		padding: 20px;
		z-index: 999;
		box-sizing: border-box;
		-webkit-overflow-scrolling: touch;
		transition: 0.3s;
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
	}
	header #nav_menu.toggle{
		right: 0 !important;
	}
    header #nav_menu > ul {
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
        gap: 15px;
    }
    header #nav_menu ul > li > a,
    header #nav_menu ul > li > span {
        position: relative;
        display: block;
        line-height: 35px;
        height: 35px;
        font-size: 14px;
    }
    header #nav_menu ul > li > span.pc {
        display: none;
    }
    header #nav_menu ul > li > span::after {
        content: "";
        width: 7px;
        height: 7px;
        border-left: 1px solid #000;
        border-bottom: 1px solid #000;
        transform: rotate(-45deg);
        position: absolute;
        top: 0;
        bottom: 0;
        right: 10px;
        margin: auto;
        transition: .5s;
    }
    header #nav_menu ul > li > span.active::after {
        transform: rotate(-225deg);
    }
    header #nav_menu ul > li > ul {
        visibility: visible;
        opacity: 1;
        position: static;
        background: #FFF;
        width: auto;
        padding-left: 20px;
        display: none;
        transition: auto;
    }
    header #nav_menu ul > li > ul > li {
        border-bottom: none;
    }
    header #nav_menu ul > li > ul > li.sp {
        display: block;
    }
    header #nav_menu ul > li > ul > li > a {
        height: 32px;
        line-height: 32px;
        font-size: 12px;
        color: #000;
    }

}
@media screen and (max-width: 640px) {
    header #logo {
        max-width: 320px;
        width: calc(100% - 70px);
    }
    header #logo .front_logo {
        width: 150px;
    }
}
/*-----------------------------------

	contents

-----------------------------------*/


/*-----------------------------------

	footer

-----------------------------------*/
footer {
    background: #000;
    padding: 30px 0;
    color: #FFF;
}
footer .contents_inner {
    max-width: none;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
   -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
footer .footer_logo {
    width: 165px;
    line-height: 0;
}
footer .right {
    text-align: right;
    position: relative;
}
footer .right ul {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    gap: 30px;
    padding-right: 80px;
}
footer .right ul li a {
    color: #FFF;
}
footer .right ul.top li a {
    font-size: 12px;
}
footer .right ul.bottom li a {
    font-size: 10px;
}
footer .right #pagetop {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 35px;
    height: 35px;
    background: #363434;
}
footer .right #pagetop::after {
    content: "";
    width: 22px;
    height: 11px;
    background: url(../img/common/totop.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
footer .right small {
    font-size: 10px;
    display: inline-block;
    margin-top: 10px;
}
@media screen and (max-width: 840px) {
    footer .contents_inner {
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
    }
	footer .footer_logo {
        margin-bottom: 20px;
    }
    footer .right ul {
        gap: 0 20px;
        padding-right: 60px;
    }
}
