@charset "UTF-8";

/* 共通項目 */
body {
    font-size: 14px;
    font-family: YakuHanJP,'Noto Sans JP', sans-serif;
    color: #d2d2d2;
}
img {
    flex-shrink: 0;
  }
p{
    line-height: 150%;
    font-size: 14px;
}
h1{
    line-height: 150%;
    font-size: 30px;
}
h2{
    line-height: 150%;
    font-size: 25px;
}
h3{
    line-height: 150%;
    font-size: 20px;
}
h4{
    line-height: 150%;
    font-size: 18px;
}
*{
    margin: 0;
    padding: 0;
}
li{
    list-style-type: none;
}
a{
    text-decoration: none;
    color: #D6D6D6;
}
a:hover{
    text-decoration: none;
    color: #fff;
}
.pc{}
.sp{display: none!important;}

.inner{
    width: 100%;
    max-width: 1024px;
    margin: auto;
    position: relative;
    box-sizing: border-box;
}

#wrapper{
    width: 100%;
    overflow: hidden;
}

header{
    background-color: #000;
    width: 100%;
    position: fixed;
    height: 60px;
    line-height: 60px;
    top: 0;
    z-index: 999;
    box-shadow: 0 10px 30px -20px rgba(53, 47, 47, 0.6);
}
header .inner{
        -webkit-box-pack: flex-start;
        -ms-flex-pack: flex-start;
        justify-content: space-between;
        display: flex;
    padding-right: 4em;
}
header .inner .logo{
        width: 60%;
        text-align: left;
}
header .inner .logo img{
        width: 95%;
        height: 40px;
        margin: 10px 0;
}
header .inner .login{
        width: 20%;
}
header .inner .join{
        width: 20%;
}
header .inner .login a{
        width: 100%;
        height: 60px;
        line-height: 60px;
        background: #CFCFCF;
        display: block;
        text-align: center;
        color: #666;
}
header .inner .join a{
        width: 100%;
        height: 60px;
        line-height: 60px;
        background: #fff;
        display: block;
        text-align: center;
        color: #666;
}
    header p.login a{
        font-size: 14px;
    }
    header .inner .btn_menu{
        display: block;
        position: absolute;
        z-index: 15;
        right: 3em;
        height: 60px;
        line-height: 60px;
    }
    header .inner nav{
        z-index: 10;
        position: absolute;
        top: -200vh;
        left: 50%;
        scrollbar-width: none;
        width: 50%;
        -webkit-transition: .3s;
        transition: .3s;
    }
    header .inner nav::-webkit-scrollbar {
        display: none;
    }
    header .inner nav ul{
        /* height: 100vh; */
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        background: rgba(0, 0, 0, .7);
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 60px 0;
        text-align: center;
    }
    header .inner nav ul li a{
        font-size: 14px;
        display: block;
        border-bottom: 1px dotted #ccc;
        margin: 0 5%;
        line-height: 3em;
    }
    header .inner nav ul li:last-child a{
        border-bottom: none;
    }
    .btn_menu{
    }
}

/* ハンバーガーメニュー */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.menu-trigger {
  position: absolute;
  width: 2em;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  margin-left: 20%;
  height: 2em;
}
.menu-trigger span {
    position: relative;
    left: 0;
  width: 80%;
  height: 3px;
  background-color: #fff;
  border-radius: 0px;
  right: 0;
}
.menu-trigger span:nth-of-type(1) {
    top: -0.45em;
}
.menu-trigger span:nth-of-type(2) {
    
}
.menu-trigger span:nth-of-type(3) {
    top: 0.45em;
}
/* 開いた時の処理 */
.menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
    top: -1em;
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
    top: 1em;
  }

main{
  background: #282828;
  padding-top: 60px;
}

.content_box{
    padding: 0 0 8% 0;
    text-align: center;
}

h2.ttl{
	position: relative;
	background: url("../img/subttl_center.png") center center repeat-x;
	background-size: contain;
	height: 4em;
	line-height: 4em;
	color: #fff;
	margin-bottom: 2%;
	text-align: center;
}
h2.ttl::before{
	content: "";
	display: block;
	width: 20%;
	height: 4em;
	background: url("../img/subttl_left.png") center left no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
}
h2.ttl::after{
	content: "";
	display: block;
	width: 20%;
	height: 4em;
	background: url("../img/subttl_right.png") center right no-repeat;
	background-size: contain;
	position: absolute;
	right: 0;
	top: 0;
}

.contact{
}
.contact.gray{background: #5F5F5F;padding: 4% 0;}
.contact.gray h2{
    background: no-repeat;
    height: auto;
    line-height: initial;
}
.contact.gray h2::before,
.contact.gray h2::after{
	content: none;
}
.contact h3{
	position: relative;
	border-bottom: 1px solid #fff;
	width: 80%;
	margin: 0 auto 5% auto;
	font-size: 24px;
	padding-bottom: 1%;
}
.contact h3::before{
	content: "";
	display: block;
	width: 100px;
	height: 1em;
	background: url("../img/contact_icon.png") bottom center no-repeat;
	background-size: contain;
	position: absolute;
	right: 50%;
	bottom: -1em;
	margin: 0 -50px 0 0;
}
.contact.gray h3::before{
	background: url("../img/contact_icon2.png") bottom center no-repeat;
	background-size: contain;
}
.contact h4{
    font-size: 48px;
    line-height: 1em;
    margin-bottom: 2%;
}
.contact h4::before{
	content: "";
	display: inline-block;
	width: .8em;
	height: .8em;
	background: url("../img/tel_icon.png") bottom center no-repeat;
	background-size: contain;
	margin: 0 .5em 0 0;
}
.contact h4 a{
}
.contact p{
    font-size: 18px;
}
.contact p span{
    background: #fff;
    color: #666;
    padding: .5em 1em;
    margin: 0 1em 0 0;
}


.f-menu{
    background: #fff;
    padding: 5% 0;
}
.f-menu ul{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.f-menu ul li{
    width: 48%;
    margin: 1%;
    filter: drop-shadow(5px 5px 5px #aaa);
}
.f-menu ul li a{
    display: block;
    width: 100%;
    height: 5em;
    line-height: 5em;
    padding: 0em 1em;
    box-sizing: border-box;
    background: url("../img/btn-icon.png") bottom right no-repeat #282828;
}
.f-menu ul li.line2 a{
    line-height: 1.5em;
    padding: 1em 0;
}

footer{
  background: #000;
}
footer .inner{overflow: hidden;padding: .5em 0;}
footer .inner h2{width: 60%;font-size: 12px;line-height: 2em;float: left;color: #fff;}
footer .inner ul{width: 40%;display: flex;justify-content: flex-end;float: right;}
footer .inner ul li{font-size: 12px;line-height: 2em;text-align: center;padding: 0 2em;border-right: 1px solid #ccc;}
footer .inner ul li:last-child{border-right: none;}
footer .inner ul li a{
    text-align: center;
    width: 100%;
    display: block;
}

/* topに戻る */
#page_top{
    position: absolute;
    width: 100%;
    max-width: 1200px;
    z-index: 5;
}
#page_top img{
    position: fixed;
    right: 5%;
    width: 15%;
    bottom: 6.5%;
    max-width: 80px;
    height: auto;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

@media screen and (max-width:480px){
.pc{display: none!important;}
.sp{display: block!important;}
img{width: 100%;}
.inner{width: 100%;max-width: 100%;}
	
a[href*="tel:"] {
  pointer-events: auto;
  cursor: auto;
  font-weight: normal;
}


header{}
    header .inner nav{
        left: 0;
        width: 100%;
    }
    header .inner nav ul{
        padding: 40px 5%;
        box-sizing: border-box;
        height: 100vh;
        background: #000;
    }

    
h2.ttl{
	position: relative;
	background: url("../img/subttl_center.png") center center repeat-x;
	background-size: contain;
	height: 4em;
	line-height: 4em;
	color: #fff;
	margin-bottom: 2%;
	font-size: 18px;
}
h2.ttl::before{
	content: "";
	display: block;
	width: 10%;
	height: 4em;
	background: url("../img/subttl_left.png") center right no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
}
h2.ttl::after{
	content: "";
	display: block;
	width: 10%;
	height: 4em;
	background: url("../img/subttl_right.png") center left no-repeat;
	background-size: cover;
	position: absolute;
	right: 0;
	top: 0;
}
.contact{
}
.contact.gray{padding: 8% 0 8% 0;}
.contact h3{
	width: 90%;
	margin: 0 auto 5% auto;
	font-size: 18px;
	padding-bottom: 1%;
}
.contact h3::before{
	content: "";
	display: block;
	width: 100px;
	height: 1em;
	background: url("../img/contact_icon.png") bottom center no-repeat;
	background-size: contain;
	position: absolute;
	right: 50%;
	bottom: -1em;
	margin: 0 -50px 0 0;
}
.contact h4{
    font-size: 48px;
    line-height: 1em;
    margin-bottom: 2%;
}
.contact h4::before{
	content: "";
	display: inline-block;
	width: .8em;
	height: .8em;
	background: url("../img/tel_icon.png") bottom center no-repeat;
	background-size: contain;
	margin: 0 .5em 0 0;
}
.contact h4 a{
}
.contact p{
    font-size: 18px;
    margin-top: 5%;
}
.contact p span{
    background: #fff;
    color: #666;
    padding: 1% 1em;
    margin: 0 1em 0 0;
}

.f-menu{
    background: #fff;
    padding: 5% 0;
}
.f-menu ul{
    width: 95%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.f-menu ul li{
    width: 48%;
    margin: 1%;
    filter: drop-shadow(5px 5px 5px #aaa);
}
.f-menu ul li a{
    background: url("../img/btn-icon.png") bottom right no-repeat #282828;
    font-size: 12px;
    background-size: 1.5em;
}
.f-menu ul li.line2 a{
    line-height: 1.5em;
    padding: 1em 0;
}

footer{}
footer .inner{
  display: inline-block;
}
footer .inner h2{width: 100%;float: none;text-align: center;margin: 2em 0 0 0;}
footer .inner ul{width: 100%;float: none;}
footer .inner ul li{font-size: 12px;line-height: 2em;}
footer .inner ul li a{}

#page_top img{
    bottom: 12.5%;
}
}
