.contents {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background-color: #f4f1e7;
}
.header {
  display: flex;
  justify-content: space-around;
  background-color: #0b044b;
}
.header-logo {
  width: 160px;
  align-self: center;
}
.header-title {
  color: #fff;
  font-size: 1.5rem;
  align-self: center;
}

.hero-img {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  /* transform: scaleX(1.5); */
}
.hero-img-title {
  width: calc(100% - 12px);
  position: absolute;
  bottom: 5%;
  left: 0;
  padding-left: 12px;
  color: #fff;
}
.her0-img-title img {
  width: 100%;
  height: auto;
}
.hero-img-sub-title img {
  width: 70%;
  height: auto;
}
.hero-img-title p {
  font-size: 2.5rem;
  margin: 0;
}
.message {
  background-color: #999ed21a;
  padding: 24px;
}
.message-title {
  font-size: 1.5rem;
  display: block;
}
.message p {
  margin: 0;
}

.section-title {
  font-size: 1.5rem;
  margin: 0;
  padding: 18px;
  background-color: #83b72c;
  color: #fff;
  text-align: center;
}

.reason-item {
  box-sizing: border-box;
  margin: 12px auto;
  background-color: #c7a66e20;
  padding: 24px;
  border-radius: 10px;
  text-align: center;
}

.reason-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.item-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.item {
  box-sizing: border-box;
  width: 50%;
  padding: 12px;
  text-align: center;
}

.item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.map {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 高さを16:9比率に */
  height: 0;
  overflow: hidden;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  background-color: #1a2b4c;
  color: #fff;
  padding: 12px 24px;
}
