@charset "UTF-8";
/* CSS Document */
.spmask {
  display: block;
}

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/*------------------------*/
#kv {
  position: relative;
  height: 300vh;
}

.kv_wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background-color: var(--black);
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}
.kv_wrap.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.main_imgBox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main_imgBox {
    display: none;
  }
}
.main_imgBox .main_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform-origin: center center;
  will-change: transform, opacity;
}
.main_imgBox .main_img:nth-of-type(1) {
  background-image: url("../images/kv01.jpg");
}
.main_imgBox .main_img:nth-of-type(2) {
  background-image: url("../images/kv02.jpg");
}
.main_imgBox .main_img:nth-of-type(3) {
  background-image: url("../images/kv03.jpg");
}
.main_imgBox .main_img:nth-of-type(4) {
  background-image: url("../images/kv04.jpg");
}
.main_imgBox .main_img:nth-of-type(5) {
  background-image: url("../images/kv05.jpg");
}

.main_imgBox_sp {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main_imgBox_sp {
    display: block;
  }
}
.main_imgBox_sp .main_img_sp {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform-origin: center center;
  will-change: transform, opacity;
}
.main_imgBox_sp .main_img_sp:nth-of-type(1) {
  background-image: url("../images/kv01sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(2) {
  background-image: url("../images/kv02sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(3) {
  background-image: url("../images/kv03sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(4) {
  background-image: url("../images/kv04sp.jpg");
}
.main_imgBox_sp .main_img_sp:nth-of-type(5) {
  background-image: url("../images/kv05sp.jpg");
}

.kv_figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.kv_figure .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.kv_figure .top_tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18rem 28rem 0 0;
  border-color: rgb(31, 133, 82) transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .kv_figure .top_tri {
    border-width: 8rem 12rem 0 0;
  }
}
.kv_figure .top_line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  background-color: var(--green);
}
@media screen and (max-width: 767px) {
  .kv_figure .top_line {
    height: 0.6rem;
  }
}
.kv_figure .bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.kv_figure .bottom_line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  background-color: var(--green);
}
@media screen and (max-width: 767px) {
  .kv_figure .bottom_line {
    height: 0.6rem;
  }
}
.kv_figure .bottom_tri {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 18rem 28rem;
  border-color: transparent transparent rgb(31, 133, 82) transparent;
}
@media screen and (max-width: 767px) {
  .kv_figure .bottom_tri {
    border-width: 0 0 8rem 12rem;
  }
}

.kv_catch {
  position: absolute;
  bottom: 5%;
  right: 3%;
  z-index: 10;
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .kv_catch {
    right: 3%;
  }
}
@media screen and (max-width: 767px) {
  .kv_catch {
    top: 52%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
  }
}

.kv_catch_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .kv_catch_wrap {
    align-items: center;
  }
}
.kv_catch_wrap p.copy {
  font-size: clamp(5rem, 8vw, 10rem);
  font-weight: 600;
  color: #fff;
  line-height: 0.96;
  font-feature-settings: "palt";
  letter-spacing: -0.04em;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .kv_catch_wrap p.copy {
    font-size: 16vw !important;
    margin-bottom: 0.5rem;
  }
}
.kv_catch_wrap p.copy span {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.kv_catch_wrap p.copy.en {
  font-family: "Montserrat", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .kv_catch_wrap p.copy {
    font-size: clamp(4rem, 6vw, 7rem);
  }
}
@media screen and (max-width: 767px) {
  .kv_catch_wrap p.copy {
    font-size: clamp(4.4rem, 13vw, 6rem);
  }
}
.kv_catch_wrap p.copy.is-show span {
  opacity: 1;
  transform: translateY(0);
}
.kv_catch_wrap p.copy.is-show span:nth-child(1) {
  transition-delay: 0.04s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(2) {
  transition-delay: 0.08s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(3) {
  transition-delay: 0.12s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(4) {
  transition-delay: 0.16s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(5) {
  transition-delay: 0.2s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(6) {
  transition-delay: 0.24s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(7) {
  transition-delay: 0.28s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(8) {
  transition-delay: 0.32s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(9) {
  transition-delay: 0.36s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(10) {
  transition-delay: 0.4s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(11) {
  transition-delay: 0.44s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(12) {
  transition-delay: 0.48s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(13) {
  transition-delay: 0.52s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(14) {
  transition-delay: 0.56s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(15) {
  transition-delay: 0.6s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(16) {
  transition-delay: 0.64s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(17) {
  transition-delay: 0.68s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(18) {
  transition-delay: 0.72s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(19) {
  transition-delay: 0.76s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(20) {
  transition-delay: 0.8s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(21) {
  transition-delay: 0.84s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(22) {
  transition-delay: 0.88s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(23) {
  transition-delay: 0.92s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(24) {
  transition-delay: 0.96s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(25) {
  transition-delay: 1s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(26) {
  transition-delay: 1.04s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(27) {
  transition-delay: 1.08s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(28) {
  transition-delay: 1.12s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(29) {
  transition-delay: 1.16s;
}
.kv_catch_wrap p.copy.is-show span:nth-child(30) {
  transition-delay: 1.2s;
}
.kv_catch_wrap p.sub {
  font-size: clamp(1.2rem, 1.4vw, 2.6rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  margin-top: 1rem;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media screen and (max-width: 767px) {
  .kv_catch_wrap p.sub {
    font-size: 1.6rem;
    margin-top: 0.8rem;
  }
}
.kv_catch_wrap p.sub.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*-------Contents共通------------*/
span.en {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

a.external {
  position: relative;
}
a.external::after {
  content: "";
  display: inline-block;
  background: url("../common/images/external_w.svg") no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0.2rem;
  margin-right: -1.2rem;
  width: 1rem;
  height: 1rem;
}

p.external {
  position: relative;
}
p.external::after {
  content: "";
  display: inline-block;
  background: url("../common/images/external_w.svg") no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -0.1rem;
  margin-right: -1.2rem;
  width: 1rem;
  height: 1rem;
}

.contents_header {
  position: relative;
  width: 100%;
  margin-bottom: 6rem;
  color: #fff;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .contents_header {
    margin-left: 0;
    margin-bottom: 4rem;
  }
}
.contents_header.blue {
  color: var(--green);
}
.contents_header-jp {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .contents_header-jp {
    font-size: 1.2rem;
  }
}
.contents_header-en {
  font-size: 9rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .contents_header-en {
    font-size: 4rem;
  }
}

.btnLink {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.btnLink::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  top: 1.6rem;
  right: 2rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateX(0) rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.btnLink:hover::after {
  transform: translateX(0.4rem) rotate(45deg);
}

/*------------------------*/
.message {
  position: relative;
  width: 100%;
  -webkit-padding-before: 2rem;
          padding-block-start: 2rem;
  -webkit-padding-after: 12rem;
          padding-block-end: 12rem;
  background-color: #fff;
  margin-top: -100vh;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .message {
    -webkit-padding-before: 2rem;
            padding-block-start: 2rem;
    -webkit-padding-after: 8rem;
            padding-block-end: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .message {
    -webkit-padding-before: 2rem;
            padding-block-start: 2rem;
    -webkit-padding-after: 6rem;
            padding-block-end: 6rem;
  }
}
.message::before {
  content: "";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 10rem;
  background-color: #fff;
  z-index: 0;
}
.message_layout {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .message_layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
}
.message_wrap {
  grid-column: 2;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-inline: 1rem;
}
@media screen and (max-width: 767px) {
  .message_wrap {
    grid-column: 1;
    grid-row: 2;
  }
}
.message_wrap .heading {
  font-size: clamp(2rem, 2.2vw, 2.6rem);
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .message_wrap .heading {
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
}
.message_wrap .text {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 2.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .message_wrap .text {
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.8;
  }
}

.message_col--left {
  grid-column: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .message_col--left {
    grid-column: 1;
    grid-row: 1;
    flex-wrap: wrap;
    gap: 2rem;
    padding-block: 4rem;
  }
}

.message_col--right {
  grid-column: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .message_col--right {
    grid-column: 1;
    grid-row: 3;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.parallax_group {
  position: relative;
}

.message_img_item {
  position: relative;
  will-change: transform;
  overflow: visible;
}
.message_img_item img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.message_img_item--tl {
  position: relative;
  width: 88%;
  aspect-ratio: 4/3;
  margin-left: -30%;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .message_img_item--tl {
    width: 50%;
    margin-left: 1%;
  }
}
.message_img_item--bl {
  position: relative;
  width: 60%;
  aspect-ratio: 3/4;
  margin-left: 23%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .message_img_item--bl {
    width: 40%;
    margin-left: 60%;
    margin-top: -50%;
  }
}
.message_img_item--tr {
  position: relative;
  width: 80%;
  aspect-ratio: 16/9;
  margin-left: 30%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .message_img_item--tr {
    width: 50%;
    margin-left: 2%;
  }
}
.message_img_item--br {
  position: relative;
  width: 80%;
  aspect-ratio: 4/3;
  margin-left: 10%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .message_img_item--br {
    width: 60%;
    margin-left: 40%;
    margin-top: -28%;
  }
}

.accent_square {
  position: absolute;
  background-color: var(--green);
  will-change: transform;
  z-index: 1;
}
.message_img_item--tl .accent_square {
  width: 12rem;
  height: 8rem;
  bottom: -2rem;
  right: -2rem;
}
.message_img_item--bl .accent_square {
  width: 3.2rem;
  height: 3.2rem;
  bottom: -1.2rem;
  left: -1.2rem;
}
.message_img_item--br .accent_square {
  width: 14rem;
  height: 12rem;
  bottom: -4rem;
  right: 12rem;
}

.accent_square--rt {
  position: absolute;
  background-color: var(--green);
  will-change: transform;
  z-index: 1;
  width: 4.4rem;
  height: 4.4rem;
  top: 0;
  right: 0;
}

/*------------------------*/
.company {
  position: relative;
  background-color: var(--green);
  width: 100%;
  padding-block: 12rem;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company {
    padding-block: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .company {
    padding-block: 8rem;
  }
}
.company .inner {
  position: relative;
}

.company_wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 6rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company_wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.linkBox {
  list-style: none;
  margin: 0;
  padding: 0;
}
.linkBox li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.linkBox li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-block: 2.4rem;
  padding-inline: 0.4rem;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .linkBox li a {
    padding-block: 2rem;
  }
}
.linkBox li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 49%;
  right: 2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateX(0) rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.linkBox li a:hover::after {
  transform: translateX(0.4rem) rotate(45deg);
}

.company_wrap .photo img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .company_wrap .photo {
    order: -1;
  }
}

/*------------------------*/
.business {
  position: relative;
  height: 350vh;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .business {
    height: auto;
  }
}
.business_sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-padding-before: 10rem;
          padding-block-start: 10rem;
  -webkit-padding-after: 10rem;
          padding-block-end: 10rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .business_sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
  }
}
.business_sticky .business_bg {
  position: absolute;
  inset: 0;
  background: url("../images/business_bg.jpg") no-repeat center center;
  background-size: cover;
  z-index: 0;
  will-change: filter;
}
@media screen and (max-width: 767px) {
  .business_sticky .business_bg {
    background-position: 64% 50%;
  }
}
.business_sticky .business_overlay {
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0;
  z-index: 1;
  will-change: opacity;
}
.business .inner {
  position: relative;
  z-index: 2;
}
.business .contents_header {
  margin-bottom: 4rem;
  opacity: 0;
  will-change: opacity, transform;
  transform: translateY(2rem);
}
.business_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  opacity: 0;
  will-change: opacity, transform;
}
@media screen and (max-width: 767px) {
  .business_wrap {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.business .box {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.business .box .photo {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: clamp(20rem, 30vh, 40rem);
  overflow: hidden;
}
.business .box .photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5rem 5rem 0 0;
  border-color: var(--green) transparent transparent transparent;
}
.business .box .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.business .box:hover .photo img {
  transform: scale(1.03);
}
.business .box:hover .btnLink::after {
  transform: translateX(0.4rem) rotate(45deg);
}
.business .box .infoBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .business .box .infoBox {
    padding-block: 1rem;
  }
}
.business .box .infoBox .hd {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
  color: #fff;
}
.business .box .infoBox .text {
  color: rgba(255, 255, 255, 0.85);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .business .box .infoBox .btn {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .business .box .infoBox .btn {
    padding-top: 0;
  }
}
.business .box .infoBox .btnLink {
  width: 14rem;
  background-color: transparent;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: solid 1px #6e6e6e;
  padding-block: 1rem;
}
@media screen and (max-width: 767px) {
  .business .box .infoBox .btnLink {
    padding-block: 0.8rem;
  }
}
.business .box .infoBox .btnLink::after {
  content: "";
  margin-top: -0.15rem;
}
@media screen and (max-width: 767px) {
  .business .box .infoBox .btnLink::after {
    margin-top: -0.3rem;
  }
}

/*------------------------*/
.policy {
  position: relative;
  width: 100%;
  padding-block: 12rem;
  background-color: #dcdcdc;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .policy {
    padding-block: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .policy {
    padding-block: 6rem;
  }
}
.policy_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .policy_wrap {
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .policy_wrap {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.policy .photo img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.policy .btnBox {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.policy .btnBox p {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.6rem;
}
.policy .btnBox .btnLink {
  width: 24rem;
  background-color: var(--green);
}
@media screen and (max-width: 767px) {
  .policy .btnBox .btnLink {
    width: 100%;
  }
}

/*------------------------*/
.parallax_wrap {
  position: relative;
  height: 120vh;
  z-index: 0;
  opacity: 0;
  will-change: opacity;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .parallax_wrap {
    height: 100vh;
  }
}

.parallax {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.parallax_bg {
  position: absolute;
  inset: -10%;
  will-change: transform;
  z-index: -1;
}
.parallax_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/*------------------------*/
.news {
  position: relative;
  background-color: var(--green);
  width: 100%;
  padding-block: 12rem;
}
.news_wrap {
  width: 100%;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .news_wrap {
    margin-bottom: 4rem;
  }
}
.news_wrap dl {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding-block: 3rem;
  border-bottom: solid 1px #48A275;
  color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .news_wrap dl {
    flex-direction: column;
  }
}
.news_wrap dl:last-of-type {
  border-bottom: none;
}
.news_wrap dt {
  width: 20em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding-left: 1rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .news_wrap dt {
    width: 100%;
    padding-left: 0;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .news_wrap dd {
    width: 100%;
  }
}
.news_wrap dd a {
  display: block;
  width: 100%;
  transition: 0.3s;
}
.news_wrap dd a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .news_wrap dd a:hover {
    opacity: 1;
  }
}
.news_wrap .btn {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .news_wrap .btn {
    justify-content: center;
  }
}
.news_wrap .btn a.btnLink {
  width: 24rem;
  border: solid 1px #fff;
}
/*# sourceMappingURL=style.css.map */