@charset "utf-8";

/* ----------------------------------------
	common
---------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
font-size:14px;
font-family: 'Noto Sans JP', sans-serif;
line-height:1.5;
background-color: #000000;
color: #ffffff;
position: relative;
}

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

.img-orig-size {
	width: auto;
}
.img-fixed-400px { width: 400px; }

a {text-decoration:none; color: #fff;}

a:hover {
	text-decoration: transparent;
}

.pc_area { display: block !important; }
.sp_area { display: none !important; }
@media only screen and (max-width: 750px) {
	.pc_area { display: none !important; }
	.sp_area { display: block !important; }
}

@media screen and (max-width: 750px) {
.spbr_none_box br {
	display: none;
	}
}

.link_img01 a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  transition-duration: .1s;
}


.link_all_box {
    position: relative;
    z-index: 1; /* 必要であればリンク要素の重なりのベース順序指定 */
}
.link_all_box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2; /* 必要であればリンク要素の重なりのベース順序指定 */
}

.link_all_box:hover {
    filter:alpha(opacity=70);/* IE 6,7*/
    -ms-filter: "alpha(opacity=70)";/* IE 8,9 */
    -moz-opacity:0.7;/* FF , Netscape */
    -khtml-opacity: 0.7;/* Safari 1.x */
    opacity:0.7;
    zoom:1;/*IE*/
}


.inner{
	width: 1100px;
	margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .inner{
        padding: 0 20px 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
}





/* ----------------------------------------
	header-nemu
---------------------------------------- */

/* pc */
.menu_inner {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}

.menu_inner:after {
    content: "";
    clear: both;
    display: block;
}

/* header */
#top-head {
    top: -154px;
    position: absolute;
    width: 100%;
    margin: 75px auto 0;
    padding: 20px 0 0 0;
    line-height: 1;
    z-index: 999;
}
#top-head a,
#top-head {
    color: #fff;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

#top-head a:hover {
	transition: 1.0s ;
    color: #AEFF00;
}


#top-head .menu_inner {
    position: relative;
}
#top-head .logo {
	max-width: 142px;
	width: 142px;
    height:auto;
}

#top-head .logo_02 {
    display: none;
}

#global-nav ul {
    list-style: none;
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 14px;
}
#global-nav ul li {
    float: left;
}
#global-nav ul li a {
    padding: 0;
    margin: 0 25px;
}

#global-nav li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
#global-nav li a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #AEFF00;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
#global-nav li a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

#top-head .active a {
    color: #AEFF00 !important;
}


/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding: 15px 0 0 0;
    height: 50px;
    background: #000000;
    opacity: 1;
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    max-width: 142px;
}
#top-head.fixed #global-nav ul li a {
    color: #fff;
    padding: 0;
}

#top-head.fixed #global-nav ul li a:hover {
	transition: 1.0s ;
    color: #AEFF00;
}


/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 10px;
    top: 5px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    background-color: #AEFF00;
    border-radius: 30px;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 15px;
    background: #000;
    left: 15px;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 18px;
}
#nav-toggle span:nth-child(2) {
    top: 25px;
}



/* pc-sp */
@media screen and (max-width: 1280px) {
	#global-nav ul {
	    right: 15px;
	    top: 15px;
	}

	#global-nav ul li a {
	    padding: 0;
	    margin: 0 20px 0 0;
	}
	#top-head .logo {
	margin: 0 0 0 15px;
	}
}





/* sp */
@media screen and (max-width: 750px) {
    #top-head,
    .menu_inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 10px;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
    padding: 0 0 5px 0;
    top: 10px;
    height: 50px;
    background:rgba(0,0,0,0.0);
    opacity: 1;
    transition: top 0.1s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
    }
    #mobile-head {
        width: 100%;
        height: 56px;
        position: relative;
    }
		.open #mobile-head {
        
    }

    #top-head .logo {
        position: absolute;
        top: 10px;
		left: 10px;
		bottom: 0;
		margin: auto;
        max-width: 142px;
        width: 142px;
    	height:auto;
    }

    #top-head.fixed .logo {
        display: none;
    }

    #top-head .logo_02 {
        position: absolute;
        top: 20px;
		left: 10px;
		bottom: 0;
		margin: auto;
        max-width: 142px;
        width: 142px;
    	height:auto;
        display: block;
    }
    
    #global-nav {
        position: absolute;
         /* 開いてないときは画面外に配置 */
        top: -1000px;
        background: #000000;
    opacity: 1;
        width: 100%;
        padding: 80px 20px 100px 20px;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
　    }

    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: none;
        position: static;

    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        color: #fff;
        padding: 10px 0;
        margin: 0 5% 0 0;
    }

    .navlist_wrap {
        list-style:  none;
        margin:  0;
        padding: 0;
    }

    .navlist_ico{
        padding: 0 0 7px 0;
    }

   

    .navlist_ico:before {
        content:  "－";
        width:  15px;
        height:  15px;
        display:  inline-block;
        color: #AEFF00;
        font-size: 14px;
				padding-right: 5px;
    }

    .nav_con_box{
        padding: 20px 0 0 0;
        justify-content: left;
        display: flex;
    }

    .nav_tel_box{
        padding: 20px 0 0 0;
        font-family: 'Roboto', sans-serif;
        color: #fff;
        font-size: 30px;
        font-weight: 400;
    }

    .nav_text_box01{
        padding: 20px 0 0 0;
        font-family: 'Noto Sans JP', sans-serif;
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.8;
    }

    .nav_insta_box{
    position: absolute;
    left: 170px;
    top: 20px;
    width: 35px;
    display: none;
    }

    .open .nav_insta_box{
    display: block;
    }


    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 21px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        top: 21px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }

    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(1000px);
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        position: fixed;
        overflow-y: scroll;
    height:80vh;
    }

	#global-nav li a {
	  position: relative;
	  display: inline-block;
	  text-decoration: none;
	  color: #fff;
	}
	#global-nav li a::after {
	  position: absolute;
	  bottom: 2px;
	  left: 0;
	  content: '';
	  width: 100%;
	  height: 1px;
	  background: #fff;
	  opacity: 0;
	  visibility: hidden;
	  transition: .3s;
	}
	#global-nav li a:hover::after {
	  bottom: 2px;
	  opacity: 1;
	  visibility: visible;
	}

}



/* ----------------------------------------
	footer
---------------------------------------- */

#footer_box{
	margin: 0 0 0 0;
	padding:0 0 0 0;
}
#footer_box a{
	color: #ffffff;
}

.footer_bg{
	margin: 75px 0 0 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 1)0%, rgba(0, 0, 0, 0)50%,rgba(0, 0, 0, 0)100%) ,url(../images/footer_img_01.jpg) no-repeat center center;
	background-size: cover;
	height: 670px;
    min-width: 1100px;
}

.f_flex_box01{
    padding: 60px 0 0 0;
    display: flex;
    justify-content: space-between;
}
.f_flex_box01_01{
    padding: 0;
    display: flex;
    align-items: center;
}
.f_flex_box01_02{
    padding: 0 0 0 40px;
}
.f_flex_box01_03{
    padding: 20px 0 0 0;
}

.f_flex_box02{
    margin: 75px 0 0 0;
    padding: 0;
    display: flex;
}
.f_flex_box02_01{
    padding: 0 0 0 100px;
    width: 65%;
}
.f_flex_box02_02{
    padding: 0;
    width: 35%;
}

.f_flex_list{
    padding: 0;
    display: flex;
    font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}
.f_flex_list_01{
    padding: 0;
    width: 40%;
}
.f_flex_list_02{
    padding: 0;
    width: 40%;
}

.f_list_box01{
    padding: 30px 0 0 0;
}


.list_wrap {
    list-style:  none;
    margin:  0;
    padding: 0;
}

.list_ico{
    padding: 0 0 15px 0;
}

.list_ico:before {
    content:  "－";
    width:  15px;
    height:  15px;
    display:  inline-block;
    color: #AEFF00;
    font-size: 14px;
}

.f_con_box{
    padding: 0;
    justify-content: left;
    display: flex;
}

.f_tel_box{
    padding: 20px 0 0 0;
    font-family: 'Roboto', sans-serif;
	color: #fff;
	font-size: 30px;
	font-weight: 400;
}

.f_text_box01{
    padding: 35px 0 0 0;
    font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
    line-height: 1.8;
}

.f_yaji_spbox{
    display: none;
}

.footer_r5{
    padding: 0 0 10px 0;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	font-size: 13px;
	font-weight: 400;  
}

.footer_copy_box{
	padding: 100px 0 40px 0;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
}



@media screen and (max-width: 750px) {
    .footer_bg{
        margin: 35px 0 0 0;
        background: #000000;
        background-size: cover;
        height: auto;
        min-width: auto;
    }

    .f_flex_box01{
        padding: 40px 0 0 0;
        display: flex;
        justify-content: space-between;
    }
    .f_flex_box01_01{
        padding: 0;
        width: 100%;
        justify-content: space-between;
    }
    .f_flex_box01_01_01{
        padding: 0;
        max-width: 200px;
    }
    .f_flex_box01_02{
        padding: 15px 0 0 0;
    }
    .f_flex_box01_03{
        display: none;
    }
    .f_flex_box02{
        margin: 25px 0 0 0;
    }
    .f_flex_box02_01{
        display: none;
    }
    .f_flex_box02_02{
        padding: 0;
        width: 100%;
    }
    .f_tel_box{
        padding: 0 0 0 0;
    }
    .f_text_box01{
        padding: 15px 0 0 0;

    }
    .f_yaji_spbox{
        padding: 50px 0 0 0 ;
        display: flex;
        justify-content: center;
    }

    .footer_copy_box{
        padding: 60px 0 30px 0;
    }


}

.floating {
    position: fixed;
    z-index: 100;

    right: 5%;
    bottom: 5vh;
    width: 143px;
}

.floating-banner__image {
    max-width: 100%;
}


@media screen and (max-width: 750px) {
    .floating {
        right: 20px;
        width: 90px;
    }
}





