@charset "utf-8";

.title {
  height: 430px;
  width: 100%;
  max-width: 100%;
  background-image: url(../image/access-view-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #282726;
}

.title h1 {
  font-family: "brevia", sans-serif;
font-weight: 700;
font-style: normal;
font-size: 40px;
}

.title p {
  font-size: 20px;
  /* font-weight: bold; */
  margin-top: 15px;
}

.main h2 {
  font-size: 25px;
  font-weight: 200;
  margin-top: 100px;
}

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

.map-area {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.map-area-inner {
  display: flex;
  margin-top: 75px;
  justify-content: space-between;
  align-items: flex-start;
}

.name {
  font-size: 21px;
  line-height: 3;
}

.adress {
  font-size: 16px;
  line-height: 2;
}

.tel {
  font-size: 16px;
  line-height: 2;
}

.map {
  margin-left: 65px;
  flex-basis: 60%;
  
}

.map iframe {
  display: block;
  width: 100%;
  height: 330px;
}

.contact {
  width: 70%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
}

.form-area {
  background-color: #f9f5f1;
  border: 1px solid #593718;
  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: #cd2632;
  margin-left: 10px;
}

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

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

.select-box {
  width: 200px;
  height: 40px;
}

.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: #b98e51;
  color: #ffffff;
  display: inline-block;
  min-width: 180px;
  line-height: 50px;
  border-radius: 24px;
  font-family: "Bradley Hand",sans-serif;
  font-size: 30px;
  margin-bottom: 90px;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}

.submit-button:hover {
  background-color: rgba(123, 76, 32, 0.7);
  transition: 0.6s ;
}

.footer {
  margin-top: 140px;
}

@media (max-width: 800px) {

  .title {
    position: relative;
    z-index: 1;
    height: 250px;
    background-image: url(../image/access-view-mobile.png);
  }

  .title h1 {
    font-size: 25px;
  }

  .title p {
    font-size: 13px;
  }

  .map-area-inner {
    display: block;
  }


.map {
  margin-left: 0px;
  margin-top: 30px;
}

.main h2 {
  font-size: 20px;
  font-weight: 200;
  margin-top: 60px;
}

.map-area-inner {
  margin-top: 30px;
}

.name {
  font-size: 18px;
}

.adress {
  font-size: 14px;
}

.tel {
  font-size: 14px;
}

.business-hours {
  font-size: 14px;
}

.contact h2 {
  font-size: 20px;
}

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

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

.submit-button {
  width: 100%;
}

}