@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
  --default-text-color: #000;
  --color-primary: #1d1e1f;
  --color-border: #d1d5db;
}

/* --------------------------------------------------------------- */
/* 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;
  @media (hover: hover) {
    &: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;
}

img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  @media screen and (max-width: 767px) {
    /* スマホ画像長押し禁止対策 */
    /* pointer-events: none; */
  }
}

picture,
iframe {
  display: block;
  width: 100%;
}

video {
  display: block;
  width: 100%;
  filter: contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */

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(12 / 1920 * 100 * 1vw);
  }

  /* スマホ用（デザインサイズが375の場合） */
  @media screen and (max-width: 767px) {
    font-size: calc(10 / 375 * 100 * 1vw);
  }
}

body {
  font-size: 1.6rem;
  line-height: 1;
  overflow: auto;

  @media screen and (max-width: 767px) {
    font-size: 1.4rem;
  }
}

/* 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;
  }
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;

  @media screen and (max-width: 767px) {
    width: calc(100% - 3rem);
  }
}

.w960 {
  max-width: 96rem;
}

.w1080 {
  max-width: 108rem;
}

.w1200 {
  max-width: 120rem;
}

.w1440 {
  max-width: 144rem;
}

/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
  html {
    font-size: calc(10 / 1920 * 100 * 14px);
  }

  body {
    -webkit-print-color-adjust: exact;
    position: relative;
    width: 1400px;
    zoom: 70%;
  }
  header {
    position: static !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;
}

/* table-scroll */
@media screen and (max-width: 767px) {
  .table-scroll {
    position: relative;
    padding-bottom: 2rem;
    overflow-x: scroll;

    &:after {
      content: "←";
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 1;
      margin-left: -1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      width: 3rem;
      height: 3rem;
      border-radius: 1.5rem;
      border: 0.1rem solid #000;
      animation: arrowtable 2s infinite forwards;
    }

    .common-table {
      width: 80rem;
    }
  }
}

@keyframes arrowtable {
  50% {
    opacity: 1;
    right: 0;
  }

  100% {
    opacity: 0;
    right: 100%;
  }
}

/* ------------------------------------------- */
/* アニメーション用 */
/* ------------------------------------------- */
/*
.moveFlag {
	position: relative;
	top: -5rem;
	opacity: 0;
	transition: ease 0.5s top, ease 0.5s opacity;
}
.moveFlag.on {
	top: 0;
	opacity: 1;
}
@media print {
	.moveFlag {
		top: 0;
		opacity: 1;
	}
}
*/

/* --------------------------------------------------------------- */
/* メニュー開閉での背景 */
/* --------------------------------------------------------------- */
body {
  &::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }
}

.menu-active {
  & body {
    &::before {
      opacity: 1;
      visibility: visible;
    }
  }
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
  overflow: clip;
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;

  @media screen and (max-width: 767px) {
    padding: 0;
    position: relative;
  }

  .logomark {
    position: absolute;
    left: 0;
    top: 0;
    width: 21rem;
    box-shadow: 0.4rem 0.4rem 0.4rem rgba(000, 000, 000, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    @media screen and (max-width: 767px) {
      left: 0;
      width: 10rem;
    }
  }

  .nav {
    padding: 3rem 0;
    display: flex;
    align-items: baseline;
    gap: 4.2rem;

    @media screen and (max-width: 767px) {
      padding: 8rem 3.2rem;
      flex-direction: column;
      gap: 3.2rem;
      position: fixed;
      width: 61%;
      background-color: #fff;
      height: 100dvh;
      left: 100%;
      top: 0;
      transition: left 0.3s ease;
    }

    .main-list {
      display: flex;
      align-items: center;
      gap: 4.5rem;

      @media screen and (max-width: 767px) {
        gap: 2rem;
        flex-direction: column;
        width: 100%;
      }

      & li {
        @media screen and (max-width: 767px) {
          width: 100%;
        }

        & a {
          font-family: "Noto Sans JP";
          font-weight: 600;
          font-size: 1.6rem;
          line-height: 2;
          letter-spacing: 0.05em;
          color: #ffffff;
          text-shadow: 0 0 0.3rem rgba(000, 000, 000, 0.7);

          @media screen and (max-width: 767px) {
            color: var(--color-primary);
            width: 100%;
            text-shadow: none;
          }
        }
      }
    }

    .buttons {
      display: flex;
      align-items: center;
      gap: 1.2rem;

      @media screen and (max-width: 767px) {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
      }

      .button {
        width: 21.6rem;
        height: 5.6rem;
        border-radius: 0.8rem;
        background-color: #fef02d;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;

        @media screen and (max-width: 767px) {
          width: 100%;
          height: 4.6rem;
          gap: 0.4rem;
        }

        & span {
          font-family: "Noto Sans JP";
          font-weight: 700;
          font-size: 1.5rem;
          letter-spacing: 0.05em;
          color: var(--color-primary);

          @media screen and (max-width: 767px) {
            font-size: 1.2rem;
          }
        }

        & img {
          width: 1.6rem;
          translate: 0 .1rem;

          @media screen and (max-width: 767px) {
            width: 1.3rem;
          }
        }
      }
    }
  }

  .menu-btn {
    display: none;

    @media screen and (max-width: 767px) {
      display: block;
      position: fixed;
      width: 5rem;
      height: 5rem;
      top: 1.2rem;
      right: 1.2rem;
      z-index: 9999;
    }

    & a {
      position: relative;
      width: 100%;
      height: 100%;
      background-color: #fff;
      border-radius: 50%;
      border: 0.1rem solid #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0.4rem 0.4rem 0.4rem rgba(000, 000, 000, 0.15);

      & span {
        display: block;
        position: relative;
        width: 2.5rem;
        height: 0.2rem;
        background: var(--color-primary);

        &::before,
        &::after {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 0.2rem;
          background: var(--color-primary);
          transition: margin-top 0.3s ease;
        }

        &::before {
          margin-top: -0.7rem;
        }

        &::after {
          margin-top: 0.7rem;
        }
      }
    }
  }
}

/* .scroll-now #header .logomark {
    @media screen and (max-width: 767px) {
        width: 8rem;
    }
} */

.menu-active {
  overflow: hidden;

  #header {
    .nav {
      left: calc(100% - 61%);
    }

    .menu-btn {
      & a {
        border-color: var(--color-primary);
        box-shadow: none;

        & 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);
          }
        }
      }
    }
  }
}

/* --------------------------------------------------------------- */
/* common style */
/* --------------------------------------------------------------- */
.common-section {
  padding: 12rem 0;

  @media screen and (max-width: 767px) {
    padding: 5rem 0;
  }

  .section-title {
    font-family: "Noto Sans JP";
    font-weight: 700;
    font-size: 4.4rem;
    line-height: 160%;
    text-align: center;
    letter-spacing: 0.05em;
    color: var(--color-primary);

    @media screen and (max-width: 767px) {
      font-size: 2.2rem;
    }
  }

  .section-description {
    margin-top: 3rem;
    font-family: "Noto Sans JP";
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 200%;
    text-align: center;
    letter-spacing: 0.1em;
    color: var(--color-primary);

    @media screen and (max-width: 767px) {
      margin-top: 1.5rem;
      font-size: 1.4rem;
      text-align: left;
    }
  }
}

/* ------------------------------------------- */
/* FV 背景クロスフェード */
/* ------------------------------------------- */
#fv {
  position: relative;
  overflow: hidden;

  & > .fv-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
  }

  & > .fv-bg.is-active {
    z-index: 1;
    opacity: 1;
  }

  & > .inner {
    position: relative;
    z-index: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  #fv > .fv-bg {
    transition: none;
  }
}

/* --------------------------------------------------------------- */
/* product list */
/* --------------------------------------------------------------- */
#product {
  position: relative;

  .product-list {
    margin-top: 7.2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.8rem 3.2rem;

    @media screen and (max-width: 767px) {
      margin-top: 3.2rem;
      grid-template-columns: 100%;
      gap: 3.2rem;
    }

    .product-item {
      & img {
      }

      .txt1 {
        margin-top: 1.7rem;
        font-weight: 700;
        font-size: 2rem;
        line-height: 1.5;
        text-align: center;
        color: var(--color-primary);

        @media screen and (max-width: 767px) {
          margin-top: 1rem;
          font-size: 1.6rem;
        }
      }

      .txt2 {
        margin-top: 0.5em;
        font-weight: 400;
        font-size: 1.6rem;
        line-height: 160%;
        text-align: center;
        color: var(--color-primary);

        @media screen and (max-width: 767px) {
          font-size: 1.2rem;
        }
      }
    }
  }

  .make-use {
    margin-top: 22rem;
    padding-bottom: 15rem;

    @media screen and (max-width: 767px) {
      margin-top: 7rem;
      padding-bottom: 5rem;
    }

    .banner {
      position: relative;
      margin: 0 auto;
      padding: 4rem 12.3rem 4.4rem;
      transform: translateY(-50%);
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: drop-shadow(0.2rem 0.2rem 0.6rem rgba(0, 0, 0, 0.25));

      &::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 90%);
        width: 0;
        height: 0;
        border: 3rem solid transparent;
        border-top: 3rem solid #fff;
      }

      @media screen and (max-width: 767px) {
        width: 100%;
        padding: 1.4rem 1rem 1.6rem;

        &::after {
          border-width: 1.5rem;
          border-top-width: 1.5rem;
        }
      }

      & p {
        font-weight: 700;
        font-size: 4.8rem;
        line-height: 1.5;
        text-align: center;
        letter-spacing: 0.05em;
        color: #18448e;

        @media screen and (max-width: 767px) {
          font-size: 2rem;
        }
      }
    }

    .boxes {
      margin-top: 3rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);

      @media screen and (max-width: 767px) {
        margin-top: 0.5rem;
        grid-template-columns: 100%;
      }

      .box {
        position: relative;

        & img {
        }

        .texts {
          position: absolute;
          top: 9rem;
          left: 50%;
          transform: translate(-50%, 0);
          width: 35.2rem;

          @media screen and (max-width: 767px) {
            top: 7rem;
            width: 80%;
          }

          .step {
            font-weight: 700;
            font-size: 1.6rem;
            line-height: 1.6;
            text-align: center;
            color: #ffffff;

            @media screen and (max-width: 767px) {
              font-size: 1.2rem;
            }

            & span {
              font-size: 2rem;

              @media screen and (max-width: 767px) {
                font-size: 1.5rem;
              }
            }
          }

          .title {
            margin-top: 1.5rem;
            font-weight: 700;
            font-size: 2.3rem;
            line-height: 1.2;
            text-align: center;
            color: #fff44f;

            @media screen and (max-width: 767px) {
              margin-top: 1rem;
              font-size: 1.8rem;
            }
          }

          .content {
            margin-top: 2rem;
            font-weight: 500;
            font-size: 1.6rem;
            line-height: 200%;
            text-align: center;
            letter-spacing: 0.1em;
            color: #ffffff;

            @media screen and (max-width: 767px) {
              margin-top: 1.5rem;
              font-size: 1.2rem;
            }
          }
        }
      }

      .box:not(:last-child) {
        &::after {
          content: "";
          position: absolute;
          right: 0;
          top: 50%;
          transform: translate(50%, -50%);
          background-image: url(./img/icon-arrow-yellow.svg);
          width: 3.6rem;
          height: 4.6rem;
          background-size: contain;
          background-repeat: no-repeat;
          z-index: 1;
        }

        @media screen and (max-width: 767px) {
          &::after {
            top: initial;
            right: 50%;
            bottom: 0;
            transform: translate(41%, 50%) rotate(90deg);
            width: 3.2rem;
            height: 4.62rem;
          }
        }
      }
    }
  }
}

#import-flow {
  background-color: #edf3f5;
  position: relative;
  .section-description {
    @media screen and (max-width: 767px) {
      text-align: center;
    }
  }

  .cards {
    position: relative;
    margin-top: 6.4rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.6rem;

    &::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 2rem;
      transform: translate(-50%, -50%);
      width: calc(100% - 24rem);
      height: 0.2rem;
      background-color: var(--color-primary);
      z-index: -1;
    }

    @media screen and (max-width: 767px) {
      margin-top: 3.2rem;
      grid-template-columns: 100%;
      gap: 1.6rem;
      padding-left: 5.5rem;

      &::before {
        left: 1.9rem;
        top: 0;
        width: 0.2rem;
        height: 100%;
        transform: none;
      }
    }

    .card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;

      .number {
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        background-color: var(--color-primary);
        display: flex;
        justify-content: center;
        align-items: center;

        @media screen and (max-width: 767px) {
          position: absolute;
          left: -5.5rem;
          top: 0;
        }

        & p {
          font-family: "Inter";
          font-weight: 600;
          font-size: 1.4rem;
          line-height: 1.5;
          color: #ffffff;
        }
      }

      .box {
        flex-grow: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 1.6rem;
        border-radius: 0.4rem;
        background-color: #fff;
        padding: 2.4rem;

        @media screen and (max-width: 767px) {
          margin-top: 0;
        }

        .box-title {
          font-family: "Noto Sans JP";
          font-weight: 700;
          font-size: 1.8rem;
          line-height: 140%;
          color: var(--color-primary);
        }

        .box-description {
          flex-grow: 1;
          margin-top: 1.2rem;
          font-family: "Noto Sans JP";
          font-weight: 400;
          font-size: 1.4rem;
          line-height: 160%;
          color: var(--color-primary);
          @media screen and (max-width: 767px) {
            margin-top: 0.6rem;
          }
        }

        .time-box {
          margin-top: 1.6rem;
          border-top: 0.1rem solid var(--color-border);
          padding-top: 1.6rem;

          @media screen and (max-width: 767px) {
            display: grid;
            grid-template-columns: 2em 1fr;
            align-items: center;
          }

          .meyasu {
            font-family: "Noto Sans JP";
            font-weight: 500;
            font-size: 1.2rem;
            line-height: 1.28;
            text-align: center;
            letter-spacing: 0.05em;
            color: var(--color-primary);

            @media screen and (max-width: 767px) {
              text-align: left;
            }
          }

          .time {
            margin-top: 0.5rem;
            font-family: "Noto Sans JP";
            font-weight: 700;
            font-size: 1.6rem;
            line-height: 1.28;
            text-align: center;
            color: var(--color-primary);

            @media screen and (max-width: 767px) {
              margin-top: 0;
            }
          }
        }
      }
    }
  }

  .fast {
    margin-top: 4rem;
    background-color: #fff;
    padding: 3.6rem;

    @media screen and (max-width: 767px) {
      margin-top: 3.5rem;
      padding: 2rem;
    }

    .bold-text {
      font-family: "Noto Sans JP";
      font-weight: 700;
      font-size: 2.4rem;
      line-height: 1.5;
      text-align: center;
      color: var(--color-primary);

      @media screen and (max-width: 767px) {
        font-size: 1.6rem;
      }
    }

    .remark {
      margin-top: 1rem;
      font-family: "Noto Sans JP";
      font-weight: 400;
      font-size: 1.8rem;
      line-height: 1.5;
      text-align: center;
      letter-spacing: 0.1em;
      color: var(--color-primary);

      @media screen and (max-width: 767px) {
        margin-top: 0.8rem;
        font-size: 1.4rem;
      }
    }
  }
}

#faq {
  .section-description {
    @media screen and (max-width: 767px) {
      text-align: center;
    }
  }
  .faq-list {
    margin-top: 6.4rem;

    @media screen and (max-width: 767px) {
      margin-top: 3.2rem;
    }

    .faq-item {
      &:not(:first-child) {
        margin-top: 3.2rem;
        border-top: 0.1rem solid var(--color-border);
        padding-top: 3.2rem;

        @media screen and (max-width: 767px) {
          margin-top: 2.4rem;
          padding-top: 2.4rem;
        }
      }

      .faq-question {
        display: flex;
        align-items: baseline;
        gap: 1.6rem;

        @media screen and (max-width: 767px) {
          gap: 1.2rem;
        }

        .icon {
          flex-shrink: 0;
          width: 4rem;
          height: 4rem;
          border-radius: 50%;
          background-color: var(--color-primary);
          display: flex;
          justify-content: center;
          align-items: center;
          font-family: "Inter";
          font-weight: 600;
          font-size: 2rem;
          line-height: 100%;
          text-align: center;
          color: #ffffff;
          translate: 0 -0.3rem;
          
          @media screen and (max-width: 767px) {
            width: 3.2rem;
            height: 3.2rem;
            font-size: 1.6rem;
            translate: 0 -0.1rem;
          }
        }

        .text {
          font-family: "Noto Sans JP";
          font-weight: 800;
          font-size: 2.4rem;
          line-height: 1.5;
          color: var(--color-primary);

          @media screen and (max-width: 767px) {
            font-size: 1.6rem;
          }
        }
      }

      .faq-answer {
        margin-top: 2rem;
        display: flex;
        align-items: baseline;
        gap: 1.6rem;

        @media screen and (max-width: 767px) {
          margin-top: 1.2rem;
          gap: 1.2rem;
        }

        .icon {
          flex-shrink: 0;
          width: 4rem;
          height: 4rem;
          border-radius: 50%;
          background-color: fff;
          border: 0.1rem solid var(--color-primary);
          display: flex;
          justify-content: center;
          align-items: center;
          font-family: "Inter";
          font-weight: 600;
          font-size: 2rem;
          line-height: 100%;
          text-align: center;
          color: var(--color-primary);

          @media screen and (max-width: 767px) {
            width: 3.2rem;
            height: 3.2rem;
            font-size: 1.6rem;
          }
        }

        .text {
          font-family: "Noto Sans JP";
          font-weight: 400;
          font-size: 1.8rem;
          line-height: 200%;
          letter-spacing: 0.1em;
          color: var(--color-primary);

          @media screen and (max-width: 767px) {
            font-size: 1.4rem;
          }
        }
      }
    }
  }
}

#contact {
  #salesforce-form {
    margin-top: 6.4rem;

    @media screen and (max-width: 767px) {
      margin-top: 3.2rem;
    }
  }
}

#about {
  .inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 16rem;

    @media screen and (max-width: 767px) {
      grid-template-columns: 100%;
      gap: 0rem;
    }

    .left-half {
      @media screen and (max-width: 767px) {
        display: contents;
      }
      .big-text {
        font-family: "Noto Sans JP";
        font-weight: 800;
        font-size: 3.2rem;
        line-height: 1;
        letter-spacing: 0.05em;
        color: var(--color-primary);

        @media screen and (max-width: 767px) {
          font-size: 1.8rem;
        }
      }

      .small-text {
        margin-top: 3.6rem;
        font-family: "Noto Sans JP";
        font-weight: 400;
        font-size: 1.8rem;
        line-height: 200%;
        letter-spacing: 0.1em;
        color: var(--color-primary);

        @media screen and (max-width: 767px) {
          margin-top: 2rem;
          font-size: 1.4rem;
        }
      }

      .url-list {
        margin-top: 3.6rem;

        @media screen and (max-width: 767px) {
          margin-top: 1rem;
          order: 1;
        }

        & li {
          margin-top: 1rem;

          @media screen and (max-width: 767px) {
            margin-top: 0.7rem;
          }

          & a {
            font-family: "Noto Sans JP";
            font-weight: 500;
            font-size: 1.6rem;
            line-height: 180%;
            letter-spacing: 0.05em;
            color: var(--color-primary);
            position: relative;
            display: inline-flex;
            align-items: center;
            padding-left: 2.1em;

            &::before {
              content: "";
              position: absolute;
              left: 0;
              top: 50%;
              width: 1.25em;
              height: 1.25em;
              border-radius: 50%;
              background: var(--color-primary);
              transform: translateY(-50%);
            }

            &::after {
              content: "";
              position: absolute;
              left: 0.44em;
              top: 50%;
              width: 0.32em;
              height: 0.32em;
              border-top: 0.12em solid #fff;
              border-right: 0.12em solid #fff;
              transform: translateY(-60%) rotate(45deg);
            }

            @media screen and (max-width: 767px) {
              font-size: 1.4rem;
            }
          }
        }
      }
    }

    .right-half {
      @media screen and (max-width: 767px) {
        margin-block: 4rem;
      }
      .medium-text {
        font-family: "Noto Sans JP";
        font-weight: 600;
        font-size: 2.4rem;
        line-height: 100%;
        letter-spacing: 0.05em;
        color: var(--color-primary);

        @media screen and (max-width: 767px) {
          font-size: 1.6rem;
        }
      }

      .table {
        margin: 3.6rem 0 6rem;

        @media screen and (max-width: 767px) {
          margin: 2.4rem 0 4rem;
        }

        .pair {
          padding: 1.6rem 0;
          border-bottom: 0.1rem solid var(--color-border);
          display: grid;
          align-items: baseline;
          grid-template-columns: 12rem auto;
          gap: 2rem;

          @media screen and (max-width: 767px) {
            grid-template-columns: 5.5rem auto;
            gap: 1.5rem;
          }

          &:first-child {
            border-top: 0.1rem solid var(--color-border);
          }

          .key {
            font-family: "Noto Sans JP";
            font-weight: 600;
            font-size: 1.6rem;
            line-height: 180%;
            letter-spacing: 0.05em;
            color: var(--color-primary);

            @media screen and (max-width: 767px) {
              font-size: 1.4rem;
            }
          }

          .value {
            font-family: "Noto Sans JP";
            font-weight: 400;
            font-size: 1.6rem;
            line-height: 180%;
            letter-spacing: 0.05em;
            color: var(--color-primary);

            @media screen and (max-width: 767px) {
              font-size: 1.4rem;
            }
          }
        }
      }

      .regular-text {
        margin-top: 3.6rem;
        font-family: "Noto Sans JP";
        font-weight: 400;
        font-size: 1.6rem;
        line-height: 180%;
        color: var(--color-primary);

        @media screen and (max-width: 767px) {
          margin-top: 2rem;
          font-size: 1.4rem;
        }
      }
    }
  }
}

#footer {
  border-top: 0.1rem solid var(--color-border);
  padding: 2.5rem 0;

  @media screen and (max-width: 767px) {
    padding: 1.5rem 0;
  }

  .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 2.4rem;

      @media screen and (max-width: 767px) {
        gap: 1rem;
      }

      & img {
        width: 14rem;

        @media screen and (max-width: 767px) {
          width: 9rem;
        }
      }

      & span {
        font-family: "Noto Sans JP";
        font-weight: 500;
        font-size: 1.4rem;
        line-height: 1;
        letter-spacing: 0.1em;
        color: var(--color-primary);

        @media screen and (max-width: 767px) {
          font-size: 1.2rem;
        }
      }
    }

    .copyright {
      font-family: "Inter";
      font-weight: 400;
      font-size: 1.4rem;
      line-height: 1;
      letter-spacing: 0.1em;
      color: var(--color-primary);

      @media screen and (max-width: 767px) {
        font-size: 1.2rem;
      }
    }
  }
}
