@charset "utf-8";

/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  padding: 30rem 0 14rem;
}

.mv-title {
  width: 25rem;
  margin: 0 auto;
}

.mv-title__en {
  max-width: 25rem;
  padding-top: 1rem;
  border-top: 0.1rem solid #000;
  font-family: "Castoro Titling", serif;
  font-weight: 200;
  font-style: normal;
  font-size: 7.2rem;
  text-align: center;
  text-indent: 0.5rem;
  letter-spacing: 1.8rem;
}

.mv-title__jp h2 {
  margin-bottom: 2rem;
  font-size: 3.2rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mv-page {
    padding: 24rem 0 9.5rem;
  }

  .mv-title {
    width: 15rem;
    margin: 0 auto 3.5rem;
  }

  .mv-title__en {
    width: 15rem;
    font-size: 4.2rem;
    letter-spacing: 1rem;
  }

  .mv-title__jp h2 {
    font-size: 1.8rem;
  }
}

/* Link Button
----------------------------------------------------------------------------------------------------*/
.sec-link__button {
  margin-top: 2.5rem;
  margin-bottom: 5rem;
  text-align: right;
}

.sec-link__button a {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto 0 0;
  max-width: 22rem;
  padding: 1.5rem 2rem 1.5rem 3rem;
  transition: 0.3s ease-in-out;
  background-color: #E0ECCE;
  border-radius: 5rem;
  z-index: 0;
  color: #000;
  font-size: 1.6rem;
  font-weight: 200;
  text-decoration: none;
  overflow: hidden;
}

.sec-link__button a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 600;
  line-height: 1;
  position: absolute;
  right: 0.5rem;
  background-color: #255938;
  padding: 1.5rem 1.6rem;
  border-radius: 5rem;
  z-index: 2;
  color: #FFF;
}

.sec-link__button a:hover:before {
  background-color: #FF7621;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .sec-link__button {
    margin-top: 2.5rem;
    margin-bottom: 5rem;
  }

  .sec-link__button a {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: 22rem;
    padding: 1.5rem 2rem 1.5rem 3rem;
    transition: 0.3s ease-in-out;
    background-color: #E0ECCE;
    border-radius: 5rem;
    z-index: 0;
    color: #000;
    font-size: 1.6rem;
    font-weight: 200;
    text-decoration: none;
    overflow: hidden;
  }

  .sec-link__button a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-weight: 600;
    line-height: 1;
    position: absolute;
    right: 0.5rem;
    background-color: #255938;
    padding: 1.5rem 1.6rem;
    border-radius: 5rem;
    z-index: 2;
    color: #FFF;
  }
}

/* Section - Link
----------------------------------------------------------------------------------------------------*/
.sec-link {
  width: 100%;
  max-width: 123rem;
  width: calc(100% - 6rem);
  margin: 0 auto 20rem;
}

.sec-link:last-of-type {
  margin: 0 auto 10rem;
}

.sec-title {
  padding: 2rem 0;
  margin-bottom: 4.6rem;
  border-top: 0.1rem solid #969696;
  border-bottom: 0.1rem solid #969696;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .sec-title {
    flex-wrap: wrap;
    padding: 1rem 0;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }

  .sec-link {
    padding: 0 3rem;
    margin-bottom: 10rem;
  }

}

/* Section Body
----------------------------------------------------------------------------------------------------*/
.sec-body {
  font-size: 2rem;
  line-height: 1.75;
}

.sec-body__column {
  display: flex;
  gap: 2.7rem;
}

.sec-body__column__left {
  width: calc(757 / 1230 * 100%);
}

.sec-body__column__right {
  width: calc(444 / 1230 * 100%);
  margin-bottom: 3rem;
}

.sec-body__column__right img {
  border: 1px solid #ddd;
}


@media screen and (max-width: 767px) {
  .sec-body {
    font-size: 1.6rem;
    line-height: 2;
  }

  .sec-body__column {
    flex-direction: column;
  }

  .sec-body__column__left {
    width: 100%;
  }

  .sec-body__column__right {
    width: 100%;
    margin-bottom: 0;
  }
}