@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&family=Shippori+Mincho:wght@400;700&family=Roboto:wght@400;500;700&display=swap");
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .tab-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

:root {
  --white: #ffffff;
  --black: #000;
  --text: #434343;
  --accent: #4f58a5;
  --leading-trim: calc((1em - 1lh) / 2);
  --noto-sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "游ゴシック体", "YuGothic", "Helvetica Neue", "Arial", "Meiryo",
    sans-serif;
  --zen-kaku-gothic: "Zen Kaku Gothic New", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", "YuGothic",
    "Helvetica Neue", "Arial", "Meiryo", sans-serif;
  --shippori-mincho: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho",
    "游明朝", "Times New Roman", "Hiragino Mincho Pro", "MS PMincho", serif;
  --roboto: "Roboto", "Helvetica Neue", "Arial", sans-serif;
}

.bold {
  font-weight: 700;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.lh130 {
  line-height: 130%;
}

.lh170 {
  line-height: 170%;
}

html {
  font-size: min(0.7142857143vw, 10px);
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  font-family: var(--noto-sans);
  color: var(--black);
  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;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--text);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.8;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

.palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

p,
h2,
h3,
h4,
span {
  font-weight: 400;
  color: var(--text);
}

svg {
  width: 100%;
  height: 100%;
}

.overflow-hidden {
  position: relative;
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
}

em {
  font-style: normal;
}

.header {
  width: 100%;
  position: fixed;
  background-color: var(--white);
  z-index: 100;
}

.header__inner {
  max-width: max(140rem, 1200px);
  width: calc(100% - 30rem);
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 11rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    width: calc(100% - 3rem);
    height: 8rem;
  }
}

.header__logo {
  width: 32rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 16rem;
  }
}

.header__cta {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .header__cta {
    width: 14rem;
  }
}

.header__cta-button {
  display: block;
}

.header__cta-button-image {
  vertical-align: top;
}

.wrapper {
  max-width: 124rem;
  padding-inline: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .wrapper {
    max-width: 100%;
  }
}

.fdc--row {
  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;
  gap: 4.5rem;
}
@media screen and (min-width: 768px) {
  .fdc--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.dib {
  display: inline-block;
}

.u-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.mt3 {
  margin-top: 0.3rem;
}

.mt7 {
  margin-top: 0.7rem;
}

.mt32 {
  margin-top: 3.2rem;
}

.wrapper {
  max-width: calc(1240px + 8rem);
  padding-inline: 4rem;
  margin-inline: auto;
}

/* グラデテキスト */
.text-accent {
  background: -webkit-gradient(linear, left top, right top, from(#393d83), to(#68c8d9));
  background: -webkit-linear-gradient(left, #393d83 0%, #68c8d9 100%);
  background: linear-gradient(90deg, #393d83 0%, #68c8d9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.fv {
  width: 100%;
  margin-top: 11rem;
}
@media screen and (max-width: 767px) {
  .fv {
    margin-top: 8rem;
  }
}

.fv {
  position: relative;
  width: 100%;
}

.fv__content {
  position: relative;
  width: 100%;
  height: 80rem;
  background-image: url(../images/common/fv-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fv__content {
    height: 103.125rem;
  }
}
.fv__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 51.8rem;
  background-image: url(../images/common/fv-bg-top.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .fv__content::before {
    height: 58rem;
  }
}

.fv__title {
  position: relative;
  width: calc(100% - 4rem);
  margin-inline: auto;
  height: 51.8rem;
  padding-block: 7.2rem 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fv__title {
    height: 58rem;
    padding-top: 2rem;
  }
}

.fv__title-image {
  width: 110.2rem;
  margin-inline: auto;
  display: block;
  vertical-align: top;
  position: relative;
  z-index: 1;
}

.fv__text {
  position: relative;
  max-width: 140rem;
  width: 100%;
  z-index: 1;
  margin-inline: auto;
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .fv__text {
    padding-top: 2rem;
    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;
  }
}
.fv__text a:hover {
  opacity: 1;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.fv__text-description {
  width: 77.4rem;
  margin-left: 14.8rem;
}
@media screen and (max-width: 767px) {
  .fv__text-description {
    width: 100%;
    margin-left: auto;
  }
}

.fv__text-image {
  position: absolute;
  top: -1.2rem;
  right: 10.6rem;
  width: 38rem;
}
@media screen and (max-width: 767px) {
  .fv__text-image {
    position: relative;
    top: auto;
    right: auto;
    width: 30rem;
    margin-inline: auto;
  }
}

.fv__border {
  position: relative;
  width: 100%;
  z-index: 1;
}
.fv__border::before {
  content: "";
  position: absolute;
  top: 99.5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 5.6rem;
  height: 4rem;
  background: #5c8209;
  background-size: contain;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .fv__border::before {
    width: 3.2rem;
    height: 2.4rem;
  }
}

.fv__border-text {
  font-size: 3.9rem;
  line-height: 2.5641025641;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv__border-text {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    padding-block: 1rem;
  }
}
.fv__border-text span {
  color: #ffff00;
  font-weight: 700;
}

.fv__border-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv__border-image img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}/*# sourceMappingURL=fv.css.map */