/*
====================================================================
 Fonts
====================================================================
*/
/* Noto Sans */
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("./fonts/noto-sans-jp-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("./fonts/noto-sans-jp-bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 900;
  src: local(""), url("./fonts/noto-sans-jp-black.woff2") format("woff2");
}
/* Open Sans */
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/open-sans-semibold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans Italic";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/open-sans-semibold-italic.woff2") format("woff2");
}
/*
====================================================================
 KEY VISUAL
====================================================================
*/
.key-visual {
  position: relative;
  height: 880px;
}
.key-visual-container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background-color: #d6e2f1;
}
.key-visual__parts {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  height: 880px;
  width: 100%;
}
.key-visual__slide {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity 2.5s ease-out;
}
.key-visual__slide:nth-child(even) {
  right: 0;
}
.key-visual__slide.active {
  opacity: 1;
  transition: opacity 2.5s ease-out;
}

.main-title {
  position: absolute;
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto;
  background-color: rgba(255, 255, 255, 0.75);
}
.main-title h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 60px 50px 60px;
}
.main-title h1 img {
  width: 100%;
}
.main-title h1 span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-top: 50px;
  color: #605e5d;
  line-height: 1;
}
.main-title a {
  display: block;
  padding-bottom: 50px;
  margin: 0 auto;
}

/*
====================================================================
 COMMON
====================================================================
*/
.external-link__button {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  color: #618ac6;
  padding: 0 6px 0 5px;
  border: 1px solid #618ac6;
  font-size: 14px;
  margin-top: 5px;
  transition: all 0.3s;
}
.external-link__button::before {
  content: "";
  display: block;
  position: static;
  width: 7px;
  height: 7px;
  border-top: 2px solid #618ac6;
  border-right: 2px solid #618ac6;
  transform: rotate(45deg);
  margin-right: 6px;
}
.external-link__button:hover {
  background-color: #618ac6;
  color: white;
}
.external-link__button:hover::before {
  border-color: white;
}

/*
====================================================================
 01
====================================================================
*/
.top-section01 {
  background: linear-gradient(to bottom, #d6e2f1 0%, white 140px);
  padding-bottom: 0;
}
.top-section01 .section__header {
  scroll-margin-top: 70px;
}
.top-section01 .notice {
  margin-top: 60px;
  padding: 30px 40px 30px 50px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.15);
  position: relative;
}
.top-section01 .notice::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  border: 1px solid #bbcfe8;
  border-radius: 6px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top-section01 .notice h3 {
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.top-section01 .notice h3::before {
  content: "";
  display: block;
  position: unset;
  width: 35px;
  height: 1em;
  background: url(../images/icon_notice.svg) center left/contain no-repeat;
  margin-right: 10px;
  margin-top: 4px;
}

.feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-top: -220px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.feature__item {
  overflow: hidden;
  border: 4px solid #618ac6;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.025em;
}
.feature__item-image {
  padding-bottom: 0;
}
.feature__item-image img {
  width: 100%;
}
.feature__item-heading {
  color: white;
  background-color: #618ac6;
  font-size: 20px;
  font-weight: 700;
  padding: 4px 0;
  text-align: center;
  letter-spacing: 0.025em;
}
.feature__item-text {
  font-size: 18px;
  padding: 14px 5px 14px 15px;
  line-height: 1.5;
  font-weight: 500;
}
.feature__item a {
  width: -moz-fit-content;
  width: fit-content;
}

.message p {
  font-size: 20px;
}

/*
====================================================================
 02
====================================================================
*/
.top-section02 {
  background-color: rgba(187, 207, 232, 0.15);
  padding-top: 140px;
  margin-top: -50px;
}
.top-section02 .container {
  display: grid;
  grid-template-columns: 1fr 638px;
}
.top-section02 .section__footer {
  grid-column: 1/3;
  margin-top: 70px;
  padding-top: 60px;
  background: url(../images/divider.png) center top no-repeat;
}
.top-section02 .notice {
  text-align: center;
}
.top-section02 .notice h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.news {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.news__item {
  background: url(../images/bg_news_item.png) left top/cover no-repeat;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 136px 1fr;
  font-size: 16px;
  font-weight: 400;
  min-height: 108px;
}
.news__item-date {
  padding: 14px 30px;
}
.news__item-content {
  padding: 14px 30px;
  background-color: white;
}
.news__item span {
  display: block;
}
.news__item-heading {
  font-size: 18px;
  font-weight: 500;
}
.news__item-text {
  line-height: 1.5;
}

/*
====================================================================
 03
====================================================================
*/
.top-section03 {
  background: url(../images/bg_pattern.jpg) center top/cover no-repeat;
  text-align: center;
}
.top-section03 p:not(.note) {
  font-size: 28px;
}
.top-section03 p:not(.note) em {
  color: #4273bb;
  font-weight: 500;
}
.top-section03 p.note {
  font-size: 20px;
}
.top-section03 p.note em {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.top-section03 .tel {
  margin-top: 40px;
  margin-bottom: 20px;
}

table {
  border-collapse: separate;
  border: 1px solid #323232;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  margin: 40px auto;
  line-height: 1;
  font-size: 20px;
}

th {
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #323232;
}
th:not(:last-child) {
  border-right: 1px solid #323232;
}
thead th {
  padding: 16px;
}
thead th:not(:first-child) {
  width: 10.5%;
}
tbody th {
  padding: 24px 16px;
}
tbody tr:last-child th {
  border-bottom: none;
}

td {
  padding: 24px;
  font-size: 22px;
}
tr:not(:last-child) td {
  border-bottom: 1px solid #323232;
}
td:not(:last-child) {
  border-right: 1px solid #323232;
}
td:nth-child(n+3) {
  color: #618ac6;
}

/*
====================================================================
 04
====================================================================
*/
.top-section04 .container {
  position: relative;
}
.top-section04 h2 {
  margin-bottom: 50px;
}

.access {
  position: absolute;
  right: 10px;
  top: 0;
  padding-right: 125px;
  z-index: 2;
}
.access address {
  font-style: normal;
  line-height: 1.5;
  text-align: right;
}
.access address span {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
.access a {
  margin-right: 0;
  margin-left: auto;
}
.access .seal {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 105px;
  height: 105px;
  background-color: #4273bb;
  border-radius: 50%;
  outline: 1px solid white;
  outline-offset: -4px;
}
.access .seal span {
  display: block;
  color: white;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.map {
  width: 100%;
  padding-bottom: 41.2%;
  position: relative;
  margin-bottom: 20px;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------------------------------------------*/
@media (max-width: 767px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / key-visual
  ====================================================================
  */
  .key-visual {
    height: auto;
  }
  .key-visual-container {
    display: block;
  }
  .key-visual__parts {
    height: auto;
  }
  .key-visual__slide {
    position: absolute;
    top: 0;
    opacity: 0;
    transition: opacity 2.5s ease-out;
  }
  .key-visual__slide:nth-child(even) {
    right: 0;
  }
  .key-visual__slide.active {
    opacity: 1;
    transition: opacity 2.5s ease-out;
  }
  .main-title {
    padding: 40px 0 0 0;
    width: 75%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }
  .main-title h1 {
    padding: 0 0 25px 0;
  }
  .main-title h1 img {
    width: 71%;
  }
  .main-title h1 span {
    font-size: 18px;
    margin-top: 25px;
  }
  .main-title a {
    padding: 0 15px 30px 15px;
  }
  .main-title .tel {
    font-size: 28px;
    -moz-column-gap: 6px;
         column-gap: 6px;
  }
  .main-title .tel::before {
    width: 28px;
    height: 28px;
  }
  /*
  ====================================================================
   SP / COMMON
  ====================================================================
  */
  section {
    scroll-margin-top: 50px;
  }
  /*
  ====================================================================
   SP / 01
  ====================================================================
  */
  .top-section01 .section__header {
    scroll-margin-top: 70px;
  }
  .top-section01 .notice {
    margin-top: 40px;
    padding: 30px 20px 25px 25px;
    border-radius: 4px;
  }
  .top-section01 .notice::before {
    border-radius: 3px;
  }
  .top-section01 .notice h3 {
    font-size: 19px;
    line-height: 1.5;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 15px;
  }
  .top-section01 .notice h3::before {
    margin-right: 0;
    margin-top: 15px;
  }
  .feature {
    display: block;
    margin-top: 0;
    margin-bottom: 60px;
  }
  .feature__item {
    border: none;
    border-radius: 4px;
    margin-bottom: 12px;
    position: relative;
  }
  .feature__item-image {
    padding-bottom: 0;
    position: absolute;
    left: 10px;
    top: 15px;
    width: 39%;
    border: 1px solid white;
  }
  .feature__item-heading {
    color: white;
    background-color: #618ac6;
    font-size: 18px;
    padding: 10px;
    padding-left: calc(39% + 25px);
    text-align: left;
    line-height: 1.4;
  }
  .feature__item-text {
    font-size: 14px;
    padding: 10px;
    padding-left: calc(39% + 25px);
    line-height: 1.5;
    font-weight: 500;
  }
  .feature__item a {
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
  .feature__item:last-child {
    padding-bottom: 32px;
  }
  .message p {
    font-size: 16px;
  }
  /*
  ====================================================================
   SP / 02
  ====================================================================
  */
  .top-section02 {
    padding-top: 110px;
    margin-top: -40px;
  }
  .top-section02 .container {
    display: block;
  }
  .top-section02 .section__footer {
    margin-top: 40px;
    padding-top: 40px;
    background: url(../images/sp/divider.png) center top/contain no-repeat;
  }
  .top-section02 .section__footer p {
    text-align: left;
  }
  .top-section02 .notice h3 {
    font-size: 19px;
  }
  .news__item {
    border-radius: 4px;
    grid-template-columns: 90px 1fr;
    font-size: 14px;
    min-height: unset;
  }
  .news__item-date {
    padding: 10px;
  }
  .news__item-content {
    padding: 10px;
  }
  .news__item-heading {
    font-size: 16px;
  }
  /*
  ====================================================================
   SP / 03
  ====================================================================
  */
  .top-section03 {
    background: url(../images/sp/bg_pattern.jpg) no-repeat;
    background-position: left top;
    background-repeat: repeat-y;
    background-size: 100% auto;
  }
  .top-section03 p:not(.note) {
    font-size: 20px;
  }
  .top-section03 p.note {
    font-size: 16px;
  }
  .top-section03 p.note em {
    text-underline-offset: 3px;
  }
  table {
    border-radius: 4px;
    line-height: 1.3;
    font-size: 18px;
  }
  th {
    vertical-align: middle;
  }
  thead th {
    padding: 10px;
    white-space: nowrap;
  }
  thead th:not(:first-child) {
    width: auto;
  }
  tbody th {
    padding: 10px;
  }
  td {
    padding: 20px 10px;
    font-size: 18px;
    color: #618ac6;
  }
  /*
  ====================================================================
   SP / 04
  ====================================================================
  */
  .top-section04 h2 {
    margin-bottom: 25px;
  }
  .access {
    position: static;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .access address {
    text-align: left;
  }
  .access address span {
    font-size: 18px;
  }
  .access a {
    margin-top: 8px;
    margin-right: auto;
    margin-left: 0;
  }
  .access .seal {
    position: absolute;
    right: 15px;
    top: -10px;
    bottom: unset;
    width: 90px;
    height: 90px;
    outline-offset: -3px;
  }
  .access .seal span {
    font-size: 18px;
  }
  .map {
    padding-bottom: 100%;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1119px) {
  /*----------------------------------------------------------------*/
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=index.css.map */