@charset "utf-8";
body {
  margin: 0;
}
@media (min-width: 801px){
header.header01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
div.logo{
  width: 400px;
  height: 50px;
}
div.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav {
  width: 1250px;
  padding: 0;
  margin-left: 50px;
  margin-bottom: 50px;
  list-style-type: none;
  text-align: center;
}
.nav li {
  width: 20%;
  float: left;
  padding: 0;
  margin: 0;
  text-align: center;
}
.nav li a {
  width: auto;
  color: #0a0303;
  font-size: 20px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bold;
  padding: 10px 0;
  text-decoration: none;
  display: block;
  background: #f8f4f4;
}
.nav li a:hover {
  background: #555;
  color: #ffffff;
}
ul{
  list-style: none;
}
#menu-btn,
.nav-hidden {
  display: none;
}
}
  /*スマホヘッダー
　----------*/
@media (max-width: 800px) {
 
  header.header02 {
    width: auto;
  }
    #menu-btn{
     display: block;
     width: 30px;
     height: 20px;
     position: fixed;
     top: 1rem;
     right: 1rem;
     z-index: 3;
    }
    #menu-btn span,
    #menu-btn span::before,
    #menu-btn span::after {
     content: "";
     height: 2px;
     width: 100%;
     border-radius: 3px;
     background: #3656a7;
     position: absolute;
     transition: 0.2s;
    }
    #menu-btn span {
     top: 0;
    }
    #menu-btn span::before {
     top: 8px;
    }
    #menu-btn span::after {
     top: 16px;
    }
    #nav-input:checked~#menu-btn span {
     top: 8px;
     transform: rotate(45deg);
    }
    #nav-input:checked~#menu-btn span::before {
     opacity: 0;
    }
    #nav-input:checked~#menu-btn span::after {
     top: 0;
     transform: rotate(-90deg);
    }
    div.logo {
     width: 50px;
     height: 20px;
    }
    nav.nav {
     width: 300px;
     height: 100vh;
     position: fixed;
     top: 0;
     right: -100%;
     z-index: 2;
     background: #104ffc;
     transition: 0.5s;
    }
    nav.nav ul.item {
     display: block;
     padding: 4rem 2rem;
    }
    nav.nav ul.item li.list {
     padding-left: 0;
     padding-bottom: 1.5rem;
    }
    nav.nav ul.item li.list a{
      color: #eee7e7;
      font-family: Georgia, 'Times New Roman', Times, serif;
    }
    ul{
      list-style: none;
    }
   
    header.header02 #nav-input:checked~nav.nav {
     right: 0;
    }
    input[type="checkbox"]{
      display: none;
    }
   }
  


.title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: bold;
  margin-top: 50px;
}

.title p {
  font-size: 14px;
  margin-top: 50px;
}

.main h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin-top: 50px;
}

.main h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #979393;
  margin-top: 50px;
}

.map {
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
}

.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;
}

.form-area {
  background-color: #ece5e5;
  border: 1px solid #f0eaea;
  margin-top: 25px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
}

.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: #eb4f32;
  margin-left: 10px;
  background-color: #f4dd64;
}

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

.input-text {
  width: 100%;
  max-width: 280px;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
 background-color: #ffffff;
}

.select-box {
  width: 200px;
  height: 40px;
  background-color: #ffffff;
}

.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;
  background-color: #ffffff;
}

.confirm-text {
  font-size: 14px;
  line-height: 22px;
  margin-top: 30px;
}

.submit-button {
  background-color: #f4dd64;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}

.submit-button:hover {
  background-color: #d8b500;
}



@media (max-width: 800px) {
  .map,
  .contact {
    width: 500px;
    margin-top: 45px;
    margin-bottom: 40px;
  }

  .form-area dt,
  .form-area dd {
    width: 100%;
  }

  .form-area dt {
    padding-bottom: 0;
  }

  .submit-button {
    width: 100%;
  }
}
/*foter
----------*/
.footer {
  background-color: #07a5ee;
}
.nav3 {
  background: #07a5ee;
  border-bottom: 5px solid #010205;
}
.nav3 ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 50px 100px 0 100px;
  padding: 20px 10px 0 10px;
}
.nav3 a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 23px;
  color: #ffffff;  
}
.nav3 li a:hover{
  background: #010303;
  border-radius: 10px 10px 0 0;
}