.mission {
  background: #f7f7f5;
}
.mission__inner {
  max-width: 1000px;
  width: 90%;
  margin-inline: auto;
}
.mission__container {
  padding-block: 120px;
  display: flex;
  gap: 10%;
}
@media screen and (max-width: 768px) {
  .mission__container {
    flex-direction: column;
    padding-block: 60px;
    gap: 50px;
  }
}
.mission__textbox {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .mission__textbox {
    width: 100%;
  }
}
.mission__lead {
  line-height: 1.625;
  letter-spacing: 0.12em;
  font-size: 3.2rem;
}
.mission__lead::before, .mission__lead::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.mission__lead::before {
  margin-block-end: calc((1 - 1.625) * 0.5em);
}
.mission__lead::after {
  margin-block-start: calc((1 - 1.625) * 0.5em);
}
@media screen and (max-width: 768px) {
  .mission__lead {
    font-size: 2.4rem;
  }
}
.mission__disc {
  margin-top: 50px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
}
.mission__disc::before, .mission__disc::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.mission__disc::before {
  margin-block-end: calc((1 - 2) * 0.5em);
}
.mission__disc::after {
  margin-block-start: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 768px) {
  .mission__disc {
    margin-top: 30px;
  }
}
.mission__image {
  max-width: 400px;
  width: 100%;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .mission__image {
    margin-inline: auto;
    width: 100%;
  }
}

.overview {
  padding-block: 150px;
}
@media screen and (max-width: 768px) {
  .overview {
    padding-block: 50px;
  }
}
.overview__inner {
  max-width: 1000px;
  width: 90%;
  margin-inline: auto;
}
.overview__container {
  margin-top: 50px;
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
}
@media screen and (max-width: 768px) {
  .overview__container {
    margin-top: 25px;
  }
}
.overview__list {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  gap: 110px;
  font-size: 1.6rem;
  padding-block: 3rem;
  border-top: 1px solid #d9d9d9;
}
@media screen and (max-width: 768px) {
  .overview__list {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 2rem;
  }
}
.overview__list:last-child {
  border-bottom: 1px solid #d9d9d9;
}
.overview__term {
  font-weight: 400;
}
.overview__sub-list {
  display: flex;
  flex-flow: row wrap;
  gap: 12px;
}
.overview__sub-item {
  min-width: 200px;
}
@media screen and (max-width: 768px) {
  .overview__sub-item {
    min-width: 130px;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) {
  .overview__sub-item {
    min-width: none;
    width: 100%;
  }
}

.history {
  background: #f7f7f5;
}
.history__inner {
  max-width: 1000px;
  width: 90%;
  margin-inline: auto;
  padding-block: 100px;
}
@media screen and (max-width: 768px) {
  .history__inner {
    padding-block: 50px;
  }
}
.history__container {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  margin-top: 4.5rem;
}
.history__list {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 45px 0;
}
@media screen and (max-width: 768px) {
  .history__list {
    gap: 50px 0;
  }
}
.history__list::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 100%;
  background: #d9d9d9;
  left: 180px;
}
@media screen and (max-width: 768px) {
  .history__list::before {
    left: 0;
  }
}
.history__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 4;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .history__item {
    grid-template-columns: 1fr;
    padding-left: 2em;
  }
}
.history__year {
  font-size: 2rem;
  color: #737373;
}
.history__year--wareki {
  font-size: 1.4rem;
}
.history__content {
  display: inherit;
  grid-template-columns: inherit;
  grid-column: span 2;
  font-size: 1.6rem;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .history__content {
    grid-template-columns: auto 1fr;
    margin-top: 20px;
    gap: 15px;
  }
}
.history__unit {
  position: relative;
  display: inherit;
  grid-template-columns: inherit;
  grid-column: span 2;
  padding-left: 100px;
}
@media screen and (max-width: 768px) {
  .history__unit {
    padding-left: 0;
    grid-template-columns: 1fr;
  }
}
.history__unit::before {
  content: "";
  position: absolute;
  background: #737373;
  display: inline-block;
  width: 5px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 0.8rem;
  left: 25px;
}
@media screen and (max-width: 768px) {
  .history__unit::before {
    left: -19.5px;
  }
}
.history__month {
  justify-self: flex-end;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .history__month {
    justify-self: flex-start;
  }
}
.history__disc {
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
}
.history__disc::before, .history__disc::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.history__disc::before {
  margin-block-end: calc((1 - 2) * 0.5em);
}
.history__disc::after {
  margin-block-start: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 768px) {
  .history__disc {
    margin-top: 10px;
  }
}

.access {
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .access {
    padding-top: 50px;
  }
}
.access__inner {
  max-width: 1000px;
  width: 90%;
  margin-inline: auto;
}
.access__map {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 4.5rem;
}
@media screen and (max-width: 1024px) {
  .access__map {
    height: 350px;
  }
}
.access__map iframe {
  width: 100%;
  height: 100%;
}
.access__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .access__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.access__name {
  font-size: 2rem;
}
.access__address {
  font-size: 1.6rem;
}
.access__text {
  font-size: 1.4rem;
  margin-top: 15px;
  line-height: 1.8;
}

.rc {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .rc {
    margin-top: 100px;
  }
}
.rc__inner {
  max-width: 1000px;
  width: 90%;
  margin-inline: auto;
}
.rc__container {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 5rem;
}
.rc__list {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  align-items: center;
  padding: 30px 60px;
  gap: 55px;
}
@media screen and (max-width: 768px) {
  .rc__list {
    grid-template-columns: 1fr;
    padding: 25px 20px;
    gap: 20px;
  }
}
.rc__list:nth-child(odd) {
  background: #f7f7f5;
}
.rc__term {
  font-size: 1.6rem;
  font-weight: 400;
}
.rc__disc {
  font-size: 1.4rem;
  line-height: 2;
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
}
.rc__disc::before, .rc__disc::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.rc__disc::before {
  margin-block-end: calc((1 - 2) * 0.5em);
}
.rc__disc::after {
  margin-block-start: calc((1 - 2) * 0.5em);
}
.rc__link {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  color: #0d3da9;
  border-bottom: 1px solid #0d3da9;
  padding-bottom: 5px;
  margin-top: 1.8rem;
  gap: 1rem;
  transition: opacity 0.3s;
}
@media (hover) {
  .rc__link:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .rc__link {
    margin-top: 1rem;
  }
}
.rc__link::after {
  content: "";
  background: url(../../../images/common/icon_link.svg) center/contain, no-repeat;
  background-repeat: no-repeat;
  width: 14px;
  height: auto;
  aspect-ratio: 14/12;
}

.supply {
  margin-block: 150px;
}
@media screen and (max-width: 768px) {
  .supply {
    margin-block: 100px;
  }
}
.supply__inner {
  max-width: 1000px;
  margin-inline: auto;
  width: 90%;
}
.supply__lead {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  margin-top: 5rem;
}
.supply__lead::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #737373;
}
@media screen and (max-width: 768px) {
  .supply__lead::before {
    width: 20px;
  }
}
.supply__disc {
  margin-top: 30px;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
}
.supply__disc::before, .supply__disc::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.supply__disc::before {
  margin-block-end: calc((1 - 1.75) * 0.5em);
}
.supply__disc::after {
  margin-block-start: calc((1 - 1.75) * 0.5em);
}
.supply__map {
  margin-top: 40px;
  display: grid;
  place-items: center;
  background: #f0f3f5;
  padding: 30px 50px;
}
@media screen and (max-width: 768px) {
  .supply__map {
    padding: 20px;
  }
}
.supply__map img {
  max-width: 900px;
}
.supply__plan-list {
  margin-top: 3.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.supply__plan-link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  color: #0d3da9;
  border-bottom: 1px solid #0d3da9;
  padding-bottom: 8px;
  margin-top: 15px;
  transition: opacity 0.3s;
}
@media (hover) {
  .supply__plan-link:hover {
    opacity: 0.5;
  }
}
.supply__plan-link::after {
  content: "";
  display: inline-block;
  background: url(../../../images/common/icon_pdf.svg) center/contain, no-repeat;
  width: 16px;
  height: auto;
  aspect-ratio: 16/20;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
/*# sourceMappingURL=style.css.map */
