@charset "utf-8";

/* footer調整 */
.footer{
    margin-top: 20px;
}

/* title部分 */
.title{
    height: 150px;
    background-image: url(../images/top.jpg);
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    text-shadow: 1px 1px 10px white;
}
.title h1{
    font-family:  'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: bold;
}
  
.title p{
    font-size: 14px;
    margin-top: 15px;
}
/* Lead部分 */
.lead{
    height: 10px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.lead p{
    font-family:  'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px; 
    line-height: 25px;
}

/* Main部分ここから */
.main h2{
    font-family:  'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
    font-size: 25px;
    font-weight: bold;
    line-height: 30px;
    background: linear-gradient(transparent 20%,lightblue 80%);
}

.map{
    width: 930px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
}
.map p{
    font-family:  'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
    padding-top: 20px;
    line-height: 30px;
}
.map iframe{
    display: block;
    width: 100%;
    height: 320px;
    margin-top: 25px;
}
.contact{
    width: 930px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    font-family:  'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
    background-color: ghostwhite;
}
.form-area{
    background-color: ghostwhite;
    border: 1px solid gray;
    margin-top: 20px;
    padding: 30px;
  
}
.form-area dt{
    width: 200px;
    padding: 15px 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
}
.form-area dt .required::after{
    content: '必須';
    font-size: 11px;
    color: red;
    margin-left: 10px;
}
.form-area dd{
    width: calc(100%-200px);
    padding: 15px 0;
    font-size: 15px;
}
.input-text{
    width: 100%;
    max-width: 280px;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
}
.radio-button{
    display: block;
    margin-top: 20px;
}
.radio-button:first-child{
    margin-top: 0;
}
.radio-button input{
    margin-right: 8px;
}
.message{
    width: 100%;
    height: 260px;
    padding: 10px;
    line-height: 1.5;
}
.confirm-text{
    font-size: 14px;
    line-height: 22px;
    margin-top: 30px;
}
.submit-button{
    background-color: lightgray;
    display: inline-block;
    min-width: 180px;
    line-height: 48px;
    border-radius: 24px;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    border: none;
}
.confirm-text {
    font-size: 16px;
}
.submit-button:hover{
    background-color: lightblue;
}
.footer{
    margin-top: 50px;
}

/* レスポンシブデザイン */
@media (max-width:768px){
    .header-logo{
      padding-top: 40px;
    }
    .toggle-menu-button{
      margin-top: 40px;
      margin-right: 10px;
      background-color: rgba(255, 255, 255, 0.5);
    }
    .title h1{
        font-size: 20px;
    }
    .lead p{
        font-size: 13px;
        text-align: left;
        padding-left: 10px;
        padding-right: 10px;
    }
    .map{
        width: 500px;
        margin-top: 30px;  
    }
    .contact{
        width: 500px;
        margin-top: 100px;
    }
    .form-area dd{
        font-size: 14px;
    }
    .map p{
        font-size: 15px;
    }
    .form-area dt{
        padding-bottom: 0;
    }
    .submit-button{
        width: 100%;
    }
}