@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: auto;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

html {
  scroll-behavior: auto;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1400px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1A1A1A;
  overflow-x: hidden;
  /* Safari対策：スクロールのガタつき防止 */
  -webkit-overflow-scrolling: touch;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.c-btn:hover {
  opacity: 0.8;
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #2F2725;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loading__content {
  position: relative;
  text-align: center;
}

.loading__logo {
  margin-bottom: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  width: 316px;
  max-height: 2.5rem;
  vertical-align: top;
  filter: brightness(0) invert(1);
}

.loading__bar-wrap {
  width: 12.5rem;
  height: 2px;
  background-color: rgba(48, 237, 45, 0.2);
  position: relative;
  overflow: hidden;
  margin-inline: auto;
}

.loading__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #30ED2D;
  transform: scaleX(0);
  transform-origin: left;
}

.loading__bg {
  position: absolute;
  inset: 0;
  background-color: #EFEFEF;
  transform: translateY(100%);
  z-index: 1;
}

.company {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.company__bg-img {
  position: absolute;
  inset: 0;
  background-image: url("./../images/company-bg.png");
  background-size: 35%;
  background-position: 30% bottom;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  transition-delay: 0.8s;
}

.company.is-digital-active .company__bg-img {
  opacity: 1;
}
.company::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(48, 237, 45, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(48, 237, 45, 0.09) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: opacity;
}
.company::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background: linear-gradient(to bottom, transparent, #30ED2D, transparent);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate3d(0, -120%, 0);
          transform: translate3d(0, -120%, 0);
  will-change: transform, opacity;
}
.company.is-digital-active::before {
  opacity: 1;
  animation: companyDigitalFlicker 0.4s ease-in-out;
}
.company.is-digital-active::after {
  animation: companyDigitalScan 0.8s ease-in-out forwards;
}

@keyframes companyDigitalScan {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, -120%, 0);
            transform: translate3d(0, -120%, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 1200%, 0);
            transform: translate3d(0, 1200%, 0);
  }
}
@keyframes companyDigitalFlicker {
  0%, 20%, 40%, 60%, 80%, 100% {
    opacity: 1;
  }
  10%, 30%, 50%, 70%, 90% {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1440px) {
  .company__bg-img {
    background-position: left bottom;
  }
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .company__bg-img {
    background-size: 80%;
  }
}

.company__inner.inner {
  max-width: 90rem;
  padding-inline: 2.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .company__inner.inner {
    padding-inline: 1.25rem;
  }
}

.company__title {
  font-size: 10rem;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #2F2725;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .company__title {
    font-size: 5rem;
  }
}

.company__list {
  display: flex;
  flex-direction: column;
  gap: 2.375rem;
  max-width: 52.8125rem;
  width: 100%;
  margin-left: auto;
  margin-top: -0.625rem;
  position: relative;
  overflow: hidden;
}
.company__list::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #30ED2D;
  transform: translateX(-101%);
  z-index: 2;
}
.company__list > * {
  opacity: 0;
  transition: opacity 0s 0.5s;
}
.company__list.is-show::before {
  animation: companyMask 1s cubic-bezier(0.8, 0, 0.17, 1) forwards;
}
.company__list.is-show > * {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .company__list {
    margin-top: 1.875rem;
    gap: 0.625rem;
  }
}

.company__row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #30ED2D;
  padding-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .company__row {
    flex-direction: column;
    padding-bottom: 0.9375rem;
  }
}

@keyframes companyMask {
  0% {
    transform: translateX(-101%);
  }
  40%, 60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
.company__row:last-of-type {
  border-bottom: none;
}

.company__term {
  width: 10rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.6;
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .company__term {
    width: 100%;
    font-size: 1rem;
    padding-left: 0;
  }
}

.company__desc {
  font-size: 1.125rem;
  font-weight: 500;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.6;
  flex: 1;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .company__desc {
    margin-left: 0;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .company__desc span {
    display: inline-block;
  }
}

.contact {
  background-color: #2F2725;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 2.5rem;
  }
}

.contact__inner.inner {
  max-width: 90rem;
}

.contact__title {
  font-size: 15rem;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #30ED2D;
  letter-spacing: 0;
  line-height: 0.78;
  text-align: center;
  position: relative;
  padding-top: 11.875rem;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 5rem;
    padding-top: 6.25rem;
  }
}

.contact__title::before,
.contact__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 9.375rem;
}
@media screen and (max-width: 767px) {
  .contact__title::before,
  .contact__title::after {
    height: 5rem;
  }
}

.contact__title::before {
  background-color: rgba(48, 237, 45, 0.2);
}

.contact__title::after {
  background-color: #30ED2D;
  animation: scrollDown 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateX(-50%) scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: translateX(-50%) scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: translateX(-50%) scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: translateX(-50%) scale(1, 0);
    transform-origin: 0 100%;
  }
}
.contact__content {
  background-color: #EFEFEF;
  padding-top: 5rem;
  padding-bottom: 6.25rem;
  border-radius: 16px;
  margin-top: -1.5rem;
  opacity: 0;
  transform: translateY(100px);
  /* transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1); */
}
@media screen and (max-width: 767px) {
  .contact__content {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
    padding-inline: 1.25rem;
    margin-top: 0;
  }
}

.contact__lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: #2F2725;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .contact__lead {
    font-size: 0.9375rem;
    text-align: left;
  }
}

.contact__form-group + .contact__form-group {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .contact__form-group + .contact__form-group {
    margin-top: 1.5rem;
  }
}

.contact__form {
  margin-top: 3.75rem;
  max-width: 42.1875rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 2.5rem;
  }
}

.contact__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2F2725;
  letter-spacing: 0.005em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .contact__label {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

.contact__text-small {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2F2725;
  letter-spacing: 0.005em;
  line-height: 1;
}

.contact__required {
  padding: 0 0.5rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.005em;
  background-color: #E13100;
  border-radius: 5px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  padding: 0.625rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.005em;
  line-height: 1.8;
  background-color: #fff;
  margin-top: 0.5rem;
}

.contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder {
  color: #999999;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  opacity: 1;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: #999999;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  opacity: 1;
}

.contact__textarea {
  height: 13.4375rem;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .contact__textarea {
    height: 9.375rem;
  }
}

.contact__privacy {
  margin-top: 1.6875rem;
  display: flex;
  align-items: center;
}

.contact__privacy-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2F2725;
  letter-spacing: 0.005em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.contact__checkbox {
  display: none;
}

.contact__checkbox-custom {
  width: 0.9375rem;
  height: 0.9375rem;
  margin-right: 1rem;
  border-radius: 2px;
  border: 1px solid #999999;
  background-color: #fff;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.contact__checkbox:checked + .contact__checkbox-custom::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.375rem;
  height: 0.625rem;
  border-right: 2px solid #2F2725;
  border-bottom: 2px solid #2F2725;
}

.contact__privacy-link {
  text-decoration: none;
  margin-right: 0.25rem;
}

.contact__turnstile {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .contact__turnstile {
    margin-top: 1rem;
  }
}

.contact__submit-wrap {
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__submit-wrap {
    margin-top: 2.5rem;
  }
}

.contact__submit {
  background-color: #2F2725;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1.5625rem 2rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  line-height: 1.8;
  transition: all 0.3s;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__submit {
    padding: 1.125rem 1.25rem;
    font-size: 1rem;
  }
}

.contact__submit:hover {
  opacity: 1;
  background-color: #30ED2D;
  color: #2F2725;
  font-weight: 600;
}

.contact__submit:disabled,
.contact__submit[disabled] {
  background-color: #DDDDDD;
  color: #999999;
  cursor: not-allowed;
}

.contact__submit:disabled:hover,
.contact__submit[disabled]:hover {
  opacity: 1;
  background-color: #DDDDDD;
  color: #999999;
}

.footer {
  background-color: #2F2725;
  padding-top: 7.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 3.75rem;
    padding-bottom: 1.875rem;
  }
}

.footer__inner.inner {
  max-width: 90rem;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__inner.inner {
    padding-inline: 1.25rem;
  }
}

.footer__logo {
  font-size: clamp(180px, 25.3vw - 14.28px, 350px);
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #EFEFEF;
  letter-spacing: 0;
  line-height: 0.9;
  border-bottom: 1px solid #EFEFEF;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    font-size: 5rem;
    padding-bottom: 0.625rem;
    margin-inline: auto;
  }
}

.footer__bottom {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.footer__bottom.is-active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.footer__link {
  font-size: 0.75rem;
  font-weight: 500;
  color: #EFEFEF;
  letter-spacing: 0.005em;
  line-height: 1;
}

.footer__copyright {
  font-size: 0.875rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  color: #EFEFEF;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  transition: color 0.3s ease;
}

.header {
  height: 3.5625rem;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .header {
    height: 2.5rem;
  }
}

.header__inner {
  padding: 0 2.5rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1.875rem;
  }
}

.header__logo {
  width: 158px;
  height: inherit;
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 158/20;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s ease;
}

.header__nav {
  display: block;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item a {
  padding: 0 1.375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2F2725;
  letter-spacing: 0.005em;
  transition: color 0.3s ease;
}
.header__nav-item a:hover {
  opacity: 1;
}

.header__nav-link-text {
  overflow: hidden;
  height: 1.2em;
}

.header__nav-link-text-wrap {
  display: block;
  transition: transform 0.5s cubic-bezier(0.6, 0, 0, 1);
}

.header__nav-link-text-en {
  display: block;
  line-height: 1.3;
  padding-top: 1px;
}

.header__nav-link-text-ja {
  display: block;
  white-space: nowrap;
  line-height: 1.2;
  padding-top: 1px;
}

@media (any-hover: hover) {
  .header__nav-item a:hover .header__nav-link-text-wrap {
    transform: translateY(-50%);
  }
}
.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: inherit;
  cursor: pointer;
  transition: 0.3s;
  display: none;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.25rem;
  height: 2px;
  background-color: #2F2725;
  transition: background-color 0.3s ease, transform 0.5s;
}

.layout-header.is-white .header__logo img {
  filter: invert(1) brightness(2);
}
.layout-header.is-white .header__nav-item a {
  color: #fff;
}
.layout-header.is-white .header__nav-link-text-ja {
  color: #fff;
}
.layout-header.is-white .header__hamburger span {
  background-color: #fff;
}

.layout-header.is-black .header__logo img {
  filter: none;
}
.layout-header.is-black .header__nav-item a {
  color: #2F2725;
}
.layout-header.is-black .header__nav-link-text-ja {
  color: #2F2725;
}
.layout-header.is-black .header__hamburger span {
  background-color: #2F2725;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0.0625rem;
  transform: translateX(-50%) rotate(45deg);
  background-color: #30ED2D;
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.1875rem;
  transform: translateX(-50%) rotate(-45deg);
  background-color: #30ED2D;
}

.header__drawer {
  padding: 9.375rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #2F2725;
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #30ED2D;
  text-align: center;
  text-transform: uppercase;
}

.header__drawer-item.header__drawer-item--contact a::after {
  content: "";
  margin-bottom: 0.3125rem;
  margin-left: 1.25rem;
  width: 0.9375rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mv {
  background-color: #2F2725;
  padding-top: 0.9375rem;
  height: 46.875rem;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 550px;
    height: 34.375rem;
  }
}

.mv__inner.inner {
  max-width: calc(100% - 2.5rem);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: #EFEFEF;
  border-radius: 12px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .mv__inner.inner {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    display: flex;
    flex-direction: column;
  }
}

.mv__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #30ED2D;
  clip-path: polygon(0 0, 56% 0, 99% 100%, 0% 100%);
  z-index: 0;
  pointer-events: none;
  transform: translateX(-100%);
}

.mv__main {
  position: relative;
  z-index: 1;
  max-width: 90rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 5.3125rem;
}

@media screen and (max-width: 767px) {
  .mv__main {
    margin-top: 5rem;
  }
}

.mv__copy {
  font-size: clamp(160px, 20.83vw, 300px);
  font-weight: 400;
  color: #2F2725;
  letter-spacing: 0;
  line-height: 1.1;
  font-family: "Bebas Neue", sans-serif;
  overflow: hidden;
  margin-top: -5.5rem;
}
@media screen and (max-width: 767px) {
  .mv__copy {
    font-size: clamp(62px, calc(15.212vw + 13.322px), 130px);
    margin-top: -25px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 425px) {
  .mv__copy {
    margin-top: -0.625rem;
  }
}

.mv__copy:first-of-type {
  margin-top: 0;
}

.mv__copy span {
  display: inline-block;
  transform: translateY(110%);
  padding-top: 0.1em;
  margin-top: -0.1em;
}

.mv__lead {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1;
  background-color: #2F2725;
  padding: 0.5rem 1rem;
  display: inline-block;
  text-align: left;
  position: relative;
  overflow: hidden;
  transform: translateX(-101%);
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767px){
  .mv__lead {
    font-size: 1.25rem;
    padding: 0.25rem 0.5rem;
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 30px;
    margin-top: 1.875rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 425px) {
  .mv__lead {
    font-size: 1.25rem;
    padding: 0.25rem 0.5rem;
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 1.875rem;
    line-height: 1.5;
  }
}

.mv__lead.is-ready {
  opacity: 1;
}

.mv__lead-text {
  color: #fff;
  display: block;
  position: relative;
  z-index: 1;
}

.mv__lead-green {
  background: linear-gradient(90deg, #30ED2D 0%, #9AFF8F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .mv__lead-green {
    font-size: 20px;
  }
}

.mv__note {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 90rem;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .mv__note {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0px, calc(5rem - (100vw - 426px) * 80 / 341), 5rem);
    margin-top: 10px;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
  }
}
@media screen and (max-width: 425px) {
  .mv__note {
    align-items: flex-start;
    gap: 1.875rem;
    margin-top: 0.625rem;
  }
}

.mv__note-text {
  font-size: 24px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  color: #2F2725;
  letter-spacing: 0;
  line-height: 0.9;
  opacity: 0;
  transition: opacity 0.1s;
}
@media screen and (max-width: 767px) {
  .mv__note-text {
    font-size: clamp(16px, calc(2.237vw + 10.842px), 28px);
    font-size: 1.0625rem;
  }
}
.mv__note-text.is-ready {
  opacity: 1;
}
.mv__note-text span {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.4s ease;
  white-space: pre;
}
.mv__note-text span.is-visible {
  opacity: 1;
}

.js-mv-note:not(.is-ready) {
  opacity: 0 !important;
  color: transparent !important;
}

.mv__scroll {
  font-size: 30px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  color: #2F2725;
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  margin-right: 0.3125rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .mv__scroll {
    font-size: 20px;
    margin-left: auto;
    margin-top: 10px;
  }
}

.mv__scroll::after {
  content: "";
  background-image: url("./../images/arrow.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 0.75rem;
  height: 1.125rem;
  transform: translateY(0);
  animation: mv-scroll-arrow-digital 1.15s steps(6, end) infinite;
}

@keyframes mv-scroll-arrow-digital {
  0% {
    transform: translateY(-2px);
    opacity: 0.2;
  }
  12% {
    opacity: 1;
  }
  28% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    opacity: 1;
  }
  62% {
    transform: translateY(10px);
    opacity: 0.25;
  }
  74% {
    opacity: 1;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv__scroll::after {
    animation: none;
  }
}

.philosophy {
  margin-top: 7.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .philosophy {
    margin-top: 3.75rem;
  }
}

.philosophy__inner.inner {
  max-width: 90rem;
}

@media screen and (max-width: 767px) {
  .philosophy__inner.inner {
    padding-inline: 1.25rem;
  }
}

.philosophy__bg {
  background-color: transparent;
  border-radius: 12px;
  width: 100%;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .philosophy__bg {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-inline: 1.25rem;
  }
}

.philosophy__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  width: 100vmax;
  height: 100vmax;
  background-color: #30ED2D;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.philosophy__content {
  max-width: 40.875rem;
  width: 100%;
  margin-inline: auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.philosophy__title {
  font-size: 10rem;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #2F2725;
  letter-spacing: 0;
  line-height: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .philosophy__title {
    font-size: 5rem;
  }
}
.philosophy__title span {
  display: block;
  transform: translateY(100%);
}

.philosophy__message {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .philosophy__message {
    margin-top: 1.25rem;
  }
}

.philosophy__lead {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.4;
  background-color: #2F2725;
  display: block;
  padding-top: 0.125rem;
  padding-bottom: 0.375rem;
  padding-left: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .philosophy__lead {
    font-size: 1.25rem;
    padding-left: 0.5rem;
    white-space: normal;
  }
}

.philosophy__lead + .philosophy__lead {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .philosophy__lead + .philosophy__lead {
    margin-top: 0.5rem;
  }
}

.philosophy__lead-mask {
  position: absolute;
  inset: 0;
  background-color: #30ED2D;
  transform: translateX(-101%);
  z-index: 2;
}

.philosophy__text {
  margin-top: 1.5rem;
}

.philosophy__sentence {
  font-size: 1.125rem;
  font-weight: 500;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.6;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .philosophy__sentence {
    font-size: 1rem;
  }
}
.philosophy__sentence span {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: pre;
}
.philosophy__sentence span.is-visible {
  opacity: 1;
}

.privacy-policy {
  background-color: #EFEFEF;
  padding-top: 9.375rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy {
    padding-top: 5rem;
    padding-bottom: 3.75rem;
  }
}

.privacy-policy__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2F2725;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .privacy-policy__title {
    font-size: 1.5rem;
  }
}

.privacy-policy__title + .privacy-policy__items {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__title + .privacy-policy__items {
    margin-top: 2rem;
  }
}

.privacy-policy__inner.inner {
  margin: auto;
  padding: 0 1.5625rem;
  max-width: 75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .privacy-policy__inner.inner {
    padding: 0 1.25rem;
    max-width: 37.5rem;
  }
}

.privacy-policy__introduction {
  margin-top: 3.75rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .privacy-policy__introduction {
    font-size: 1rem;
  }
}

.privacy-policy__introduction + .privacy-policy__items,
.privacy-policy__introduction + .privacy-policy__section-title {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__introduction + .privacy-policy__items,
  .privacy-policy__introduction + .privacy-policy__section-title {
    margin-top: 2rem;
  }
}

.privacy-policy__meta {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__meta {
    margin-top: 1.375rem;
  }
}

.privacy-policy__date {
  display: block;
  font-size: 1rem;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 500;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .privacy-policy__date {
    font-size: 0.875rem;
  }
}

.privacy-policy__signature {
  margin-top: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .privacy-policy__signature {
    font-size: 0.875rem;
  }
}

.privacy-policy__section-title {
  margin-top: 2.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #2F2725;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .privacy-policy__section-title {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
}

.privacy-policy__section-title + .privacy-policy__introduction,
.privacy-policy__section-title + .privacy-policy__table,
.privacy-policy__section-title + .privacy-policy__items {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__section-title + .privacy-policy__introduction,
  .privacy-policy__section-title + .privacy-policy__table,
  .privacy-policy__section-title + .privacy-policy__items {
    margin-top: 0.75rem;
  }
}

.privacy-policy__items--secondary {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__items--secondary {
    margin-top: 1.375rem;
  }
}

.privacy-policy__items {
  padding-top: 1.25rem;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .privacy-policy__items {
    padding-top: 0.9375rem;
  }
}

.privacy-policy__item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .privacy-policy__item {
    padding-bottom: 0.9375rem;
  }
}

.privacy-policy__item:last-of-type {
  border-bottom: none;
}

.privacy-policy__item + .privacy-policy__item {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__item + .privacy-policy__item {
    margin-top: 1.25rem;
  }
}

.privacy-policy__term {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .privacy-policy__term {
    font-size: 1.125rem;
  }
}

.privacy-policy__description {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .privacy-policy__description {
    font-size: 1rem;
  }
}

.privacy-policy__description-text {
  font-size: 1.125rem;
  font-weight: 400;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .privacy-policy__description-text {
    font-size: 1rem;
  }
}

.privacy-policy__description-text + .privacy-policy__description-text {
  margin-top: 0.5rem;
}

.privacy-policy--embed {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
}

.privacy-policy--embed .privacy-policy__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.privacy-policy--embed .privacy-policy__title span {
  display: inline-block;
}

.privacy-policy--embed .privacy-policy__title + .privacy-policy__scroll {
  margin-top: 16px;
}

.privacy-policy--embed .privacy-policy__scroll {
  height: 220px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  padding: 16px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .privacy-policy--embed .privacy-policy__scroll {
    height: 200px;
    padding: 12px;
    font-size: 0.875rem;
  }
}

.privacy-policy--embed .privacy-policy__items {
  padding-top: 0;
  border-top: none;
}

.contact__privacy-policy {
  margin-top: 1.5rem;
}

.privacy-policy--embed .privacy-policy__term {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2F2725;
  letter-spacing: 0.03em;
}

.privacy-policy--embed .privacy-policy__description,
.privacy-policy--embed .privacy-policy__description-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #2F2725;
  letter-spacing: 0.03em;
}

.privacy-policy--embed .privacy-policy__table-header,
.privacy-policy--embed .privacy-policy__table-data {
  font-size: 0.875rem;
  color: #2F2725;
  letter-spacing: 0.03em;
}

.privacy-policy--embed .privacy-policy__table-header {
  font-weight: 700;
  width: 20%;
}

.privacy-policy--embed .privacy-policy__table-data {
  font-weight: 400;
}

.privacy-policy--embed .privacy-policy__item + .privacy-policy__item {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy--embed .privacy-policy__item + .privacy-policy__item {
    margin-top: 0.25rem;
  }
}

.privacy-policy--embed .privacy-policy__description {
  margin-top: 0.1875rem;
}

.privacy-policy--embed .privacy-policy__description-text + .privacy-policy__description-text {
  margin-top: 0.125rem;
}

.privacy-policy--embed .privacy-policy__table {
  margin-top: 0.25rem;
}

.privacy-policy__description-heading {
  margin-top: 1.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .privacy-policy__description-heading {
    margin-top: 0.9375rem;
    font-size: 1rem;
  }
}

.privacy-policy__description-heading + .privacy-policy__table,
.privacy-policy__description-heading + .privacy-policy__description-items {
  margin-top: 0.75rem;
}

.privacy-policy__description-numbers {
  counter-reset: number;
}

.privacy-policy__description-text + .privacy-policy__description-numbers,
.privacy-policy__description-text + .privacy-policy__description-items {
  margin-top: 0.9375rem;
}

.privacy-policy__description-number {
  padding-left: 0.9375rem;
  text-indent: -0.9375rem;
}

.privacy-policy__description-number + .privacy-policy__description-number,
.privacy-policy__description-item + .privacy-policy__description-item {
  margin-top: 0.9375rem;
}

.privacy-policy__description-number::before {
  content: counter(number) ". ";
  counter-increment: number;
}

.privacy-policy__description-items {
  padding-left: 1.25rem;
  list-style: disc;
}

.privacy-policy__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  border: 1px solid #ccc;
}

.privacy-policy__table-header {
  width: 15.625rem;
  padding: 0.9375rem 1.25rem;
  border: 1px solid #ccc;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .privacy-policy__table-header {
    width: 6.25rem;
    padding: 0.625rem 0.9375rem;
    font-size: 1rem;
  }
}

.privacy-policy__table-header--wide {
  width: 16.25rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__table-header--wide {
    width: 7.5rem;
  }
}

.privacy-policy__table-data {
  padding: 0.9375rem 1.25rem;
  border: 1px solid #ccc;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .privacy-policy__table-data {
    padding: 0.625rem 0.9375rem;
    font-size: 1rem;
  }
}

.privacy-policy__table-data--em {
  font-weight: 500;
}

.service {
  background-color: #EFEFEF;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service {
    padding-top: 6.25rem;
  }
}

.service__inner.inner {
  max-width: 90rem;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service__inner.inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.service__title {
  font-size: 10rem;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #2F2725;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .service__title {
    font-size: 5rem;
  }
}

.service__items {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service__items {
    margin-top: 1.25rem;
  }
}

.service__item {
  background-color: #EFEFEF;
  position: relative;
  opacity: 0;
  overflow: hidden;
  padding-top: 11px;
  padding-top: 0.6875rem;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  /* transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); */
  /* GSAPでアニメーションさせる要素にCSS transitionをつけるとSafariで競合して動かなくなるため削除 */
}
@media screen and (max-width: 767px) {
  .service__item {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
.service__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #30ED2D;
  z-index: 5;
  transform: translateX(-101%);
}
.service__item:nth-child(odd) {
  transform: translate(-100px, 0);
}
.service__item:nth-child(odd)::before {
  transform: translateX(-101%);
}
.service__item:nth-child(even) {
  transform: translate(100px, 0);
}
.service__item:nth-child(even)::before {
  transform: translateX(101%);
}
.service__item.is-active::before {
  animation: serviceMask 1.2s cubic-bezier(0.8, 0, 0.17, 1) forwards;
}
.service__item.is-active > * {
  animation: serviceContentFade 0s 0.6s forwards;
  opacity: 0;
}

@keyframes serviceMask {
  0% {
    transform: translateX(-101%);
  }
  40%, 60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
.service__item:nth-child(even).is-active::before {
  animation: serviceMaskRev 1.2s cubic-bezier(0.8, 0, 0.17, 1) forwards;
}

@keyframes serviceMaskRev {
  0% {
    transform: translateX(101%);
  }
  40%, 60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-101%);
  }
}
@keyframes serviceContentFade {
  to {
    opacity: 1;
  }
}
.service__item + .service__item {
  border-top: 1px solid #2F2725;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .service__item + .service__item {
    padding-top: 20px;
  }
}



.service__label {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #2F2725;
  background-color: transparent;
  padding: 0.4375rem 2.3125rem;
  letter-spacing: 0;
  line-height: 1;
  border-radius: 37px;
  display: inline-block;
  position: relative;
  z-index: 0;
  isolation: isolate;
  margin-left: 36px;
  margin-left: 2.25rem;
}
@media screen and (max-width: 767px) {
  .service__label {
    margin-left: 15px;
  }
}

.service__label::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #2F2725;
  border-radius: 37px;
  z-index: -1;
}

.service__label::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #30ED2D;
  border-radius: 37px;
  transform: translate(3px, 3px);
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .service__label {
    font-size: 1rem;
    padding: 0.25rem 1rem;
  }
  .service__label::after {
    transform: translate(2px, 2px);
  }
}

.service__name {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  width: 50%;
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service__name {
    font-size: 2.5rem;
    width: 100%;
    padding-left: 0;

  }
}

@media screen and (max-width: 767px) {
  .service__name span {
    white-space: nowrap;
    display: inline-block;
  }
}

.service__body {
  margin-top: 17px;
  margin-top: 1.0625rem;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .service__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    gap: 0.625rem;
    padding-inline: 15px;
    padding-inline: 0.9375rem;
    margin-top: 10px;
    margin-top: 0.625rem;
  }
}

.service__text {
  font-size: clamp(12px, 1.5vw, 18px);
  font-size: clamp(12px, 1.55vw, 18px);
  font-weight: 500;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.6;
  width: 50%;
  width:clamp(50%, calc(82.1% - 2.22vw), 65%);
  padding-left: 50px;
  padding-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .service__text {
    font-size: 1rem;
    width: 100%;
    padding-left: 0;
  }
}

.thanks {
  background-color: #2F2725;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .thanks {
    padding-top: 5rem;
    padding-bottom: 3.75rem;
  }
}

.thanks__inner.inner {
  max-width: 1000px;
}

.thanks__title {
  font-size: 10rem;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #2F2725;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__title {
    font-size: 3.75rem;
  }
}

.thanks__content {
  background-color: #EFEFEF;
  padding-top: 5rem;
  padding-bottom: 6.25rem;
  border-radius: 16px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__content {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
    padding-inline: 1.25rem;
  }
}

.thanks__lead {
  font-size: 1.5rem;
  font-weight: 700;
  color:#2F2725 ;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .thanks__lead {
    font-size: 1.125rem;
  }
}

.thanks__text {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #2F2725;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    font-size: 0.9375rem;
    margin-top: 1.5rem;
  }
}

.thanks__button-wrap {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .thanks__button-wrap {
    margin-top: 2.5rem;
  }
}

.thanks__button {
  display: inline-block;
  background-color: #2F2725;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1.25rem 3.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
  border: none;
  cursor: pointer;
  font-family: inherit;
  opacity: 1;
  transition: all 0.3s;
  text-decoration: none;
}
.thanks__button:hover {
  opacity: 1;
  background-color: #30ED2D;
  color: #2F2725;
}

.thanks__button--secondary {
  background-color: transparent;
  color: #2F2725;
  border: 1px solid #2F2725;
}

.thanks__button--secondary:hover {
  background-color: #30ED2D;
  color: #2F2725;
}

.thanks__confirm {
  margin-top: 2.5rem;
  text-align: left;
}

/* mail.php 確認画面：元の確認画面デザイン（formTable/btn_area）を #formWrap 内だけで復活 */
#formWrap .confirm_text {
  font-size: 1rem;
  font-weight: 500;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.8;
  text-align: center;
  margin-top: 0;
  margin-bottom: 2.5rem;
}

#formWrap table.formTable {
  width: 60%;
  margin-inline: auto;
  border-collapse: collapse;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  #formWrap table.formTable {
    width: 90%;
  }
}

#formWrap table.formTable th,
#formWrap table.formTable td {
  font-size: 1rem;
  font-weight: 500;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.8;
  padding: 1.25rem;
  border-bottom: 1px solid #DDDDDD;
  text-align: left;
  vertical-align: top;
}

#formWrap table.formTable th {
  width: 40%;
  background-color: #30ED2D;
  font-weight: 700;
}

#formWrap .btn_area {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

#formWrap .btn_area input[type="submit"],
#formWrap .btn_area input[type="button"] {
  background-color: #2F2725;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 1.25rem 3.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 200px;
  width: 30%;
}

#formWrap .btn_area input[type="submit"]:hover,
#formWrap .btn_area input[type="button"]:hover {
  background-color: #30ED2D;
  color: #2F2725;
}

.thanks__errors {
  font-size: 1rem;
  font-weight: 500;
  color: #E13100;
  letter-spacing: 0.03em;
  line-height: 1.8;
  background-color: #fff;
  padding: 1.25rem;
  border-radius: 8px;
}

.thanks__table {
  width: 100%;
  border-collapse: collapse;
}

.thanks__table th,
.thanks__table td {
  font-size: 1rem;
  font-weight: 500;
  color: #2F2725;
  letter-spacing: 0.03em;
  line-height: 1.8;
  padding: 1.25rem;
  border-bottom: 1px solid #DDDDDD;
  text-align: left;
  vertical-align: top;
}

.thanks__table th {
  width: 30%;
  background-color: #30ED2D;
  font-weight: 700;
}

.thanks__buttons {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

@media screen and (max-width: 767px) {
  #formWrap table.formTable th,
  #formWrap table.formTable td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  #formWrap table.formTable th {
    border-bottom: none;
    padding-bottom: 0.3125rem;
    padding-top: 0.3125rem;
  }

  #formWrap table.formTable td{
    padding-top: 0.3125rem;
  }

  #formWrap .btn_area {
    flex-direction: column;
    gap: 0.75rem;
  }

  #formWrap .btn_area input[type="submit"],
  #formWrap .btn_area input[type="button"] {
    width: 100%;
    min-width: 0;
    margin-inline: auto;
    max-width: 18.75rem;
  }

  .thanks__table th,
  .thanks__table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .thanks__table th {
    border-bottom: none;
    padding-bottom: 0.3125rem;
  }

  .thanks__buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .thanks__button {
    padding: 0.9375rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
}

.vision {
  background-color: #2F2725;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .vision {
    padding-top: 100px;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.vision__bg-img {
  position: absolute;
  inset: 0;
  background-image: url("./../images/vision-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0;
  filter: brightness(0.5);
  transition: opacity 0.5s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.vision__bg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(48, 237, 45, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(48, 237, 45, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
}
.vision__bg-img::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 10%;
  background: linear-gradient(to bottom, transparent, #30ED2D, transparent);
  z-index: 2;
  opacity: 0;
}
.vision__bg-img.is-active {
  opacity: 1;
  animation: visionFlicker 0.4s ease-in-out;
  filter: brightness(0.7);
}
.vision__bg-img.is-active::before {
  animation: visionScan 0.8s ease-in-out forwards;
}

.vision__dots-canvas {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 42%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  -webkit-mask-image: linear-gradient(to left, #000 70%, transparent 100%);
          mask-image: linear-gradient(to left, #000 70%, transparent 100%);
  mix-blend-mode: screen;
}
@media screen and (max-width: 767px) {
  .vision__dots-canvas {
    width: 70%;
  }
}
.vision__bg-img.is-active ~ .vision__dots-canvas {
  opacity: 1;
}

@keyframes visionScan {
  0% {
    top: -10%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes visionFlicker {
  0%, 20%, 40%, 60%, 80%, 100% {
    opacity: 1;
  }
  10%, 30%, 50%, 70%, 90% {
    opacity: 0.7;
  }
}
.vision__inner.inner {
  position: relative;
  z-index: 1;
}

.vision__content {
  z-index: 2;
  position: relative;
  text-align: left;
}

.vision__title {
  font-size: 5rem;
  font-size: clamp(70px, 7.5vw, 80px);
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .vision__title {
    font-size: 5rem;
  }
}

.vision__text:first-of-type {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .vision__text:first-of-type {
    margin-top: 3.125rem;
  }
}

.vision__text + .vision__text {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .vision__text + .vision__text {
    margin-top: 1.5rem;
  }
}

.vision__text span {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: #30ED2D;
  letter-spacing: 0.03em;
  line-height: 1.4;
  padding-top: 0.125rem;
  padding-bottom: 0.375rem;
  padding-inline: 1rem;
  background-color: #2F2725;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.vision__text span::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #30ED2D;
  transform: translateX(-101%);
  z-index: 2;
}
.vision__text span {
  color: transparent;
  transition: color 0s 0.5s;
}
.vision__text span.is-show::before {
  animation: visionMask 1s cubic-bezier(0.8, 0, 0.17, 1) forwards;
}
.vision__text span.is-show {
  color: #30ED2D;
}
@media screen and (max-width: 767px) {
  .vision__text span {
    font-size: 1.125rem;
    padding-inline: 0.5rem;
  }
}

@keyframes visionMask {
  0% {
    transform: translateX(-101%);
  }
  40%, 60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
.vision__text span + span {
  margin-top: 0.25rem;
}

.vision__bg {
  position: absolute;
  top: 2.25rem;
  left: 1.25rem;
  width: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.vision__bg.is-active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .vision__bg {
    top: 1.25rem;
    left: 0.625rem;
    text-align: right;
    top: 60%;
    transform: translateY(-50%);
  }
}

.vision__bg-text {
  font-size: 18.75rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  color: rgba(239, 239, 239, 0.1);
  letter-spacing: 0;
  line-height: 0.78;
}
@media screen and (max-width: 767px) {
  .vision__bg-text {
    font-size: clamp(55px, calc(10.0671vw + 22.7853px), 100px);
    margin-top: 1.25rem;
  }
}

.js-title-digital {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.js-title-digital.contact__title {
  margin-inline: auto;
}
.js-title-digital span {
  display: block;
  transform: translateY(105%);
  transition-property: transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.js-title-digital.is-active span {
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .md-none {
    display: none;
  }
}

.md-br {
  display: inline-block;
}

.md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-show {
    display: block;
  }
}

.page-top {
  position: fixed;
  right: 15px;
  bottom: 100px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition-property: opacity, visibility, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

@media screen and (max-width: 767px) {
  .page-top {
    right: 10px;
    bottom: 80px;
  }
}

.page-top--is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

@media screen and (max-width: 767px) {
  .page-top__link {
    width: 40px;
    height: 40px;
  }
}

.page-top__link img {
  width: 100%;
  height: auto;
}

.page-top__link:focus-visible {
  outline: 2px solid #30ED2D;
  outline-offset: 4px;
}

@media screen and (max-width: 767px) {
  .page-top {
    right: 16px;
    bottom: 16px;
  }

  .page-top__link {
    width: 64px;
    height: 64px;
  }

  .page-top__link img {
    width: 64px;
    height: 64px;
  }
}

main {
  background-color: #EFEFEF;
}

main.thankspage{
  background-color: #2F2725;
}

.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #2F2725;
}

.wrap > main {
  flex: 1;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
/*# sourceMappingURL=style.css.map */
