@charset "UTF-8";
.p-mv {
  position: relative;
}
.p-mv .p-mv_bg {
  width: 100vw;
  height: calc(100vh - 10rem);
}
.p-mv .p-mv_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .p-mv .p-mv_bg {
    height: auto;
  }
}
/*============================
#mv
============================*/
.en-mv {
  position: relative;
}
.en-mv_bg img {
  width: 100%;
  height: calc(100vh - 10rem);
  object-fit: cover;
}

@media (max-width: 767px) {
  .en-mv_bg img {
    height: calc(100vh - 14rem);
  }
}
.en-gnav {
  position: absolute;
  right: 0;
  bottom: 0;
}
.en-gnav_nav {
  display: flex;
}
.en-gnav_nav_item {
  width: 15rem;
}
.en-gnav_nav_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  background-color: var(--c-green);
  color: var(--c-white);
  font-size: 1.4rem;
  font-family: var(--f-roboto);
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  row-gap: 1rem;
  aspect-ratio: 15/12;
}
@media (hover: hover) {
  .en-gnav_nav_link:hover {
    background-color: #00875a;
  }
}
.en-gnav_nav_link_img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

@media (max-width: 767px) {
  .en-gnav {
    width: 100%;
  }
  .en-gnav_nav_item {
    flex: 1;
    width: auto;
    border-top: solid 1px var(--c-white);
  }
  .en-gnav_nav_item:not(:last-of-type) {
    border-right: solid 1px var(--c-white);
  }
  .en-gnav_nav_link {
    justify-content: flex-start;
    height: 24.7rem;
    padding-top: 5rem;
    font-size: 2.8rem;
    aspect-ratio: unset;
    row-gap: 2rem;
  }
  .en-gnav_nav_link_img {
    width: 8rem;
    height: 8rem;
  }
}
/*============================
#facility
============================*/
.en-top-links {
  position: relative;
  height: 40rem;
}
.en-top-links::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(#000 0%, rgba(248, 248, 248, 0) 100%);
  opacity: 0.6;
  content: "";
}
.en-top-links_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.en-top-links_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.en-top-links_inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  height: 100%;
}

@media (max-width: 767px) {
  .en-top-links {
    height: 50rem;
  }
  .en-top-links .c-btn_wrap {
    justify-content: center;
  }
}
/*============================
#feature
============================*/
.en-feature_list {
  display: flex;
  flex-direction: column;
  counter-reset: counter;
  row-gap: 10rem;
}
.en-feature_media {
  display: flex;
  justify-content: space-between;
  column-gap: 5rem;
}
.en-feature_media:nth-of-type(odd) {
  flex-direction: row;
}
.en-feature_media:nth-of-type(odd) .en-feature_media_img {
  margin-left: calc(50% - 50vw);
}
.en-feature_media:nth-of-type(even) {
  flex-direction: row-reverse;
}
.en-feature_media:nth-of-type(even) .en-feature_media_img {
  margin-right: calc(50% - 50vw);
}
.en-feature_media_img {
  flex-shrink: 0;
  flex-basis: 54.9048316252vw;
}
.en-feature_media_img img {
  width: 100%;
  max-width: unset;
}
.en-feature_media_body {
  flex-grow: 1;
  padding-top: 5rem;
}
.en-feature_media_point {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  color: var(--c-green);
  font-size: 2.5rem;
  line-height: 1.25;
  font-family: var(--f-roboto);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.en-feature_media_point::before {
  font-weight: 300;
  font-size: 5rem;
  counter-increment: counter 1;
  content: "" counter(counter, decimal-leading-zero);
}
.en-feature_media_ttl {
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 1.1666666667;
  font-family: var(--f-roboto);
  letter-spacing: 0.02em;
}
.en-feature_media_txt {
  line-height: 1.375;
  font-family: var(--f-roboto);
}

@media (max-width: 767px) {
  .en-feature_list {
    row-gap: 15rem;
  }
  .en-feature_media {
    row-gap: 3rem;
  }
  .en-feature_media:nth-of-type(odd) {
    flex-direction: column;
  }
  .en-feature_media:nth-of-type(odd) .en-feature_media_img {
    margin-left: -5rem;
  }
  .en-feature_media:nth-of-type(even) {
    flex-direction: column;
  }
  .en-feature_media:nth-of-type(even) .en-feature_media_img {
    margin-right: unset;
    margin-left: -5rem;
  }
  .en-feature_media_img {
    flex-basis: unset;
    width: calc(100vw - 5rem);
    max-width: unset;
  }
  .en-feature_media_body {
    padding-top: 0;
  }
  .en-feature_media_point {
    margin-bottom: 2rem;
    font-size: 5rem;
  }
  .en-feature_media_point::before {
    font-size: 7rem;
  }
  .en-feature_media_ttl {
    margin-bottom: 2.5rem;
    font-size: 6rem;
  }
}
/*============================
#access
============================*/
.en-access picture {
  background-color: var(--c-white);
}
.en-access picture img {
  margin-inline: auto;
}
.en-access .en-access_dl {
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 0.5rem 0;
}
.en-access .en-access_dl > dt {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem;
  background-color: var(--c-green);
  color: var(--c-white);
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.en-access .en-access_dl > dd {
  padding: 3rem;
  background-color: var(--c-white);
}
.en-access .en-access_dl > dd p {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.06em;
}
.en-access .en-access_dl > dd ul li {
  position: relative;
  padding-left: 1em;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
}
.en-access .en-access_dl > dd ul li::before {
  position: absolute;
  left: 0;
  content: "・";
}
.en-access .en-access_dl > dd a {
  text-decoration: none;
}
.en-access .en-access_dl > dd a[target=_blank]::after {
  display: inline-block;
  width: 1.5em;
  height: 1em;
  margin-left: 0.25em;
  background: url(../images/common/blank_icon.svg) no-repeat center/contain;
  vertical-align: middle;
  content: "";
}

@media (max-width: 767px) {
  .en-access .en-access_dl {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    gap: 0 0;
  }
  .en-access .en-access_dl > dt {
    min-height: 15rem;
    padding: 2rem;
    font-size: 3.6rem;
  }
  .en-access .en-access_dl > dd {
    padding: 5rem;
    background-color: var(--c-white);
  }
  .en-access .en-access_dl > dd:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  .en-access .en-access_dl > dd p {
    font-size: 3.2rem;
  }
  .en-access .en-access_dl > dd ul li {
    font-size: 2.8rem;
  }
  .en-access .en-access_dl > dd a {
    text-decoration: none;
  }
  .en-access .en-access_dl > dd a[target=_blank]::after {
    width: 3rem;
    height: 2rem;
    margin-left: 0.25em;
  }
}/*# sourceMappingURL=en.css.map */