/* -------------------- */
/* base */
/* -------------------- */
html{
    font-size: 62.5%;
}
body{
    font-size: 1.6rem;
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    color: #333;
}
img,svg{
    width: 100%;
    vertical-align: bottom;
}
a{
    text-decoration: none;
    display: inline-block;
}
a:hover{
    opacity: .7;
    transition: .3s;
}
button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
.flex-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content-wrapper{
    max-width: 1100px;
    padding: 0 30px;
    margin: 0 auto;
}
.section-title{
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.submit-btn{
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    display: block;
    width: 160px;
    line-height: 36px;
    text-align: center;
    margin-top: 30px;
}
.lines{
    line-height: 2;
}


/* -------------------- */
/* header */
/* -------------------- */
.header{
    background-color: #000;
}
.site-title{
    width: 260px;
    position: fixed;
    top: 30px;
    left: 4vw;
    z-index: 1;
}
.site-title.black{
    fill: #333;
    transition: fill .3s;
    /* color: #333; */
    /* background-color: #333; */
}
.header-nav{
    font-size: 2rem;
    font-weight: bold;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 36.1vw;
    text-align: center;
    padding: 120px 0 0;
    background-color: rgba(34, 34, 34, .95);
    z-index: 2;
    transform: translateX(100%);
    opacity: 0;
    transition: transform .3s, opacity .3s;
}
.nav-list{
    list-style: none;
}
.nav-item{
    margin-bottom: 30px;
}
.nav-item:first-of-type{
    margin-bottom: 40px;
}
.nav-item:last-of-type{
    margin-bottom: 0;
}
.header-nav a{
    color: #fff;
}

/* ハンバーガーボタン（メニューが開いていないとき） */
.burger-btn{
    display: flex;
    align-items: center;
    position: fixed;
    top: 38px;
    right: 4vw;
    z-index: 3;
}
.bar{
    display: block;
    background-color: #fff;
    height: 2px;
    width: 22px;
    border-radius: 1px;
}
.bar_top{
    transform: translateY(-4px);
    transition: transform .3s;
}
.bar_bottom{
    transform: translateY(4px);
    transition: transform .3s;
}
.menu{
    color: #fff;
    font-weight: bold;
    display: block;
    text-transform: uppercase;
    margin-left: 5px;
    font-size: 1rem;
}

/* ハンバーガーボタン（メニューが開いたとき） */
.bar.cross.bar_top{
    transform: translateY(2px)rotate(30deg);
    transition: trasnform .3s;
}
.bar.cross.bar_mid{
    opacity: 0;
    transition: transform.3s;
}
.bar.cross.bar_bottom{
    transform: translateY(-2px)rotate(-30deg);
    transition: trasnform .3s;
}

/* ハンバーガーメニューが開いたとき */
body.noscroll{
    overflow: hidden;
}
.header-nav.open{
    transform: translateX(0);
    opacity: 1;
    transition: transform .3s, opacity .3s;
}
.burger-musk{
    display: none;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 1;
}
.burger-btn.black .bar{
    background-color: #333;
    transition: background-color .3s;
}
.burger-btn.black .menu{
    color: #333;
    transition: color .3s;
}


/* -------------------- */
/* fv */
/* -------------------- */
.fv{
    height: 60vh;
    min-height: 450px;
}
.fv::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 60vh;
    min-height: 450px;
    background-color: #222222;
    z-index: -1;
}
.kv-wrapper{
    background-image: url(../img/heading-img_contact.svg);
    background-size: cover;
    background-position: center 0;
    width: 76.4%;
    height: 86.5%;
    position: relative;
}
.page-title{
    font-size: 7.2rem;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    text-transform: uppercase;
}
.page-title span{
   font-size: 2rem;
   font-weight: bold; 
}

/* -------------------- */
/* contact_form */
/* -------------------- */
.contact-wrapper{
    padding: 120px;
}
.contact-inner{
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}
.contact-lead{
    margin-bottom: 55px;
}
.form-list{
    list-style: none;
    padding-left: 0;
}
input,textarea{
    resize: none;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    border: none;
    width: 100%;
}
.form-item{
    margin-bottom: 40px;
}
.form-item-title{
    font-weight: bold;
    margin-right: 10px;
}
.required{
    font-size: 0.8rem;
    display: inline-block;
    background-color:#333333;
    padding: 0 5px;
    color: #fff;
}
.inquiry-type-list{
    display: flex;
    align-items: center;
    list-style: none;
}
.inquiry-type-item{
    margin-right: 50px;
    margin-top: 23px;
}
.radio-btn{
   width: 20px;
   height: 20px; 
   border: solid 1px #333333;
   border-radius: 50%;
   vertical-align: -4px;
}
.radio-btn:checked{
    background-color: #333;
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px #333;
}
.radio-btn:hover,.submit-btn{
    cursor: pointer;
}
.text-box{
    border: 1px solid #333;
    color: #333;
    padding: 10px;
    display: block;
    box-sizing: border-box;
}
textarea{
    border: 1px solid #333;
    color: #333;
    padding: 10px;
    box-sizing: border-box;
}
.privacy-policy-title{
    font-weight: bold;
    margin-bottom: 10px;
}
.privacy-policy-detail{
    border: 1px solid #333333;
    height: 252px;
    padding: 10px;
    overflow: scroll;
    margin-bottom: 40px;
}
.confirm{
    text-align: center;
}
.checkbox{
    border: 1px solid #333;
    margin-right: 8px;
    width: 18px;
    height: 18px;
    vertical-align: -4px;
}
.checkbox:checked{
    background-image: url(../img/チェックボックスのフリーアイコン.png);
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}
.submit-btn{
    color: #fff;
    background-color: #000;
    width: 160px;
    line-height: 36px;
    font-size: 1.2rem;
    display: block;
    text-align: center;
    font-weight: bold;
    margin: 0 auto;
    margin-top: 41px;
}
.submit-btn:hover{
    opacity: .8;
    transition: .3s;
}

/* -------------------- */
/* footer */
/* -------------------- */
.footer{
    line-height: 50px;
    background-color: #525252;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}



@media screen and (max-width: 768px) {
/* -------------------- */
/* base_sp */
/* -------------------- */
body{
    font-size: 1.4rem;
}
.section-wrapper{
    padding: 40px 0;
}
.content-wrapper{
    padding: 0 4vw;
}

/* -------------------- */
/* header_sp */
/* -------------------- */
.site-title{
    width: 180px;
    top: 21px;
}
.burger-btn{
    top: 28px;
}
.header-nav{
    width: 67.7vw;
}

/* -------------------- */
/* fv_sp */
/* -------------------- */
.page-title{
    font-size: 5.2rem;
    transform: translate(30%,-50%);
}

/* -------------------- */
/* contact_form_sp */
/* -------------------- */
.contact-wrapper{
    padding: 80px 0;
}
.contact-inner{
    padding: 0 4vw;
}
.inquiry-type-list{
    display: block;
    margin-left: 14px;

}


}
