/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

:root {
  --spacing-0: 0;
  --spacing-harf: 4px;
  --spacing-1: 8px;
  --spacing-2: 16px;
  --spacing-3: 24px;
  --spacing-4: 32px;
  --spacing-5: 40px;
  --spacing-6: 48px;
  --spacing-7: 56px;
  --spacing-8: 64px;
  --spacing-9: 72px;
  --spacing-10: 80px;
  --section-pc: 100px;
  --section-sp: 60px;
  --font-en: "Roboto", sans-serif;
  --font-ja: "Noto Sans JP";
  --radious-s: 4px;
}

*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --clamp-y-axis-intersection: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
  --clamp-preffered-value: calc(
  var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
  calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
  var(--clamp-preffered-value),
  calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );
  font-size: var(--clamp);
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--Semantic-Text_black);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  height: auto;
}

body {
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1200;
  --clamp-min: 15;
  --clamp-max: 16;
  font-family: "Roboto", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  color: var(--Semantic-Text_black);
  scroll-behavior: smooth;
  line-height: 180%;
}

.u-mb-3 {
  margin-bottom: var(--spacing-2);
}
@media screen and (min-width: 768px) {
  .u-mb-3 {
    margin-bottom: var(--spacing-3);
  }
}

.u-mb-4 {
  margin-bottom: var(--spacing-2);
}
@media screen and (min-width: 768px) {
  .u-mb-4 {
    margin-bottom: var(--spacing-4);
  }
}

.u-mb-9 {
  margin-bottom: var(--spacing-5);
}
@media screen and (min-width: 768px) {
  .u-mb-9 {
    margin-bottom: var(--spacing-9);
  }
}

.is-pc-hidden {
  display: block;
}
@media screen and (min-width: 768px) {
  .is-pc-hidden {
    display: none !important;
  }
}

.is-sp-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-sp-hidden {
    display: block;
  }
}

.c-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-2);
}
.c-section-title .c-section-title__text {
  text-align: center;
}

.c-section-title__text {
  --clamp-min: 22;
  --clamp-max: 34;
  line-height: 160%;
  letter-spacing: -0.03em;
}

.c-section-title__deco {
  font-family: var(--font-en);
  --clamp-min: 14;
  --clamp-max: 18;
  font-weight: 100;
  position: relative;
  padding-left: var(--spacing-2);
  text-align: center;
  display: inline-block;
}
.c-section-title__deco::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--Semantic-Primary);
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 10px;
}

.c-title-black {
  background-color: var(--Semantic-Text_black);
  color: var(--Semantic-White);
  display: inline-block;
  font-weight: bold;
  padding: 0 var(--spacing-2);
  line-height: 1;
  padding: var(--spacing-harf);
  letter-spacing: 0.02em;
}

.c-title-list {
  --clamp-min: 28;
  --clamp-max: 34;
  line-height: 145%;
  letter-spacing: -0.04em;
}
.c-title-list span {
  background: var(--gradation);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

:root {
  --Semantic-Primary: #A69876;
  --Semantic-Secondary_bg: #F2F2F2;
  --Semantic-Text_black:#1A1A1A;
  --Semantic-White:#FFF;
  --Semantic-Text_gray:#737373;
  --Semantic-Text_border:#E6E6E6;
  --Semantic-Danger: #E25945;
  --gradation:linear-gradient(180deg, #998962 0%, #806C3B 100%);
  --Semantic-Border: #E5E5E5;
}

.l-footer {
  background-color: var(--Semantic-Secondary_bg);
  padding: var(--spacing-4) 0;
  border-top: 1px solid #fff;
}

.l-footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--spacing-4);
}
@media screen and (min-width: 768px) {
  .l-footer-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.l-footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-4);
}
.l-footer-list li {
  --clamp-min: 12;
  --clamp-max: 12;
}
.l-footer-list li a {
  font-weight: bold;
}

.l-header {
  padding: var(--spacing-2) 0 0 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: var(--spacing-3) 0 0 0;
  }
}
.l-header img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .l-header img {
    width: 160px;
  }
}

.l-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header-inner .l-header-login {
  cursor: pointer;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  gap: 8px;
  border-radius: var(--Rounded-ROUND-999, 999px);
  background: #FFF;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .l-header-inner .l-header-login {
    padding: 16px 40px;
    gap: 16px;
  }
}
.l-header-inner .l-header-login img {
  width: 20px;
  height: 20px;
}

.l-container {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.l-container.l-container--sp-max {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-container.l-container--sp-max {
    width: calc(100% - 40px);
  }
}

.l-container-inner {
  max-width: 900px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.p-feature {
  padding: var(--section-pc) 0;
}

.p-feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-9);
  margin: var(--section-sp) 0 0 0;
}
@media screen and (min-width: 1024px) {
  .p-feature-list {
    gap: var(--section-pc);
    margin: var(--section-pc) 0 0 0;
  }
}

.p-feature-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: var(--spacing-2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .p-feature-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
  .p-feature-list__item:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.p-feature-list__item .text {
  line-height: 210%;
}
.p-feature-list__item .p-feature-list__item-right {
  position: relative;
  max-width: 500px;
}
.p-feature-list__item .chef_right_1 {
  position: absolute;
  top: 0;
  right: 70px;
  width: 22%;
}
.p-feature-list__item .chef_right_2 {
  position: absolute;
  top: 30%;
  right: 50px;
  width: 12%;
}
.p-feature-list__item .chef_right_3 {
  position: absolute;
  top: 55%;
  right: 10px;
  width: 20%;
}
.p-feature-list__item .chef_right_4 {
  position: absolute;
  bottom: 0;
  right: 80px;
  width: 16%;
}
.p-feature-list__item .chef_right_5 {
  position: absolute;
  top: 16%;
  left: 20px;
  width: 18%;
}
.p-feature-list__item .chef_right_6 {
  position: absolute;
  top: 45%;
  left: 0;
  width: 20%;
}
.p-feature-list__item .chef_right_7 {
  position: absolute;
  bottom: 14%;
  left: 80px;
  width: 12%;
}
.p-feature-list__item .feature_2_p1 {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 40%;
}
.p-feature-list__item .feature_2_p2 {
  position: absolute;
  top: 5%;
  right: 0;
  width: 40%;
}
.p-feature-list__item .feature_4_p1 {
  position: absolute;
  top: 15%;
  left: -10px;
  width: 40%;
}
.p-feature-list__item .feature_4_p2 {
  position: absolute;
  bottom: 5%;
  right: 10px;
  width: 30%;
}
.p-feature-list__item .feature_3_gif {
  border-radius: 10px;
  border: 6px solid #f2f2f2;
}
.p-feature-list__item .feature_3_p1 {
  position: absolute;
  bottom: 5%;
  left: -40px;
  width: 60%;
}
@media screen and (min-width: 1024px) {
  .p-feature-list__item .feature_3_p1 {
    left: 20px;
    width: 40%;
  }
}
.p-feature-list__item .feature_3_p2 {
  position: absolute;
  top: 5%;
  width: 60%;
  right: -50px;
}
@media screen and (min-width: 1024px) {
  .p-feature-list__item .feature_3_p2 {
    right: 10px;
    width: 40%;
  }
}

.p-feature-list__item-img {
  min-width: 100%;
  position: relative;
  z-index: -1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1024px) {
  .p-feature-list__item-img {
    min-width: 480px;
    max-width: 500px;
    z-index: -1;
  }
}

.p-feature-list__item-text {
  max-width: 540px;
  position: relative;
}
.p-feature-list__item-text::after {
  content: "";
  background-image: none;
}
@media screen and (min-width: 1024px) {
  .p-feature-list__item-text::after {
    content: "";
    background-image: url(../img/circle.png);
    display: block;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: 100%;
    position: absolute;
    bottom: -140px;
    z-index: -1;
  }
}

.p-flow {
  background-color: var(--Semantic-Secondary_bg);
  padding: var(--section-sp) 0;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding: var(--section-pc) 0;
  }
}

.p-flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: var(--spacing-8);
  gap: var(--spacing-8);
}
@media screen and (min-width: 768px) {
  .p-flow-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-flow-list .title {
  --clamp-min: 20;
  --clamp-max: 28;
  font-weight: bold;
}
.p-flow-list .title span {
  font-family: var(--font-en);
}
.p-flow-list .text {
  color: var(--Semantic-Text_gray);
  text-align: center;
}

.p-flow-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item {
    gap: var(--spacing-4);
  }
}
.p-flow-list__item::after {
  content: "";
  background-image: url(../img/arrow.svg);
  display: block;
  width: 16px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -40px;
  right: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
@media screen and (min-width: 768px) {
  .p-flow-list__item::after {
    top: 50%;
    bottom: initial;
    right: -7vw;
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
}
.p-flow-list__item:last-of-type::after {
  content: "";
  background-image: none;
}

.p-flow-ekyc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  padding: var(--spacing-4);
  margin-top: var(--spacing-8);
  gap: var(--spacing-4);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-flow-ekyc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-flow-ekyc .p-flow-ekyc__text {
  max-width: 600px;
}
.p-flow-ekyc .p-flow-ekyc__title {
  line-height: 1.6;
  --clamp-min: 22;
  --clamp-max: 24;
  color: var(--Semantic-Primary);
  font-weight: bold;
  margin-bottom: var(--spacing-2);
}
.p-flow-ekyc .p-flow-ekyc__img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-flow-ekyc .p-flow-ekyc__img img {
    width: 300px;
  }
}

.p-appeal {
  background-image: url(../img/app_background.jpg);
  color: var(--Semantic-White);
  padding: var(--section-sp) 0;
  text-align: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-appeal {
    padding: var(--section-pc) 0;
  }
}

.p-appeal-title {
  --clamp-min: 28;
  --clamp-max: 34;
  line-height: 145%;
}

.p-appeal-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-4);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-appeal-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-3);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-appeal-button img {
  height: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-appeal-button img {
    height: 66px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-appeal-text {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-appeal-text {
    text-align: center;
  }
}

.p-company {
  background-color: var(--Semantic-Secondary_bg);
  padding: var(--section-sp) 0;
}
@media screen and (min-width: 768px) {
  .p-company {
    padding: var(--spacing-10) 0;
  }
}

.p-company-title {
  --clamp-min: 28;
  --clamp-max: 30;
  font-weight: bold;
  line-height: 180%;
}

.p-company-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-company-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-company-list {
  width: 100%;
  max-width: 500px;
}
@media screen and (min-width: 1024px) {
  .p-company-list {
    max-width: 670px;
    width: 70%;
  }
}

.p-company-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: var(--spacing-2) 0;
  gap: var(--spacing-1);
  --clamp-min: 14;
  --clamp-max: 14;
  border-bottom: 1px solid var(--Semantic-Text_border);
}
@media screen and (min-width: 768px) {
  .p-company-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-company-list__item dt {
  width: 150px;
  color: var(--Semantic-Text_gray);
}

.p-about {
  background-image: url(../img/black_bg.png);
  padding: 150px 0 var(--section-pc) 0;
  color: var(--Semantic-White);
}
@media screen and (min-width: 768px) {
  .p-about {
    padding: 250px 0 var(--section-pc) 0;
  }
}

.p-about-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-4);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .p-about-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-about-inner .p-about-movie {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 600px;
}
.p-about-inner iframe {
  width: 100%;
  height: 100%;
}

.p-about-text {
  max-width: 495px;
}

.p-about-text__title {
  --clamp-min: 28;
  --clamp-max: 34;
  line-height: 145%;
  letter-spacing: -0.03em;
}

.p-swiper {
  overflow-x: hidden;
  margin-bottom: -90px;
  background-color: var(--Semantic-Secondary_bg);
}
@media screen and (min-width: 768px) {
  .p-swiper {
    margin-bottom: -150px;
  }
}
.p-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.p-swiper .swiper-slide {
  width: 220px !important;
}
@media screen and (min-width: 768px) {
  .p-swiper .swiper-slide {
    width: 390px !important;
  }
}

.p-firstview {
  background-color: var(--Semantic-Secondary_bg);
  padding: var(--spacing-5) 0;
  background-image: url(../img/world.svg);
  background-repeat: no-repeat;
  background-position: 100% bottom;
  background-size: 660px;
}
@media screen and (min-width: 768px) {
  .p-firstview {
    background-position: right;
    background-size: 74%;
  }
}

.p-firstview-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: var(--spacing-5);
}
@media screen and (min-width: 768px) {
  .p-firstview-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
  }
}

.p-firstview-text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-firstview-text {
    text-align: left;
  }
}

.p-firstview-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-3);
  margin-top: var(--spacing-3);
}
.p-firstview-button img {
  height: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-firstview-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
  }
  .p-firstview-button img {
    height: 66px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-firstview-button.is-sp-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-firstview-button.is-sp-hidden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-firstview-main {
  margin-bottom: var(--spacing-4);
}
@media screen and (min-width: 768px) {
  .p-firstview-main {
    margin-bottom: var(--spacing-5);
  }
}

.p-firstview-sub-title {
  display: inline-block;
  background-color: var(--Semantic-Text_black);
  color: #fff;
  padding: var(--spacing-harf) var(--spacing-2) 2px var(--spacing-2);
  --clamp-min: 14;
  --clamp-max: 20;
  font-weight: bold;
  margin-bottom: var(--spacing-3);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .p-firstview-sub-title {
    margin-bottom: var(--section-pc);
  }
}

.p-firstview-img {
  position: relative;
  width: 550px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .p-firstview-img {
    display: block;
  }
}
.p-firstview-img .main_moc {
  width: 65%;
}
@media screen and (min-width: 1024px) {
  .p-firstview-img .main_moc {
    width: 100%;
    max-width: 390px;
    margin: 0 0 0 10%;
  }
}
.p-firstview-img .main_moc_people {
  position: absolute;
  top: 0;
  left: 10px;
}
@media screen and (min-width: 768px) {
  .p-firstview-img .main_moc_people {
    top: 10px;
  }
}
.p-firstview-img .main_moc_people {
  animation: floating-y 2.4s ease-in-out infinite alternate-reverse;
}

@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes floating-y {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.p-firstview__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: initial;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  padding: var(--spacing-1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-5);
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--spacing-3);
}
@media screen and (min-width: 768px) {
  .p-firstview__news {
    position: absolute;
    right: 20px;
    bottom: 11vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: var(--spacing-2) var(--spacing-3);
  }
}

.p-firstview__news-text {
  position: relative;
}
.p-firstview__news-text p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}
.p-firstview__news-text::before {
  display: block;
  position: absolute;
  height: 100%;
  width: 2px;
  content: "";
  background-color: var(--Semantic-Text_border);
  left: -20px;
  top: 0;
}
.p-firstview__news-text .p-firstview__news-text-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-404 {
  padding: 120px 0 var(--section-pc) 0;
  min-height: calc(100vh - 106px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-3);
}
.p-404 h2 {
  --clamp-min: 24;
  --clamp-max: 48;
}
.p-404 .sub-text {
  --clamp-min: 22;
  --clamp-max: 18;
  font-weight: bold;
}