@charset "utf-8";

#vdbanner{
width:0;
height:0;
}
/* -----リセットCSS----- */
*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

table,
tr,
th {
    border: none;
    font-family: sans-serif;
    font-weight: normal;
}

table {
    font-family: sans-serif;
    font-weight: 100;
    width: 50vw;
    height: auto;
}

th {
    text-align: left;
    padding-left: 40px;
    line-height: 2;
}

/* -----headerここから------ */
h1 {
    font-size: 35px;
    font-family: sans-serif;
    font-weight: 300;
    padding: 25px 90px 20px 90px;
    transition: transform 0.3s ease;
}

h1:hover{
    transform: scale(1.05);
}

header {
    display: flex;
    justify-content: space-between;
}

header ul {
    display: flex;
    justify-content: space-around;
}

header li {
    font-size: 16px;
    padding: 40px 30px;
    transition: transform 0.3s ease;
}

header li:hover{
    transform: scale(1.2);
}

header li:last-child {
    padding-right: 60px;
}

header li img {
    width: 25px;
    transition: transform 0.3s ease;
}
header li img:hover{
    transform: scale(1.1);
}

/* -----mainここから------ */

.h2{
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    font-size: 35px;
    font-family: sans-serif;
    font-weight: 300;
    padding: 50px;
    position: relative;
    display: inline-block;
}

.h2 p{
    margin-bottom: 50px;
}

.contact {
    max-width: 1000px;
    height: 1000px;
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #dfdfdf;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: sans-serif;
    font-size: 16px;
    color: black;
    margin: 0 auto;
    padding: 40px 20px;
}

.form-area{
    display: flex;
    flex-wrap: wrap;
}

.form-area dt{
    width: 35%;
    padding: 15px 0;
    padding-left: 30px;
}

.form-area dd{
    width: calc(100% - 35%);
    padding: 15px 0;
}

.border{
    width: 95%;
    border: 0.1px solid #dfdfdf;
    margin: 20px auto;
}

.form-area dt .required::after{
    content: "必須";
    font-size: 12px;
    color: red;
    margin-left: 10px;
}

.input-text{
    width: 100%;
    max-width: 590px;
    height: 35px;
    padding: 0 10px;
    border: 2px solid #dfdfdf;
}

.select-box{
    width: 200px;
    height: 35px;
    padding: o 20px;
    font-size: 14px;
}

.radio-button{
    display: block;
    margin-top: 12px;
    font-size: 14px;
}

.radio-button:first-child{
    margin-top: 0;
}

.radio-button input{
    margin-right: 10px;
}

.message{
    width: 95%;
    height: 300px;
    padding: 10px;
    line-height: 1.5;
    font-size: 14px;
    border: 2px solid #dfdfdf;
}

.submit-button{
    background-color:#476148 ;
    display: inline-block;
    width: 400px;
    line-height: 60px;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 16px;
    text-align: center;
    border: none;
    margin: 60px auto 80px auto;
    cursor: pointer;
    position: center;
    transition: transform 0.3s ease;
}

.submit-button:hover{
    background-color: #628a63;
    transform: scale(1.05);
}

.submit{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* -----ここからfooter----- */

footer{
    height: 375px;
    background-color: #476148;
}

.footer {
    display: flex;
    justify-content: space-between;
}

.footerlogo{
    color: #ffffff;
    font-size: 35px;
    font-family: sans-serif;
    font-weight: 300;
    padding: 35px 80px;
    transition: transform 0.3s ease;
}

.footerlogo:hover{
    transform: scale(1.05);
}

.footer ul {
    display: flex;
    justify-content: space-around;
}

.footer li {
    color: #ffffff;
    font-size: 16px;
    padding: 50px 30px 40px 30px;
    transition: transform 0.3s ease;
}

.footer li:hover{
    transform: scale(1.2);
}

.footer li:last-child {
    padding-right: 60px;
}

.footer li img {
    width: 25px;
    transition: transform 0.3s ease;
}

.footer li img:hover{
    transform: scale(1.1);
}

.footertr {
    color: #ffffff
}

.footertable{
    margin-left:40px;
}
.copyright{
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    align-items: center;
}