@charset "UTF-8" ;
body {
    background-color: #f8f5c5;
    font-size: 18px;
    color: #432c02;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.container{
    display: flex;
}
.two-img{
    padding: 10px;
    flex: 0 1 auto;
    width: 30%;
    aspect-ratio: 1 / 1 ;
    height: auto;
    min-width: 0;
    object-fit: cover;
    display: block;
}

.two-img:first-child{
    object-position: 50% 20%;
}

.two-img:nth-child(2){
    object-position: 20% 50%;
}
h1 {
    color: #ffffff; background-color: #7acbe1;
}
h2 {
    border-bottom: 5px solid #7acbe1;
}
table {
    background-color: #ffffff;
    border-collapse: collapse;
    width: auto;
}
th {
  background-color: #7acbe1;  
}
form[name="メッセージフォーム"]{
    max-width: 400px;
    padding: 20px;
    border: 1px solid #7acbe1;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0,1);
    background-color: #ffffff;
}
form p {
    margin-top: 16px;
    margin-bottom: 4px;
    font-weight: bold;
}
form input[type="text"],
form input[type="email"],
form textarea{
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #432c02;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}
form input[type="submit"]{
    background-color: blue;
    color: white;
    transition: background-color 0.2s;
}
form input[type="submit"]:hover{
    background-color: #fffff8;
    color: blue;
}
form textarea{
    height: 100px;
}


