@charset "utf-8";

/*===================
下層共通
===================*/
.inner-1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.inner-1230 {
  width: 92%;
  max-width: 1230px;
  margin: 0 auto;
}
.low {
  padding-top: 230px;
  position: relative;
}
.low__contents {
  padding-bottom: 200px;
}
.low__fvFlex {
  width: 95%;
  margin: 0 0 134px auto;
  display: flex;
  justify-content: space-between;
}
.low__title {
  width: 265px;
}
.low__title--ja {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 2px;
  line-height: 1.75;
  letter-spacing: 0.14em;
}
.low__title--en {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.06em;
}
.low__fvImg {
  width: calc(100% - 265px);
  max-width: 76%;
  position: relative;
}

/* スクロールバー */
.low__scroll {
  position: absolute;
  right: 28px;
  bottom: 28px;
}
.low__scrollText {
  font-size: 11px;
  /* font-family: "adobe-garamond-pro", serif; */
  color: #fff;
  letter-spacing: 0.08em;
}

.scroll {
  margin-bottom: 10px;
  position: relative;
  display: block;
  width: 1px;
  height: 100px;
  margin: 0 0 0 auto;
  background: rgba(255, 255, 255, 0.3); /* 薄めのベースライン */
  overflow: hidden;
}

.scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #fff;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(100px);
  }
}

/* パンクズリスト */
.breadcrumb-vertical {
  position: absolute;
  top: 132px;
  left: 20px;
}

.breadcrumb-vertical ul {
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  display: flex;
  gap: 0 27px;
}

.breadcrumb-vertical li {
  font-size: 11px;
  font-family: "adobe-garamond-pro", serif;
  line-height: 1;
  letter-spacing: 0.06em;
  position: relative;
}

/* 区切り線(ハイフン)を各項目の後に縦向きで表示 */
.breadcrumb-vertical li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 6px;
  background-color: #4a4a4a;
  position: absolute;
  bottom: -16px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.breadcrumb-vertical span {
  color: #003353;
}

/* fv下の横並びのコンテンツ */
.low__detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 256px;
}
.low__detailLeft {
  width: 48%;
  max-width: 522px;
}
.low__detailLeft--en {
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin-bottom: 17px;
}
.low__detailLeft--ja {
  font-size: 33px;
  font-weight: 500;
  line-height: 1.39;
}
.low__detailRight {
  width: 50%;
  max-width: 536px;
  padding-top: 40px;
}
.low__detailRight p {
  font-size: 13px;
  line-height: 2.3;
}

/* 英語タイトル+日本語タイトル+テキスト */
.section-contents {
  width: 100%;
  max-width: 990px;
  margin: 0 0 85px 0;
}
.section-contents__title {
  margin-bottom: 18px;
}
.section-contents__title--en {
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.section-contents__title--ja {
  font-size: 29px;
  font-weight: 500;
  line-height: 2.06;
}
.section-contents__text {
  display: flex;
  justify-content: space-between;
}
.section-contents__text p {
  font-size: 13px;
  line-height: 2.15;
  width: 48%;
  max-width: 437px;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}

@media (max-width: 1000px) {
  .low__fvImg {
    object-fit: cover;
    height: 346px;
  }
}

@media (max-width: 750px) {
  .low {
    padding-top: 270px;
  }

  .low__fvFlex {
    width: calc(100% - 20px);
    display: block;
  }
  .low__title {
    width: 100%;
    margin-bottom: 20px;
  }
  .low__fvImg {
    width: 100%;
    max-width: 100%;
  }

  .low__scroll {
    right: 15px;
    bottom: 15px;
  }
  .scroll {
    height: 80px;
  }
  .scroll::after {
    height: 80px;
  }
  .low__scrollText {
    font-size: 10px;
  }

  .low__detail {
    display: block;
    margin-bottom: 180px;
  }
  .low__detailLeft {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .low__detailRight {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }
  .low__detailLeft--en {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .low__detailLeft--ja {
    font-size: 21px;
  }

  .section-contents__title--en {
    font-size: 11px;
    margin-bottom: 4px;
  }
  .section-contents__title--ja {
    font-size: 19px;
  }
  .section-contents__text {
    display: block;
  }
  .section-contents__text p {
    width: 100%;
    max-width: 100%;
  }
  .section-contents__text p:not(:last-child) {
    margin-bottom: 15px;
  }
}
