@charset "utf-8";



/********************************/
/********** Main Image **********/
/********************************/

.mainimage-section {
  clear: both;
  margin: 10px auto;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1000;
  background-color: #FFFFFF;
  color: #000000;
  background-image: url("../images/main-image.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-content: center;
  aspect-ratio: 96/41;
  max-height: 400px;
}
.mainimage-section h2 {
  margin: auto;
  padding: 0 20px;
  max-width: 1040px;
  width: 100%;
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  line-height: 180%;
  text-shadow: 0 0 3px #000000;
}
@media screen and ( max-width: 1024px ) {
  .mainimage-section {
    margin: 0 auto;
  }
}
@media screen and ( max-width: 768px ) {
  .mainimage-section h2 {
    font-size: 2.8vw;
  }
}
@media screen and ( max-width: 480px ) {
  .mainimage-section h2 {
    font-size: 2.6vw;
  }
}



/**************************/
/********** News **********/
/**************************/

.news-section {
  clear: both;
  margin: auto;
  padding: 20px 0;
  width: 100%;
  position: relative;
  background-color: #EBF8FB;
  color: #000000;
}
.news-section .listing {
  margin: auto;
  padding: 0;
  max-width: 800px;
  width: 100%;
}
.news-section h3 {
  margin: 30px auto;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.4rem;
  text-align: center;
  color: #66B9CA;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-section dl {
  margin: 0;
  padding: 20px;
  display: flex;
  gap: 5px 20px;
}
.news-section dl:nth-child(odd) {
  background-color: #FFFFFF;
}
.news-section dl dt {
  margin: 0;
  padding: 0;
  font-feature-settings: "tnum";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.1rem;
  color: #000000;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.news-section dl dd {
  margin: 0;
  padding: 0 20px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
  border-left: 1px solid #66B9CA;
  width: 100%;
}
@media screen and ( max-width: 1024px ) {
  .news-section {
    padding: 0;
  }
}
@media screen and ( max-width: 768px ) {
  .news-section h3 {
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
  }
  .news-section dl {
    padding: 15px 20px;
    flex-direction: column;
  }
  .news-section dl dd {
    padding: 0;
    border: none;
  }
}



/*****************************/
/********** Contact **********/
/*****************************/

.contact-section {
  clear: both;
  margin: auto;
  padding: 20px 0;
  width: 100%;
  position: relative;
  background-color: #FFFFFF;
  color: #000000;
}
.contact-section .content {
  max-width: 750px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
}
.contact-section h3 {
  margin: auto;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.2rem;
  text-align: center;
  white-space: nowrap;
  color: #66B9CA;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
}
.contact-section h3:before {
  content: "";
  display: inline-block;
  width: 94px;
  height: 94px;
  background-image: url("../images/icon-contact.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
.contact-section .block {
  width: 100%;
}
.contact-section p {
  margin: auto;
  padding: 10px 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.1rem;
}
.contact-section address {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.1rem;
}
@media screen and ( max-width: 768px ) {
  .contact-section h3 {
    font-size: 2.2rem;
    gap: 10px 0;
  }
  .contact-section .content {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
  .contact-section p {
    font-size: 1.5rem;
    text-align: center;
  }
  .contact-section address {
    text-align: center;
  }
}
@media screen and ( max-width: 480px ) {
  .contact-section h3 {
    font-size: 2.0rem;
    gap: 5px 0;
  }
  .contact-section .content {
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
  }
}