@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
  --default-text-color: #000;
  --color-primary: #a51f24;
  --color-bg-muted: #e4eaf0;
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

ul,
li,
ol,
dl {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: var(--default-text-color);
  text-decoration: none;
  transition: opacity 0.3s ease;

  &:hover {
    opacity: 0.7;
  }
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 0.1rem dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:after,
*:before {
  -webkit-appearance: none;
  word-break: break-all;
  box-sizing: border-box;
}

iframe,
video {
  display: block;
  width: 100%;
}

video {
  filter: contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */

/* タブレット(1081px以上)のみ非表示 */
@media print, screen and (min-width: 1080.01px) {
  .tab-off {
    display: none !important;
  }
}

/* PC(768px以上)のみ非表示 */
@media print, screen and (min-width: 767.01px) {
  .pc-off {
    display: none !important;
  }
}

/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
  .sp-off {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    color: var(--default-text-color);
  }
}

@media screen and (min-width: 767.01px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

html {
  font-size: 62.5%;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: none;
  scrollbar-gutter: stable;

  @media screen and (min-width: 1080.01px) and (max-width: 1919.99px) {
    font-size: calc(10 / 1920 * 100 * 1vw);
  }

  /* あまりにも文字サイズが小さくなった場合 */
  @media screen and (min-width: 767.01px) and (max-width: 1080px) {
    font-size: calc(10 / 1920 * 100 * 1vw);
  }

  /* スマホ用（デザインサイズが375の場合） */
  @media screen and (max-width: 767px) {
    font-size: calc(10 / 393 * 100 * 1vw);
  }
}

body {
  font-size: 1.6rem;
  line-height: 1;
  overflow: auto;

  @media screen and (max-width: 767px) {
    font-size: 1.4rem;
  }
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  @media screen and (max-width: 767px) {
    /* スマホ画像長押し禁止対策 */
    /* pointer-events: none; */
  }
}

/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
  html {
    font-size: calc(10 / 1920 * 100 * 14px);
  }

  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    position: relative;
    width: 1400px;
    zoom: 70%;
  }

  .recruit-item-inner {
    opacity: 1 !important;
    transform: none !important;
  }

  #header {
    .nav .main-list a {
      color: #000 !important;
    }

    .btn-contact {
      color: #000 !important;
      background-color: #fff !important;
      border: 0.1rem solid #000;
    }
  }

  .fv-on-red-layer {
    display: none !important;
  }

  #fv > .intro-slot .intro {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
  }
}

@page {
  size: A4;
  margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを0pxに
/* ------------------------------------------- */
.deve body {
  --sb-track-color: #ddd;
  --sb-thumb-color: #000;
  --sb-size: 0;
  /* scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); */
  overflow-x: hidden;
}

.deve body::-webkit-scrollbar {
  width: var(--sb-size);
}

.deve body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 1px;
}

.deve body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 1px;
}

.menu-active {
  overflow: hidden;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
  overflow: clip;
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  transition: all 0.3s ease;
  @media screen and (max-width: 767px) {
    padding: 0 2rem 0 2rem;
    height: 5.6rem;
    background-color: #fff;
  }

  .logomark {
    & a {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1rem 2.4rem;
      align-items: center;
      @media screen and (max-width: 767px) {
        gap: 0.1rem 1.2rem;
      }

      & img {
        grid-row: span 2;
        width: 46.3rem;
        @media screen and (max-width: 767px) {
          width: 28.7rem;
        }
      }
    }
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 2.4rem;

    @media screen and (max-width: 767px) {
      position: fixed;
      top: 0;
      right: 0;
      left: auto;
      z-index: 999;
      width: 28rem;
      height: 100dvh;
      background-color: #fff;
      flex-direction: column;
      padding-top: 7.2rem;
      align-items: flex-start;
      pointer-events: none;
      transform: translateX(100%);
      transition: transform 0.4s ease;
    }

    .main-list {
      display: flex;
      align-items: center;
      gap: 2.4rem;
      @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 0;
        width: 100%;
        border-top: 1px solid #e4eaf0;
      }
      & li {
        @media screen and (max-width: 767px) {
          width: 100%;
        }
        & a {
          font-weight: 700;
          font-size: 1.6rem;
          line-height: 180%;
          letter-spacing: 0.1em;
          @media screen and (max-width: 1080px) {
            font-size: 1.8rem;
          }
          @media screen and (max-width: 767px) {
            width: 100%;
            height: 7.7rem;
            text-align: left;
            display: flex;
            align-items: center;
            padding-left: 2.4rem;
            border-bottom: 1px solid #e4eaf0;
            position: relative;
            font-size: 1.6rem;
            &::after {
              content: "";
              position: absolute;
              right: 2.4rem;
              top: 50%;
              transform: translateY(-50%);
              width: 2rem;
              height: 2rem;
              background: url("../img/common/menu-arrow.png") no-repeat center /
                100% auto;
            }
          }
        }
      }
    }

    .btn-contact {
      width: 18.4rem;
      height: 5.6rem;
      border-radius: 0.4rem;
      background-color: var(--color-primary);
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 700;
      font-size: 1.6rem;
      letter-spacing: 0.1em;
      color: #ffffff;
      @media screen and (max-width: 767px) {
        width: 82.8%;
        height: 5.9rem;
        margin: 0 auto 2.4rem;
      }
    }
  }

  .menu-overlay {
    display: none;

    @media screen and (max-width: 767px) {
      display: block;
      position: fixed;
      inset: 0;
      z-index: 998;
      background-color: rgba(0, 0, 0, 0.5);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
  }

  /* メニューボタン — markup: <a class="menu-btn"><span></span></a> */
  .menu-btn {
    position: absolute;
    display: none;
    top: 0;
    right: 0;
    z-index: 9999;

    @media screen and (max-width: 767px) {
      display: block;
    }

    &:after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 1.1rem;
      color: #000;
      font-weight: 500;
      letter-spacing: 0.05em;
      font-size: 1.1rem;
      transform: translateX(-50%);
      white-space: nowrap;
    }

    &,
    & a {
      position: relative;
      width: 10rem;
      height: 10rem;
      vertical-align: top;
      transition: ease 0.25s all;

      @media screen and (max-width: 767px) {
        width: 4rem;
        height: 4rem;
      }
    }

    & > span,
    & a span {
      position: absolute;
      left: 50%;
      top: 50%;
      display: block;
      margin-left: -1.8rem;
      width: 3.4rem;
      height: 0.2rem;
      background: #000;
      border-radius: 0.3rem;

      @media screen and (max-width: 767px) {
        margin-left: -1.4rem;
        width: 3rem;
        height: 0.25rem;
      }

      &:before,
      &:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        border-radius: 0.3rem;
        transition: ease 0.25s all;
      }

      &:before {
        margin-top: -1.1rem;
      }

      @media screen and (max-width: 767px) {
        &:before {
          margin-top: -0.7rem;
        }
      }

      &:after {
        margin-top: 1.1rem;
      }

      @media screen and (max-width: 767px) {
        &:after {
          margin-top: 0.7rem;
        }
      }
    }
  }
}

.scroll-now {
  & #header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2rem);

    @media screen and (max-width: 767px) {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
  }
  .nav {
    .main-list {
      & li {
        & a {
          transition: all 0.2s ease;
          &.white {
            color: #000 !important;
          }
        }
      }
    }
  }
}

.menu-active {
  #header {
    .menu-btn {
      /* position: fixed; */
      &,
      & a {
        background-color: #fff;
      }

      & > span,
      & a span {
        background-color: transparent;

        &:before {
          margin-top: 0;
          transform: rotate(45deg);
          -webkit-transform: rotate(45deg);
        }

        &:after {
          margin-top: 0;
          transform: rotate(-45deg);
          -webkit-transform: rotate(-45deg);
        }
      }
    }

    @media screen and (max-width: 767px) {
      .nav {
        transform: translateX(0);
        pointer-events: auto;
      }

      .menu-overlay {
        opacity: 1;
        pointer-events: auto;
      }
    }
  }
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {
  /* background-color: #ddd; */
}

#page-container {
  width: 100%;
  position: relative;
  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../img/common/page-bg.png") no-repeat top right / 100% auto;
    z-index: -1;
    @media screen and (max-width: 767px) {
      background: url("../img/common/page-bg-sp.png") no-repeat top right / 100%
        auto;
    }
  }
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#footer {
  position: relative;
  padding: 6rem 0 4rem;

  @media screen and (max-width: 767px) {
    padding: 4rem 0 3.2rem;
  }

  .pageup {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 4.8rem;
    background-color: #fff;
    z-index: 9999;
    @media screen and (max-width: 767px) {
      right: 1.5rem;
      top: -6.4rem;
      width: 3.6rem;
      height: 3.6rem;
      border-radius: 3.6rem;
    }
  }

  .inner {
    .logomark {
      width: 46.3rem;
      @media screen and (max-width: 767px) {
        width: 28.7rem;
      }
      & img {
        width: 100%;
        vertical-align: top;
      }
    }

    .address {
      margin-top: 2rem;
      font-weight: 500;
      font-size: 1.6rem;
      line-height: 180%;
      letter-spacing: 0.1em;
      position: relative;
      margin-bottom: 2rem;

      @media screen and (max-width: 767px) {
        margin-top: 2rem;
        font-size: 1.4rem;
        line-height: 180%;
        letter-spacing: 0.03em;
      }
    }

    .google-map {
      display: block;
      font-weight: 500;
      font-size: 1.6rem;
      line-height: 180%;
      letter-spacing: 0.1em;
      text-decoration: underline;

      @media screen and (max-width: 767px) {
        margin-top: 0.4rem;
        font-size: 1.2rem;
        line-height: 170%;
        letter-spacing: 0.03em;
      }
    }

    .link-list {
      position: absolute;
      top: 0;
      right: 0;
      display: flex;
      align-items: center;
      gap: 2.4rem;

      @media screen and (max-width: 767px) {
        display: none;
      }

      & li {
        & a {
          font-weight: 700;
          font-size: 1.6rem;
          line-height: 180%;
          letter-spacing: 0.1em;
        }
      }
    }

    .copyright {
      margin-top: 2rem;
      font-size: 1.6rem;
      line-height: 100%;
      letter-spacing: 0.05em;

      @media screen and (max-width: 767px) {
        margin-top: 1.6rem;
        font-size: 1rem;
        line-height: 140%;
        letter-spacing: 0.02em;
        color: #6b7280;
      }
    }
  }
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
  padding: 2.4rem 0;

  @media screen and (max-width: 767px) {
    display: none;
  }

  & ol {
    display: flex;
    flex-wrap: wrap;
  }

  & li {
    position: relative;
    margin-right: 3.7rem;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.1em;

    &:last-child {
      margin-right: 0;

      &:after {
        display: none;
      }
    }

    &::after {
      content: "";
      position: absolute;
      right: -2.7rem;
      top: 50%;
      z-index: 0;
      display: block;
      width: 1.4rem;
      height: 1px;
      background: #bcbcbc;

      &:last-child::after {
        display: none;
      }
    }
  }

  & a {
    text-decoration: underline;
    color: #7aa3c6;

    @media (hover: hover) and (pointer: fine) {
      &:hover {
        text-decoration: none;
      }
    }
  }
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
  position: relative;
  margin: 0 auto;

  @media screen and (max-width: 767px) {
    width: calc(100% - 4rem);
  }
}

.w960 {
  max-width: 96rem;
}

.w1080 {
  max-width: 108rem;
}

.w1200 {
  max-width: 120rem;
}

.w1440 {
  max-width: 144rem;
}

/* ------------------------------------------- */
/* pagination */
/* ------------------------------------------- */
/* navigation pagination */
.navigation.pagination {
  margin: 7rem 0 0;

  @media screen and (max-width: 767px) {
    margin: 3rem 0 0;
  }

  .disable {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    @media screen and (max-width: 767px) {
      position: relative;
      padding-bottom: 5rem;
    }
  }

  .pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 0.8rem;
    width: 4.4rem;
    height: 5rem;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    letter-spacing: 0.08em;
    color: #2987d9;
    background: #fff;
    text-decoration: none;
    transition: ease 0.25s all;
    /* border-radius: 0.4em; */
    border: 0.1rem solid #2987d9;

    @media screen and (max-width: 767px) {
      width: 3rem;
      height: 3rem;
    }

    @media (hover: hover) and (pointer: fine) {
      &:hover {
        color: #fff;
        background: #2987d9;
        border-color: #2987d9;
      }
    }
  }

  .pager.current {
    color: #fff;
    font-weight: bold;
    background: #2987d9;
    border-color: #2987d9;
  }

  .next,
  .prev {
    @media screen and (max-width: 767px) {
      /*position: absolute;*/
      /*bottom: 0;*/
      /*width: 48%;*/
      /*height: 4rem;*/
    }

    & a {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      width: 4.4rem;
      height: 5rem;
      font-size: 0;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      letter-spacing: 0.08em;
      text-decoration: none;
      color: #000;
      background: #fff;
      border: 0.1rem solid #2987d9;
      transition:
        ease 0.25s background,
        ease 0.25s color;

      @media screen and (max-width: 767px) {
        width: 2.8rem;
        height: 2.8rem;
      }

      @media (hover: hover) and (pointer: fine) {
        &:hover {
          color: #fff;
          background-color: #2987d9;

          &:after {
            border-top-color: #fff;
          }
        }
      }

      &:after {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -0.4rem;
        display: block;
        width: 0.8rem;
        height: 0.8rem;
        border-top: 0.1rem solid #2987d9;
        box-sizing: border-box;
        transition: ease 0.25s border;
      }
    }
  }

  .prev {
    @media screen and (min-width: 767.01px) {
      margin-right: 0.8rem;
    }

    @media screen and (max-width: 767px) {
      margin-right: 1rem;
    }

    & a {
      &:after {
        left: 50%;
        margin-left: -0.2rem;
        border-left: 0.1rem solid #2987d9;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
      }

      @media (hover: hover) and (pointer: fine) {
        &:hover:after {
          border-left-color: #fff;
        }
      }
    }
  }

  .next {
    @media screen and (min-width: 767.01px) {
      margin-left: 0.8rem;
    }

    @media screen and (max-width: 767px) {
      margin-left: 1rem;
      /*right: 0;*/
    }

    & a {
      &:after {
        right: 50%;
        margin-right: -0.2rem;
        border-right: 0.1rem solid #2987d9;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
      }

      @media (hover: hover) and (pointer: fine) {
        &:hover:after {
          border-right-color: #fff;
        }
      }
    }
  }
}

.is-rounded {
  overflow: hidden;
  border-radius: 1.6rem;
  @media screen and (max-width: 767px) {
    border-radius: 0.8rem;
  }
}

.section-title {
  margin-bottom: 8rem;
  @media screen and (max-width: 767px) {
    margin-bottom: 4rem;
  }
  .en {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 8rem;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #000000;
    @media screen and (max-width: 767px) {
      font-size: 4rem;
      font-weight: 700;
      letter-spacing: 0.4px;
    }
  }
  .ja {
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    padding-left: 3rem;
    margin-top: 3rem;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 100%;
    letter-spacing: 0.1em;
    color: var(--color-primary);

    @media screen and (max-width: 767px) {
      font-size: 1.4rem;
      line-height: 1;
      letter-spacing: 0.1em;
      color: #a51f24;
      margin-top: 1.6rem;
      padding-left: 2.4rem;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 1rem;
      width: 0.5rem;
      height: 100%;
      background-color: var(--color-primary);
      transform: skewX(-30deg);
      @media screen and (max-width: 767px) {
      }
    }
  }
}

.single h2,
.black-title {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 160%;
  letter-spacing: 0.06em;

  @media screen and (max-width: 767px) {
    font-size: 2.4rem;
    line-height: 140%;
  }
}

.single h4,
.red-text {
  margin-top: 3.2rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 140%;
  letter-spacing: 0.05em;
  color: var(--color-primary);

  @media screen and (max-width: 767px) {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}

.single h3,
.hash-title {
  position: relative;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  padding-left: 2.5rem;
  @media screen and (max-width: 767px) {
    font-size: 1.8rem;
  }

  &::before {
    content: "#";
    position: absolute;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 100%;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    left: 0;
    top: -0.6rem;
  }
}

#contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 16.6rem;
  background-color: var(--color-bg-muted);

  @media screen and (max-width: 767px) {
    padding-top: 6.4rem;
  }

  .inner {
    z-index: 1;
    display: flex;
    justify-content: space-between;
    @media screen and (max-width: 767px) {
      flex-direction: column;
      row-gap: 2rem;
    }
  }

  .left-column {
    .section-title {
      margin-bottom: 4.2rem;
      @media screen and (max-width: 767px) {
        margin-bottom: 3.2rem;
      }
    }
    .text {
      font-weight: 600;
      font-size: 1.8rem;
      line-height: 180%;
      letter-spacing: 0.02em;
      @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        line-height: 180%;
      }
    }
  }

  .right-column {
    width: 70rem;
    max-width: 100%;
    .white-card {
      background-color: #fff;
      padding: 4.6rem 6rem;
      display: flex;
      flex-direction: column;

      justify-content: center;
      align-items: center;
      @media screen and (max-width: 767px) {
        padding: 2rem;
        border-radius: 0.8rem;
      }

      .text {
        font-weight: 600;
        font-size: 1.8rem;
        line-height: 100%;
        letter-spacing: 0.02em;
        font-family: "Inter", sans-serif;
        margin-bottom: 2rem;
        @media screen and (max-width: 767px) {
          font-size: 1.4rem;
          font-weight: 700;
          line-height: 1.7rem;
          color: #111827;
          margin-bottom: 1.2rem;
        }
      }

      .red-btn {
        width: 100%;
        height: 7.4rem;
        border-radius: 4.2rem;
        @media screen and (max-width: 767px) {
          max-width: none;
          margin-top: 0;
          height: 6.4rem;
        }
      }

      .note {
        font-size: 1.8rem;
        line-height: 1;
        letter-spacing: 0.02em;
        @media screen and (max-width: 767px) {
          font-size: 1.2rem;
        }
      }
    }
  }

  .big-watermark {
    position: relative;
    z-index: 0;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 16rem;
    line-height: 80%;
    text-align: center;
    color: #f4f4f4;
    margin: 3.8rem 0 -0.5rem;
    mix-blend-mode: multiply;
    position: relative;
    @media screen and (max-width: 767px) {
      margin: 1rem 2rem -0.4rem;
      font-size: 4.96rem;
      line-height: 85%;
      text-align: left;
      overflow-wrap: anywhere;
      color: #f4f4f4;
      z-index: 2;
    }
  }
}

#page-fv {
  padding-top: 10rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  gap: 8rem;
  @media screen and (max-width: 767px) {
    display: flex;
    flex-direction: column;
    margin-top: 5.6rem;
    align-items: flex-start;
    gap: 4rem;
    padding-top: 0;
  }
  .page-title {
    padding-left: 9.6rem;
    @media screen and (max-width: 767px) {
      padding-left: 2rem;
      padding-top: 4rem;
    }
    .en {
      font-family: "Montserrat";
      font-weight: 700;
      font-size: 11.2rem;
      line-height: 100%;
      letter-spacing: 0.004em;
      text-transform: uppercase;
      @media screen and (max-width: 767px) {
        font-size: 4rem;
      }
    }
    .ja {
      position: relative;
      padding-left: 4rem;
      margin-top: 3rem;
      font-weight: 700;
      font-size: 3.2rem;
      line-height: 100%;
      letter-spacing: 0.1em;
      color: var(--color-primary);
      @media screen and (max-width: 767px) {
        font-size: 1.8rem;
        margin-top: 1.2rem;
        padding-left: 3.6rem;
      }
      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 1.2rem;
        width: 0.8rem;
        height: 100%;
        background-color: var(--color-primary);
        transform: skewX(-30deg);
        @media screen and (max-width: 767px) {
          width: 0.6rem;
        }
      }
    }
  }

  .page-image {
    border-radius: 1.6rem 0 0 1.6rem;
    overflow: hidden;
    aspect-ratio: 1120 / 720;
    object-fit: cover;
    @media screen and (max-width: 767px) {
      border-radius: 0;
      aspect-ratio: unset;
      width: 100%;
      height: auto;
      & img {
        width: 100%;
      }
    }
  }
}

.black-btn {
  margin-top: 8rem;
  width: 32rem;
  height: 6.4rem;
  border-radius: 3.2rem;
  background-color: #1f2937;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #ffffff;
  @media screen and (max-width: 767px) {
    margin-top: 3.2rem;
    width: 100%;
    max-width: 35.3rem;
    font-size: 1.4rem;
  }
}

.red-btn {
  width: 32rem;
  height: 6.4rem;
  border-radius: 3.2rem;
  background-color: var(--color-primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;

  @media screen and (max-width: 767px) {
    width: 100%;
    max-width: 31.3rem;
    height: 6.4rem;
    font-size: 1.4rem;
    margin: 0 auto;
  }
}
