.top-kv {
  /* 最終フォールバック（とても古い環境向け） */
  background: url("../img/common/bg_header_01.jpg") center/cover no-repeat;
  /* 古めのSafari向け */
  background: -webkit-image-set(url("../img/common/bg_header_01.webp") type("image/webp") 1x,
      url("../img/common/bg_header_01.jpg") type("image/jpeg") 1x) center/cover no-repeat;

  /* 標準（対応ブラウザはここを使う） */
  background: image-set(url("../img/common/bg_header_01.webp") type("image/webp") 1x,
      url("../img/common/bg_header_01.jpg") type("image/jpeg") 1x) center/cover no-repeat;
  padding: 0 40px;
  padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .top-kv {
    padding: 0 0 75px;
    min-width: auto;
  }
}

.top-kv__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .top-kv__img-wrap {
    margin-top: 119px;
    width: 100vw;
    height: 455px;
    aspect-ratio: unset;
    overflow: unset;
  }
}

.top-kv__img {
  position: absolute;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  width: 100%;
  height: 100%;
}

.top-kv__img.is-show {
  opacity: 1;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .top-kv__img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.top-kv__credit {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #fff;
  font-size: 12px;
  text-align: right;
  white-space: pre-line;
  z-index: 10;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.top-kv__credit.is-show {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .top-kv__credit {
    font-size: 10px;
    bottom: 20px;
    right: 15px;
  }
}


.top-kv .top-head {
  background: unset;
  padding: 22px 0 0;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}

.top-kv .top-head.is-scrolled {
  background-color: rgba(43, 59, 58, 0.95);
}

.top-kv__pickup {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 46px;
  margin-left: 67px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top-kv__pickup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 400px;
    margin-top: 0px;
    padding: 0 15px;
    margin-left: 0;
  }
}

.top-kv__pickup>p {
  font-size: 24px;
  font-weight: 300;
  padding: 25px 70px 25px 0;
  border-right: solid 1px #fff;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .top-kv__pickup>p {
    font-size: 22px;
    border-right: unset;
    padding: 25px 0 0;
  }
}

.top-kv__pickup li a {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  gap: 0 1em;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .top-kv__pickup li a {
    margin-top: 14px;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: unset;
  }
}

.top-kv__pickup li:nth-of-type(2) {
  margin-top: 30px;
}

.top-kv__pickup li span {
  font-size: 14px;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .top-kv__pickup li span {
    margin-bottom: 6px;
    margin-left: 0;
  }
}

.news-btn {
  position: absolute;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  padding-right: 30px;
  padding-bottom: 6px;
  text-decoration: none;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .news-btn {
    padding-right: 28px;
    padding-bottom: 0px;
    bottom: -45px;
    right: 15px;
    font-size: 13px;
  }
}

.news-btn::before,
.news-btn::after {
  content: "";
  position: absolute;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.news-btn::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}

.news-btn::after {
  bottom: 0;
  right: 0;
  width: 20px;
  height: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@media screen and (max-width: 767px) {
  .news-btn::after {
    width: 11px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
}

.top-wrapper {
  background: #F9F6ED;
  padding-bottom: 200px;
}

@media screen and (max-width: 767px) {
  .top-wrapper {
    padding-bottom: 125px;
    min-width: auto;
  }
}

.top-wrapper h1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 50px;
  font-weight: 300;
  margin-left: -17px;
  font-size: 60px;
  padding: 100px 0 80px;
}

.top-wrapper h1 span {
  font-size: 39px;
  color: #264747;
  font-family: "Poppins";
  line-height: 60px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .top-wrapper h1 {
    font-size: 8vw;
    padding: 14vw 0 10vw 0;
    margin-left: 0;
  }

  .top-wrapper h1 span {
    font-size: 18px;
    line-height: 30px;
  }
}

.bg-top .middle {
  color: #959595;
}

.bg-top .under {
  line-height: .8;
}

@media screen and (max-width: 767px) {
  .bg-top .under {
    text-align: left;
    font-size: 45px;
    color: #9BC0B4;
    padding-top: 28vw;
  }
}



.box01._02 {
  position: relative;
  z-index: 1;
  /* 最終フォールバック */
  background: url("../img/top/bg_top_05.png") center/100% 100% no-repeat;
  /* 古めの Safari 用 */
  background: -webkit-image-set(url("../img/top/bg_top_05.webp") type("image/webp") 1x,
      url("../img/top/bg_top_05.png") type("image/png") 1x) center/100% 100% no-repeat;
  /* 標準実装 */
  background: image-set(url("../img/top/bg_top_05.webp") type("image/webp") 1x,
      url("../img/top/bg_top_05.png") type("image/png") 1x) center/100% 100% no-repeat;
  padding: 200px 0 300px;
  margin: -130px 0 0 0;
}

.box01:first-of-type {
  margin-top: 0;
  /* 最終フォールバック */
  background: url("../img/top/bg_top_01.jpg") center/100% 100% no-repeat;
  /* 古めの Safari 用 */
  background: -webkit-image-set(url("../img/top/bg_top_01.webp") type("image/webp") 1x,
      url("../img/top/bg_top_01.jpg") type("image/jpeg") 1x) center/100% 100% no-repeat;
  /* 標準実装 */
  background: image-set(url("../img/top/bg_top_01.webp") type("image/webp") 1x,
      url("../img/top/bg_top_01.jpg") type("image/jpeg") 1x) center/100% 100% no-repeat;
  padding: 200px 0 250px;
}

.box01._03 {
  position: relative;
  z-index: 3;
  /* 最終フォールバック */
  background: url("../img/top/bg_top_06.png") center/100% 100% no-repeat;
  /* 古めの Safari 用 */
  background: -webkit-image-set(url("../img/top/bg_top_06.webp") type("image/webp") 1x,
      url("../img/top/bg_top_06.png") type("image/png") 1x) center/100% 100% no-repeat;
  /* 標準実装 */
  background: image-set(url("../img/top/bg_top_06.webp") type("image/webp") 1x,
      url("../img/top/bg_top_06.png") type("image/png") 1x) center/100% 100% no-repeat;

  margin: -180px 0 0 0;
  padding: 210px 0 300px;
}

@media screen and (max-width: 767px) {
  .box01._02 {
    position: relative;
    z-index: 1;
    /* 最終フォールバック */
    background: url("../img/top/bg_top_05_sp.png") center/100% 100% no-repeat;
    /* 古めの Safari 用 */
    background: -webkit-image-set(url("../img/top/bg_top_05_sp.webp") type("image/webp") 1x,
        url("../img/top/bg_top_05_sp.png") type("image/png") 1x) center/100% 100% no-repeat;
    /* 標準実装 */
    background: image-set(url("../img/top/bg_top_05_sp.webp") type("image/webp") 1x,
        url("../img/top/bg_top_05_sp.png") type("image/png") 1x) center/100% 100% no-repeat;
    padding: 0 0 42vw;
    margin: -27vw 0 0 0;
  }

  .box01:first-of-type {
    margin-top: unset;
    padding: 20px 0 36vw;
  }

  .box01._03 {
    position: relative;
    z-index: 3;
    /* 最終フォールバック */
    background: url("../img/top/bg_top_06_sp.png") center/100% 100% no-repeat;
    /* 古めの Safari 用 */
    background: -webkit-image-set(url("../img/top/bg_top_06_sp.webp") type("image/webp") 1x,
        url("../img/top/bg_top_06_sp.png") type("image/png") 1x) center/100% 100% no-repeat;
    /* 標準実装 */
    background: image-set(url("../img/top/bg_top_06_sp.webp") type("image/webp") 1x,
        url("../img/top/bg_top_06_sp.png") type("image/png") 1x) center/100% 100% no-repeat;

    margin: -24vw 0 0 0;
    padding: 0 0 38vw;
  }
}

@media screen and (max-width: 767px) {
  .box01 {
    margin-top: 50px;
  }
}

.box01 h2 {
  font-family: "Poppins";
  font-weight: 100;
  font-size: 135px;
  color: #749188;
  text-align: left;
  line-height: .8;
  margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .box01 h2 {
    font-size: 50px;
    padding-top: 40vw;
    margin-bottom: 30px;
  }
}

.box01__internal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 100px;
  margin-top: 20px;
}

.box01__internal>img {
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .box01__internal {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .box01__internal img {
    margin-top: 50px;
  }
}

.box01:nth-of-type(2) .box01__internal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.box01:nth-of-type(2) .box01__item {
  color: #333;
  padding-top: 15px;
}

.box01 .under02 {
  gap: 0;
}

.box01__item {
  color: #fff;
  max-width: 550px;
}

.box01__item>p {
  line-height: 32px;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .box01__item>p {
    font-size: 14px;
    line-height: 22px;
  }
}

.box01__item>h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 44px;
  font-weight: 400;
  position: relative;
}

.box01__item>h3::before {
  content: "";
  top: 0;
  left: 0;
  border-top: 2px solid;
  width: 105px;
  margin-bottom: 20px;
}

.box01__item>h3 span {
  font-family: "Poppins";
  font-size: 31px;
}

@media screen and (max-width: 767px) {
  .box01__item>h3 {
    font-size: 36px;
  }

  .box01__item>h3 span {
    font-size: 26px;
    margin-top: 10px;
  }
}

.box01__item .btn-top {
  margin-top: 50px;
  max-width: 328px;
  font-size: 20px;
  font-weight: 400;
  border-radius: 47.5px;
  padding: 17px 5px;
}

.box01__item .btn-top::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  background: url(../img/common/icn_arrow_01.svg) center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .box01__item .btn-top::after {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .box01__item .btn-top {
    margin-top: 25px;
    max-width: 240px;
    font-size: 14px;
    padding: 9px 5px;
  }
}

.box02 h2 {
  font-size: 44px;
  text-align: center;
  font-weight: 400;
  margin-top: 74px;
}

@media screen and (max-width: 767px) {
  .box02 h2 {
    font-size: 35px;
    margin-top: 0px;
  }

  .box02 {
    padding-top: 10vw;
  }
}

.box02__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 26px;
  margin-top: 60px;
}

.box02__card .c-member-card {
  width: 280px;
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
  -webkit-flex-direction: unset;
  -ms-flex-direction: unset;
  flex-direction: unset;
  overflow: unset;
}

.box02__card .c-member-card__label {
  font-size: 30px;
  padding-top: 41px;
}

.c-header__wrapper03 {
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .box02__card {
    gap: 0px 15px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .box02__card .c-member-card {
    width: calc(50% - 15px);
    height: auto;
  }

  .box02__card .c-member-card__label {
    font-size: 17px;
    padding-top: 10px;
  }

  .c-member-card__bottom {
    padding: 10px 10px 20px 10px;
  }
}

.top-btn {
  display: contents;
}

/* 各セクションふわっと表示 */
.fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

/* 英字対応 */
@media screen and (max-width: 767px) {
  .translatepress-en_US .box02__card .c-member-card__label {
    font-size: 17px;
    padding-top: 10px;
    line-height: 1.2;
  }
}

.translatepress-en_US .box02__card .c-member-card {
  height: unset;
}