body{
    font-family: "ヒラギノ角ゴ ProN W3",sans-serif;
    max-width: 1920px;
    margin: 0 auto;
    box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.6);
    background-color: #fff;
    box-sizing: border-box;
}

img{
    width: 100%;
    height: auto;
    display: block;
}
source{
    width: 100%;
    height: auto;
    display: block;
}

.pc{
    display: block;
}
.sp{
    display: none;
}



header{
    width: 100%;
    max-width: 1920px;
    max-height: 120px;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.19%;
    padding-bottom: 2.19%;
    padding-left: 4.17%;
    padding-right: 4.17%;
    background-color: rgba(255,255,255,0.9);
    z-index: 100;
}
header h1{
    font-size: clamp(32px,1vw,37px);
    font-weight: 600;
    color: #323232;
}
nav{
    width: 58%;
    height: auto;
    vertical-align: middle;
}
nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
}
nav li{
    list-style: none;
    color: #323232;
}

nav a{
    display: block;
    text-decoration: none;
    font-size: clamp(9px,1vw,17px);
    font-weight: 600;
}
nav li:nth-of-type(6){
    width: 16.85%;
    padding-top: 0.89%;
    padding-bottom: 0.89%;
    background-color: #050080;
    color: #fff;
    text-align: center;
    border-radius: 5px;
}
.btn-gNav {
    display: none;
}
.line-base{
    position: relative;
}
.line{
    position: absolute;
}

#content_01{
    top: 1.5%;
}
#content_02{
    top: 29%;
}
#content_03{
    top: 41%;
}
#content_04{
    top: 55%;
}
@media(max-width: 900px){
    #content_01{
        top: .5%;
    }
    #content_02{
        top: 27%;
    }
    #content_03{
        top: 38%;
    }
    #content_04{
        top: 57.5%;
    }
}



#form-wrapper{
    background-color: #050080;
    padding: 100px 2.6% 120px;
}

.form-title{
    font-size: 2.188rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

form{
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
    margin-top: 3.75rem;
    line-height: 1;
}

.form-group{
    display: flex;
    flex-direction: column;
    gap: 0.938em;
    margin-bottom: 1.563rem;
}

.form_input_label{
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

input[type=text],textarea{
    background-color: #fff;
    font-size: 1.25rem;
    font-weight: 300;
    padding-top: 0.65em;
    padding-bottom: 0.65em;
    padding-left: 1.5em;
    border: 1px solid #C6C6C6;
}

input[type=text]{
    border-radius: 100px;
}

textarea{
    height: 250px;
    resize: none;
}

.form_input_submit{
    position: relative;
    display: block;
    width: 100%;
    max-width: 547px;
    margin: 0 auto;
    margin-top: 4.688rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: #0127C9;
    padding: 1.4em;
    background-color: #fff;
    border-radius: 100px;
}
.form_input_submit::after{
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 9%;
    width: 15px;
    height: 15px;
    border-radius: 0;
    border-top: 3px solid #0127C9;
    border-right: 3px solid #0127C9;
    transform: rotate(45deg) translateY(-50%);
}

@media(max-width: 900px){
    #form-wrapper{
        padding: 11.11% 5.56% 12.78%;
    }

    .form-title{
        font-size: clamp(18.75px,5vw,45px);
    }

    .form-group{
        gap: 0.455em;
        margin-bottom: 5%;
    }

    .form_input_label{
        font-size: clamp(13.75px, 3.6667vw, 33px);
    }

    input[type=text],textarea{
        font-size: clamp(13.75px, 3.6667vw, 33px);
        padding-top: 0.545em;
        padding-bottom: 0.545em;
        padding-left: 0.909em;
    }
    textarea{
        height: 100%;
        height: 27.7vw;
    }
    input[type=text]::placeholder,textarea::placeholder{
        font-size: clamp(13.75px, 3.6667vw, 33px);
    }

    .form_input_submit{
        font-size: clamp(12.5px, 3.3333vw, 30px);
        padding: 0.767em;
    }
    .form_input_submit::after{
        width: 15px;
        height: 15px;
        border-top: 2px solid #0127C9;
        border-right: 2px solid #0127C9;
    }


}




footer{
    width: 100%;
    height: 25vw;
    max-height: 142px;
    padding-top: 2.6%;
    text-align: center;
    background-size: cover;
}
.terms{
    display: flex;
    justify-content: center;
    gap: 4%;
    margin-bottom: 0.5%;
}
.terms a{
    display: block;
    color: #000;
    font-size: clamp(12px,1vw,16px);
    font-weight: 550;
}
small{
    color: #000;
    font-size: clamp(12px,1vw,16px);
    font-weight: 550;
}



@media screen and (max-width:900px) {
   body{
    max-width: 900px;
   }


   .pc{
        display: none;
}
    .sp{
        display: block;
    }
   header{
    padding: 4.67% 5.56%;
   }
   header h1{
    font-size: clamp(24px,1vw,29px);
}

   .btn-gNav {
        position: relative;
        display: block;
        width: 6.56%;
        height: 4.3vw;
        -webkit-transition: all 400ms;
        transition: all 400ms;
        z-index: 200;
        
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 85vw;
        background-color: rgba(255, 255, 255, 0.95);
        box-sizing: border-box;
        transition: .3s;
    }
    nav a{
        font-size: 1rem;
    }
    nav.open{
        right: 0;
    }
    nav ul{
        padding: 0;
        width: 100%;
        height: 100%;
        margin: 16.67% auto 0;
        display: block;
        flex-direction: column;
        text-align: center;
    }
    nav ul li{
        margin-bottom: 4.44%;
    }
    nav li:nth-of-type(6){
        width: 35.11%;
        margin-left: auto;
        margin-right: auto;
    }

   
    header .btn-gNav span{
        position: absolute;
        width: 100%;
        height: 0.5vw;
        background: #000;
        -webkit-transition: all 400ms;
        transition: all 400ms;
    }
    .btn-gNav.open{
        width: 3.33%;
        height: 2.88vw;
    }
    .btn-gNav span:nth-child(1) {
        top: 0;
    }
    
    .btn-gNav span:nth-child(2) {
        top: 43%;
    }
    
     .btn-gNav span:nth-child(3) {
        bottom: 0;
    }
     .btn-gNav.open span:nth-child(1) {
        top: 40%;
        transform: translate(0%) rotate(-45deg);
        
    }
     .btn-gNav.open span:nth-child(2){
        opacity: 0;
     }
     .btn-gNav.open span:nth-child(3) {
        bottom: 48%;
        transform: translate(0%) rotate(45deg);
      
    }





    footer{
        height: 33vw;
        padding-top: 3.89%;
        background-image: url(../img/footer-bg_sp.jpg);
    }
    .terms{
        margin-bottom: 0.35%;
    }
    .terms a{
        font-size: clamp(12px,2vw,20px);
    }
    small{
        font-size: clamp(12px,2vw,20px);
    }
}

@media screen and (max-width:428px){
    
}

@keyframes pulse {
    from {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  
    50% {
      -webkit-transform: scale3d(1.05, 1.05, 1.05);
      transform: scale3d(1.05, 1.05, 1.05);
    }
  
    to {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
