@charset "utf-8";

html {
  overflow-x: hidden;
}

/* basic */
html,
body {
  font-size: 17px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.88;
  color: #1f1f1f;
}

.l-inner {
  max-width: 986px;
  margin: 0 auto;
}

.l-bg:not(.p-area_top) {
  position: relative;
  width: 100%;
  height: 50%;
  background-position: left center;
  background-size: cover;
  background-attachment: fixed;
}

.c-title01 {
  font-size: 50px;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: source-han-serif-japanese, serif;}

/* KV */

.p-top_kv {
  text-align: center;
  color: #000;
  position: relative;
}

.p-area_top .p-top_kv {
  height: 800px;
}

.p-area_top__bg-wrap {
  height: 820px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.p-area_top__bg-wrap > div {
  background-size: cover;
  background-position: center bottom;
}

.p-area_top__bg {
  height: 100%;
}

@media screen and (max-width: 1920px) {
  .p-area_top .p-top_kv {
    height: 640px;
  }

  .p-area_top__bg-wrap {
    height: 660px;
  }
}

@media screen and (max-width: 1440px) {
  .p-area_top .p-top_kv {
    height: 580px;
  }

  .p-area_top__bg-wrap {
    height: 600px;
  }
}

.p-top_kv__container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  margin-top: 100px;
  padding: 0 40px;
}

.p-top_kv__container--area {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  margin-top: 100px;
  padding: 0 40px;
}

.l-bg:not(.p-area_top) .p-top_kv__container--area {
  height: calc(100vh - 240px);
}

.p-top_kv__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 28px;
  font-weight: 700;
}

.p-top_kv__area_tag {
  background-color: #000;
  color: #fff;
  text-align: center;
  height: 90px;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "noto-sans-cjk-jp", sans-serif;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.p-top__middle_catch {
  letter-spacing: 0.07em;
  line-height: 1;
  padding: 20px 70px;
  display: inline-block;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background-color: rgba(255, 255, 255, 0.3);
}

.p-top__bottom_catch {
  margin-top: 30px;
  line-height: 1;
  letter-spacing: 0.24em;
  font-size: 50px;
  font-weight: 500;
  font-family: "noto-sans-cjk-jp", sans-serif;
}

.p-top__bottom_catch .p-top__bottom_catch__r {
  margin-left: 0.08em;
  position: relative;
  top: -0.13em;
  vertical-align: middle;
  font-size: 92px;
  font-weight: 400;
}

.p-top__upper_catch {
  font-size: 31px;
  letter-spacing: .16em;
  text-align: left;
}

.p-top_kv__lead {
  font-family: "noto-sans-cjk-jp", sans-serif;
  display: inline-block;
  margin: 276px auto 0;
}

.p-top_kv__lead_text {
  line-height: 2.05;
  text-align: left;
}

.p-top_kv__lead_text.make_space {
  margin: 40px 0;
}

.p-top_kv__image_wrapper {
  margin-top: 200px;
}

.p-top_kv__image {
  width: 100%;
  padding-bottom: 40px;
}

.scrolldown {
  width: 2px;
  height: 145px;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  left: 5%;
  top: 30%;
}

.scrolldown::after {
  content: "";
  position: absolute;
  left: 5%;
  top: 0%;
  width: 2px;
  height: 43px;
  background-color: #fff;
  opacity: 1;
  animation: pathmove 1.4s ease-in-out infinite;
}

@keyframes pathmove {
  0% {
    height: 0px;
    top: 0;
    opacity: 1;
  }

  30% {
    height: 43px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 145px;
    opacity: 0;
  }
}

/* findArea */
.p-findArea {
  font-family: "noto-sans-cjk-jp", sans-serif;
  position: fixed;
  z-index: 900;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(30px);
  border-radius: 13px;
  width: 550px;
  transform: translate(175px, 140px);
  transition: all 0.6s ease-in-out;
}

.p-findArea.open {
  transform: translate(20px, 20px);
}

.p-findArea__head {
  padding: 13px 45px 13px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.p-findArea__title {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.p-findArea__title::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../images/search_icon.svg);
  background-size: cover;
}

.close_btn {
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.close_btn::before,
.close_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  /* 棒の幅（太さ） */
  height: 16px;
  /* 棒の高さ */
  background: #fff;
}

.close_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-findArea__linkWrapper {
  padding: 0 45px 33px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-findArea__link {
  line-height: 1;
  text-align: center;
  display: inline-block;
  width: 110px;
  padding: 15px 0;
  background-color: #fff;
  border-radius: 2px;
  transition: all .3s;
}

.p-findArea__link:hover {
  color: #fff;
  background-color: #707070;
}

/* Feature */

.p-feature {
  background-color: #fff;
  padding: 100px 0 164px;
  font-family: "noto-sans-cjk-jp", sans-serif;
}

.p-feature__title {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 65px;
  font-weight: 700;
  line-height: 1;
  color: #DBDBDB;
  text-align: center;
}

.p-feature__subtitle {
  font-size: 19px;
  font-weight: 700;
  color: #DBDBDB;
  text-align: center;
}

.p-feature__listWrapper {
  color: #000;
  font-weight: 700;
  margin-top: 40px;
}

.p-feature__list {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 530px;
  margin: 0 auto;
  padding-left: 125px;
  position: relative;
}

.p-feature__list_number {
  font-size: 40px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.p-feature__list_text {
  font-size: 22px;
}

.p-feature__list_lead {
  text-align: center;
  margin-top: 45px;
}

.p-feature__detail {
  margin-top: 120px;
}

.p-feature__item:not(:first-child) {
  margin-top: 150px;
}

.p-feature__item_title_wrapper {
  display: flex;
  align-items: center;
  gap: 37px;
}

/* .p-feature__item_title_number {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 106px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

.p-feature__item_title_number::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 100px;
  background-color: #000;
  transform: rotate(20deg);
  position: absolute;
  top: 15px;
  right: -5px;
} */

.p-feature__item_title_text {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.022em;
}

.p-feature__img_wrapper {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.p-feature__img_wrapper .p-feature__img {
  width: 100%;
}

/* .p-feature__img_wrapper .p-feature__img:nth-child(2) {
  width: 63%;
}

.p-feature__img_wrapper .p-feature__img:nth-child(3) {
  width: 36.49%;
} */

.p-feature__img.two_column:nth-child(2) {
  width: 63%;
}

.p-feature__img.two_column:nth-child(3) {
  width: 36.49%;
}

.p-feature__text {
  margin-top: 30px;
}

.p-feature__tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-feature__tag {
  font-size: 15px;
  line-height: 1;
  border: 1px solid #707070;
  padding: 7px 12px;
}

.p-feature__note {
  font-size: 15px;
}

.p-feature__logo {
  margin-top: 45px;
  text-align: center;
}

/* Area */
.p-area {
  padding: 60px 0 90px;
  background-color: #707070;
  font-family: "noto-sans-cjk-jp", sans-serif;
}

.p-area__title {
  font-size: 22px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-area__title::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  background-image: url(/common/images/search_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.p-area__linkWrapper {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  gap:10px;
}

.p-area__btn {
  line-height: 1;
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 23px 0;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  position: relative;
  transition: all .3s;
}

/* link_to_top */
.p-link_to_top {
  padding: 65px 0;
  background-color: #DEDEDE;
}

.p-link_to_top__btnWrapper {
  width: 750px;
  text-align: center;
  margin: 0 auto;
}

.p-link_to_top__btn {
  background-color: #fff;
  display: block;
  transition: all 0.3s;
}

.p-link_to_top__btn:hover {
  background-color: rgba(114, 124, 124, 0.35);
}

/* footer */
.c-footer {
  color: #000;
  padding: 48px 0 60px;
  font-family: "noto-sans-cjk-jp", sans-serif;
  background-color: #DBDBDB;
}

.c-footer__navWrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}

.c-footer__link {
  font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  align-items: center;
  width: 440px;
  padding: 15px 0 15px 10px;
  border-top: 1px solid #707070;
  position: relative;
  transition: all 0.3s;
}

.c-footer__link::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-image: url(../images/arrow_right_black.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  transition: all 0.3s;
}

.c-footer__link:hover {
  opacity: 0.6;
}

.c-footer__link:hover::after {
  right: 10px;
}

.c-footer__link:last-child {
  border-bottom: 1px solid #707070;
}

.c-footer__link_to_top {
  text-align: center;
  margin-top: 48px;
}

.c-footer__copyright {
  display: block;
  text-align: center;
  margin-top: 23px;
}

/* アニメーションの基本設定 */
.js-fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}

.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeDown {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 1s, transform 1s;
}

.js-fadeDown.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeLeft {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1s, transform 1s;
}

.js-fadeLeft.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.js-fadeRight {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1s, transform 1s;
}

.js-fadeRight.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.js-fadeIn {
  opacity: 0;
  transition: opacity 1s, transform 1.5s;
}

.js-fadeIn.is-inview {
  opacity: 1;
}

/* KV アニメーションの設定 */
.js-upper_catch-textAnimation span {
  opacity: 0;
}

.js-middle_catch-fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: .8s;
  animation-delay: 2.6s;
  animation-fill-mode: forwards;
  opacity: 0;
  margin-top: 26px;
}

.js-bottom_catch-fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: .8s;
  animation-delay: 2.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-fadeUp.is-inview.lead_text_1 {
  transition-delay: .1s;
}

.js-fadeUp.is-inview.lead_text_2 {
  transition-delay: .2s;
}

.js-fadeUp.is-inview.lead_text_3 {
  transition-delay: .3s;
}

/* Feature アニメーションの設定 */
.p-feature__title.js-fadeLeft.is-inview {
  transition-delay: .1s;
}

.js-boder-bottom.is-inview::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: solid 2px #dedede;
  animation: border_anim 1s linear forwards;
}

@keyframes border_anim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.p-feature__list_number.number_01.js-fadeIn.is-inview {
  transition-delay: 1s;
}

.p-feature__list_text.number_01.js-fadeIn.is-inview {
  transition-delay: 1.2s;
}

.p-feature__list_number.number_02.js-fadeIn.is-inview {
  transition-delay: 1.4s;
}

.p-feature__list_text.number_02.js-fadeIn.is-inview {
  transition-delay: 1.6s;
}

.p-feature__list_number.number_03.js-fadeIn.is-inview {
  transition-delay: 1.8s;
}

.p-feature__list_text.number_03.js-fadeIn.is-inview {
  transition-delay: 2s;
}

/* Area アニメーションの設定 */
.p-area__btn-2.js-fadeUp.is-inview {
  transition-delay: .1s;
}

.p-area__btn-3.js-fadeUp.is-inview {
  transition-delay: .2s;
}

.p-area__btn-4.js-fadeUp.is-inview {
  transition-delay: .3s;
}

.p-area__btn-5.js-fadeUp.is-inview {
  transition-delay: .4s;
}

.p-area__btn-6.js-fadeUp.is-inview {
  transition-delay: .5s;
}

.p-area__btn-7.js-fadeUp.is-inview {
  transition-delay: .6s;
}

.p-area__btn-8.js-fadeUp.is-inview {
  transition-delay: .7s;
}

.p-area__btn-9.js-fadeUp.is-inview {
  transition-delay: .8s;
}



@media (min-width:1441px) {
  .p-feature__itemWrapper {
    max-width: 1350px;
    margin: 110px auto;
  }
}

/*  footer breadcrumb */


.breadcrumb {
  font-size: 13px;
  line-height: 1.6;
  padding: 30px 0 0;
}

.breadcrumb__list {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb__item:after {
  content: '/';
  display: inline-block;
  margin: 0 .42em;
}

.breadcrumb__item:last-child:after {
  display: none;
}

.breadcrumb__link {
  text-decoration: underline;
  transition: all .3s;
}

.breadcrumb__link:hover {
  opacity: .6;
  text-decoration: none;
}

.p-footer__outroduction {
  padding: 40px 0;
  background-color: #fff;
  font-size: 13px;
  font-family: "noto-sans-cjk-jp", sans-serif;
}