/* -----------------------------------------------
Body - not related to megamenu
----------------------------------------------- */

* {
    box-sizing: border-box;
}

a {
    color: #151515;
}

.description {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.pc-hide{display: none;}


/* -----------------------------------------------
megamenu.js STYLE STARTS HERE
----------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
}


/* -----------------------------------------------
Screen style's
----------------------------------------------- */

.menu-container {
    width: 100%;
    margin: 0 auto;
    background: #000;

}

.menu-mobile {
    display: none;
    padding: 20px;
}

.menu-mobile:after {
    content: "\f0c9";
    font-family: "FontAwesome";
    font-size: 1.7rem;
    padding: 0;
    float: right;
    position: relative;
    top: 50%;
}

.menu-dropdown-icon:before {
    content: "\f067";
    font-family: "FontAwesome";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1em;
    background: #fff;
    color: #333;
}

.menu{
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;

}

.menu > ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    position: relative;
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
    justify-content: flex-end;
    display: flex;
}

.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table;
}

.menu > ul:after {
    clear: both;
}

.menu > ul > li {
    background: #000;
    padding: 0;
    margin: 0;
    text-transform:uppercase;
}

.menu > ul > li:first-child{
    width: 40%;
	text-align: left;
    padding: 10px 10px 10px 0px;
}
.menu .logo span{
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    margin-left: 15px;
}

.menu .logo img{
    vertical-align: middle;
    max-width: 105px;
}

.menu .menu-ttl > a {
    text-decoration: none;
    padding: 1.4em 1em;
    display: block;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

.menu .menu-ttl > a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 15px;
    background: #fff;
    height: 3px;
    margin: 0 1em;    
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.menu .menu-ttl > a:hover:before, .menu .menu-ttl > a:focus:before, .menu .menu-ttl > a:active:before {
    right: 0;
}


.menu-second-wrap a:hover {
    /*background: #555;*/
    /*opacity: 0.8;*/
}

.menu .menu-second {
    display: none;
    width: 100%;
    background: #f0f0f0;
    padding: 20px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

.menu .menu-second:before,
.menu .menu-second:after {
    content: "";
    display: table;
}

.menu .menu-second:after {
    clear: both;
}

.menu .menu-second .menu-second-wrap ul{
    display: flex;
    justify-content: center;
}

.menu .menu-second .menu-second-wrap ul li{
    width: 10%;
    /*height: 140px;*/
    text-align: center;
}

.menu .menu-second .menu-second-wrap ul li:hover{
    opacity: 0.8;
}

.menu .menu-second .menu-second-wrap ul li span{
    font-size: 80%;
    display: block;
    text-align: center;
    margin-top: 5px;
    line-height: 1.5;
    font-weight: 600;
}

.menu .menu-second .menu-second-wrap ul li img{
    max-width: 100px;
}

/* -----------------------------------------------
Mobile style's
----------------------------------------------- */

@media screen and (max-width: 768px) {

    .menu-container {
        display: none;
    }
    
    .pc-hide{display: block;}

    .sp-menu{
        background: #000;
    }    
    .sp-logo{
        max-height: 60px;
        padding: 10px;
        background: #111;
    }

    .sp-logo img{
        vertical-align: middle;
        width: 15%;
    }

    .sp-logo span{
        font-size: 14px;
        color: #fff;
        margin-left: 10px;
    }

    .sp-menu-wrap{
        height: 100%;
        overflow-x: hidden;
        position: relative;
        z-index: 11;
    }
    .overlay {
        content: "";
        display: block;
        width: 0;
        height: 0;
        background-color: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 0;
        transition: opacity .5s;
    }
    .overlay.open {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    .menu-trigger {
        display: inline-block;
        width: 19px;
        height: 20px;
        vertical-align: middle;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 100;
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all .5s;
    }
    .menu-trigger.active span {
        background-color: #fff;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
    }
    .menu-trigger span:nth-of-type(2) {
        top: 9px;
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-6px) rotate(45deg);
    }

    #slide_menu {
        width: 85%;
        height: 100%;
        padding-top: 60px;
        background-color: #000;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 10;
        transform: translate(110%);
        transition: all .5s;
        overflow-y: scroll;
    }
    #slide_menu.open {
        transform: translateZ(0);
    }

    
 /*--------------------------
      アコーディオン
 ---------------------------*/

 
.s_02 .accordion_one {
    max-width: 1024px;
    margin: 0 auto;
}
.s_02 .accordion_one .accordion_header {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 1em 11%;
    text-align: center;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
    border-bottom: 1px #fafafa solid;
}

.s_02 .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 55%;
    right: 5%;
    width: 20px;
    height: 20px;
    margin-top: -20px;
    box-sizing: border-box;
    
    
}
.s_02 .accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
}

.s_02 .accordion_one .accordion_header .i_box .one_i:before, .s_02 .accordion_one .accordion_header .i_box .one_i:after {
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position:absolute;
  right: 2%;
  top: 8%;
  bottom: 0;
  margin: auto;
}
    
.s_02 .accordion_one .accordion_header.open .i_box .one_i:before{
    content:none;
 }   

.s_02 .accordion_one .accordion_header.open .i_box .one_i:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position:absolute;
  right: 0;
  top: 10px;
  bottom: 0;
  margin: auto;

  }
    
.s_02 .accordion_one .accordion_inner {
    display: none;
    padding: 0.8em;
    box-sizing: border-box;
    background: #fafafa;
}

.s_02 .accordion_one .accordion_inner .box_one {
   /* height: 300px;*/
    overflow-y: scroll;
}
.s_02 .accordion_one .accordion_inner .txt_a_ac {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0;
}

 .s_02 .accordion_one .accordion_inner .txt_a_ac li{
    width: 33%;
    margin-bottom: 20px;
     text-align: center;
    
}
    
    .s_02 .accordion_one .accordion_inner .txt_a_ac li img{
        width: 100%;
    }

    .s_02 .accordion_one .accordion_inner .txt_a_ac li span{
      font-size: 14px;        
    }
    
}


@media screen and (max-width: 414px){
    .sp-logo img{width: 25%;}    
} 


