/* Font Size ----- */
/* :root {
    //color settings
    //original
    --color-txt: #222b37;
    --color-white: #fff;
    --color-yellow: #ffe200;
    --color-blue: #00a2d2;
    --color-gray: #e7ecf0;

    //color role
    --color-main: var(--color-txt) !important;
    --color-accent: var(--color-yellow) !important;
    --color-sub: var(--color-blue) !important;
    --color-base : var(--color-gray) !important;
} */
.section__ttl {
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width:767px) {
  .section__ttl {
    margin-bottom: 4rem;
  }
}
.section__ttl-main {
  font-size: clamp(2.4rem, 2.039rem + 1.652vw, 4rem);
  line-height: 1;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.section__ttl-sub {
  font-size: clamp(1.6rem, 1.51rem + 0.413vw, 2rem);
  line-height: 1;
  margin-top: 0.8rem;
  color: #00a2d2;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width:768px) {
  .section__ttl-sub {
    margin-top: 1rem;
  }
}

.information-section__item {
  margin-bottom: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media screen and (max-width:767px) {
  .information-section__item {
    margin-bottom: 4rem;
    gap: 2.5rem;
  }
}
.information-section__item:last-child {
  margin-bottom: 0;
}
.information-section__item .img {
  max-width: 520px;
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .information-section__item .img {
    width: 100%;
  }
}
.information-section__item .sub-ttl {
  line-height: 1;
  font-size: 2.8rem;
  padding-bottom: 0.5rem;
  border-bottom: solid 1px #00a2d2;
}
.information-section__item .copy-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  line-height: 1;
}
@media screen and (max-width:767px) {
  .information-section__item .copy-ttl {
    gap: 1.5rem;
  }
}
.information-section__item .copy-ttl__main {
  font-size: 3rem;
  font-weight: 500;
}
@media screen and (max-width:767px) {
  .information-section__item .copy-ttl__main {
    font-size: 2.4rem;
  }
}
.information-section__item .copy-ttl__sub {
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width:767px) {
  .information-section__item .copy-ttl__sub {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
@media screen and (max-width:767px) {
  .information-section__item .description {
    font-size: 1.4rem;
  }
}

.message-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 6rem;
}
@media screen and (min-width:992px) {
  .message-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.message-section__grid .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2rem;
}
@media screen and (max-width:767px) {
  .message-section__grid .description {
    font-size: 1.4rem;
  }
}
.message-section__grid .signature {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width:767px) {
  .message-section__grid .signature .company {
    font-size: 1.4rem;
  }
}
.message-section__grid .signature .ceo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1.5rem;
  font-weight: 500;
}
.message-section__grid .signature .ceo .position {
  font-size: 1.6rem;
}
.message-section__grid .signature .ceo .name {
  font-size: 2.2rem;
}

.company-section .company-table {
  width: 100%;
  font-size: 1.6rem;
  border-radius: 10px;
  overflow: hidden;
}
.company-section .company-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}
.company-section .company-table__row dt, .company-section .company-table__row dd {
  padding: 3rem;
}
@media screen and (max-width:767px) {
  .company-section .company-table__row dt, .company-section .company-table__row dd {
    padding: 2rem;
  }
}
.company-section .company-table__row dt {
  width: 25%;
  background-color: #00a2d2;
  color: #fff;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
}
@media screen and (max-width:767px) {
  .company-section .company-table__row dt {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-bottom: none;
  }
}
.company-section .company-table__row dd {
  width: 75%;
  background-color: #e7ecf0;
  color: #333;
  margin: 0;
  line-height: 1.8;
  border-bottom: 1px dotted #222b37;
}
@media screen and (max-width:767px) {
  .company-section .company-table__row dd {
    width: 100%;
    border-bottom: none;
  }
}
.company-section .company-table__row:last-child dt, .company-section .company-table__row:last-child dd {
  border-bottom: none;
}

@media screen and (max-width:767px) {
  .organization-section .btn {
    width: 100%;
    max-width: unset;
  }
}
@media screen and (min-width:768px) {
  .organization-section .btn {
    min-width: 320px;
  }
}

.history-section .history-content {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}
.history-section .history-content .history-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 5rem;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .history-section .history-content .history-nav {
    margin-bottom: 1rem;
    gap: 1rem;
  }
}
.history-section .history-content .history-nav__item {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: #00a2d2;
  background-color: #fff;
  border: solid 1px #00a2d2;
  border-radius: 100vmax;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width:768px) {
  .history-section .history-content .history-nav__item {
    min-width: 200px;
  }
}
.history-section .history-content .history-nav__item:hover {
  color: #fff;
  background-color: #00a2d2;
}
.history-section .history-content .history-nav__item:hover:after {
  color: #fff;
}
.history-section .history-content .history-nav__item::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #00a2d2;
  line-height: 1;
  height: 0.5lh;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.history-section .history-content .history-nav__item.is-active {
  color: #fff;
  background-color: #00a2d2;
}
.history-section .history-content .history-nav__item.is-active:after {
  color: #fff;
}
.history-section .history-content .history-list {
  position: relative;
  padding-left: 4.5rem;
  display: none;
}
.history-section .history-content .history-list.is-active {
  display: block;
}
.history-section .history-content .history-list::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 0;
  left: 9px;
  width: 5px;
  height: 100%;
  background-color: #d8dadc;
  z-index: 0;
}
@media screen and (min-width:768px) {
  .history-section .history-content .history-list::before {
    top: 50%;
    height: calc(100% - 6rem);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.history-section .history-content .history-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 2rem;
  border-bottom: 1px dotted #ccc;
  gap: 1rem;
}
@media screen and (max-width:767px) {
  .history-section .history-content .history-row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}
.history-section .history-content .history-row:last-child {
  border-bottom: none;
}
.history-section .history-content .history-row::after {
  content: "";
  position: absolute;
  left: -44px;
  top: 2rem;
  width: 22px;
  aspect-ratio: 1;
  background-color: #fff;
  border: 4px solid #00a2d2;
  border-radius: 50%;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width:768px) {
  .history-section .history-content .history-row::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.history-section .history-content .history-row:has(.history-date:empty)::after {
  display: none;
}
.history-section .history-content .history-row .history-date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
  color: #00a2d2;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width:767px) {
  .history-section .history-content .history-row .history-date {
    font-size: 2rem;
    padding-left: 0;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
@media screen and (min-width:768px) {
  .history-section .history-content .history-row .history-date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }
}
@media screen and (min-width:992px) {
  .history-section .history-content .history-row .history-date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
  }
}
.history-section .history-content .history-row .history-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
  color: #222b37;
  font-weight: 500;
}

.access-section .section__ttl {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: left;
  margin-bottom: 32px;
}
.access-section__content {
  display: grid;
  gap: 10rem;
}
@media screen and (max-width:767px) {
  .access-section__content {
    gap: 6rem;
  }
}
.access-section__item:has(.access-section__image) .access-section__inner {
  margin-bottom: 4rem;
}
@media screen and (max-width:767px) {
  .access-section__item:has(.access-section__image) .access-section__inner {
    margin-bottom: 3rem;
  }
}
.access-section__name {
  font-size: 2.4rem;
  font-weight: 700;
  background: #e7ecf0;
  padding: 1rem 1.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width:767px) {
  .access-section__name {
    font-size: 1.8rem;
  }
}
.access-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 6rem;
}
@media screen and (min-width:992px) {
  .access-section__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.access-section__image {
  width: 100%;
  aspect-ratio: 52/35;
  overflow: hidden;
}
.access-section__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.access-section__info-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
.access-section__info .btn {
  margin-top: 3rem;
  max-width: 260px;
}
.access-section__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.access-section__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00a2d2;
}
.access-section__text {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #222b37;
}
.access-section__map {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 52/15;
}
@media screen and (max-width:767px) {
  .access-section__map {
    aspect-ratio: 4/3;
  }
}
.access-section__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.cm-section {
  margin-top: 2rem;
}
.cm-section .cm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem 3rem;
}
@media screen and (max-width:767px) {
  .cm-section .cm-grid {
    grid-template-columns: 1fr;
  }
}
.cm-section .cm-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
  text-decoration: none;
  color: #222b37;
}
.cm-section .cm-card:hover .cm-thumb img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.cm-section .cm-card:hover .cm-meta__title {
  color: #00a2d2;
}
.cm-section .cm-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 100/51;
}
.cm-section .cm-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.cm-section .cm-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.cm-section .cm-meta__icon {
  height: 1lh;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #00a2d2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.cm-section .cm-meta__icon::after {
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}
.cm-section .cm-meta__title {
  display: inline-block;
}/*# sourceMappingURL=style-information.css.map */