@charset "UTF-8";
html {
  font-size: calc(100vw * 16 / 390);
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 767.9px) and (max-width: 1440px) {
  html {
    font-size: calc(100vw * 16 / 1440);
  }
}
@media screen and (min-width: 390px) and (max-width: 767.9px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767.9px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

a {
  text-decoration: none;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 5.625rem;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
@media screen and (max-width: 767.9px) {
  .header {
    height: 3.75rem;
  }
}

.header__inner {
  width: 100%;
  margin-inline: auto;
  height: inherit;
  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;
  padding: 0 2.0625rem 0 3rem;
}
@media screen and (max-width: 767.9px) {
  .header__inner {
    padding: 0 1.375rem 0 1.0625rem;
  }
}

@media screen and (max-width: 767.9px) {
  .header__name {
    width: 7.625rem;
    height: 1.3125rem;
  }
}

.header__nav {
  height: inherit;
}

.header__nav-items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 2.5rem;
}

.header__nav-link {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #181818;
  font-size: 0.875rem;
  position: relative;
}
.header__nav-link:hover {
  opacity: 1;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1.75rem;
  width: 100%;
  height: 0.0625rem;
  background: #181818;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header__nav-link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.header__nav-link--entry {
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(#434343));
  background: linear-gradient(to right, #000000 0%, #434343 100%);
  width: 11.25rem;
  height: 2.9375rem;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.header__nav-link--entry::after {
  display: none;
}
.header__nav-link--entry::before {
  position: absolute;
  content: "";
  width: 0.71875rem;
  height: 0.71875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.875rem;
  background-image: url(../images/icon_plus.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.header__nav-link--entry:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.3);
}

.header__nav-link--company-site {
  background: -webkit-gradient(linear, left top, right top, from(#ED213A), to(#93291E));
  background: linear-gradient(to right, #ED213A 0%, #93291E 100%);
  width: 11.25rem;
  height: 2.9375rem;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  margin-left: -1.25rem;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.header__nav-link--company-site::after {
  display: none;
}
.header__nav-link--company-site::before {
  position: absolute;
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.75rem;
  background-image: url(../images/icon_link.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.header__nav-link--company-site:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 0 1.25rem rgba(237, 33, 58, 0.4);
          box-shadow: 0 0 1.25rem rgba(237, 33, 58, 0.4);
}

.hamburger {
  position: fixed;
  top: 0.75rem;
  right: 1.375rem;
  z-index: 9999;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 100vw;
  cursor: pointer;
  -webkit-box-shadow: 0 0 0.209375rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.209375rem 0 rgba(0, 0, 0, 0.25);
  background-color: #fff;
}

.hamburger span {
  position: absolute;
  left: 0;
  background-color: #000;
  width: 1rem;
  height: 0.0625rem;
  display: inline-block;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0.73125rem;
  left: 0.625rem;
}

.hamburger span:nth-child(2) {
  top: 1.1rem;
  left: 0.625rem;
}

.hamburger span:nth-child(3) {
  bottom: 0.73125rem;
  left: 0.625rem;
}

.hamburger.is-active span:nth-child(1) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 1;
}

.hamburger.is-active span:nth-child(3) {
  opacity: 0;
}

.drawer-menu {
  width: 100%;
  height: 100vh;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5000;
  display: none;
}

.drawer-menu__name {
  position: absolute;
  top: 1.1875rem;
  left: 1.0625rem;
  z-index: 9999;
  width: 7.625rem;
  height: 1.3125rem;
}

.drawer-menu__inner {
  max-width: 31.25rem;
  width: 100%;
  margin-inline: auto;
  padding: 7.5rem 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer-menu__items {
  width: 100%;
  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;
}

.drawer-menu__item {
  width: 100%;
  display: inline-block;
}

.drawer-menu__link {
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  margin-bottom: 1.875rem;
}

.drawer-menu__link.drawer-menu__link--entry {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(#434343));
  background: linear-gradient(to right, #000000 0%, #434343 100%);
  color: #fff;
  text-align: center;
  border-radius: 0.25rem;
  padding: 1.0625rem 0;
  position: relative;
}
.drawer-menu__link.drawer-menu__link--entry::before {
  position: absolute;
  content: "";
  width: 0.71875rem;
  height: 0.71875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.875rem;
  background-image: url(../images/icon_plus.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.drawer-menu__link.drawer-menu__link--company-site {
  font-size: 0.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#ED213A), to(#93291E));
  background: linear-gradient(to right, #ED213A 0%, #93291E 100%);
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 0.25rem;
  padding: 1.0625rem 0;
  position: relative;
}
.drawer-menu__link.drawer-menu__link--company-site::before {
  position: absolute;
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.8125rem;
  background-image: url(../images/icon_link.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.footer {
  background-color: #000;
}

.footer__inner {
  max-width: 76.5625rem;
  margin-inline: auto;
  padding-top: 2.5rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 767.9px) {
  .footer__inner {
    max-width: 35.625rem;
    padding: 1.25rem 2.1875rem;
  }
}

.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.9375rem;
}
@media screen and (max-width: 767.9px) {
  .footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    padding-left: 0;
  }
}

.footer__info-wrap {
  padding-right: 3.4375rem;
  border-right: 0.0625rem solid #fff;
  height: 7.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8125rem;
}
@media screen and (max-width: 767.9px) {
  .footer__info-wrap {
    padding-right: 0;
    border-right: none;
    gap: 1.25rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.footer__logo {
  width: 22rem;
  height: 3.75rem;
}
@media screen and (max-width: 767.9px) {
  .footer__logo {
    width: 16.875rem;
    height: 2.8125rem;
  }
}

.footer__logo img {
  width: 100%;
  height: 100%;
}

.footer__copyright {
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.footer__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .footer__nav-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    gap: 3.75rem;
  }
}

.footer__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem 2.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  .footer__nav-items {
    margin-top: 0.3125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 1.875rem;
  }
}

.footer__nav-link {
  font-size: 0.875rem;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .footer__nav-link {
    font-size: 1.125rem;
  }
}
.footer__nav-link:hover {
  opacity: 1;
}
.footer__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.625rem;
  width: 100%;
  height: 0.0625rem;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.footer__nav-link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.footer__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .footer__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.footer__btn-item {
  width: 11.25rem;
}
@media screen and (max-width: 767.9px) {
  .footer__btn-item {
    width: 100%;
  }
}

.footer__btn {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  color: #fff;
  border: 0.0625rem solid #fff;
  border-radius: 0.25rem;
  padding: 0.75rem 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .footer__btn {
    padding: 1.1875rem 0;
  }
}
.footer__btn::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.footer__btn.footer__btn--entry {
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(#434343));
  background: linear-gradient(to right, #000000 0%, #434343 100%);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.footer__btn.footer__btn--entry::before {
  width: 0.71875rem;
  height: 0.71875rem;
  right: 0.875rem;
  background-image: url(../images/icon_plus.svg);
}
.footer__btn.footer__btn--entry:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.footer__btn.footer__btn--company-site {
  background: -webkit-gradient(linear, left top, right top, from(#ED213A), to(#93291E));
  background: linear-gradient(to right, #ED213A 0%, #93291E 100%);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.footer__btn.footer__btn--company-site::before {
  width: 0.875rem;
  height: 0.875rem;
  right: 0.75rem;
  background-image: url(../images/icon_link.svg);
}
.footer__btn.footer__btn--company-site:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.4);
          box-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.top-mv {
  padding-top: 5.625rem;
  padding-bottom: 5rem;
  overflow-x: clip;
}
@media screen and (max-width: 767.9px) {
  .top-mv {
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
  }
}

.top-mv__catch-copy {
  margin-top: 1.875rem;
  text-align: center;
  color: #C50000;
  font-size: 9.4375rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.05em;
  font-style: italic;
  width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  margin-left: -1.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-mv__catch-copy {
    margin-top: 1.6875rem;
    font-size: 2.125rem;
    font-size: clamp(2.125rem, 0.056rem + 8.488vw, 4.125rem);
    margin-left: 0;
  }
}

.top-mv__inner {
  padding-top: 1.25rem;
  max-width: 90rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top-mv__inner {
    padding-top: 1.875rem;
    max-width: 100%;
  }
}

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

.top-mv__side {
  margin-top: 1.25rem;
  width: 25.625rem;
  height: 50.3125rem;
  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;
  gap: 5.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-mv__side {
    margin-top: 0.875rem;
    width: 21.8vw;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 8.125rem;
  }
}

.top-mv__title {
  font-size: 4.375rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.35;
  margin: 0;
  cursor: pointer;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767.9px) {
  .top-mv__title {
    font-size: 2.25rem;
  }
}
.top-mv__title span {
  margin-top: 0.625rem;
  margin-bottom: -1.875rem;
}
@media screen and (max-width: 767.9px) {
  .top-mv__title span {
    margin-top: 0.3125rem;
    margin-bottom: -0.9375rem;
  }
}

.top-mv__main {
  width: 64.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-mv__main {
    width: 78.205vw;
  }
}

.top-mv__img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-mv__tex-wrap {
  margin-top: 2.5rem;
  max-width: 56.25rem;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .top-mv__tex-wrap {
    margin-top: 1.25rem;
    padding-right: 2.1875rem;
  }
}

.top-mv__text:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-mv__text:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.top-mv__text {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media screen and (max-width: 767.9px) {
  .top-mv__text {
    font-size: 1rem;
    line-height: 2;
  }
}

.top-mv__scroll {
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.125rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #1B1B1B;
  cursor: pointer;
}

.top-mv__scroll::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -7.1875rem;
  width: 1px;
  height: 6.25rem;
  background: repeating-linear-gradient(to bottom, currentColor 0 0.1875rem, transparent 0 0.3125rem);
}

@-webkit-keyframes gentle-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes gentle-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.top-about {
  background-color: #000;
  color: #fff;
  background-image: url(../images/top-about_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-about__inner {
  max-width: 73.75rem;
  margin-inline: auto;
  padding: 5rem 0;
}
@media screen and (max-width: 767.9px) {
  .top-about__inner {
    max-width: 35.625rem;
    padding: 2.5rem 2.1875rem;
  }
}

.top-about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .top-about__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-about__content--left {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-about__content--left {
    margin-top: 0;
    display: contents;
  }
}

.top-about__text-wrap {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767.9px) {
  .top-about__text-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.top-about__text {
  font-size: 1.125rem;
  line-height: 2.2222222222;
}
@media screen and (max-width: 767.9px) {
  .top-about__text {
    font-size: 1rem;
    line-height: 2.5;
  }
}

.top-about__more.more {
  margin-top: 5rem;
}
@media screen and (max-width: 767.9px) {
  .top-about__more.more {
    margin-top: 2.5rem;
    margin-inline: auto;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.top-about__content--center {
  margin-left: 6.75rem;
}
@media screen and (max-width: 767.9px) {
  .top-about__content--center {
    margin-top: 1.25rem;
    margin-left: 0;
  }
}

.top-about__vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  font-size: 4.375rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.9px) {
  .top-about__vertical {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 0.02em;
  }
}

.top-about__content--right {
  margin-top: 8.1875rem;
  margin-left: 8.4375rem;
}
@media screen and (max-width: 767.9px) {
  .top-about__content--right {
    margin-top: 1.875rem;
    margin-left: 0;
  }
}

.top-about__figure {
  border: 0.0625rem solid #D20000;
  width: 26.25rem;
  height: 17.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-about__figure {
    width: 100%;
    height: auto;
  }
}

.top-about__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-business__inner {
  max-width: 73.75rem;
  margin-inline: auto;
  padding-top: 6.25rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767.9px) {
  .top-business__inner {
    max-width: 35.625rem;
    padding: 2.5rem 2.1875rem;
  }
}

.top-business__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .top-business__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.top-business__info-wrap {
  max-width: 35rem;
}
@media screen and (max-width: 767.9px) {
  .top-business__info-wrap {
    display: contents;
  }
}

.top-business__text-wrap {
  margin-top: 2.125rem;
  max-width: 27.75rem;
}
@media screen and (max-width: 767.9px) {
  .top-business__text-wrap {
    margin-top: 1.25rem;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.top-business__text {
  font-size: 1rem;
  line-height: 1.8;
}

.top-business__text:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-business__text:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.top-business__text-strong {
  margin-top: 2.5rem;
  font-size: 4.375rem;
  font-weight: bold;
}
@media screen and (max-width: 767.9px) {
  .top-business__text-strong {
    margin-top: 1.875rem;
    font-size: 2rem;
    text-align: center;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.top-business__img-wrap {
  max-width: 35rem;
}
@media screen and (max-width: 767.9px) {
  .top-business__img-wrap {
    margin-top: 1.875rem;
    margin-inline: auto;
  }
}

.top-business__img {
  width: 100%;
  height: auto;
}

.top-business__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-business__more.more {
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top-business__more.more {
    margin-top: 2.5rem;
  }
}

.top-member {
  background-color: #000;
  background-image: url(../images/top-member_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-member {
    background-image: url(../images/top-member_bg-sp.jpg);
  }
}

.top-member__inner {
  max-width: 67.25rem;
  margin-inline: auto;
  padding: 8.5rem 0;
}
@media screen and (max-width: 767.9px) {
  .top-member__inner {
    max-width: 35.625rem;
    padding: 2.5rem 2.1875rem 3rem;
  }
}

.top-member__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.375rem;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767.9px) {
  .top-member__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding-right: 0;
  }
}

.top-member__img-wrap {
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .top-member__img-wrap {
    margin-top: 1.875rem;
    max-width: 100%;
  }
}

.top-member__img {
  width: 31.25rem;
  height: 20.5rem;
  border: 0.0625rem solid #D20000;
}
@media screen and (max-width: 767.9px) {
  .top-member__img {
    width: 100%;
    height: auto;
  }
}

.top-member__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-member__info-wrap {
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-member__info-wrap {
    display: contents;
  }
}

@media screen and (max-width: 767.9px) {
  .top-member__title {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.top-member__text {
  margin-top: 2.125rem;
  font-size: 1rem;
  line-height: 2.2;
}
@media screen and (max-width: 767.9px) {
  .top-member__text {
    margin-top: 1.25rem;
  }
}

.top-member__more.more {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-member__more.more {
    margin-top: 1.25rem;
    margin-inline: auto;
  }
}

.top-company {
  background-color: #000;
  color: #fff;
  background-image: url(../images/top-company_bg.png);
  background-size: contain;
  background-position: calc(50% + 19.375rem) center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-company {
    background-image: url(../images/top-company_bg-sp.png);
    background-size: cover;
    background-position: center;
  }
}

.top-company__inner {
  max-width: 75.75rem;
  margin-inline: auto;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767.9px) {
  .top-company__inner {
    max-width: 35.625rem;
    padding: 2.5rem 2.1875rem;
  }
}

.top-company__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
  padding-left: 5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .top-company__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding-left: 0;
  }
}

.top-company__info-wrap {
  max-width: 27.75rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__info-wrap {
    max-width: 100%;
    display: contents;
  }
}

@media screen and (max-width: 767.9px) {
  .top-company__title.title {
    width: 100%;
  }
}

.top-company__text-wrap {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__text-wrap {
    margin-top: 1.25rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.top-company__text {
  font-size: 1rem;
  line-height: 2.2;
}

.top-company__text:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__text:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.top-company__more.more {
  margin-top: 6rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__more.more {
    margin-top: 1.25rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.top-company__catch-copy {
  font-size: 4.375rem;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 767.9px) {
  .top-company__catch-copy {
    margin-top: 1.25rem;
    font-size: 2rem;
    padding-left: 1.25rem;
  }
}

.top-company__catch-copy span {
  letter-spacing: -0.5em;
}

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

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

[id] {
  scroll-margin-top: 4.375rem;
}

.title-en {
  display: block;
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.title-ja {
  margin-top: 0.625rem;
  display: block;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .title-ja {
    margin-top: 0.3125rem;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767.9px) {
  .title-ja.title-ja--top {
    font-size: 1.25rem;
  }
}

.more {
  max-width: 26.25rem;
}
@media screen and (max-width: 767.9px) {
  .more {
    max-width: 100%;
    width: 100%;
  }
}

.more-btn {
  display: inline-block;
  width: 100%;
  background-color: #D20000;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  padding: 1.40625rem 0;
  border-radius: 0.25rem;
  position: relative;
  border: 1px solid #D20000;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .more-btn {
    font-size: 1rem;
    padding: 1.125rem 0;
  }
}
.more-btn::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/icon_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: background-image 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-image 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-image 0.3s ease, transform 0.3s ease;
  transition: background-image 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .more-btn::before {
    right: 1.875rem;
  }
}
.more-btn:hover {
  opacity: 1;
  background-color: #fff;
  color: #D20000;
  border: 1px solid #D20000;
}
.more-btn:hover::before {
  background-image: url(../images/icon_arrow-red.svg);
  -webkit-transform: translateY(-50%) translateX(0.1875rem);
          transform: translateY(-50%) translateX(0.1875rem);
}

.global-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .global-links__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.global-links__item {
  width: 50%;
  height: 18.75rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .global-links__item {
    width: 100%;
    height: 100%;
    min-height: 10.125rem;
    max-height: 12.5rem;
    height: clamp(10.125rem, 40vw, 15.625rem);
  }
}

.global-links__item.global-links__item--recruit {
  background-image: url(../images/global-links_recruit.jpg);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.global-links__item.global-links__item--recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  z-index: 1;
}
.global-links__item.global-links__item--recruit:hover::before {
  background-color: rgba(0, 0, 0, 0.3);
}

.global-links__item.global-links__item--corporate {
  background-image: url(../images/global-links_corporate.jpg);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.global-links__item.global-links__item--corporate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  z-index: 1;
}
.global-links__item.global-links__item--corporate:hover::before {
  background-color: rgba(0, 0, 0, 0.3);
}

.global-links__link {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
.global-links__link:hover {
  opacity: 1;
}

.global-links__en {
  display: block;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .global-links__en {
    font-size: 0.75rem;
  }
}

.global-links__ja {
  display: block;
  font-size: 2.25rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .global-links__ja {
    font-size: 1.5rem;
  }
}

.breadcrumb {
  max-width: 73.75rem;
  margin-inline: auto;
  font-size: 0.875rem;
}
@media screen and (max-width: 767.9px) {
  .breadcrumb {
    font-size: 0.625rem;
    max-width: 34.375rem;
    padding: 0 1.5625rem;
  }
}

.breadcrumb__between {
  display: inline-block;
  width: 0.3125rem;
  height: 0.5625rem;
  position: relative;
  margin: 0 0.6875rem;
}
.breadcrumb__between::before {
  position: absolute;
  content: "";
  width: 0.3125rem;
  height: 0.5625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-image: url(../images/breadcrumb-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .breadcrumb__between::before {
    top: 60%;
  }
}

.breadcrumb a {
  color: #000;
}

.page-position {
  padding-top: 8.125rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767.9px) {
  .page-position {
    padding-top: 4.375rem;
    padding-bottom: 2.5rem;
  }
}

.page-head {
  margin-top: 2.5rem;
  max-width: 63.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .page-head {
    margin-top: 1.25rem;
    max-width: 34.375rem;
    padding: 0 1.5625rem;
  }
}

.page-mv {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767.9px) {
  .page-mv {
    margin-top: 1.25rem;
  }
}

.page-mv-img {
  width: 100%;
  height: 18.75rem;
}
@media screen and (max-width: 767.9px) {
  .page-mv-img {
    height: auto;
  }
}

.page-mv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-mv--third {
  margin-top: 3.125rem;
  max-width: 70.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .page-mv--third {
    margin-top: 1.875rem;
    max-width: 100%;
    padding: 0 1.5625rem;
  }
}

.page-mv-img--third {
  width: 100%;
  height: 25rem;
}
@media screen and (max-width: 767.9px) {
  .page-mv-img--third {
    height: auto;
  }
}

.page-mv-img--third img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.error__inner {
  margin-top: 2.5rem;
  max-width: 51.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .error__inner {
    margin-top: 1.25rem;
    max-width: 34.375rem;
    padding: 0 1.5625rem;
  }
}

.error__text {
  font-size: 1.25rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .error__text {
    font-size: 1rem;
  }
}

.about__read {
  margin-top: 2.5rem;
  max-width: 61.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .about__read {
    margin-top: 1.25rem;
    max-width: 34.375rem;
    padding: 0 1.5625rem;
  }
}

.about__read-text {
  font-size: 1rem;
  line-height: 2.5;
}
@media screen and (max-width: 767.9px) {
  .about__read-text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.about__items {
  margin-top: 2.5rem;
  max-width: 69.125rem;
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767.9px) {
  .about__items {
    max-width: 34.375rem;
    padding: 0 1.5625rem;
    margin-top: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.about__item {
  border: 0.0625rem solid #E7E7E7;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
.about__item:hover {
  border: 0.0625rem solid #D20000;
}

.about__item-link {
  color: #000;
  padding: 1.25rem 2.25rem 0.6875rem;
  display: inline-block;
}
.about__item-link:hover {
  opacity: 1;
}
.about__item-link:hover .about__more {
  color: #D20000;
  opacity: 1;
}
.about__item-link:hover .about__more::before {
  background-image: url(../images/icon_arrow-red.svg);
  -webkit-transform: translateY(-50%) translateX(0.1875rem);
          transform: translateY(-50%) translateX(0.1875rem);
}

.about__item-title {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  font-weight: 500;
}

.about__text {
  font-size: 0.875rem;
  line-height: 1.6428571429;
}
@media screen and (max-width: 767.9px) {
  .about__text {
    margin-top: 0.75rem;
  }
}

.about__more-wrap {
  margin-top: 1.875rem;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767.9px) {
  .about__more-wrap {
    margin-top: 1.0625rem;
  }
}

.about__more {
  display: inline-block;
  font-size: 0.625rem;
  line-height: 2.3;
  color: #000;
  padding-right: 0.625rem;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.about__more::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -0.9375rem;
  background-image: url(../images/icon_arrow-black.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: background-image 0.3s, -webkit-transform 0.3s ease;
  transition: background-image 0.3s, -webkit-transform 0.3s ease;
  transition: background-image 0.3s, transform 0.3s ease;
  transition: background-image 0.3s, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.philosophy__read {
  margin-top: 2.5rem;
  max-width: 70.625rem;
  margin-inline: auto;
  padding-left: 4.6875rem;
  padding-right: 14.3125rem;
  padding-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .philosophy__read {
    margin-top: 1.25rem;
    max-width: 34.375rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    padding-bottom: 2.5rem;
  }
}
.philosophy__read::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 73.75rem;
  height: 0.0625rem;
  background-color: #E1E1E1;
}
@media screen and (max-width: 767.9px) {
  .philosophy__read::after {
    width: 87.179vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.philosophy__read-text-strong {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .philosophy__read-text-strong {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.6666666667;
  }
}

.philosophy__read-text {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.875;
}
@media screen and (max-width: 767.9px) {
  .philosophy__read-text {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.philosophy__read-text:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .philosophy__read-text:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.philosophy-info__inner {
  padding-top: 2.5rem;
  max-width: 62.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .philosophy-info__inner {
    max-width: 34.375rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.philosophy-info__list {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 7.5rem 1fr;
}
@media screen and (max-width: 767.9px) {
  .philosophy-info__list {
    grid-template-columns: 4.125rem 1fr;
  }
}

.philosophy-info__row {
  display: contents;
}
@media screen and (max-width: 767.9px) {
  .philosophy-info__row {
    font-size: 0.875rem;
  }
}

.philosophy-info__row:not(:first-child) {
  margin-top: 0.625rem;
}

.philosophy-info__row a {
  color: #000;
}

.philosophy-info__list dt {
  line-height: 2.5;
  padding: 0.3125rem 0;
}

.philosophy-info__list dd {
  border-left: 0.0625rem solid #D4D4D4;
  padding: 0.3125rem 0 0.3125rem 2.5rem;
  line-height: 2.5;
}
@media screen and (max-width: 767.9px) {
  .philosophy-info__list dd {
    padding-left: 0.625rem;
  }
}

.philosophy-info__row--company dt,
.philosophy-info__row--company dd {
  padding-top: 0.625rem;
  line-height: 2;
}

.philosophy-info__map {
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  width: 100%;
  height: 20rem;
}
@media screen and (max-width: 767.9px) {
  .philosophy-info__map {
    margin-top: 2.375rem;
    margin-bottom: 0.625rem;
    height: 8rem;
    height: clamp(8rem, 30vw, 18.75rem);
  }
}

.philosophy-info__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .philosophy-info__map iframe {
    border-radius: 0.625rem;
  }
}

.message__mv {
  position: relative;
}

.message__read {
  margin-top: 2.5rem;
  max-width: 70.625rem;
  margin-inline: auto;
  padding-left: 5.75rem;
  padding-right: 5.75rem;
}
@media screen and (max-width: 767.9px) {
  .message__read {
    margin-top: 1.25rem;
    max-width: 34.375rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.message__read-text-strong {
  font-size: 2.125rem;
  line-height: 2;
  margin-bottom: 2.5rem;
  letter-spacing: 0.07em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .message__read-text-strong {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-weight: 600;
  }
}

.message__read-text {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}
@media screen and (max-width: 767.9px) {
  .message__read-text {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}

.message__read-text {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.875;
}
@media screen and (max-width: 767.9px) {
  .message__read-text {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.message__read-text:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .message__read-text:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.message__sign-wrap {
  max-width: 61.25rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .message__sign-wrap {
    margin-top: 1.25rem;
    max-width: 31.25rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.message__sign-img {
  margin-left: auto;
  width: 31.5625rem;
  height: 19.0625rem;
}
@media screen and (max-width: 767.9px) {
  .message__sign-img {
    width: 21.1875rem;
    height: auto;
  }
}

.number__contents {
  margin-top: 2.5rem;
}

.number__items {
  max-width: 64rem;
  margin-inline: auto;
  display: grid;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767.9px) {
  .number__items {
    max-width: 35.125rem;
    padding: 0 1.9375rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}

.number__item-title {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.number__item-img {
  margin-top: 1.25rem;
  width: 10.8125rem;
  height: 10.8125rem;
  margin-inline: auto;
}

.number__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.number__item-text-wrap {
  text-align: center;
}

.number__item-text-wrap--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
}

.number__item-text-number {
  font-size: 2.75rem;
  color: #D20000;
  font-weight: 500;
}

.number__item-text-unit {
  font-size: 1.5rem;
  color: #D20000;
  font-weight: 700;
}

.number__item-text-gender {
  padding-top: 0.3125rem;
  font-size: 0.6875rem;
  color: #D20000;
  font-weight: 700;
}

.number__item-text {
  font-size: 0.875rem;
  line-height: 2;
  text-align: center;
}

.business__read {
  margin-top: 2.5rem;
  max-width: 61.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .business__read {
    margin-top: 1.25rem;
    max-width: 34.375rem;
    padding: 0 1.5625rem;
  }
}

.business__read-text {
  font-size: 1.125rem;
  line-height: 2.2222222222;
}
@media screen and (max-width: 767.9px) {
  .business__read-text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.business__read-img {
  margin-top: 2.5rem;
  width: 50rem;
  height: 28.9375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .business__read-img {
    margin-top: 1.25rem;
    width: 100%;
    height: auto;
  }
}

.business__read-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.business__items {
  margin-top: 2.5rem;
  max-width: 69.125rem;
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767.9px) {
  .business__items {
    max-width: 34.375rem;
    padding: 0 1.5625rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.business__item {
  border: 0.0625rem solid #E7E7E7;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
.business__item:hover {
  border: 0.0625rem solid #D20000;
}

.business__item-link {
  color: #000;
  padding: 1.25rem 2.25rem 0.6875rem;
  display: inline-block;
}
.business__item-link:hover {
  opacity: 1;
}
.business__item-link:hover .business__more {
  color: #D20000;
  opacity: 1;
}
.business__item-link:hover .business__more::before {
  background-image: url(../images/icon_arrow-red.svg);
  -webkit-transform: translateY(-50%) translateX(0.1875rem);
          transform: translateY(-50%) translateX(0.1875rem);
}
@media screen and (max-width: 767.9px) {
  .business__item-link {
    padding: 1rem 2.25rem 0.5625rem;
  }
}

.business__item-title {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  font-weight: 500;
}

.business__text {
  font-size: 0.875rem;
  line-height: 1.6428571429;
}

.business__more-wrap {
  margin-top: 0.375rem;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767.9px) {
  .business__more-wrap {
    margin-top: 0.625rem;
  }
}

.business__more {
  display: inline-block;
  font-size: 0.625rem;
  line-height: 2.3;
  color: #000;
  padding-right: 0.625rem;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.business__more::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -0.9375rem;
  background-image: url(../images/icon_arrow-black.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: background-image 0.3s, -webkit-transform 0.3s ease;
  transition: background-image 0.3s, -webkit-transform 0.3s ease;
  transition: background-image 0.3s, transform 0.3s ease;
  transition: background-image 0.3s, transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media screen and (max-width: 767.9px) {
  .business-detail.page-position {
    padding-bottom: 5rem;
  }
}

.business-detail__contents {
  margin-top: 5rem;
  max-width: 73.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .business-detail__contents {
    margin-top: 1.25rem;
    max-width: 34.375rem;
    padding: 0 1.5625rem;
  }
}

.business-detail__items {
  width: 100%;
}

.business-detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.5rem 0;
  border-bottom: 0.0625rem solid #E1E1E1;
}
@media screen and (max-width: 767.9px) {
  .business-detail__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
    padding: 1.25rem 0;
  }
}

.business-detail__item:first-child {
  border-top: 0.0625rem solid #E1E1E1;
}

.business-detail__item-title {
  font-size: 1.5rem;
  width: 22.5rem;
  padding-left: 6.25rem;
  padding-right: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .business-detail__item-title {
    font-size: 1.25rem;
    text-align: center;
    padding: 0;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.business-detail__item-text {
  max-width: 45rem;
  font-size: 1rem;
  line-height: 1.875;
}
@media screen and (max-width: 767.9px) {
  .business-detail__item-text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.business-detail__btn-wrap {
  margin-top: 5rem;
  max-width: 37.125rem;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .business-detail__btn-wrap {
    margin-top: 2.5rem;
    max-width: 37.5rem;
    padding: 0 1.5625rem;
  }
}

.business-detail__btn-text {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767.9px) {
  .business-detail__btn-text {
    font-size: clamp(0.563rem, 0.239rem + 1.326vw, 0.875rem);
    line-height: 2.2222222222;
  }
}

.business-detail__btn {
  margin-top: 0.625rem;
  background-color: #000;
  color: #fff;
  font-size: 1.5rem;
  display: block;
  width: 100%;
  padding: 1.40625rem 0.625rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .business-detail__btn {
    margin-top: 0.25rem;
    font-size: 1.25rem;
    padding: 0.8125rem 0.625rem;
    max-width: 31.25rem;
    margin-inline: auto;
  }
}
.business-detail__btn::before {
  position: absolute;
  content: "";
  width: 1.625rem;
  height: 1.625rem;
  top: 50%;
  right: 2.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/icon_plus.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .business-detail__btn::before {
    width: 1rem;
    height: 1rem;
    right: 1.75rem;
  }
}
.business-detail__btn:hover {
  opacity: 1;
}
.business-detail__btn:hover::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.member__head-text {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.875;
  max-width: 31.25rem;
}
@media screen and (max-width: 767.9px) {
  .member__head-text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.member__items-wrap {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .member__items-wrap {
    margin-top: 1.25rem;
    padding: 0 1.5625rem;
  }
}

.member__items {
  max-width: 73.75rem;
  margin-inline: auto;
  padding: 3.125rem 3.75rem;
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.0625rem solid #E1E1E1;
  border-bottom: 0.0625rem solid #E1E1E1;
}
@media screen and (max-width: 767.9px) {
  .member__items {
    max-width: 31.25rem;
    padding: 2.5rem 1.25rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.member__item:nth-child(3n+1):not(:nth-child(-n+3)) {
  position: relative;
}
.member__item:nth-child(3n+1):not(:nth-child(-n+3))::before {
  content: "";
  position: absolute;
  top: -3.125rem;
  left: -2.5rem;
  width: 73.75rem;
  height: 0.0625rem;
  background-color: #E1E1E1;
}
@media screen and (max-width: 767.9px) {
  .member__item::before {
    display: none;
  }
}

.member__item-img {
  width: 18.75rem;
  height: 23.4375rem;
}
@media screen and (max-width: 767.9px) {
  .member__item-img {
    width: 100%;
  }
}

.member__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.9px) {
  .member__item-img img {
    max-height: 31.25rem;
    -o-object-position: top;
       object-position: top;
  }
}

.member__body {
  margin-top: 1.25rem;
  position: relative;
}

.member__role,
.member__name,
.member__year {
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .member__role,
  .member__name,
  .member__year {
    font-size: 0.875rem;
  }
}

.member__role {
  letter-spacing: -0.03em;
}

.member__link {
  position: absolute;
  bottom: 0.3125rem;
  right: 0rem;
  background-color: #000;
  display: block;
  width: 3.875rem;
  height: 1.5rem;
  border-radius: 0.25rem;
}
.member__link::before {
  position: absolute;
  content: "";
  width: 0.875rem;
  height: 1.125rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/icon_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.member__link .sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.member__pagenation {
  margin-top: 6.25rem;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .member__pagenation {
    margin-top: 2.5rem;
  }
}

.member__pagenation .page-numbers {
  list-style: none;
  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;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

.member__pagenation .page-numbers li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.member__pagenation .page-numbers a,
.member__pagenation .page-numbers span {
  width: 2.1875rem;
  height: 2.1875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  color: #A2A2A2;
  border: 1px solid #A2A2A2;
  border-radius: 0;
  -webkit-transition: border-color 0.3s, color 0.3s;
  transition: border-color 0.3s, color 0.3s;
}

.member__pagenation .page-numbers .current {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.member__pagenation .page-numbers a:hover {
  border-color: #C50000;
  color: #C50000;
  outline: none;
}

.member__pagenation .page-numbers .dots {
  border: none;
  cursor: default;
}

.member__pagenation .page-numbers .prev,
.member__pagenation .page-numbers .next {
  display: none;
}

.member-detail.page-position {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767.9px) {
  .member-detail.page-position {
    padding-bottom: 3.75rem;
  }
}

@media screen and (max-width: 767.9px) {
  .member-detail__contents {
    max-width: 37.5rem;
    padding: 0 1.5625rem;
    margin-inline: auto;
  }
}

.member-detail__head {
  margin-top: 3.9375rem;
  max-width: 90rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .member-detail__head {
    margin-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.member-detail__head-text-wrap {
  padding-top: 3.125rem;
  padding-left: 8.375rem;
}
@media screen and (max-width: 767.9px) {
  .member-detail__head-text-wrap {
    padding: 0;
    display: contents;
  }
}

.member-detail__head-copy {
  font-size: 1.75rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .member-detail__head-copy {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.member-detail__head-body {
  margin-top: 4.5625rem;
}
@media screen and (max-width: 767.9px) {
  .member-detail__head-body {
    margin-top: 0.625rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.member-detail__role,
.member-detail__name,
.member-detail__year {
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .member-detail__role,
  .member-detail__name,
  .member-detail__year {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

@media screen and (max-width: 767.9px) {
  .member-detail__head-img-wrap {
    margin-top: 1.25rem;
  }
}

.member-detail__head-img {
  width: 51.875rem;
  height: 29.1875rem;
}
@media screen and (max-width: 767.9px) {
  .member-detail__head-img {
    width: 100%;
    height: auto;
  }
}

.member-detail__head-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 767.9px) {
  .member-detail__head-img img {
    aspect-ratio: 340/192;
  }
}

.member-detail__body {
  margin-top: 2.5rem;
  max-width: 73.75rem;
  margin-inline: auto;
  padding-top: 4rem;
  padding-bottom: 5rem;
  border-top: 0.0625rem solid #E1E1E1;
  border-bottom: 0.0625rem solid #E1E1E1;
}
@media screen and (max-width: 767.9px) {
  .member-detail__body {
    margin-top: 0.625rem;
    padding-top: 1.25rem;
    max-width: 37.5rem;
    padding-bottom: 1.875rem;
  }
}

.member-detail__body-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.25rem;
}
@media screen and (max-width: 767.9px) {
  .member-detail__body-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.member-detail__body-wrap--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767.9px) {
  .member-detail__body-wrap--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.member-detail__body-wrap:not(:first-child) {
  margin-top: 2.5rem;
}

.member-detail__body-img-wrap {
  width: 30rem;
  height: 37.5rem;
}
@media screen and (max-width: 767.9px) {
  .member-detail__body-img-wrap {
    width: 100%;
    max-width: 21.875rem;
    height: auto;
    margin-inline: auto;
  }
}

.member-detail__body-img {
  width: 30rem;
  height: 37.5rem;
}
@media screen and (max-width: 767.9px) {
  .member-detail__body-img {
    width: 100%;
    height: auto;
  }
}

.member-detail__body-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.member-detail__body-text-wrap {
  max-width: 31.25rem;
  padding-top: 1.875rem;
}
@media screen and (max-width: 767.9px) {
  .member-detail__body-text-wrap {
    padding-top: 0;
    max-width: 37.5rem;
  }
}

.member-detail__body-title {
  font-size: 1.5rem;
  border-bottom: 0.0625rem solid #000;
  display: inline-block;
  padding-bottom: 0.4375rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .member-detail__body-title {
    font-size: 1.25rem;
  }
}

.member-detail__body-text {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.875;
}
@media screen and (max-width: 767.9px) {
  .member-detail__body-text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.member__items.member__items--detail {
  border: none;
  padding-bottom: 0;
}

.member__more {
  margin-top: 3.125rem;
  max-width: 73.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .member__more {
    margin-top: 1.875rem;
    max-width: 28.75rem;
    padding: 0 1.5625rem;
  }
}

.member__more-text {
  font-size: 1.75rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .member__more-text {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767.9px) {
  .entry.page-position {
    padding-bottom: 5rem;
  }
}

.form {
  margin-top: 5.25rem;
  max-width: 41.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .form {
    margin-top: 1.25rem;
    max-width: 35.625rem;
    padding: 0 1.5625rem;
  }
}

.form__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: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .form__list {
    gap: 1.875rem;
  }
}

.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.25rem;
}
@media screen and (max-width: 767.9px) {
  .form__field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form__field--textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 767.9px) {
  .form__label {
    width: 100%;
    font-size: 1rem;
  }
}

.form__required {
  color: #F14D61;
  font-size: 0.625rem;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .form__required {
    font-size: 0.625rem;
  }
}

.form__data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  width: 100%;
}

.form__input {
  width: 100%;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  background-color: #F1F1F1;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.form__input::-webkit-input-placeholder {
  color: #BCBCBC;
}
.form__input::-moz-placeholder {
  color: #BCBCBC;
}
.form__input:-ms-input-placeholder {
  color: #BCBCBC;
}
.form__input::-ms-input-placeholder {
  color: #BCBCBC;
}
.form__input::placeholder {
  color: #BCBCBC;
}

.form__input.form__input--address {
  resize: none;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  height: 2.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .form__input.form__input--address {
    height: 4.25rem;
  }
  .form__input.form__input--address::-webkit-input-placeholder {
    line-height: 1.8;
  }
  .form__input.form__input--address::-moz-placeholder {
    line-height: 1.8;
  }
  .form__input.form__input--address:-ms-input-placeholder {
    line-height: 1.8;
  }
  .form__input.form__input--address::-ms-input-placeholder {
    line-height: 1.8;
  }
  .form__input.form__input--address::placeholder {
    line-height: 1.8;
  }
}

.form__textarea {
  width: 100%;
  min-height: 16.875rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  background-color: #F1F1F1;
  resize: none;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.form__textarea::-webkit-input-placeholder {
  color: #BCBCBC;
}
.form__textarea::-moz-placeholder {
  color: #BCBCBC;
}
.form__textarea:-ms-input-placeholder {
  color: #BCBCBC;
}
.form__textarea::-ms-input-placeholder {
  color: #BCBCBC;
}
.form__textarea::placeholder {
  color: #BCBCBC;
}
@media screen and (max-width: 767.9px) {
  .form__textarea {
    min-height: 17.5rem;
  }
}

.form__btn-container,
.confirm__btn-container {
  margin-top: 5rem;
  margin-left: 5.8125rem;
  max-width: 37.125rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .form__btn-container,
  .confirm__btn-container {
    margin-top: 2.5rem;
    max-width: 37.5rem;
    margin-left: 0;
  }
}

.form__btn-text,
.confirm__btn-text {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767.9px) {
  .form__btn-text,
  .confirm__btn-text {
    font-size: clamp(0.563rem, 0.239rem + 1.326vw, 0.8rem);
    line-height: 2.2222222222;
  }
}

.form__btn-wrap,
.confirm__btn-wrap {
  margin-top: 0.625rem;
  position: relative;
}
.form__btn-wrap::before,
.confirm__btn-wrap::before {
  position: absolute;
  content: "";
  width: 1.625rem;
  height: 1.625rem;
  top: 50%;
  right: 2.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/icon_plus.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .form__btn-wrap::before,
  .confirm__btn-wrap::before {
    width: 1rem;
    height: 1rem;
    right: 1.75rem;
  }
}
.form__btn-wrap:hover:not(:has(.form__btn:disabled)):not(:has(.confirm__btn:disabled)),
.confirm__btn-wrap:hover:not(:has(.form__btn:disabled)):not(:has(.confirm__btn:disabled)) {
  opacity: 1;
}
.form__btn-wrap:hover:not(:has(.form__btn:disabled)):not(:has(.confirm__btn:disabled))::before,
.confirm__btn-wrap:hover:not(:has(.form__btn:disabled)):not(:has(.confirm__btn:disabled))::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.form__btn,
.confirm__btn {
  background-color: #000;
  color: #fff;
  font-size: 1.5rem;
  display: block;
  width: 100%;
  padding: 1.40625rem 0.625rem;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .form__btn,
  .confirm__btn {
    margin-top: 0.25rem;
    font-size: 1.25rem;
    padding: 0.8125rem 0.625rem;
    max-width: 31.25rem;
    margin-inline: auto;
  }
}
.form__btn:hover:not(:disabled),
.confirm__btn:hover:not(:disabled) {
  opacity: 1;
}
.form__btn:disabled,
.confirm__btn:disabled {
  opacity: 0.2;
}

.form__field--privacy {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__data--privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .form__data--privacy {
    gap: 1rem;
  }
}

.form__privacy-text {
  font-size: 0.875rem;
  line-height: 1.875;
  color: #000;
  position: relative;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .form__privacy-text {
    font-size: 0.8125rem;
    line-height: 1.8;
    padding-left: 1.125rem;
  }
}
.form__privacy-text a {
  color: #0066CC;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.form__privacy-text a:hover {
  opacity: 0.7;
}

.form__privacy-icon {
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #D20000;
  border-radius: 50%;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form__privacy-icon {
    top: 0.4375rem;
    width: 0.4375rem;
    height: 0.4375rem;
  }
}

.form__checkbox-wrap {
  margin-top: 0.625rem;
  padding: 1.25rem;
  background-color: #F9F9F9;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767.9px) {
  .form__checkbox-wrap {
    padding: 1rem;
    margin-top: 0.5rem;
  }
}

.form__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .form__checkbox-label {
    gap: 0.625rem;
  }
}

.form__checkbox {
  display: block !important;
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  cursor: pointer;
  accent-color: #000;
  border: 1px solid #ccc;
}
@media screen and (max-width: 767.9px) {
  .form__checkbox {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.form__checkbox-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #000;
}
@media screen and (max-width: 767.9px) {
  .form__checkbox-text {
    font-size: 0.8125rem;
    line-height: 1.7;
  }
}

@media screen and (max-width: 767.9px) {
  .confirm.page-position {
    padding-bottom: 5rem;
  }
}

.confirm__inner {
  margin-top: 5rem;
  max-width: 40.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .confirm__inner {
    margin-top: 1.25rem;
    max-width: 34.375rem;
    padding: 0 1.5625rem;
  }
}

.confirm__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: 3.125rem;
}
@media screen and (max-width: 767.9px) {
  .confirm__list {
    gap: 1.875rem;
  }
}

.confirm__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.25rem;
}
@media screen and (max-width: 767.9px) {
  .confirm__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.confirm__item.confirm__item--textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.confirm__term {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 767.9px) {
  .confirm__term {
    width: 100%;
    font-size: 1rem;
  }
}

.confirm__required {
  color: #F14D61;
  font-size: 0.625rem;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .confirm__required {
    font-size: 0.625rem;
  }
}

.confirm__definition {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: #000;
  line-height: 1.5;
  word-break: break-all;
}
@media screen and (max-width: 767.9px) {
  .confirm__definition {
    padding: 0.625rem 1rem;
  }
}

.thanks.page-position {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767.9px) {
  .thanks.page-position {
    padding-bottom: 2.5rem;
  }
}

.thanks__inner {
  margin-top: 2.5rem;
  max-width: 51.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .thanks__inner {
    margin-top: 1.25rem;
    max-width: 34.375rem;
    padding: 0 1.5625rem;
  }
}

.thanks__text {
  font-size: 1.25rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .thanks__text {
    font-size: 1rem;
  }
}

.slideInRight {
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.slideInRight.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slideInLeft {
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.slideInLeft.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slideInTop {
  opacity: 0;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.slideInTop.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slideInBottom {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.slideInBottom.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

.top-mv__img.is-curtain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #C50000;
  will-change: transform;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 2;
}

.top-mv__img.is-curtain.is-curtain-open::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.top-mv__img img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 1.2s ease;
  transition: -webkit-transform 1.2s ease;
  transition: transform 1.2s ease;
  transition: transform 1.2s ease, -webkit-transform 1.2s ease;
}

.top-mv__img.is-curtain.is-curtain-open img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.top-mv__catch-copy {
  overflow: hidden;
  position: relative;
}

.top-mv__catch-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  will-change: transform;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 1.2s ease-out;
  transition: -webkit-transform 1.2s ease-out;
  transition: transform 1.2s ease-out;
  transition: transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
  pointer-events: none;
  z-index: 2;
}

.top-mv__catch-copy.is-ready::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.privacy__title {
  text-align: center;
}

.privacy__inner {
  max-width: 73.75rem;
  margin-inline: auto;
  padding: 5rem 0;
}
@media screen and (max-width: 767.9px) {
  .privacy__inner {
    padding: 2.5rem 1.25rem;
  }
}

.privacy__maintitle {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  border-bottom: 0.0625rem solid #000;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767.9px) {
  .privacy__maintitle {
    font-size: 1.25rem;
  }
}

.privacy__text + .privacy__maintitle {
  margin-top: 5rem;
}

.privacy__subtitle {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .privacy__subtitle {
    font-size: 1.125rem;
  }
}

.privacy__smalltitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .privacy__smalltitle {
    font-size: 1rem;
  }
}

.privacy__text {
  font-size: 1rem;
  line-height: 1.875;
}
@media screen and (max-width: 767.9px) {
  .privacy__text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.privacy__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.privacy__table th,
.privacy__table td {
  border: 0.0625rem solid #ddd;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.privacy__table th {
  background-color: #f5f5f5;
  font-weight: 700;
  text-align: center;
}
.privacy__table td {
  vertical-align: top;
}
.privacy__table td:first-child {
  width: 30%;
  font-weight: 700;
}
.privacy__table tbody tr:has(td[colspan="2"]) td {
  background-color: #fafafa;
  font-weight: 700;
  text-align: left;
}

.privacy__text.privacy__text--right {
  margin-top: 2.5rem;
  text-align: right;
  font-size: 1.125rem;
}
@media screen and (max-width: 767.9px) {
  .privacy__text.privacy__text--right {
    font-size: 1rem;
  }
}

.privacy__text.privacy__text--red {
  color: #D20000;
}

.privacy__info {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}/*# sourceMappingURL=style.css.map */