@charset "UTF-8";

/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/

html{	height:100%;}
html{
	font-size:62.5%;
    overflow-y: scroll;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family:Helvetica,Arial,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Verdana,sans-serif;
	text-align: left;
	color:000;
	letter-spacing: 1px;
}
body{
    -webkit-text-size-adjust: 100%;
}
body *{
    box-sizing: border-box;
}

a.hover {
 transition: opacity 0.3s ease-out;
}

a.hover:hover {
 opacity: 0.7;
}

img{
    max-width: 100%;
    height: auto;
}

.tac{
    text-align: center;
}

.bold{
    font-weight: bold;
}

.flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner{
    width: 1290px;
    margin: auto;
}
body{
    position:relative;
    overflow: hidden;
    background-color: #000;
}
.container{
    padding: 100px 0;
}
.sec .btn_contact{
    display: block;
    width: 260px;
    height: 35px;
    margin: auto;
    line-height: 35px;
    font-size: 1.6rem;
    text-decoration: none;
    color: #fff;
    background-color: #000;
}
@media screen and (max-width : 1290px) {
    .inner{
        width: auto;
        margin: 0 10px;
    }
    .container{
        padding: 7.75% 0 100px;
    }
}
@media screen and (min-width : 769px){
    .sp{
        display: none;
    }
}
@media screen and (max-width : 768px){
    .pc{
        display: none;
    }
    .inner{
        width: auto;
        margin: auto;
    }
    .container{
        padding: 16% 0 0 0;
    }
    .sec .btn_contact{
        width: 62.5%;
    }
}
@media screen and (max-width : 500px){
    .sec .btn_contact{
        height: 30px;
        line-height: 30px;
        font-size: 1.2rem;
    }
}


/* ------------------------------
    header
------------------------------ */
#header{
    background-color: #000;
}
#header .hd_up{
    position: fixed;
    width: 100%;
    height: 100px;
    top: 0;
    background-color: #000;
    z-index: 9999;
}
#header .hd_up .inner{
    position: relative;
}
#header .hd_up .ttl_site{
    width: 180px;
    margin: 20px auto 25px;
}
#header .hd_up .menu_trigger{
    position: absolute;
    display: block;
    width: 40px;
    height: 30px;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999;
    cursor: pointer;
}
#header .hd_up .menu_trigger span{
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    left: 0;
    background-color: #FFF100;
    border-radius: 4px;
}
#header .hd_up .menu_trigger span:nth-of-type(1) {
    top: 0;
}
#header .hd_up .menu_trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}
#header .hd_up .menu_trigger span:nth-of-type(3) {
    bottom: 0;
}
#header .hd_up .menu_trigger span:nth-of-type(2):after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background-color: #FFF100;
    transition: all .4s;
}
#header .hd_up .menu_trigger.active{
    z-index: 99999;
}
#header .hd_up .menu_trigger.active span:nth-of-type(1) {
    transform: translate(50%) scale(0);
}
#header .hd_up .menu_trigger.active span:nth-of-type(2) {
    transform: rotate(45deg);
}
#header .hd_up .menu_trigger.active span:nth-of-type(2):after {
    transform: rotate(90deg);
}
#header .hd_up .menu_trigger.active span:nth-of-type(3) {
    transform: translate(-50%) scale(0);
}
#header .hd_down{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
}
#header .hd_down nav{
    height:100%;
}
#header .hd_down .hd_nav{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    margin-top: 0;
}
#header .hd_down .hd_nav li{
    line-height: 2.5;
    text-align:center;
    letter-spacing: 0.05em;
    font-size: 1.7rem;
}
#header .hd_down .hd_nav li a{
    text-decoration: none;
    color: #fff;
}
@media screen and (max-width : 1290px) {
    #header .hd_up{
        height: 0;
        padding-top: 7.75%;
    }
    #header .hd_up .inner{
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        top: 0;
    }
    #header .hd_up .ttl_site{

        margin: 0;
        padding-top: 1%;
    }
    #header .hd_up .menu_trigger{
        right: 3%;
    }
}
@media screen and (max-width : 768px){
    #header .hd_up{
        height: auto;
        padding: 0;
    }

    #header .hd_up .inner{
        position: static;
        display: block;
        width: auto;
        height: auto;
        margin: 0 3.175%;
    }
    #header .hd_up .ttl_site{
        width: 30%;
        margin: 3% auto;
    }
    #header .hd_up .menu_trigger{
        width: 30px;
        height: 25px;
    }
    #header .hd_up .menu_trigger span,
    #header .hd_up .menu_trigger span:nth-of-type(2):after {
        width: 30px;
        height: 1px;
    }
}


/* ------------------------------
    pagetop
------------------------------ */
.pagetop_cover{
    /*
    position: relative;
    height: 90px;
    */
}
.pagetop_cover .pagetop{
    position: fixed;
    bottom:20px;
    right:20px;
    width: 60px;
    height: 60px;
    /*
    right: -60px;
    */
}
.pagetop_cover .pagetop a{
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/ico_pagetop.png) no-repeat;
    background-size: 100% auto;
    transition: opacity 0.3s ease-out;
}
.pagetop_cover .pagetop a:hover{
    opacity: 0.7;
}
@media screen and (max-width : 1440px){
    .pagetop_cover .pagetop{
        right: 10px;
    }
}

/* ------------------------------
    footer
------------------------------ */
#footer{
    width: 100%;
    min-width: 1290px;
    background-color: #000;
}
#footer .ft_up{
    position: relative;
    padding: 0px 0 22px;
}
#footer .list_sns{
    align-items: center;
    position: absolute;
    width: 200px;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
#footer .ttl_ft{
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    line-height:2em;
}
#footer .ttl_ft a{
    text-decoration: none;  
    color: #fff;  
    }
#footer .copyright{
    padding: 20px 0 15px;
    font-size: 1.6rem;
    color: #fff;
}
@media screen and (max-width : 1290px){
    #footer{
        min-width: 100%;
    }
    #footer .ttl_ft{
        width: 50%;
        margin: auto;
    }
    #footer .list_sns{
        right: 3%;
    }
}
@media screen and (max-width : 768px){
    #footer .ft_up{
        padding: 7% 0 5%;
    }
    #footer .ttl_ft{
        width: 100%;
    }
    #footer .list_sns{
        position: static;
        width: 59%;
        margin: 0 auto 9%;
    }
    #footer .copyright{
        padding: 5% 0;
    }
}

/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */