@charset "utf-8";

/* タイトル */

.title {
  height: 80px;
  line-height: 80px;
  color: #ffffff;
  text-align: center;
  background-color: #0014ac;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%235661b5' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

.title h1 {
  font-size: 3.0rem;
}
 
/* ファーストビュー/共通CSS */
.first-view {
  width: 750px;
  max-width: 90%;
  margin: 0 auto;
}

.first-view img {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.first-header {
  width: 750px;
  max-width: 90%;
  margin: 30px auto 0 auto;
  text-align: center;
}

.first-header h3 {
  color: #0014ac;
  font-weight: normal;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.first-header h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

.text-650px {
  font-size: 1.6rem;
  width: 650px;
  max-width: 90%;
  line-height: 1.5;
  margin: 20px auto 0 auto;
}

.text-650px span {
  background: linear-gradient(transparent 70%, #f9b737 70%);
}

.text-400px {
  font-size: 1.6rem;
  width: 400px;
  max-width: 90%;
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
  margin: 8px auto 0 auto;
}

.img-450px {
  display: block;
  width: 450px;
  max-width: 90%;
  line-height: 1.5;
  margin: 20px auto 0 auto;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}


/* 基本情報 */

.center-headline {
  width: 550px;
  max-width: 95%;
  margin: 40px auto 0 auto;
}

.center-headline h3 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.center-headline h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #0014ac;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
}

.basicinfo-table {
  width: 650px;
  max-width: 90%;
  margin: 15px auto;
  border-collapse: collapse;
}

.basicinfo-table th {
  background-color: #ececec;
  line-height: 1.3;
  font-size: 1.3rem;
  border-top: 1px solid #05173f;
  border-bottom: 1px solid #05173f;
  padding: 5px;
}

.basicinfo-table td {
  font-size: 1.4rem;
  line-height: 1.3;
  border-top: 1px solid #05173f;
  border-bottom: 1px solid #05173f;
  padding: 5px;
}

.googlemaps iframe {
  display: block;
  width: 450px;
  max-width: 90%;
  height: 200px;
  margin: 20px auto 0 auto;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.youtube {
  background-color: #000000;
  width: 550px;
  max-width: 90%;
  height: 300px;
  padding: 10px;
  margin: 30px auto 0 auto;
  border-radius: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.youtube iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.link-button-area {
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
}

.link-button {
  display: inline-block;
  color: #ffffff;
  background-color: #05173f;
  min-width: 200px;
  line-height: 25px;
  border: 1px solid #05173f;
  border-radius: 20px;
}

.link-button:hover {
  font-weight: bold;
}

.link-button-area-margin {
  padding-bottom: 40px;
}

.img-view {
  max-width: 750px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
}

.img-box {
  width: 300px;
  margin: 25px 15px 0 15px;
}

.img-box p{
  margin-top: 7px;
  text-align: center;
}

@media (max-width: 768px) {

  html {
    font-size: 50%;
  }

  .title {
    height: 55px;
    line-height: 55px;
  }

  .title h1 {
    font-size: 2.0rem;
  }

  .first-header h3 {
    font-size: 1.2rem;
  }

  .first-header h2 {
    font-size: 1.6rem;
  }

  .center-headline h3 {
    font-size: 2.0rem;
  }

  .basicinfo-table th {
    font-size: 1.1rem;
  }

  .basicinfo-table td {
    font-size: 1.3rem;
  }

}