@charset"utf-8";

html, body,
ul, ol, li,
h1, h2, h3, h4, h5, h6, p, div{
    margin: 0;
    padding: 0;
}

body {
    font-family:   "Yu Mincho", "MS 明朝", serif;
}

p {
    font-family: "Noto Sans JP"; 
    color: #333333;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
}

.clear {
    clear: left;
}

* {
    box-sizing: border-box;
}






/*--header--*/
header {
    height: 100px;
    background-color: rgba(255, 181, 181, 10%);
    font-weight: lighter;
}

#header-container {
    margin: 0 auto;
    overflow: hidden;
    height: 80px;
    position: relative;
}


#header-logo {
    position: absolute;
    top: 20px;
    left: 25px;
}

#header-logo img {
    height: 60px;
}

.sns-btn-over {
    position: absolute;
    top: 40px;
    left: 760px;
}

.sns-btn-over li {
    margin-left: 25px;
    display: inline;
    float: none;
}

i {
    color: #333333;
}

.note i {
    transform: scale(1, -1);
}

.cf1 {
    position: absolute;
    left: 385px;
    top: 40px;
}

.cf1 li {
    margin-left: 10px;
    font-size: 15px;
    padding: 10px;
    display: inline;
    float: none;
    border-bottom: none;
    letter-spacing: 0.1em;
    font-family: "Noto Sans JP"; 
    color: #333333;
}

.cf1 a {
    color: #333333;
}

.open-btn{
	position: fixed;
    right: 0px;
    top: 0;
    z-index: 9999;
	width: 120px;
    height:120px;
	cursor: pointer;
	background:#fff;
}

.open-btn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 35px;
    height: 2px;
	background-color: #666;
}


.open-btn span:nth-of-type(1) {
	top:57px;	
    width: 40%;
}

.open-btn span:nth-of-type(2) {
	top:64px;
    width:40%;
}


.open-btn.active span:nth-of-type(1) {
    top: 55px;
    left: 35px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.open-btn.active span:nth-of-type(2) {
    top: 67px;
    left: 35px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

#g-nav{
    position:fixed;
    z-index: 999;
	top:-120%;
    right:0;
	width:25%;
    height: 100vh;
	background:#fff;
	transition: all 0.6s;
}

#g-nav.panelactive{
    top: 0;
}

#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav ul {
    position: absolute;
    z-index: 999;
    top:50%;
    left:12.5%;
    transform: translate(-50%,-50%);
}


#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    font-family: "Noto Sans JP";
    font-weight: lighter;
}




/*-- main --*/
.contact-container {
    background-color:  rgba(255, 181, 181, 10%);
}

.title {
    font-size: 70px;
    letter-spacing: 0.05ch;
}

.contact-ttl {
    padding: 5px 0 0 25px;
}

.contact-form {
    margin: 0 auto;
    padding: 100px 0 200px 0;
}

.contact-form-in {
    max-width: 900px;
    margin: 0 auto;
    width: 70%
}

.contact-form-head {
    margin-bottom: 50px;
}

.contact-form-menu {
    width: 100%;
}

.contact-form-menu-in {
    width: 100%;
    margin: 0 auto;
}

.contact-form-menu-in form {
    width: 100%;
    display: block;
}

.question-title {
    font-size: 20px;
}

.fill {
    width: 100%;
    max-width: 400px;
    height: 35px;
    border: 2px #333333 solid;
    border-radius: 1px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    padding: 0 15px;
    font-family: inherit;
}

.contact-content {
    text-align: left;
    margin-right: 24px;
}

.check-caution {
    font-size: 15px;
    margin-bottom: 20px;
    font-family: "Yu Mincho", "MS 明朝", serif;
}

.contact-form-menu-in textarea {
    width: 100%;
    height: 300px;
    border: 2px #333333 solid;
    border-radius: 1px;
    font-size: 1.2rem;
    padding: 8px 15px;
    font-family: inherit;
}

.question-button {
    text-align: center;
    margin-top: 20px;
}

.question-button input {
    width: 200px;
    padding: 8px 0;
    font-size: 20px;
    color: #fff;
    background-color: #A04060;
    border: 1px #E9E9E9 solid;
}





/*-- footer --*/
footer {
    background-color: #E9E9E9;
    height: 350px;
    position: relative;
    padding: 100px;
}

.footer-rights {
    font-size: 15px;
    color: #333333;
    position: absolute;
    bottom: 30px;
    right: 100px;
}











@media(max-width:480px){
    .header {
        height: 100px;
        background-color: rgba(255, 181, 181, 10%);
    }
    
    #header-container {
        margin: 0 auto;
        overflow: hidden;
        height: 80px;
        position: initial;
    }
    
    
    #header-logo {
        position: initial;
        text-align: center;
        margin-top: 30px;
    }
    
    #header-logo img {
        height: 30px;
    }
    
    .sns-btn-over {
        display: none;
    }
    
    .sns-btn-over li {
        margin-left: 10px;
    }
    
    .cf1 {
        display: none;
    }
    
    .cf1 li {
        margin-left: 5px;
        font-size: 10px;
        padding: 10px;
    }
    
    .cf1 a {
        color: #333333;
    }
    
    .open-btn{
        width: 60px;
        height: 60px;
    }
    
    
    .open-btn span{
        left: 17.5px;
    }
    
    
    .open-btn span:nth-of-type(1) {
        top: 27px;	
        width: 40%;
    }
    
    .open-btn span:nth-of-type(2) {
        top:33px;
        width:40%;
    }
    
    .open-btn.active span:nth-of-type(1) {
        top: 22px;
        left: 20px;
        transform: translateY(6px) rotate(-45deg);
        width: 40%;
    }
    
    .open-btn.active span:nth-of-type(2) {
        top: 34px;
        left: 20px;
        transform: translateY(-6px) rotate(45deg);
        width: 40%;
    }
    
    #g-nav{
        top:-120%;
        right:0;
        width: 100%;
    }
    
    #g-nav.panelactive #g-nav-list{
        width: 100%;
    }
    
    #g-nav ul {
        top:50%;
        left:50%;
    }





    .title {
        font-size: 30px;
        letter-spacing: 0.05ch;
    }
    
    .contact-ttl {
        padding: 0 30px 30px 30px;
        text-align: center;
    }
    
    .contact-form {
        padding: 50px 0 100px 0;
    }
    
    .contact-form-in {
        width: 80%
    }
    
    .contact-form-head {
        margin-bottom: 30px;
    }
    
    
    .contact-form-menu-in form {
        width: 100%;
        display: block;
    }
    
    .question-title {
        font-size: 15px;
    }
    
    .fill {
        height: 30px;
        font-size: 0.8rem;
    }
    
    .contact-content {
        text-align: left;
        margin-right: 10px;
    }
    
    .check-caution {
        font-size: 12px;
    }
    
    .contact-form-menu-in textarea {
        height: 200px;
        font-size: 0.8rem;
    }
    
    .question-button {
        text-align: center;
        margin-top: 20px;
    }
    
    .question-button input {
        width: 100%;
        font-size: 15px;
    }








    footer {
        height: 200px;
        padding: 50px;
    }
    
    .footer-rights {
        font-size: 5px;
        bottom: 10px;
        right: 5%;
    }
}