@charset "utf-8";
.invisible-style{
  display: none!important;
}

html {
  word-break: auto-phrase;
}


body{
  font-family: "Shippori Mincho", serif;
  color: #000000;
  font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
  font-weight: 400;
  line-height: 2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #2E2E2E;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  color: #000;
  transition: all 0.5s;
}
.link-opacity:hover {
  opacity: 0.5;
}


img {
  max-width: 100%;
  display: block;
  width: 100%;
}

p,
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}


/* 共通パーツ */
.inner {
  max-width: 1920px;
  margin: 0 auto;
}

/* リンク下線 */
.link__text {
    padding-bottom: 6px;
    position: relative;
    line-height: 1;
    width: fit-content;
}
.link__text::after {
      background-color: #000007;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    transform: translateX(-30%);
    opacity: 0;
    position: absolute;
    transition: all .5s;
    width: 100%;
}
.link__text--white::after {
      background-color: #fff;
}
.link__text:hover::after {
    transform: translateX(0%);
    opacity: 1;
}

/* title1 */
.title1 {
      display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: flex-start;
    height: fit-content;
}
.title1__text {
      font-size: 24px;
    font-weight: 400;
  white-space: nowrap;
}
.title1__text--white {
  color: #fff;
}
.title1__img {
      width: 47px;
    height: auto;
    object-fit: contain;
}
.title1__center {
  align-items: center;
}

/* btn1 */
.btn1 {
      width: 78px;
    height: fit-content;
    position: relative;
}
.btn1__circle {
      width: 50px;
    height: 50px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50%;
    margin-left: auto;
}
.btn1__icon {
      position: absolute;
    width: 58px;
    object-fit: contain;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: all 0.5s;
}
.btn1-link:hover .btn1__icon {
  transform: translateY(-50%) translateX(10px);
}

/* btn2 */
.btn2 {
      width: clamp(9.625rem, 8rem + 3.39vw, 12.063rem);
    height: clamp(2.375rem, 1.958rem + 0.87vw, 3rem);
    border: 1px solid #707070;
    border-radius: 23px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.875rem, 0.708rem + 0.35vw, 1.125rem);
}
@media (max-width: 389px) {
  .btn2 {
      width: clamp(8.125rem, 1.168rem + 34.78vw, 9.625rem);
  }
}

/* pg-fv */
.pg-fv {
  padding-top: clamp(7.5rem, 3.708rem + 7.9vw, 13.188rem);
}
.pg-fv__container {
      display: flex;
    justify-content: space-between;
    column-gap: 20px;
    align-items: center;
}
.pg-fv__left {
      display: flex;
    column-gap: clamp(1.25rem, -0.333rem + 3.3vw, 3.625rem);
    align-items: end;
}
.pg-fv__img {
      width: clamp(24.375rem, 17.833rem + 13.63vw, 34.188rem);
    aspect-ratio: 547/410;
    object-fit: cover;
    height: auto;
}
.pg-fv__title {
      display: flex;
    flex-direction: column;
    row-gap: clamp(0.625rem, 0.458rem + 0.35vw, 0.875rem);
}
.pg-fv-title__main {
  font-size: clamp(3rem, 1.583rem + 2.95vw, 5.125rem);
}
.pg-fv-title__sub {
      line-height: 1;
    font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
}
.fv__items {
      padding-right: clamp(1.25rem, -1.917rem + 6.6vw, 6rem);
    display: flex;
    flex-direction: column;
    row-gap: clamp(1.5rem, 0.417rem + 2.26vw, 3.125rem);
    align-items: end;
}
.fv__item {
  font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
}
@media (max-width: 767px) {
  .pg-fv__left {
        flex-direction: column-reverse;
    align-items: flex-start;
    row-gap: 22px;
  }
  .pg-fv__img {
    width: 100%;
  }
  .pg-fv__title {
    padding-left: 20px;
  }
  .pg-fv__right {
    display: none;
  }
}

/* アニメーション */
.anime2 {
  animation-delay: 0.5s;
}
.anime3 {
  animation-delay: 1s;
}
.anime4 {
  animation-delay: 1.5s;
}
.anime5 {
  animation-delay: 2s;
}
.anime6 {
  animation-delay: 2.5s;
}