@charset "utf-8";
/* CSS Document */
/*PCメニュー*/
.pc-nav{
    width: 100%;
    padding: 5px 0;
    position: fixed;
    background-color: #ffffff;
    right: 0;
    top: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 100;
}
.logo p{
    font-size: 12px;
    line-height: 24px;
}
.pc-nav h1{line-height: 18px;}
.pc-nav li{margin-right: 50px}
.pc-nav li.contact-btn{
    display: flex;
    align-items: center;
    margin-right: 0;
    font-size: 22px;
    text-align: center;
    padding: 15px 40px;
    font-weight: bold;
}
.pc-nav li.contact-btn img{margin-right: 10px;}
/*モバイルメニュー*/
.mob-nav{
	position: fixed;
    top: 0;
    right: 0;
	z-index: 20;
	background-color: #ffffff;
	width: 100%;
	height: 70px;
    display: none;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.mob-nav p{
    font-size: 12px;
    line-height: 20px;
    padding: 5px 0 0 10px;
}
.mob-nav img{
    position: fixed;
    top: 28px;
    left: 10px;
}
#toggle {
    position: fixed;
    top: 26px;
    right: 25px;
}
#toggle-box {
    position: relative;
    width: 28px;
    height: 25px;
    cursor: pointer;
}
#toggle-box > span {
    display: block;
    width: 100%;
    margin: 0 auto 6px;
    height: 3px;
    background:#575757;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#toggle-box > span:nth-child(1) {top: 0;}
#toggle-box > span:nth-child(2) {top: 50%;}
#toggle-box > span:nth-child(3) {bottom: 0;}
#toggle {z-index: 1000;}
#nav-content {
    padding: 100px 5% 0;
    z-index: 900;
    overflow: auto;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition:  transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    
}
#nav-content ul {list-style: none;}
#nav-content li {
    margin-bottom: 10px;
    border-bottom: 1px solid #c6c6c6;
    font-size: 18px;
    white-space: nowrap;
}
#nav-content a{
    display: block;
    width: 100%;
    padding-top: 18px;
}
.is-open {overflow: hidden;}
.is-open #toggle-box > span:nth-child(1) {
    top: 50%;
    transform: translateY(9px) rotate(-45deg);
}
.is-open #toggle-box > span:nth-child(2) {opacity: 0;}
.is-open #toggle-box > span:nth-child(3) {
    top: 50%;
    transform: translateY(-9px) rotate(45deg);
}
.is-open #nav-content {
    z-index: 999;
    transform: translateX(0);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width:1280px) {
    .pc-nav li{margin-right: 30px;}
    .pc-nav li.contact-btn{
        padding: 15px 20px;
        font-size: 16px;
    }
}
@media screen and (max-width:992px) {
    .pc-nav{display: none;}
    .mob-nav{display: block;}
}
@media screen and (max-width: 767px) {
    #nav-content{width: 80%;}
    #nav-content li{font-size: 16px;}
}

