@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 {
  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: smooth;
}

/* 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;
}

/* 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;
  scroll-behavior: auto;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html::-webkit-scrollbar {
  display: none;
}
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  color: #1d1d1d;
}

a {
  text-decoration: none;
  color: inherit;
}

.l-business-bg {
  padding: 6.875rem 0 9.875rem;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/page-business-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .l-business-bg {
    padding: 5rem 0 5rem;
  }
}

.l-company-loop {
  margin-top: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .l-company-loop {
    margin-top: 4.625rem;
  }
}

.l-header {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  left: 0;
}

.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
}

.l-page-top {
  position: absolute;
  left: 50%;
  bottom: 2.25rem;
  transform: translateX(-50%);
  transition: bottom 0.5s;
}
.l-page-top:hover {
  bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-page-top:hover {
    bottom: 2.25rem;
  }
}

.c-breadcrumb {
  padding: 0 1.5625rem;
  width: 100%;
  max-width: 71.875rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 0 1.25rem;
  }
}

.c-breadcrumb__inner {
  margin-inline: auto;
  padding: 1.25rem 1.6875rem 1.25rem 2.5625rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1.71875rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__inner {
    padding: 1rem 1.25rem 1rem 1.75rem;
    border-radius: 1.46875rem;
  }
}

.c-breadcrumb__wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__wrapper {
    -moz-column-gap: 1.125rem;
    column-gap: 1.125rem;
  }
}

.c-breadcrumb__link,
.c-breadcrumb__current,
.post .post-page .current-item {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: rgba(48, 48, 48, 0.4);
}

.c-breadcrumb__link {
  position: relative;
  transition: color 0.3s;
}
.c-breadcrumb__link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: #1d1d1d;
  bottom: -0.125rem;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}
.c-breadcrumb__link:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__link:hover::after {
    display: none;
  }
}
.c-breadcrumb__link:hover {
  color: #303030;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__link:hover {
    color: rgba(48, 48, 48, 0.4);
  }
}

.c-breadcrumb__arrow {
  display: inline-block;
  width: 0.1875rem;
  height: 0.375rem;
  background-image: url(../images/common/breadcrumb-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-breadcrumb__scroll-down {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: #303030;
}
.c-breadcrumb__scroll-down::after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-image: url(../images/common/scroll-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-button {
  padding: 0.75rem 0.875rem 0.75rem 3rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 1rem;
  background-color: #303030;
  overflow: hidden;
}
.c-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  transform: translateY(50%);
  display: block;
  width: 120%;
  height: 200%;
  background-color: #3897f1;
  border-radius: 0 50% 50% 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.8s ease;
  transition-property: transform;
}
.c-button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
@media screen and (max-width: 767px) {
  .c-button:hover::before {
    display: none;
  }
}

.c-button__text {
  position: relative;
  font-weight: 700;
  line-height: 2.4375;
  letter-spacing: -0.08em;
  color: #ffffff;
}

.c-button__arrow {
  position: relative;
  margin-left: 1.4375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
}
.c-button__arrow::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-image: url(../images/common/button-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-button.c-button--mono {
  padding: 0.75rem 0.875rem 0.75rem 2rem;
  background-color: #ffffff;
  border: 0.0625rem solid #000000;
}
.c-button.c-button--mono::before {
  background-color: #303030;
}
.c-button.c-button--mono:hover .c-button__text {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-button.c-button--mono:hover .c-button__text {
    color: #1d1d1d;
  }
}
.c-button.c-button--mono:hover .c-button__arrow {
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .c-button.c-button--mono:hover .c-button__arrow {
    background-color: #303030;
  }
}

.c-button--mono .c-button__text {
  transition: 0.5s;
  color: #1d1d1d;
}

.c-button--mono .c-button__arrow {
  margin-left: 1.1875rem;
  background-color: #303030;
  transition: 1s;
}

.c-entry-button {
  position: relative;
  background-color: #ed0012;
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  padding: 0.5rem 2rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-entry-button {
    padding: 1rem 4.5625rem;
  }
}
.c-entry-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  transform: translateY(50%);
  display: block;
  width: 120%;
  height: 200%;
  background: #fe8d31;
  border-radius: 0 50% 50% 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.8s ease;
  transition-property: transform;
}
.c-entry-button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
@media screen and (max-width: 767px) {
  .c-entry-button:hover::before {
    display: none;
  }
}

.c-entry-button__text {
  position: relative;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.14em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-entry-button__text {
    font-size: 1.25rem;
  }
}

.c-hidden-guideline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 4rem;
  color: #ed0012;
  background-color: rgba(255, 255, 255, 0.7);
}

.c-nav-button-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.c-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background-color: #303030;
  box-shadow: 0 0 0.5625rem 0 rgba(0, 0, 0, 0.08);
  pointer-events: all;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s;
}
@media screen and (max-width: 767px) {
  .c-nav-button {
    width: 2.625rem;
    height: 2.625rem;
  }
}
.c-nav-button::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background: url(../images/common/button-arrow.png) no-repeat center
    center/cover;
}
@media screen and (max-width: 767px) {
  .c-nav-button::before {
    width: 0.525rem;
    height: 0.525rem;
  }
}
.c-nav-button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .c-nav-button:hover {
    opacity: 1;
  }
}

.c-nav-button.c-button-prev {
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-nav-button.c-button-prev {
    transform: translateX(-20%);
  }
}
.c-nav-button.c-button-prev::before {
  transform: rotate(180deg);
}

.c-nav-button.c-button-next {
  transform: translateX(50%);
}
@media screen and (max-width: 767px) {
  .c-nav-button.c-button-next {
    transform: translateX(20%);
  }
}

.c-page-top {
  width: 10.5rem;
  height: 2.25rem;
  background-image: url(../images/common/page-top.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

.c-section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .c-section-heading {
    gap: 0.5625rem;
  }
}

.c-section-heading__jp {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.21875;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 767px) {
  .c-section-heading__jp {
    font-size: 1.375rem;
    line-height: 1.7727272727;
    letter-spacing: -0.08em;
  }
}

.c-section-heading__en {
  font-family: "Hepta Slab", serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-section-heading__en {
    font-size: 1rem;
    line-height: 1.25;
  }
}

[data-page="top-member"] .c-section-heading__jp {
  color: #a407ba;
}

[data-page="top-member"] .c-section-heading__en {
  color: rgba(164, 7, 186, 0.3);
}

[data-page="top-business"] .c-section-heading__jp {
  color: #71bf51;
}

[data-page="top-business"] .c-section-heading__en {
  color: rgba(113, 191, 81, 0.3);
}

[data-page="top-company"] .c-section-heading__jp {
  color: #3897f1;
}

[data-page="top-company"] .c-section-heading__en {
  color: rgba(56, 151, 241, 0.3);
}

[data-page="top-culture"] .c-section-heading__jp {
  color: #fe8d31;
}

[data-page="top-culture"] .c-section-heading__en {
  color: rgba(254, 141, 49, 0.3);
}

[data-page="culture"] .c-section-heading__jp {
  color: #71bf51;
}

[data-page="culture"] .c-section-heading__en {
  color: rgba(113, 191, 81, 0.3);
}

[data-page="company"].c-section-heading,
[data-page="information"].c-section-heading {
  position: relative;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  [data-page="company"].c-section-heading,
  [data-page="information"].c-section-heading {
    padding-bottom: 1rem;
  }
}
[data-page="company"].c-section-heading::before,
[data-page="information"].c-section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.0625rem;
  width: 3.125rem;
  height: 0.0625rem;
}

[data-page="company"].c-section-heading::before {
  background-color: #ed0012;
}

[data-page="information"].c-section-heading::before {
  background-color: #fe8d31;
}

[data-page="company"] .c-section-heading__jp {
  color: #ed0012;
}

[data-page="company"] .c-section-heading__en {
  color: rgba(237, 0, 18, 0.3);
}

[data-page="information"] .c-section-heading__jp {
  color: #fe8d31;
}

[data-page="information"] .c-section-heading__en {
  color: rgba(254, 141, 49, 0.3);
}

.p-404 {
  padding: 11.25rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-404 {
    padding: 10rem 0 3.75rem;
  }
}

.p-404__inner {
  width: 100%;
  max-width: 71.875rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-404__inner {
    padding: 0 1.25rem;
  }
}

.p-404__title {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0;
  color: #fe8d31;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-404__description {
  margin-top: 2.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: -0.05em;
  color: #929292;
}
@media screen and (max-width: 767px) {
  .p-404__description {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-404__btn {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-404__btn {
    margin-top: 2rem;
  }
}

.p-404__btn .c-entry-button__text {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-404__btn .c-entry-button__text {
    font-size: 1.125rem;
  }
}

.p-business-contents {
  margin-top: 3.4375rem;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-business-contents {
    margin-top: 2.5rem;
    padding: 0 1.25rem;
  }
}

.p-business-contents__inner {
  width: 100%;
  max-width: 84.0625rem;
  margin-inline: auto;
  padding: 6rem 7.5625rem;
  background-color: #ffffff;
  border: 0.0625rem solid #cccccc;
  border-radius: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-business-contents__inner {
    padding: 2rem 1rem;
    border-radius: 1.5625rem;
  }
}

.p-business-contents__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  -moz-column-gap: 4.6875rem;
  column-gap: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-business-contents__item {
    flex-direction: column;
    row-gap: 1.5rem;
  }
}

.p-business-contents__item:nth-child(2n + 1) {
  padding-bottom: 3.5rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-business-contents__item:nth-child(2n + 1) {
    padding-bottom: 2rem;
  }
}
.p-business-contents__item:nth-child(2n + 1) .p-business-contents__title span {
  background-color: #71bf51;
}

.p-business-contents__item:nth-child(2n) {
  flex-direction: row-reverse;
  padding-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-business-contents__item:nth-child(2n) {
    padding-top: 2rem;
    flex-direction: column;
  }
}
.p-business-contents__item:nth-child(2n) .p-business-contents__title span {
  background-color: #3897f1;
}

.p-business-contents__text-block {
  width: 100%;
  max-width: 37.1875rem;
}

.p-business-contents__title {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-business-contents__title {
    align-items: start;
    flex-direction: column;
    row-gap: 0.625rem;
  }
}

.p-business-contents__title span {
  padding: 0.1875rem 0.625rem;
  width: 7.3125rem;
  border-radius: 1.21875rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.p-business-contents__title h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.21875;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 767px) {
  .p-business-contents__title h3 {
    font-size: 1.5rem;
    line-height: 1.625;
  }
}

.p-business-contents__description {
  margin-top: 1.25rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-business-contents__description {
    margin-top: 1rem;
  }
}

.p-business-contents__img {
  position: relative;
  width: 100%;
  max-width: 26.875rem;
}

.p-business-contents__item:nth-child(2n + 1) .p-business-contents__img::after,
.p-business-contents__item:nth-child(2n) .p-business-contents__img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  aspect-ratio: 517/259;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-business-contents__item:nth-child(2n + 1) .p-business-contents__img::after,
  .p-business-contents__item:nth-child(2n) .p-business-contents__img::after {
    width: 115%;
  }
}

.p-business-contents__item:nth-child(2n + 1) .p-business-contents__img::after {
  background-image: url(../images/common/page-business-contents-deco-01.png);
}

.p-business-contents__item:nth-child(2n) .p-business-contents__img::after {
  background-image: url(../images/common/page-business-contents-deco-02.png);
}

.p-business-contents__img img {
  width: 100%;
  aspect-ratio: 430/282;
  border-radius: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-business-contents__img img {
    border-radius: 1.25rem;
  }
}

.p-business-dots {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-business-dots {
    margin-top: 1.5rem;
  }
}

.p-business-dots span {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #303030;
  border-radius: 50%;
}

.p-business-intro__inner {
  padding: 0 1.5625rem;
  width: 100%;
  max-width: 71.875rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 3.9375rem;
  column-gap: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .p-business-intro__inner {
    padding: 0 1.25rem;
    flex-direction: column-reverse;
    row-gap: 1.5rem;
  }
}

.p-business-intro__img {
  width: 100%;
  max-width: 30.4375rem;
}

.p-business-intro__img img {
  width: 100%;
  aspect-ratio: 487/504;
}

.p-business-intro__sub-title {
  font-family: "Hepta Slab", serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: rgba(56, 151, 241, 0.3);
}
@media screen and (max-width: 767px) {
  .p-business-intro__sub-title {
    font-size: 1rem;
    line-height: 1;
  }
}

.p-business-intro__main-title {
  margin-top: 0.625rem;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: -0.08em;
  color: #3897f1;
}
@media screen and (max-width: 767px) {
  .p-business-intro__main-title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-business-intro__main-title span {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-business-intro__main-title span {
    font-size: 1.25rem;
  }
}

.p-business-intro__description {
  margin-top: 1.875rem;
  width: 100%;
  max-width: 34.375rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2.1666666667;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-business-intro__description {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-business-yell {
  margin-top: 2rem;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-business-yell {
    margin-top: 1.5rem;
    padding: 0 1.25rem;
  }
}

.p-business-yell__text {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: -0.08em;
  color: #3897f1;
  text-shadow: 0 0 1.1875rem #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-business-yell__text {
    font-size: 1.375rem;
  }
}

.p-business-yell span {
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-business-yell span {
    font-size: 1.125rem;
  }
}

.p-company-data {
  padding: 6.875rem 0 8rem;
  background: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .p-company-data {
    padding: 3.75rem 0 5rem;
  }
}

.p-company-data__inner {
  width: 100%;
  max-width: 71.875rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-company-data__inner {
    padding: 0 1.25rem;
  }
}

.p-company-data__items {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-company-data__items {
    margin-top: 1.5rem;
  }
}

.p-company-data__row {
  display: flex;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-company-data__row {
    flex-direction: column;
    row-gap: 1rem;
  }
}

.p-company-data__row:last-child {
  margin-bottom: 0;
}

.p-company-data__item {
  position: relative;
  background-color: #ffffff;
  padding: 0.9375rem 1.25rem 1.1875rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 0.9375rem;
  border-radius: 0.625rem;
}

.p-company-data__row--second .p-company-data__item {
  flex: 1 1 50%;
  row-gap: 0;
}

.p-company-data__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2.1666666667;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-company-data__title {
    font-size: 1rem;
    line-height: 2.4375;
  }
}
.p-company-data__title::before {
  content: "";
  display: block;
  width: 0.25rem;
  height: 1.25rem;
  background-color: #ed0012;
  transform: rotate(30deg);
}

.p-company-data__img {
  width: 100%;
  margin-inline: auto;
}

.p-company-data__row .p-company-data__img {
  width: 100%;
  max-width: 17.25rem;
}

.p-company-data__row--second .p-company-data__img {
  margin-top: -1.6875rem;
  max-width: 13.625rem;
}
@media screen and (max-width: 767px) {
  .p-company-data__row--second .p-company-data__img {
    margin-top: 0;
  }
}

.p-company-message {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-company-message {
    margin-top: 3.75rem;
  }
}

.p-company-message__inner {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding: 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-company-message__inner {
    padding: 0 1rem;
  }
}

.p-company-message__heading {
  padding-left: 2.375rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.0625rem;
  column-gap: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-company-message__heading {
    padding-left: 0;
    -moz-column-gap: 0.5625rem;
    column-gap: 0.5625rem;
  }
}

.p-company-message__main-heading {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.625;
  letter-spacing: -0.08em;
  color: #ed0012;
}
@media screen and (max-width: 767px) {
  .p-company-message__main-heading {
    font-size: 1.25rem;
    line-height: 1.95;
  }
}

.p-company-message__sub-heading {
  font-family: "Hepta Slab", serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.2777777778;
  letter-spacing: 0;
  color: rgba(237, 0, 18, 0.3);
}

.p-company-message__contents {
  margin-top: 0.875rem;
  padding: 6.875rem 7.6875rem;
  background-image: url(../images/common/page-company-message-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 0.0625rem solid #cccccc;
  border-radius: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-company-message__contents {
    margin-top: 0.625rem;
    padding: 0.5rem;
    border-radius: 1.5625rem;
    background-position: 80% 50%;
  }
}

.p-company-message__text-block {
  width: 100%;
  max-width: 41.75rem;
}
@media screen and (max-width: 767px) {
  .p-company-message__text-block {
    padding: 1rem 0.5rem;
    max-width: none;
    border-radius: 1.0625rem;
    background-color: rgba(255, 255, 255, 0.3);
  }
}

.p-company-message__title {
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1.2;
  letter-spacing: -0.08em;
  color: #ed0012;
}
@media screen and (max-width: 767px) {
  .p-company-message__title {
    font-size: 1.625rem;
    line-height: 1.5;
  }
}

.p-company-message__title span {
  font-size: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-company-message__title span {
    font-size: 1.375rem;
  }
}

.p-company-message__description {
  margin-top: 2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-company-message__description {
    margin-top: 1.5rem;
    line-height: 1.5;
  }
}

.p-company-profile {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-company-profile {
    margin-top: 3.75rem;
  }
}

.p-company-profile__inner {
  width: 100%;
  max-width: 71.875rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-company-profile__inner {
    padding: 0 1.25rem;
  }
}

.p-company-profile__list-wrap {
  display: grid;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-company-profile__list-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-company-profile__list {
  padding: 1.875rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-company-profile__list {
    padding: 1.25rem 0;
    align-items: start;
    flex-direction: column;
    row-gap: 0.625rem;
  }
}

.p-company-profile__term {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2.1666666667;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-company-profile__term {
    line-height: 1.5;
  }
}

.p-company-profile__description {
  width: 24.125rem;
  line-height: 2;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-company-profile__description {
    width: 100%;
    line-height: 1.5;
  }
}

.p-culture-benefits {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-culture-benefits {
    margin-top: 1.25rem;
  }
}

.p-culture-benefits__inner {
  width: 100%;
  max-width: 71.875rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-culture-benefits__inner {
    padding: 1.25rem;
  }
}

.p-culture-benefits__section-heading {
  position: relative;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-culture-benefits__section-heading {
    padding-bottom: 1rem;
  }
}
.p-culture-benefits__section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.0625rem;
  width: 3.125rem;
  height: 0.0625rem;
  background-color: #71bf51;
}

.p-culture-benefits__list {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-culture-benefits__list {
    margin-top: 2rem;
  }
}

.p-culture-benefits__item + .p-culture-benefits__item {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-culture-benefits__item + .p-culture-benefits__item {
    margin-top: 3rem;
  }
}

.p-culture-benefits__grid {
  display: grid;
  row-gap: 1.875rem;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-culture-benefits__grid {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1.5rem;
  }
}

.p-culture-benefits__cell {
  padding-bottom: 1.875rem;
  height: 100%;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-culture-benefits__cell {
    padding-bottom: 1.5rem;
  }
}

.p-culture-benefits__name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.95;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-culture-benefits__name {
    font-size: 1.125rem;
    line-height: 2.1666666667;
  }
}
.p-culture-benefits__name::before {
  content: "";
  display: block;
  width: 0.25rem;
  height: 1.25rem;
  background-color: #71bf51;
  transform: rotate(30deg);
}

.p-culture-benefits__description {
  margin-top: 0.125rem;
  line-height: 2;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-culture-benefits__description {
    font-size: 0.875rem;
  }
}

.p-culture-benefits__title {
  margin-bottom: 1.875rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.625;
  letter-spacing: -0.08em;
  color: #71bf51;
}
@media screen and (max-width: 767px) {
  .p-culture-benefits__title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.95;
  }
}

.p-culture-office {
  margin: 11.25rem 0 8.25rem;
}
@media screen and (max-width: 767px) {
  .p-culture-office {
    margin: 6.25rem 0;
  }
}

.p-culture-office__inner {
  width: 100%;
  max-width: 71.875rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-culture-office__inner {
    padding: 0 1.25rem;
  }
}

.p-culture-office__section-heading {
  position: relative;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-culture-office__section-heading {
    padding-bottom: 1rem;
  }
}
.p-culture-office__section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.0625rem;
  width: 3.125rem;
  height: 0.0625rem;
  background-color: #71bf51;
}

.p-culture-office__swiper {
  position: relative;
  margin-top: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .p-culture-office__swiper {
    margin-top: 2rem;
  }
}

.p-culture-office__swiper .swiper-slide {
  transition: opacity 0.3s;
}

.p-culture-office__swiper .swiper-slide.is-translucent {
  opacity: 0.4;
}

.p-culture-office__swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 820/472;
}

.p-culture-office-swiper__button-wrap {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-culture-office-swiper__button-wrap {
    width: 90%;
  }
}

.p-culture-office__swiper .swiper-pagination {
  bottom: -2.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-culture-office__swiper .swiper-pagination {
    bottom: -1.5rem;
  }
}

.p-culture-office__swiper .swiper-pagination .swiper-pagination-bullet {
  background: rgba(48, 48, 48, 0.3);
  opacity: 1;
}

.p-culture-office__swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #303030;
  width: 0.625rem;
  height: 0.625rem;
}

.p-culture-people {
  padding: 7.9375rem 0 12.75rem;
  background-image: url(../images/common/page-culture-people-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-culture-people {
    padding: 3.75rem 0;
  }
}

.p-culture-people__inner {
  width: 100%;
  max-width: 71.875rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-culture-people__inner {
    padding: 0 1.25rem;
  }
}

.p-culture-people__content {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 7.5rem;
  column-gap: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-culture-people__content {
    flex-direction: column;
    row-gap: 1.5rem;
  }
}

.p-culture-people__title {
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1.2;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 767px) {
  .p-culture-people__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-culture-people__title span {
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-culture-people__title span {
    font-size: 1.25rem;
  }
}

.p-culture-people__description {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2.1666666667;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-culture-people__description {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}

.p-culture-people__img {
  width: 100%;
  max-width: 26.875rem;
}
@media screen and (max-width: 767px) {
  .p-culture-people__img {
    max-width: 37.5rem;
  }
}

.p-culture-people__img img {
  width: 100%;
  aspect-ratio: 430/620;
  border-radius: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-culture-people__img img {
    aspect-ratio: 1.5/1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 20%;
    object-position: 50% 20%;
    border-radius: 2.625rem;
  }
}

.p-entry {
  margin-top: 7.3125rem;
}
@media screen and (max-width: 767px) {
  .p-entry {
    margin-top: 3.75rem;
  }
}

.p-entry__inner {
  width: 100%;
  max-width: 65.625rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-entry__inner {
    padding: 0 1.25rem;
  }
}

.p-entry__description {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-entry__description {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.p-entry__list {
  margin-top: 4.8125rem;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.2);
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-entry__list {
    margin-top: 2.5rem;
  }
}

.p-entry__item {
  padding: 3.875rem 0;
  display: flex;
  align-items: start;
  -moz-column-gap: 9.875rem;
  column-gap: 9.875rem;
}
@media screen and (max-width: 767px) {
  .p-entry__item {
    padding: 2rem 0;
    flex-direction: column;
    row-gap: 1.5rem;
  }
}

.p-entry__item + .p-entry__item {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.2);
}

.p-entry__title {
  display: flex;
  align-items: start;
  flex-direction: column;
  row-gap: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-entry__title {
    align-items: center;
    flex-direction: row;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
}

.p-entry__title h2 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.21875;
  letter-spacing: -0.08em;
  color: #3897f1;
}
@media screen and (max-width: 767px) {
  .p-entry__title h2 {
    font-size: 1.5rem;
    line-height: 1;
  }
}

.p-entry__title span {
  font-family: "Hepta Slab", serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: rgba(56, 151, 241, 0.3);
}
@media screen and (max-width: 767px) {
  .p-entry__title span {
    font-size: 1rem;
    line-height: 1;
  }
}

.p-entry__content p {
  font-weight: 600;
  line-height: 2;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-entry__content p {
    font-size: 0.875rem;
    line-height: 1;
  }
}

.p-entry__link {
  display: inline-block;
  margin-top: 1.0625rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-entry__link {
    margin-top: 1rem;
  }
}

.p-entry__link img {
  width: 100%;
  aspect-ratio: 160/45;
}

.p-footer {
  padding: 3.4375rem 0 2.1875rem;
  background-color: #303030;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 4.125rem 0 2.5rem;
  }
}

.p-footer__inner {
  margin-inline: auto;
  padding: 0 5.125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 0 2rem;
  }
}

.p-footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    align-items: initial;
    flex-direction: column;
  }
}

.p-footer__logo {
  max-width: 12.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    margin-inline: auto;
    text-align: center;
  }
}

.p-footer__logo a {
  display: inline-block;
}

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

.p-footer__logo p {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  letter-spacing: 0;
  color: #ffffff;
}

.p-footer__nav-list {
  display: flex;
  align-items: center;
}

.p-footer__nav-item:not(:first-child) {
  margin-left: 0.1875rem;
}

.p-footer__nav-item a {
  padding: 0.9375rem;
  position: relative;
  display: block;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s;
}
.p-footer__nav-item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a:hover {
    opacity: 1;
  }
}

.p-footer__nav-entry {
  margin-left: 1.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-footer__sp-nav {
  margin-top: 3.5rem;
}

.p-footer__sp-nav-link {
  padding: 1.625rem 0;
  display: flex;
  align-items: center;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
}

.p-footer__sp-nav-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
}

.p-footer__sp-nav-title p {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.95;
  letter-spacing: -0.08em;
  color: #ffffff;
}

.p-footer__sp-nav-title span {
  font-family: "Hepta Slab", serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.3);
}

.p-footer__sp-nav-arrow {
  position: relative;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(146, 146, 146, 0.2);
  border-radius: 0.5rem;
}
.p-footer__sp-nav-arrow::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-image: url(../images/common/button-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-footer__sp-nav-entry {
  margin-top: 2.375rem;
  text-align: center;
}

.p-footer__copyright {
  margin-top: 3.125rem;
  display: block;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 2.9375rem;
  }
}

.p-header {
  height: 4.25rem;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.125rem;
    padding: 0.9375rem 0.8125rem 0;
  }
}

.p-header__inner {
  height: inherit;
  display: flex;
  justify-content: space-between;
  padding: 1.6875rem 1.25rem 0;
  position: relative;
  z-index: 1100;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0 1.1875rem;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0.75rem 0 rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
  }
}

.p-header__logo {
  width: 100%;
  max-width: 14.8125rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1.5625rem;
  box-shadow: 0 0 0.75rem 0 rgba(0, 0, 0, 0.1);
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    box-shadow: none;
    background-color: transparent;
  }
}

.p-header__logo a {
  display: block;
  padding: 1.375rem 2.75rem;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    display: inline-block;
    padding: 1rem 0;
  }
}

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

.p-header__nav {
  padding: 0rem 0.875rem 0 2.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0.75rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 1.5625rem;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-entry {
  margin-left: 1rem;
  display: flex;
}

.p-header__nav-item a {
  position: relative;
  margin: 0 1rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0;
  color: #303030;
  transition: color 0.5s;
}
.p-header__nav-item a:hover {
  color: #ed0012;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item a:hover {
    color: #303030;
  }
}
.p-header__nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: #ed0012;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}
.p-header__nav-item a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item a:hover::after {
    display: none;
  }
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    position: relative;
    z-index: 1200;
    width: 2.25rem;
    height: inherit;
    background-color: transparent;
    cursor: pointer;
    transition: 0.3s;
  }
}

.p-header__hamburger span {
  position: relative;
  display: block;
  height: 0.0625rem;
  background-color: #1d1d1d;
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  width: 100%;
  top: -0.1875rem;
  animation: button-bar01 0.75s forwards;
}

@keyframes button-bar01 {
  0% {
    top: 0.03125rem;
    transform: rotate(15deg);
  }
  50% {
    top: 0.03125rem;
    transform: rotate(0);
  }
  100% {
    top: -0.1875rem;
    transform: rotate(0);
  }
}
.p-header__hamburger span:nth-of-type(2) {
  width: 1.525rem;
  margin-left: auto;
  top: 0.1875rem;
  animation: button-bar02 0.75s forwards;
}

@keyframes button-bar02 {
  0% {
    top: -0.03125rem;
    transform: rotate(-15deg);
  }
  50% {
    top: -0.03125rem;
    transform: rotate(0);
  }
  100% {
    top: 0.1875rem;
    transform: rotate(0);
  }
}
.p-header__hamburger.is-open span:nth-of-type(1) {
  width: 2.275rem;
  top: 0.03125rem;
  transform: rotate(15deg);
  animation: active-button-bar01 0.75s forwards;
}

@keyframes active-button-bar01 {
  0% {
    top: -0.1875rem;
    transform: rotate(0);
  }
  50% {
    top: 0.03125rem;
    transform: rotate(0);
  }
  100% {
    top: 0.03125rem;
    transform: rotate(15deg);
  }
}
.p-header__hamburger.is-open span:nth-of-type(2) {
  width: 2.275rem;
  top: -0.03125rem;
  transform: rotate(-15deg);
  animation: active-button-bar02 0.75s forwards;
}

@keyframes active-button-bar02 {
  0% {
    top: 0.1875rem;
    transform: translateY(0) rotate(0);
  }
  50% {
    top: -0.03125rem;
    transform: rotate(0);
  }
  100% {
    top: -0.03125rem;
    transform: rotate(-15deg);
  }
}
.p-header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    padding: 9.375rem 2rem;
    z-index: 1000;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    overflow-y: scroll;
    scrollbar-width: none;
    background-image: url(../images/common/drawer-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

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

.p-header__drawer-link {
  padding: 1.625rem 0;
  display: flex;
  align-items: center;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.p-header__drawer-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
}

.p-header__drawer-title p {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.95;
  letter-spacing: -0.08em;
  color: #303030;
}

.p-header__drawer-title span {
  font-family: "Hepta Slab", serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  letter-spacing: 0;
  color: rgba(48, 48, 48, 0.3);
}

.p-header__drawer-arrow {
  position: relative;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(146, 146, 146, 0.2);
  border-radius: 0.5rem;
}
.p-header__drawer-arrow::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-image: url(../images/common/drawer-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-header__drawer-entry {
  margin-top: 2.375rem;
  text-align: center;
}

.p-information-entry-button a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.625rem 4.5rem 4.625rem 4.125rem;
  background-color: #303030;
  border-radius: 2.1875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-information-entry-button a {
    padding: 1.9375rem 2.0625rem 2.625rem;
    border-radius: 0 0 2rem 2rem;
  }
}
.p-information-entry-button a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  transform: translateY(50%);
  display: block;
  width: 120%;
  height: 200%;
  background: rgba(237, 0, 18, 0.8);
  border-radius: 0 50% 50% 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.8s ease;
  transition-property: transform;
}
.p-information-entry-button a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
@media screen and (max-width: 767px) {
  .p-information-entry-button a:hover::before {
    display: none;
  }
}

.p-information-entry-button__text-block {
  position: relative;
}

.p-information-entry-button__text-block .c-section-heading__jp {
  color: #ffffff;
}

.p-information-entry-button__text-block .c-section-heading__en {
  color: rgba(255, 255, 255, 0.3);
}

.p-information-entry-button__description {
  margin-top: 0.1875rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2.1666666667;
  letter-spacing: -0.05em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-information-entry-button__description {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    letter-spacing: -0.05em;
  }
}

.p-information-entry-button__arrow {
  position: relative;
  display: inline-block;
  width: 5.125rem;
  height: 5.125rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-information-entry-button__arrow {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.p-information-entry-button__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 1.3125rem;
  height: 1.3125rem;
  background-image: url(../images/common/button-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-information-entry-button__arrow::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}

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

.p-information-guideline__inner {
  margin-inline: auto;
  padding: 0 1.5625rem;
  width: 100%;
  max-width: 65.625rem;
}
@media screen and (max-width: 767px) {
  .p-information-guideline__inner {
    padding: 0 1.25rem;
    max-width: 37.5rem;
  }
}

.p-information-guideline__outline {
  position: relative;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-information-guideline__outline {
    margin-top: 1.5rem;
  }
}

.p-information-guideline__list {
  padding-bottom: 1.8125rem;
  display: flex;
  align-items: baseline;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-information-guideline__list {
    flex-direction: column;
    padding-bottom: 1.375rem;
  }
}

.p-information-guideline__list + .p-information-guideline__list {
  margin-top: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .p-information-guideline__list + .p-information-guideline__list {
    margin-top: 1.375rem;
  }
}

.p-information-guideline__term {
  max-width: 8.25rem;
  width: 100%;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2.1666666667;
  letter-spacing: -0.05em;
}

.p-information-guideline__description {
  line-height: 2;
  letter-spacing: -0.05em;
}

.p-information-personality {
  margin: 7.5rem 0 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-information-personality {
    margin: 3.75rem 0 5rem;
  }
}

.p-information-personality__inner {
  width: 100%;
  max-width: 65.625rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-information-personality__inner {
    padding: 0 1.25rem;
    max-width: 37.5rem;
  }
}

.p-information-personality__list {
  counter-reset: number;
}

.p-information-personality__item {
  padding: 3.875rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-information-personality__item {
    padding: 1.875rem 0;
    flex-direction: column-reverse;
    row-gap: 1.5rem;
  }
}

.p-information-personality__item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-information-personality__item:nth-child(2n) {
    flex-direction: column-reverse;
  }
}

.p-information-personality__img {
  position: relative;
  width: 100%;
  max-width: 26.875rem;
}

.p-information-personality__item:nth-child(2n + 1)
  .p-information-personality__img::after,
.p-information-personality__item:nth-child(2n)
  .p-information-personality__img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  aspect-ratio: 517/259;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-information-personality__item:nth-child(2n + 1)
    .p-information-personality__img::after,
  .p-information-personality__item:nth-child(2n)
    .p-information-personality__img::after {
    width: 110%;
  }
}

.p-information-personality__item:first-child
  .p-information-personality__img::after {
  background-image: url(../images/common/page-information-personality-deco-01.png);
}

.p-information-personality__item:nth-child(2n)
  .p-information-personality__img::after {
  background-image: url(../images/common/page-information-personality-deco-02.png);
}

.p-information-personality__item:last-child
  .p-information-personality__img::after {
  background-image: url(../images/common/page-information-personality-deco-03.png);
}

.p-information-personality__img img {
  width: 100%;
  aspect-ratio: 430/282;
  border-radius: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-information-personality__img img {
    border-radius: 1.25rem;
  }
}

.p-information-personality__text-block {
  max-width: 31.25rem;
}

.p-information-personality__title {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.3928571429;
  letter-spacing: -0.08em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-information-personality__title {
    font-size: 1.5rem;
    line-height: 1;
  }
}
.p-information-personality__title::before {
  content: "0" counter(number);
  counter-increment: number;
  margin-right: 0.9375rem;
  display: inline-block;
  font-family: "Hepta Slab", serif;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: rgba(254, 141, 49, 0.3);
}
@media screen and (max-width: 767px) {
  .p-information-personality__title::before {
    margin-right: 0.625rem;
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

.p-information-personality__title span {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-information-personality__title span {
    font-size: 1.25rem;
  }
}

.p-information-personality__description {
  margin-top: 0.625rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.05em;
}

.p-information {
  position: relative;
  padding: 7.25rem 4.5rem;
  background-image: url(../images/common/information-bg-pc.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-information {
    padding: 4.625rem 1.25rem;
  }
}

.p-information__inner {
  padding: 6.3125rem 9.25rem 4.1875rem;
  margin-inline: auto;
  width: 100%;
  max-width: 82.5625rem;
  border-radius: 3.125rem;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(1.75rem);
  -webkit-backdrop-filter: blur(1.75rem);
}
@media screen and (max-width: 767px) {
  .p-information__inner {
    padding: 2.75rem 0 0 0;
    border-radius: 2rem;
  }
}

.p-information__catch {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-information__catch {
    padding: 0 1.875rem;
  }
}

.p-information__catch img {
  width: 100%;
  aspect-ratio: 1002/224;
}
@media screen and (max-width: 767px) {
  .p-information__catch img {
    aspect-ratio: 270/206;
  }
}

.p-information__wrap {
  margin-top: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-information__wrap {
    margin-top: 1.5rem;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .p-information__section-heading.c-section-heading {
    flex-direction: column;
    gap: 0;
  }
}

.p-information__section-heading .c-section-heading__jp {
  color: #ed0012;
}

.p-information__section-heading .c-section-heading__en {
  color: rgba(237, 0, 18, 0.3);
}

.p-information__description {
  margin-top: 0.1875rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2.1666666667;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-information__description {
    margin-top: 0.875rem;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-information__button {
    margin-top: 0.875rem;
  }
}

.p-information__entry-button {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-information__entry-button {
    margin-top: 2.375rem;
  }
}

.p-loading {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgb(0, 0, 0), rgb(85, 85, 85) 70%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-loading__bg {
  position: absolute;
  left: 150%;
  width: inherit;
  height: 33.3%;
  background-color: #3897f1;
  box-shadow: 0 0 3.75rem 3.75rem #3897f1;
  animation: loadBgAnimation 0.5s ease-out forwards;
}
.p-loading__bg:first-child {
  top: 0;
  animation-delay: 1.3s;
}
.p-loading__bg:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 1.4s;
}
.p-loading__bg:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
  animation-delay: 1.5s;
}

@keyframes loadBgAnimation {
  0% {
    opacity: 0;
    left: 150%;
  }
  100% {
    left: 0;
  }
}
.p-loading__item {
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
}

.p-loading__title-wrap {
  padding: 0 4.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-loading__title-wrap {
    padding: 0 1.1875rem;
  }
}

.p-loading__main-title {
  display: flex;
  align-items: end;
  justify-content: center;
}
@media screen and (max-width: 399px) {
  .p-loading__main-title {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto auto;
    justify-content: center;
  }
}

.p-loading__main-title span {
  opacity: 0;
  animation: loadAnimation 1s forwards;
}

.p-loading__main-title span img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 399px) {
  .p-loading__main-title span:nth-child(1),
  .p-loading__main-title span:nth-child(2),
  .p-loading__main-title span:nth-child(3) {
    grid-row: 1;
  }
}

@media screen and (max-width: 399px) {
  .p-loading__main-title span:nth-child(4),
  .p-loading__main-title span:nth-child(5),
  .p-loading__main-title span:nth-child(6),
  .p-loading__main-title span:nth-child(7) {
    grid-row: 2;
  }
}

.p-loading__main-title span:nth-child(1) {
  animation-delay: 0.6s;
}
@media screen and (max-width: 399px) {
  .p-loading__main-title span:nth-child(1) {
    width: 8.25rem;
  }
}

.p-loading__main-title span:nth-child(2) {
  margin-bottom: 1.65625rem;
  animation-delay: 0.8s;
}
@media screen and (max-width: 767px) {
  .p-loading__main-title span:nth-child(2) {
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 399px) {
  .p-loading__main-title span:nth-child(2) {
    width: 5.0625rem;
  }
}

.p-loading__main-title span:nth-child(3) {
  margin-bottom: 1.5625rem;
  animation-delay: 1s;
}
@media screen and (max-width: 767px) {
  .p-loading__main-title span:nth-child(3) {
    margin-bottom: 0.6875rem;
  }
}
@media screen and (max-width: 399px) {
  .p-loading__main-title span:nth-child(3) {
    margin-left: -0.75rem;
    width: 1.3125rem;
  }
}

.p-loading__main-title span:nth-child(4) {
  margin-bottom: 0.125rem;
  animation-delay: 2s;
}
@media screen and (max-width: 399px) {
  .p-loading__main-title span:nth-child(4) {
    margin-bottom: 0;
    width: 6.4375rem;
  }
}

.p-loading__main-title span:nth-child(5) {
  margin-bottom: 0.6875rem;
  animation-delay: 2.2s;
}
@media screen and (max-width: 767px) {
  .p-loading__main-title span:nth-child(5) {
    margin-bottom: 0.25rem;
  }
}
@media screen and (max-width: 399px) {
  .p-loading__main-title span:nth-child(5) {
    margin-left: -2.5rem;
    width: 8.5rem;
  }
}

.p-loading__main-title span:nth-child(6) {
  margin-bottom: 1.5rem;
  animation-delay: 2.4s;
}
@media screen and (max-width: 767px) {
  .p-loading__main-title span:nth-child(6) {
    margin-bottom: 0.625rem;
  }
}
@media screen and (max-width: 399px) {
  .p-loading__main-title span:nth-child(6) {
    width: 4.9375rem;
  }
}

.p-loading__main-title span:nth-child(7) {
  margin-bottom: 1.25rem;
  animation-delay: 2.6s;
}
@media screen and (max-width: 767px) {
  .p-loading__main-title span:nth-child(7) {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 399px) {
  .p-loading__main-title span:nth-child(7) {
    width: 1.6875rem;
  }
}

.p-loading__sub-title {
  margin-top: 1.8125rem;
  font-family: "Hepta Slab", serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.25;
  letter-spacing: -0.11em;
  color: #ffffff;
  opacity: 0;
  animation: subLoadAnimation 1s forwards;
  animation-delay: 3.6s;
}
@media screen and (max-width: 767px) {
  .p-loading__sub-title {
    margin-top: 0.5625rem;
    font-size: 2.125rem;
    line-height: 1.2647058824;
  }
}

@keyframes loadAnimation {
  0% {
    opacity: 0;
    transform: translateX(3.125rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes subLoadAnimation {
  0% {
    opacity: 0;
    transform: translateY(3.125rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-loop-swiper {
  background-color: #ffffff;
}

.p-loop-swiper .swiper-wrapper {
  transition-timing-function: linear;
  will-change: transform;
}

.p-loop-swiper .swiper-slide {
  width: 100%;
  aspect-ratio: 441/272;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-loop-swiper .swiper-slide picture,
.p-loop-swiper .swiper-slide img {
  width: 100%;
}

.p-member-intro {
  margin-top: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .p-member-intro {
    margin-top: 3.75rem;
  }
}

.p-member-intro__inner {
  width: 100%;
  max-width: 90.625rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-member-intro__inner {
    padding: 0 1rem;
  }
}

.p-member-intro__content {
  padding: 8.75rem 7.6875rem;
  width: 100%;
  aspect-ratio: 1345/703;
  background-image: url(../images/common/page-member-intro.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-member-intro__content {
    padding: 2.5rem 1rem;
    background-position: right;
    border-radius: 2.25rem;
  }
}

.p-member-intro__sub-title {
  font-family: "Hepta Slab", serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: rgba(164, 7, 186, 0.3);
}
@media screen and (max-width: 767px) {
  .p-member-intro__sub-title {
    font-size: 1rem;
    line-height: 1;
  }
}

.p-member-intro__main-title {
  margin-top: 0.625rem;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: -0.08em;
  color: #a407ba;
}
@media screen and (max-width: 767px) {
  .p-member-intro__main-title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-member-intro__main-title span {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-member-intro__main-title span {
    font-size: 1.25rem;
  }
}

.p-member-intro__description {
  margin-top: 1.875rem;
  width: 100%;
  max-width: 34.375rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2.1666666667;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-member-intro__description {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-member-voice {
  margin-top: 5.25rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice {
    margin-top: 2.5rem;
    margin-bottom: 3.75rem;
  }
}

.p-member-voice__inner {
  width: 100%;
  max-width: 71.875rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice__inner {
    padding: 0 1.25rem;
  }
}

.p-member-voice__item {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  -moz-column-gap: 4.6875rem;
  column-gap: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice__item {
    flex-direction: column;
    align-items: center;
  }
}

.p-member-voice__item + .p-member-voice__item {
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice__item + .p-member-voice__item {
    margin-top: 5rem;
  }
}

.p-member-voice__profile {
  position: sticky;
  top: 20%;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-member-voice__profile {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

.p-member-voice__profile-img {
  width: 100%;
  max-width: 23.9375rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice__profile-img {
    max-width: 15.625rem;
  }
}

.p-member-voice__profile-img img {
  width: 100%;
  aspect-ratio: 383/497;
}

.p-member-voice__profile-meta {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 500;
  line-height: 2.4375;
  letter-spacing: -0.08em;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .p-member-voice__profile-meta {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 2.7857142857;
  }
}

.p-member-voice__data {
  margin-top: 3.75rem;
  width: 100%;
  max-width: 40.125rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice__data {
    margin-top: 2.5rem;
  }
}

.p-member-voice__title {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.25;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 767px) {
  .p-member-voice__title {
    font-size: 1.5rem;
    line-height: 1.625;
  }
}

.p-member-voice__title span {
  font-size: 2.25rem;
  line-height: 1.3888888889;
}
@media screen and (max-width: 767px) {
  .p-member-voice__title span {
    font-size: 1.25rem;
    line-height: 1.95;
  }
}

.p-member-voice__item:first-child .p-member-voice__title {
  color: #a407ba;
}

.p-member-voice__item:nth-child(2) .p-member-voice__title {
  color: #fe8d31;
}

.p-member-voice__item:last-child .p-member-voice__title {
  color: #3897f1;
}

.p-member-voice__description {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2.1666666667;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-member-voice__description {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-member-voice__career-img {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice__career-img {
    margin-top: 1.5rem;
  }
}

.p-member-voice__schedule {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-member-voice__schedule {
    margin-top: 3.125rem;
  }
}

.p-page-mv {
  position: relative;
  width: 100%;
  height: 50svh;
  min-height: 18.75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-page-mv {
    height: 30svh;
    min-height: 15.625rem;
  }
}

.p-page-mv[data-page="member"] {
  background-image: url(../images/common/page-member-mv.jpg);
}

.p-page-mv[data-page="culture"] {
  background-image: url(../images/common/page-culture-mv.jpg);
}

.p-page-mv[data-page="business"] {
  background-image: url(../images/common/page-business-mv.jpg);
}

.p-page-mv[data-page="company"] {
  background-image: url(../images/common/page-company-mv.jpg);
}

.p-page-mv[data-page="information"] {
  background-image: url(../images/common/page-information-mv.jpg);
}

.p-page-mv[data-page="entry"] {
  background-image: url(../images/common/page-entry-mv.jpg);
}

.p-page-mv__inner {
  position: absolute;
  top: 46.3043478261%;
  left: 15.2777777778%;
}

.p-page-mv__title {
  color: #ffffff;
}

.p-page-mv__title h1 {
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 0.6964285714;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 767px) {
  .p-page-mv__title h1 {
    font-size: 2rem;
    line-height: 1;
  }
}

.p-page-mv__title span {
  display: inline-block;
  margin-top: 2.1875rem;
  font-family: "Hepta Slab", serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-page-mv__title span {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1;
  }
}

.p-schedule {
  border: 0.0625rem solid #cccccc;
  border-radius: 2.1875rem;
  padding: 3.125rem 0;
}
@media screen and (max-width: 767px) {
  .p-schedule {
    padding: 2.5rem 0;
  }
}

.p-schedule__inner {
  margin-inline: auto;
  padding: 0 5.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-schedule__inner {
    padding: 0 1.25rem;
    max-width: 27.5rem;
  }
}

.p-schedule__title {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.625;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 767px) {
  .p-schedule__title {
    font-size: 1.25rem;
    line-height: 1.95;
  }
}

.p-member-voice__item:first-child .p-schedule__title {
  color: #a407ba;
}

.p-member-voice__item:nth-child(2) .p-schedule__title {
  color: #fe8d31;
}

.p-member-voice__item:last-child .p-schedule__title {
  color: #3897f1;
}

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

.p-schedule__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.p-schedule__term {
  width: 15.63%;
  font-family: "Hepta Slab", serif;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-schedule__term {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-member-voice__item:first-child .p-schedule__term {
  color: #a407ba;
}

.p-member-voice__item:nth-child(2) .p-schedule__term {
  color: #fe8d31;
}

.p-member-voice__item:last-child .p-schedule__term {
  color: #3897f1;
}

.p-schedule__description {
  padding-left: 0.9375rem;
  position: relative;
  width: 84.37%;
  font-weight: 700;
  line-height: 2.4375;
  letter-spacing: -0.08em;
  color: #303030;
}
@media screen and (max-width: 767px) {
  .p-schedule__description {
    margin-left: 0.875rem;
    font-size: 0.875rem;
    line-height: 2.5;
  }
}

.p-schedule__description::before,
.p-schedule__description::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-schedule__description::before {
  left: 0;
  width: 3px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-schedule__description::before {
    width: 2px;
  }
}

.p-member-voice__item:first-child .p-schedule__description::before {
  background: rgba(164, 7, 186, 0.1);
}

.p-member-voice__item:nth-child(2) .p-schedule__description::before {
  background: rgba(254, 141, 49, 0.1);
}

.p-member-voice__item:last-child .p-schedule__description::before {
  background: rgba(56, 151, 241, 0.1);
}

.p-schedule__description::after {
  left: -0.125rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-schedule__description::after {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-member-voice__item:first-child .p-schedule__description::after {
  background: #a407ba;
}

.p-member-voice__item:nth-child(2) .p-schedule__description::after {
  background: #fe8d31;
}

.p-member-voice__item:last-child .p-schedule__description::after {
  background: #3897f1;
}

.p-top-business {
  background-color: #ffffff;
  padding: 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-business {
    padding: 0 0.75rem;
  }
}

.p-top-business__inner {
  padding: 7.0625rem 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 5.8125rem;
  column-gap: 5.8125rem;
  flex-direction: row-reverse;
  background-image: url(../images/common/business-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-business__inner {
    padding: 2.6875rem 1.25rem 3.0625rem;
    flex-direction: column;
  }
}

.p-top-business__title {
  margin-top: 3.625rem;
  width: 100%;
  max-width: 34.0625rem;
}
@media screen and (max-width: 767px) {
  .p-top-business__title {
    margin-top: 1.5rem;
  }
}

.p-top-business__description {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2.1666666667;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-business__description {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}

.p-top-business__button {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-business__button {
    margin-top: 2.1875rem;
  }
}

.p-top-business__button.c-button::before {
  background-color: #71bf51;
}

.p-top-business__img {
  width: 100%;
  max-width: 30.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-business__img {
    margin-top: 1.0625rem;
    max-width: 17.75rem;
  }
}

.p-top-business__img img {
  width: 100%;
  aspect-ratio: 487/504;
}

.p-top-company {
  padding: 9.4375rem 0 10rem;
  background-image: url(../images/common/company-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-company {
    padding: 3.375rem 0 4.625rem;
    background-image: url(../images/common/company-bg-sp.jpg);
    background-size: cover;
  }
}

.p-top-company__inner {
  padding: 0 1.5625rem;
  max-width: 71.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-company__inner {
    padding: 0 1.25rem;
  }
}

.p-top-company__pc-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 7.125rem;
  column-gap: 7.125rem;
}

.p-top-company__title {
  margin-top: 4rem;
  width: 100%;
  max-width: 29.0625rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__title {
    margin-top: 2.3125rem;
    margin-inline: auto;
  }
}

.p-top-company__description {
  margin-top: 1.875rem;
  width: 100%;
  max-width: 29.4375rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2.1666666667;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-company__description {
    margin-top: -1.5rem;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-top-company__button {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__button {
    margin-top: 1.5625rem;
    margin-inline: auto;
    text-align: center;
  }
}

.p-top-company__img {
  margin-right: -3.125rem;
  width: 100%;
  max-width: 35.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__img {
    margin-top: 1.5rem;
    margin-inline: auto;
    padding-left: 3.125rem;
  }
}

.p-top-company__img img {
  width: 100%;
  aspect-ratio: 569/739;
}

.p-top-concept {
  padding: 6.3125rem 0;
  position: relative;
  min-height: 25rem;
  overflow-x: clip;
}

.p-top-concept video {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50.01%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.p-top-concept__inner {
  padding: 0 1.25rem;
  width: 100%;
  max-width: 65rem;
  margin-inline: auto;
  min-height: inherit;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-top-concept__inner {
    flex-direction: column;
    align-items: center;
    row-gap: 3.125rem;
  }
}

.p-top-concept__heading {
  width: 100%;
  max-width: 14.0625rem;
}
@media screen and (max-width: 767px) {
  .p-top-concept__heading {
    max-width: 7rem;
  }
}

.p-top-concept__heading img {
  position: sticky;
  top: 6.3125rem;
  right: 0;
  width: 100%;
  aspect-ratio: 225/764;
}
@media screen and (max-width: 767px) {
  .p-top-concept__heading img {
    position: static;
  }
}

.p-top-concept__text-wrap {
  margin-top: 10.625rem;
  width: 100%;
  max-width: 29.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-concept__text-wrap {
    margin-top: 0;
    max-width: 100%;
  }
}

.p-top-concept__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.21875;
  letter-spacing: -0.08em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-concept__title {
    font-size: 1.5rem;
    line-height: 1.625;
  }
}

.p-top-concept__title:not(:first-of-type) {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-concept__title:not(:first-of-type) {
    margin-top: 6.25rem;
  }
}

.p-top-concept__description {
  margin-top: 1.6875rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.625;
  letter-spacing: -0.05em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-concept__description {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.p-top-concept__description.p-top-concept__description--space {
  margin-top: 2.4375rem;
}

.p-top-culture {
  padding: 9.375rem 0 0;
  background-color: #ffffff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-culture {
    padding: 3.75rem 0;
  }
}

.p-top-culture__inner {
  max-width: 71.875rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-culture__inner {
    margin-inline: auto;
    padding: 0 1.25rem;
  }
}

.p-top-culture__pc-contents {
  display: flex;
  align-items: center;
  -moz-column-gap: 6.25rem;
  column-gap: 6.25rem;
}

.p-top-culture__content {
  padding-bottom: 6.25rem;
  width: 100%;
  max-width: 37.5rem;
}
@media screen and (max-width: 1439px) {
  .p-top-culture__content {
    padding-bottom: 5rem;
    max-width: 22.5rem;
  }
}

.p-top-culture__description {
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 2.1666666667;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-culture__description {
    margin-top: 2.125rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-top-culture__list {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-culture__list {
    margin-top: 1.75rem;
  }
}

.p-top-culture__item-link {
  padding: 1.8125rem 0;
  display: flex;
  align-items: center;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-top-culture__item-link {
    padding: 1.625rem 0;
  }
}
.p-top-culture__item-link:hover .p-top-culture__item-arrow {
  background-color: #303030;
}
@media screen and (max-width: 767px) {
  .p-top-culture__item-link:hover .p-top-culture__item-arrow {
    background-color: rgba(146, 146, 146, 0.2);
  }
}
.p-top-culture__item-link:hover .p-top-culture__item-arrow::before {
  background-image: url(../images/common/button-arrow.png);
}
@media screen and (max-width: 767px) {
  .p-top-culture__item-link:hover .p-top-culture__item-arrow::before {
    background-image: url(../images/common/drawer-arrow.png);
  }
}

@media screen and (max-width: 767px) {
  .p-top-culture__item-link:first-of-type {
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
  }
}

.p-top-culture__item-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 1.375rem;
  column-gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-culture__item-title {
    margin-left: 1.125rem;
    align-items: start;
    flex-direction: column;
  }
}

.p-top-culture__item-title p {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.625;
  letter-spacing: -0.08em;
  color: #303030;
}
@media screen and (max-width: 767px) {
  .p-top-culture__item-title p {
    font-size: 1.25rem;
    line-height: 1.95;
  }
}

.p-top-culture__item-title span {
  font-family: "Hepta Slab", serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  letter-spacing: 0;
  color: rgba(48, 48, 48, 0.3);
}

.p-top-culture__item-arrow {
  position: relative;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(146, 146, 146, 0.2);
  border-radius: 0.5rem;
  transition: 0.3s ease;
}
.p-top-culture__item-arrow::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-image: url(../images/common/drawer-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-top-culture__button {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-culture__button {
    margin-top: 2.5rem;
    text-align: center;
  }
}

.p-top-culture__button.c-button::before {
  background-color: #fe8d31;
}

.p-top-culture__image-wrapper {
  width: 100%;
  max-width: 50.625rem;
  overflow: hidden;
  position: relative;
  margin-right: calc(50% - 50vw);
  margin-left: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-top-culture__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 810/831;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-culture__image.show {
  opacity: 1;
}

.p-top-culture__item-img {
  width: 100%;
  max-width: 5.0625rem;
}

.p-top-culture__item-img {
  width: 100%;
  aspect-ratio: 1/1;
}

.p-top-member {
  background-color: #ffffff;
  padding: 6.6875rem 0 7.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-member {
    padding: 3.625rem 0 3.75rem;
  }
}

.p-top-member__section-heading {
  padding: 0 1.5625rem;
  margin-inline: auto;
  width: 100%;
  max-width: 71.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-member__section-heading {
    padding: 0 1.25rem;
  }
}

.p-top-member__swiper {
  position: relative;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-member__swiper {
    margin-top: 0.0625rem;
  }
}

.member-card {
  transition: filter 0.5s ease;
}

.member-card.is-gray {
  filter: grayscale(100%);
}

@media screen and (max-width: 767px) {
  .member-card {
    padding: 0 1.25rem;
  }
}

.member-card img {
  width: 100%;
  aspect-ratio: 951/497;
}
@media screen and (max-width: 767px) {
  .member-card img {
    aspect-ratio: 332/567;
  }
}

.p-top-member-swiper__button-wrap {
  width: 66%;
}
@media screen and (max-width: 767px) {
  .p-top-member-swiper__button-wrap {
    width: 88.5%;
    top: 30%;
  }
}

.p-top-member__button {
  margin-top: 2.6875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-member__button {
    margin-top: 2.4375rem;
  }
}

.p-top-member__button .c-button::before {
  background-color: #a407ba;
}

.p-top-mv {
  position: relative;
  height: 100svh;
  min-height: 25rem;
  background-image: url(../images/common/mv-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-top-mv__inner {
  position: relative;
  height: inherit;
  min-height: inherit;
}

.p-top-mv__title-wrap {
  padding: 0 4.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-mv__title-wrap {
    padding: 0 1.1875rem;
  }
}

.p-top-mv__main-title {
  display: flex;
  align-items: end;
  justify-content: center;
}
@media screen and (max-width: 399px) {
  .p-top-mv__main-title {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto auto;
    justify-content: center;
  }
}

.p-top-mv__main-title span img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 399px) {
  .p-top-mv__main-title span:nth-child(1),
  .p-top-mv__main-title span:nth-child(2),
  .p-top-mv__main-title span:nth-child(3) {
    grid-row: 1;
  }
}

@media screen and (max-width: 399px) {
  .p-top-mv__main-title span:nth-child(4),
  .p-top-mv__main-title span:nth-child(5),
  .p-top-mv__main-title span:nth-child(6),
  .p-top-mv__main-title span:nth-child(7) {
    grid-row: 2;
  }
}

@media screen and (max-width: 399px) {
  .p-top-mv__main-title span:nth-child(1) {
    width: 8.25rem;
  }
}

.p-top-mv__main-title span:nth-child(2) {
  margin-bottom: 1.65625rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__main-title span:nth-child(2) {
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 399px) {
  .p-top-mv__main-title span:nth-child(2) {
    width: 5.0625rem;
  }
}

.p-top-mv__main-title span:nth-child(3) {
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__main-title span:nth-child(3) {
    margin-bottom: 0.6875rem;
  }
}
@media screen and (max-width: 399px) {
  .p-top-mv__main-title span:nth-child(3) {
    margin-left: -0.75rem;
    width: 1.3125rem;
  }
}

.p-top-mv__main-title span:nth-child(4) {
  margin-bottom: 0.125rem;
}
@media screen and (max-width: 399px) {
  .p-top-mv__main-title span:nth-child(4) {
    margin-bottom: 0;
    width: 6.4375rem;
  }
}

.p-top-mv__main-title span:nth-child(5) {
  margin-bottom: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__main-title span:nth-child(5) {
    margin-bottom: 0.25rem;
  }
}
@media screen and (max-width: 399px) {
  .p-top-mv__main-title span:nth-child(5) {
    margin-left: -2.5rem;
    width: 8.5rem;
  }
}

.p-top-mv__main-title span:nth-child(6) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__main-title span:nth-child(6) {
    margin-bottom: 0.625rem;
  }
}
@media screen and (max-width: 399px) {
  .p-top-mv__main-title span:nth-child(6) {
    width: 4.9375rem;
  }
}

.p-top-mv__main-title span:nth-child(7) {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__main-title span:nth-child(7) {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 399px) {
  .p-top-mv__main-title span:nth-child(7) {
    width: 1.6875rem;
  }
}

.p-top-mv__sub-title {
  margin-top: 1.8125rem;
  font-family: "Hepta Slab", serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.25;
  letter-spacing: -0.11em;
  color: #303030;
}
@media screen and (max-width: 767px) {
  .p-top-mv__sub-title {
    margin-top: 0.5625rem;
    font-size: 2.125rem;
    line-height: 1.2647058824;
  }
}

.p-top-mv__news {
  padding: 0 1.25rem;
  position: absolute;
  right: 1.25rem;
  bottom: 2.3125rem;
  width: 100%;
  max-width: 35.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__news {
    right: 50%;
    bottom: 1.8125rem;
    transform: translateX(50%);
  }
}

.p-top-mv__news-link {
  position: relative;
  padding: 1rem 2.4375rem;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 1.71875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-mv__news-link {
    padding: 0.625rem 1.125rem;
  }
}
.p-top-mv__news-link::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  transform: translateY(50%);
  display: block;
  width: 120%;
  height: 200%;
  background: rgba(204, 204, 204, 0.5);
  border-radius: 0 50% 50% 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.8s ease;
  transition-property: transform;
}
.p-top-mv__news-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
@media screen and (max-width: 767px) {
  .p-top-mv__news-link:hover::before {
    display: none;
  }
}

.p-top-mv__news-tag {
  position: relative;
  font-family: "Jost", serif;
  line-height: 1.4375;
  letter-spacing: 0;
  color: #303030;
}

.p-top-mv__news-content {
  position: relative;
  margin-left: 1.25rem;
  padding-left: 1.25rem;
  display: flex;
  align-items: center;
  border-left: 0.0625rem solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-top-mv__news-content {
    margin-left: 1.125rem;
    padding: 0.1875rem 0rem 0.1875rem 1.125rem;
    flex-direction: column;
    align-items: start;
  }
}

.p-top-mv__news-date {
  font-family: "Jost", serif;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0;
  color: rgba(48, 48, 48, 0.5);
}
@media screen and (max-width: 767px) {
  .p-top-mv__news-date {
    font-size: 0.625rem;
    line-height: 1.4;
  }
}

.p-top-mv__news-title {
  margin-left: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #303030;
}
@media screen and (max-width: 767px) {
  .p-top-mv__news-title {
    margin-top: 0.25rem;
    margin-left: 0;
    font-size: 0.75rem;
  }
}

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

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
