@charset "UTF-8";
@media (min-width: 1441px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 1150px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a,
  button {
    -webkit-transition: none;
    transition: none;
  }
  a:hover,
  button:hover {
    opacity: 1;
    cursor: default;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  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;
  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]) {
  text-decoration-skip-ink: auto;
}

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

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

button {
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 1150px;
}
@media screen and (min-width: 1441px) {
  .l-inner {
    max-width: none;
    padding-inline: 10.625rem;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.l-main {
  margin-top: min(6.25vw, 90px);
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 3.125rem;
  }
}

.c-btn__group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2.25rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .c-btn__group {
    margin: 0.5rem calc(50% - 50vw) 0;
    width: 100vw;
  }
}

/* オレンジボタン */
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #eb6100;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 34.375rem;
  height: 10rem;
  border: 0.25rem solid #eb6100;
  padding: 1.5rem 0 1.6875rem 0;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    border: 0.125rem solid #eb6100;
    height: 4.1875rem;
    padding: 0.5625rem 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn:hover {
    background: #fff;
  }
  .c-btn:hover .c-btn__title {
    color: #eb6100;
  }
  .c-btn:hover .c-btn__text {
    color: #eb6100;
  }
}
.c-btn:hover .c-btn__title::before {
  background-image: url("../images/c-parts/orange-btn-hover.png");
}
@media screen and (max-width: 767px) {
  .c-btn:hover .c-btn__title::before {
    background-image: url("../images/c-parts/sp-orange-btn.png");
  }
}

.c-btn__title {
  position: relative;
  font-family: "rift", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 0 0 0 2.375rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-btn__title {
    font-size: 1.5rem;
    padding: 0 0 0 0.5rem;
  }
}

.c-btn__title::before {
  position: absolute;
  content: "";
  background-image: url("../images/c-parts/orange-btn.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 3.3125rem;
  height: 3.3125rem;
  display: block;
  left: -1.8125rem;
  top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .c-btn__title::before {
    background-image: url("../images/c-parts/sp-orange-btn.png");
    width: 1.1875rem;
    height: 1.375rem;
    left: -1rem;
    top: 0.1875rem;
  }
}

.c-btn__text {
  font-family: "rift", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  /* デスクトップのみトランジション */
}
@media (hover: hover) and (pointer: fine) {
  .c-btn__text {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .c-btn__text {
    font-size: 0.75rem;
    letter-spacing: 0em;
    padding: 0 0 0 0.25rem;
  }
}

/* 白ボタン */
.c-btn--w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.25rem solid #eb6100;
  padding: 1.5625rem 0 1.8125rem 0;
  width: 34.375rem;
  height: 10rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn--w {
    background: #525252;
    width: 100%;
    height: 4.1875rem;
    border: none;
    padding: 0.75rem 0 0.625rem 0;
  }
}

.c-btn--w:hover {
  background: #eb6100;
  padding: 1.5625rem 0 1.8125rem 0;
}
@media screen and (max-width: 767px) {
  .c-btn--w:hover {
    background: #525252;
    padding: 0.75rem 0 0.625rem 0;
  }
}

.c-btn--w:hover .c-btn__title--w {
  color: #fff;
}

.c-btn--w:hover .c-btn__text--w {
  color: #fff;
}

.c-btn--w:hover .c-btn__title--w::before {
  background-image: url("../images/c-parts/white-btn-hover.png");
}
@media screen and (max-width: 767px) {
  .c-btn--w:hover .c-btn__title--w::before {
    background-image: url("../images/c-parts/white-btn-hover.png");
  }
}

.c-btn__title--w {
  position: relative;
  font-family: "rift", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 0 0 0 1.4375rem;
  color: #eb6100;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn__title--w {
    font-size: 1.5rem;
    color: #fff;
    padding: 0 0.5rem 0 0;
  }
}

.c-btn__title--w::before {
  position: absolute;
  content: "";
  background-image: url("../images/c-parts/white-btn.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 3.3125rem;
  height: 3.3125rem;
  left: -3rem;
  top: 0.3125rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-btn__title--w::before {
    background-image: url("../images/c-parts/sp-btn-white.png");
    width: 1.1875rem;
    height: 1.1875rem;
    left: -1.5625rem;
    top: 0.1875rem;
  }
}

.c-btn__text--w {
  font-family: "rift", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn__text--w {
    font-size: 0.75rem;
    letter-spacing: 0;
    color: #fff;
    padding: 0 0.625rem 0 0;
  }
}

.c-btn__group--s {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin: 0;
}

.c-btn--s {
  width: 23rem;
  height: auto;
  padding: 0.75rem 0.75rem 0.9375rem 0.75rem;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-btn--s {
    display: none;
  }
}

.c-btn__title--s {
  font-family: "rift", sans-serif;
  font-size: 2.8125rem;
  padding: 0 0 0 1.0625rem;
}

.c-btn__title--s::before {
  width: 2.0625rem;
  height: 2.0625rem;
  left: -1.3125rem;
  top: 0.375rem;
}

.c-btn__text--s {
  font-size: 1rem;
  padding: 0;
}

.c-btn--ws {
  width: 22.9375rem;
  height: auto;
  padding: 0.75rem 0.75rem 1.0625rem 0.75rem;
  gap: 0.5555555556vw;
}
@media screen and (max-width: 767px) {
  .c-btn--ws {
    display: none;
  }
}

.c-btn--ws:hover {
  background: #eb6100;
  padding: 0.75rem 0 1.0625rem 0;
}

.c-btn__title--ws {
  font-family: "rift", sans-serif;
  font-size: 2.8125rem;
  padding: 0 0 0 1.0625rem;
}
@media screen and (max-width: 767px) {
  .c-btn__title--ws {
    color: #eb6100;
  }
}

.c-btn__title--ws::before {
  width: 2.0625rem;
  height: 2.0625rem;
  left: -1.5625rem;
  top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .c-btn__title--ws::before {
    background-image: url("../images/c-parts/white-btn.png");
  }
}

.c-btn__text--ws {
  font-size: merem(16);
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-btn__text--ws {
    color: #eb6100;
  }
}

.c-btn__group--f {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  gap: 1.1875rem;
  margin: 4.1875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .c-btn__group--f {
    display: none;
  }
}

.c-btn--f {
  width: 15rem;
  height: 4.375rem;
  padding: 0.4375rem 0 0.8125rem 0;
  border: 0.125rem solid #eb6100;
}

.c-btn__title--f {
  font-family: "rift", sans-serif;
  font-size: 1.875rem;
  padding: 0 0 0 0.9375rem;
}

.c-btn__title--f:before {
  width: 1.25rem;
  height: 1.5rem;
  top: 0.1875rem;
  left: -0.5625rem;
}

.c-btn__text--f {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.c-btn--wf {
  width: 15rem;
  height: 4.375rem;
  padding: 0.4375rem 0 0.75rem 0;
  border: 0.125rem solid #eb6100;
}
@media screen and (max-width: 767px) {
  .c-btn--wf {
    border: 0.125rem solid #525252;
  }
}

.c-btn--wf:hover {
  padding: 0.4375rem 0 0.75rem 0;
}

.c-btn__title--wf {
  font-family: "rift", sans-serif;
  font-size: 1.875rem;
  padding: 0 0 0 1rem;
}

.c-btn__title--wf::before {
  width: 1.3125rem;
  height: 1.25rem;
  top: 0.3125rem;
  left: -0.5625rem;
}

.c-card__list {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-card__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.875rem;
  }
}

/* フェードアップ前の初期状態 */
.c-card__item {
  display: inline-block;
  background: #fff;
  cursor: pointer;
  text-align: left;
  /* アニメーション初期状態 */
  opacity: 0;
  -webkit-transform: translateY(3.125rem);
          transform: translateY(3.125rem);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media screen and (max-width: 767px) {
  .c-card__item {
    width: 100%;
    height: 5.625rem;
    outline: 1px solid #eb6100;
  }
}

/* フェードアップ実行クラス（JSから付与） */
.c-card__item.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-card__item .c-card__link:hover {
  opacity: 1;
}

.c-card__link {
  display: block;
}

.c-card__link02 {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-card__link02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/* タイトルのスタイル */
.c-card__title {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  z-index: 1;
  display: inline-block;
  padding: 1.25rem 1.5rem;
  width: 100%;
  height: 6.25rem;
  /* 背景グラデーション効果 */
  background-image: linear-gradient(45deg, transparent 92%, #eb6100 92%);
  background-size: 100% 100%;
  background-position: 100% 0%;
  background-repeat: no-repeat;
}
@media (any-hover: hover) {
  .c-card__title {
    -webkit-transition: background-size 0.5s ease, background-position 0.5s ease, color 0.3s ease;
    transition: background-size 0.5s ease, background-position 0.5s ease, color 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .c-card__title {
    font-size: 1.125rem;
    height: auto;
    padding: 0 0 0 0.9375rem;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.c-card__title--l {
  font-size: 3.25rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-card__title--l {
    font-size: 1.5625rem;
    letter-spacing: 0.05em;
  }
}

/* ホバー時：デスクトップのみ */
@media (hover: hover) and (pointer: fine) {
  .c-card__item:hover .c-card__title {
    background-size: 1500% 1500%;
    background-position: 100% 0%;
    color: #fff;
  }
  .c-card__item:hover .c-card__img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.c-card__title::before {
  position: absolute;
  content: "";
  top: 6.25rem;
  left: 0;
  width: 20%;
  height: 20rem;
  background-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(69%, #fff));
  background-image: linear-gradient(-90deg, transparent, #fff 69%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-card__title::before {
    display: none;
  }
}

.c-card__img-group {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-card__img-group {
    width: 5.625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.c-card__img-group img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 530/320;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width: 767px) {
  .c-card__img-group img {
    width: 100%;
    aspect-ratio: 1;
  }
}

.c-card__img-text {
  position: absolute;
  font-family: "rift", sans-serif;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  top: 6.25rem;
  left: 2.6875rem;
  z-index: 10;
  pointer-events: none;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .c-card__img-text {
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
    font-size: 1.25rem;
    top: 4.5625rem;
    right: 0;
    left: auto;
    left: initial;
  }
}

.c-card02__wrapper {
  width: 100%;
  padding: 4.6875rem 0 5.1875rem 0;
}
@media screen and (max-width: 767px) {
  .c-card02__wrapper {
    padding: 2.5rem 0 3.75rem 0;
  }
}

.c-card02__wrapper-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .c-card02__wrapper-title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
}

.c-card02__wrapper-title--l {
  font-family: "rift", sans-serif;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-card02__wrapper-title--l {
    font-size: 2.25rem;
    letter-spacing: 0.05em;
  }
}

.c-card02__list {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-card02__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.875rem;
  }
}

.c-card02__item {
  display: inline-block;
  background: #fff;
  cursor: pointer;
  text-align: left;
  border: 0.125rem solid #eb6100;
}
@media screen and (max-width: 767px) {
  .c-card02__item {
    width: 100%;
    height: 5.625rem;
    outline: 0.0625rem solid #eb6100;
    border: none;
  }
}

@media (any-hover: hover) {
  .c-card02__item .c-card02__link:hover {
    opacity: 0.7;
  }
}
.c-card02__link {
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-card02__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/* タイトルのスタイル */
.c-card02__title {
  position: relative;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  z-index: 1;
  display: inline-block;
  padding: 0.875rem 0.9375rem;
  width: 100%;
  height: 4rem;
  /* 背景グラデーション効果 */
  background-image: linear-gradient(45deg, transparent 92%, #eb6100 92%);
  background-size: 100% 100%;
  background-position: calc(100% + 1px) 0%;
  background-repeat: no-repeat;
}
@media (any-hover: hover) {
  .c-card02__title {
    -webkit-transition: background-size 0.5s ease, background-position 0.5s ease, color 0.3s ease;
    transition: background-size 0.5s ease, background-position 0.5s ease, color 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .c-card02__title {
    font-size: 1.125rem;
    height: auto;
    padding: 0 0 0 0.9375rem;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-transition: none;
    transition: none;
  }
}

.c-card02__title--l {
  font-size: 2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-card02__title--l {
    font-size: 1.5625rem;
    letter-spacing: 0.05em;
  }
}

.c-card02__title::before {
  position: absolute;
  content: "";
  top: 4rem;
  left: 0;
  width: 20%;
  height: 12.6875rem;
  background-image: -webkit-gradient(linear, right top, left top, from(transparent), to(#fff));
  background-image: linear-gradient(-90deg, transparent, #fff 100%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-card02__title::before {
    display: none;
  }
}

/* ホバー時：デスクトップのみ */
@media (hover: hover) and (pointer: fine) {
  .c-card02__item:hover .c-card02__title {
    background-size: 1500% 1500%;
    background-position: 99% 0%;
    color: #fff;
  }
}
.c-card02__img-group {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-card02__img-group {
    width: 5.625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.c-card02__img-group img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 530/320;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width: 767px) {
  .c-card02__img-group img {
    aspect-ratio: 1;
  }
}

.c-card02__item:hover .c-card02__img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .c-card02__item:hover .c-card02__img {
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}

.c-card02__img-text {
  position: absolute;
  font-family: "rift", sans-serif;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  top: 3.9375rem;
  left: 1.5625rem;
  z-index: 10;
  pointer-events: none;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .c-card02__img-text {
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
    font-size: 1.25rem;
    top: 4.5625rem;
    right: 0;
    left: auto;
    left: initial;
  }
}

.c-interview__group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-interview__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #EB6100;
  margin: 0 0 1.125rem 0;
}
@media screen and (max-width: 767px) {
  .c-interview__title {
    font-size: 1.25rem;
    line-height: 1.35;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.09em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.c-interview__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #000;
  margin: 0 0 3.1875rem 0;
}
@media screen and (max-width: 767px) {
  .c-interview__text {
    font-size: 0.875rem;
    line-height: 1.875;
    letter-spacing: 0;
    margin: 0 0 2.5rem 0;
  }
}

@media screen and (max-width: 767px) {
  .c-interview__text:last-child {
    margin: 0;
  }
}

/* ===============================
   流れ続けるテキスト
   =============================== */
.loop {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 112%;
  overflow: hidden;
  top: -0.9375rem;
  left: -1.4375rem;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .loop {
    display: none;
  }
}

.loop-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-family: "rift", sans-serif;
  font-size: 11rem;
  line-height: 1;
  overflow: hidden;
  color: #ebebeb;
  letter-spacing: 0.1em;
  font-weight: bold;
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.c-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-next {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-next.is-fadein {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.c-next__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.c-next__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .c-next__text {
    font-size: 0.75rem;
  }
}

.c-next__text--w {
  color: #fff;
}

.c-next__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-next__title-box {
    gap: 0.625rem;
  }
}

.c-next__title-icon {
  width: 2.375rem;
}
@media screen and (max-width: 767px) {
  .c-next__title-icon {
    width: 1.4375rem;
  }
}

.c-next__title {
  font-family: "rift", sans-serif;
  font-size: 2.34375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-next__title {
    font-size: 1.75rem;
    padding: 0 0 0 0.3125rem;
  }
}

.c-next__title--w {
  color: #fff;
}

.c-pagination {
  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.9375rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 2.5rem;
    gap: 0.625rem;
  }
}

.c-pagination__item {
  width: 2.1875rem;
  height: auto;
  aspect-ratio: 1/1;
  background: #eb6100;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    width: 1.75rem;
  }
}

/* Back/More用のスタイル */
.c-pagination__item:has(.c-pagination__link--prev),
.c-pagination__item:has(.c-pagination__link--next) {
  width: 4.375rem;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .c-pagination__item:has(.c-pagination__link--prev),
  .c-pagination__item:has(.c-pagination__link--next) {
    width: 2.8125rem;
  }
}

.c-pagination__link {
  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;
  width: 100%;
  height: 100%;
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.875rem;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-pagination__link {
    font-size: 0.875rem;
  }
}

.c-pagination__item .is-current {
  background-color: #fff;
  border: 0.125rem solid #eb6100;
  border-radius: 0.25rem;
}

.c-pagination__link.is-current {
  color: #eb6100;
}

.c-pagination__link--prev,
.c-pagination__link--next {
  color: #303030;
}
@media screen and (max-width: 767px) {
  .c-pagination__link--prev,
  .c-pagination__link--next {
    font-size: 0.75rem;
  }
}

/* ← 追加部分：数字との距離を広げる */
.c-pagination__item:has(.c-pagination__link--prev) {
  margin-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-pagination__item:has(.c-pagination__link--prev) {
    margin-right: 0;
  }
}

.c-pagination__item:has(.c-pagination__link--next) {
  margin-left: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-pagination__item:has(.c-pagination__link--next) {
    margin-left: 0;
  }
}

.c-pagination__ellipsis {
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-pagination__ellipsis-span {
  color: #000;
}

.p-histry {
  width: 100%;
  height: 25rem;
  background-image: url("../images/section-histry/histry-background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-histry {
    height: 34.375rem;
    background-image: url("../images/section-histry/histry-background-sp.png");
  }
}

.p-histry__wrapper {
  width: inherit;
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-histry__wrapper {
    padding-top: 2.5rem;
  }
}

.p-histry__title-group {
  width: 24.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-histry__title-group {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
  }
}

.p-histry__label--l {
  text-align: left;
}
.p-histry .c-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: -0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-histry .c-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
}

.p-histry .c-title__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-histry .c-title__description {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
  }
}

.p-histry .c-title__heading {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-histry .c-title__heading {
    margin-top: 0.4375rem;
  }
}

.p-histry .c-next {
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-histry .c-next {
    margin-top: 0.375rem;
  }
}

.p-system {
  width: 100%;
  padding: 5rem 0 5.625rem 0;
  background-image: url("../images/section-system/system-background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-system {
    background-position: right;
    padding: 2.5rem 0 2.5rem 0;
  }
}

.p-system__list {
  margin: 3.125rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-system__list {
    grid-template-columns: repeat(1, 1fr);
    margin: 2.5rem 0 0 0;
    gap: 1.875rem;
  }
}

.p-system__list-item {
  display: inline-block;
  padding: 1.375rem 2.5625rem 2rem 2.5625rem;
  background-image: linear-gradient(45deg, #fff 92%, #eb6100 92%);
  background-size: 100% 100%;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s ease, background-position 0.5s ease, color 0.3s ease;
  transition: background-size 0.5s ease, background-position 0.5s ease, color 0.3s ease;
  cursor: pointer;
  text-align: left;
  opacity: 0;
  -webkit-transform: translateY(3.125rem);
          transform: translateY(3.125rem);
  -webkit-transition: opacity 0.6s ease, background-size 0.5s ease, background-position 0.5s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, background-size 0.5s ease, background-position 0.5s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, background-size 0.5s ease, background-position 0.5s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, background-size 0.5s ease, background-position 0.5s ease, -webkit-transform 0.6s ease;
}
@media screen and (max-width: 767px) {
  .p-system__list-item {
    padding: 0.3125rem 0.625rem;
  }
}

.p-system__list-item.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-system__list-item:hover {
  opacity: 1;
  background-size: 1500% 1500%;
  background-position: 100% 0%;
}
@media screen and (max-width: 767px) {
  .p-system__list-item:hover {
    background-size: 100% 100%;
    background-position: 100% 0%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .p-system__list-item:hover .p-system__item-title,
  .p-system__list-item:hover .p-system__item-text {
    color: #fff;
  }
}
.p-system__item-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000;
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-system__item-title {
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
  }
}

.p-system__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0em;
  color: #000;
  margin: 0.75rem 0 0 0;
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-system__item-text {
    font-size: 0.75rem;
  }
}

.c-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-title__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  background: #303030;
  display: inline-block;
  padding: 0.75rem 1.3125rem;
}
@media screen and (max-width: 767px) {
  .c-title__description {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.3125rem;
  }
}

/* アニメーション用クラス */
.js-label-reveal {
  display: inline-block;
  -webkit-clip-path: inset(0 99% 0 0);
          clip-path: inset(0 99% 0 0);
  opacity: 0.01;
}

.js-label-reveal.is-visible {
  -webkit-animation: labelDrawer 0.5s linear forwards;
          animation: labelDrawer 0.5s linear forwards;
}

@-webkit-keyframes labelDrawer {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes labelDrawer {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.c-title__heading {
  font-family: "rift", sans-serif;
  font-size: 7.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  margin: 0.625rem 0 0 -0.25rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .c-title__heading {
    font-size: 4.5rem;
    margin: 0.1875rem 0 0 -0.25rem;
  }
}

/* アニメーション用クラス */
.js-split-text span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(3.75rem);
          transform: translateY(3.75rem);
  -webkit-animation: titleCharFadeUp 0.7s ease forwards;
          animation: titleCharFadeUp 0.7s ease forwards;
  will-change: transform, opacity;
}
@media screen and (max-width: 767px) {
  .js-split-text span {
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
  }
}

@-webkit-keyframes titleCharFadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes titleCharFadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-title__heading--w {
  color: #fff;
}

.c-title--center {
  text-align: center;
}

.c-title__description--center {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  background: transparent;
  display: inline-block;
  padding: 0 0.5rem 0 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-title__description--center {
    font-size: 0.875rem;
    padding: 0 0.1875rem 0 0;
    margin-left: 0.3125rem;
  }
}

.c-title__description--left {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  background: transparent;
  padding: 0 0.5rem 0 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-title__description--left {
    font-size: 0.875rem;
    padding: 0 0.125rem 0 0;
  }
}

.c-title__heading--large {
  font-family: "rift", sans-serif;
  font-size: 10.4vw;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  margin: 0.9375rem 0 0 -0.4375rem;
}
@media screen and (max-width: 767px) {
  .c-title__heading--large {
    font-size: 3.125rem;
    margin: 0.3125rem 0 0 0;
  }
}

.p-404 {
  text-align: center;
  padding-block: 6.25rem;
}

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

.p-404__text {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-404__text {
    font-size: 0.875rem;
  }
}

.p-404__btn {
  width: 16.25rem;
  margin-top: 3.125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-404__btn {
    width: 12.5rem;
  }
}

.p-404__btn a {
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: #fff;
  background-color: #eb6100;
  display: block;
  text-align: center;
  padding: 1.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-404__btn a {
    font-size: 1rem;
    padding: 0.8125rem;
  }
}

.p-clinic {
  position: relative;
  width: 100%;
}

.p-clinic__container {
  width: inherit;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-clinic__container {
    margin-top: 1.25rem;
    padding-bottom: 3.75rem;
  }
}

.p-clinic__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-clinic__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-clinic__content {
  width: 100%;
  padding: 5rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-clinic__content {
    padding: 2.5rem 0 0 0;
  }
}

.p-clinic__content-title {
  position: relative;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #eb6100;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-clinic__content-title {
    font-size: 1.75rem;
    margin-bottom: 0.5625rem;
  }
}

.p-clinic__content-title::before {
  position: absolute;
  content: "";
  width: 5rem;
  height: 0.1875rem;
  bottom: -1rem;
  left: 46.3%;
  background: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-clinic__content-title::before {
    bottom: -0.5625rem;
    left: 38.3%;
  }
}

.p-clinic__list {
  width: 100%;
  margin: 5rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-clinic__list {
    margin: 3.5rem 0 0 0;
    gap: 5rem;
  }
}

.p-clinic__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-clinic__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}

.p-clinic__item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 2.375rem 0.6875rem 0 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-clinic__item img {
    padding: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-clinic__item-detail {
  margin: 0 2.1875rem 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-clinic__item-detail {
    display: contents;
  }
}

.p-clinic__item-detail img {
  width: auto;
  width: initial;
  -o-object-fit: contain;
     object-fit: contain;
  height: 4rem;
  padding: 0;
  margin: 0 0 0 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-clinic__item-detail img {
    height: 3.3125rem;
    margin: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-clinic__table {
  width: 100%;
  border-collapse: collapse;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-clinic__table {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-clinic__table th,
.p-clinic__table td {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  padding: 1.25rem 0 1.25rem 0;
  text-align: left;
  display: table-cell;
}
@media screen and (max-width: 767px) {
  .p-clinic__table th,
  .p-clinic__table td {
    padding: 0.625rem 0 0.625rem 0;
  }
}

.p-clinic__table th {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .p-clinic__table th {
    width: 25%;
  }
}

.p-clinic__table td {
  width: 68%;
}
@media screen and (max-width: 767px) {
  .p-clinic__table td {
    width: 75%;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

.p-clinic__table tr {
  width: 100%;
  border-bottom: 0.0625rem solid #dfdfdf;
}

.clinic-btn {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  background: #eb6100;
  padding: 1.0625rem 5rem 1.1875rem 5rem;
  margin: 1.3125rem 0 0 6.4375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .clinic-btn {
    display: block;
    width: 11.5625rem;
    padding: 1.125rem;
    margin: 0 auto;
    font-size: 1rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.p-club {
  position: relative;
  width: 100%;
}

.p-club__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-club__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  height: auto;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-club__container {
  position: relative;
  width: 100%;
}

.p-club__content {
  position: relative;
  width: inherit;
  padding: 5.9375rem 0 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-club__content {
    padding: 2.5rem 0 1.25rem 0;
  }
}

.p-club__content-title {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-club__content-title {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.p-club__content-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin: 1.25rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-club__content-text {
    font-size: 0.875rem;
    margin: 1.25rem 0 0 0;
  }
}

.p-club__card-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.875rem;
  row-gap: 3.5625rem;
  margin: 3.8125rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-club__card-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
    margin: 2.5rem 0 0 0;
  }
}

.p-club__card-item {
  position: relative;
  width: 100%;
  height: 27.5rem;
}
@media screen and (max-width: 767px) {
  .p-club__card-item {
    height: auto;
  }
}

.p-club__item-group {
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-club__item-group {
    gap: 0.3125rem;
  }
}

.p-club__item-title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  text-align: start;
  padding: 0.5rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-club__item-title {
    font-size: 1.125rem;
  }
}

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

/* loop */
.p-club__loop {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 161.8%;
  overflow: hidden;
  top: 0;
  left: -1.4375rem;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .p-club__loop {
    display: none;
  }
}

.p-club__loop-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-family: "rift", sans-serif;
  font-size: 11rem;
  line-height: 1;
  overflow: hidden;
  color: #ebebeb;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 1439px) {
  .p-club__loop-text {
    display: none;
  }
}

.p-club__loop-text:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.p-club__loop-text:nth-child(even) {
  animation: loop2 50s linear infinite reverse;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-company-visit-flow-day {
  background-color: #e6e6e6;
  padding-block: 3.75rem 5.5625rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-day {
    padding-block: 2.5rem 3.125rem;
  }
}

.p-company-visit-flow-day__inner {
  padding-inline: clamp(50px, 17.86vw - 87.14px, 11.8055555556vw);
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-day__inner {
    padding-inline: 3.125rem;
  }
}

.p-company-visit-flow-day__title-wrapper {
  text-align: center;
}

.p-company-visit-flow-day__title {
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-day__title {
    font-size: 1.5rem;
  }
}

.p-company-visit-flow-day__time {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #eb6100;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-day__time {
    font-size: 1.25rem;
  }
}

.p-company-visit-flow-day__container {
  margin-top: 4.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-day__container {
    margin-top: 1.875rem;
  }
}

.p-company-visit-flow-day__slide {
  text-align: center;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-company-visit-flow-day__slide-num {
  font-size: 2.5rem;
  line-height: normal;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "rift", sans-serif;
  color: #fff;
  background-color: #eb6100;
  padding-block: 0.1875rem 0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-day__slide-num {
    font-size: 1.875rem;
  }
}

.p-company-visit-flow-day__slide-num::after {
  padding-left: 0.625rem;
}

.p-company-visit-flow-day__slide-content {
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5625rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-day__slide-content {
    padding: 0.9375rem 0.625rem;
  }
}

.p-company-visit-flow-day__slide-title {
  font-size: 1.375rem;
  line-height: 1.3636363636;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-day__slide-title {
    font-size: 1.25rem;
  }
}

.p-company-visit-flow-day__slide-time {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  background-color: #eb6100;
  display: inline-block;
  min-width: 4rem;
  padding-inline: 0.75rem;
  margin-top: 0.4375rem;
}

.p-company-visit-flow-day__slide-text {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0;
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-day__slide-text {
    font-size: 0.875rem;
  }
}

.p-company-visit-flow-day__slider-button-prev::before,
.p-company-visit-flow-day__slider-button-next::before {
  content: "";
  background: url(../images/company-visit/arrow.png) no-repeat center/contain;
  aspect-ratio: 1/1;
  width: 2.346875rem;
  height: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-day__slider-button-prev::before,
  .p-company-visit-flow-day__slider-button-next::before {
    width: 1.875rem;
    cursor: default;
  }
}

.p-company-visit-flow-day__slider-button-prev::before {
  left: -3.9375rem;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-day__slider-button-prev::before {
    left: -2.5rem;
  }
}

.p-company-visit-flow-day__slider-button-next::before {
  right: -3.9375rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-day__slider-button-next::before {
    right: -2.5rem;
  }
}

.p-company-visit-flow-entry {
  padding-block: 4.0625rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-entry {
    padding-block: 2.5rem 3.125rem;
  }
}

.p-company-visit-flow-entry__title {
  font-size: 1.875rem;
  line-height: 1.2066666667;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #eb6100;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-entry__title {
    font-size: 1.5rem;
  }
}

.p-company-visit-flow-entry__list {
  margin-top: 4.25rem;
  counter-reset: num-flow-entry;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-entry__list {
    margin-top: 2.5rem;
  }
}

.p-company-visit-flow-entry__item {
  max-width: 53.25rem;
  border: 0.125rem solid #eb6100;
  text-align: center;
  padding: 1.75rem 0.9375rem;
  margin-inline: auto;
  position: relative;
  counter-increment: num-flow-entry;
}

.p-company-visit-flow-entry__item::before {
  content: counter(num-flow-entry);
  font-size: 1.875rem;
  line-height: normal;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "rift", sans-serif;
  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;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: #fff;
  background-color: #eb6100;
  position: absolute;
  top: -1.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-company-visit-flow-entry__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6.25rem;
  height: 1.75rem;
  background: #d9d9d9;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  bottom: -3.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-entry__item:not(:last-child)::after {
    bottom: -3rem;
  }
}

.p-company-visit-flow-entry__item + .p-company-visit-flow-entry__item {
  margin-top: 7.375rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-entry__item + .p-company-visit-flow-entry__item {
    margin-top: 5rem;
  }
}

.p-company-visit-flow-entry-item__title {
  font-size: 1.375rem;
  line-height: 1.3636363636;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-entry-item__title {
    font-size: 1.125rem;
  }
}

.p-company-visit-flow-entry-item__text {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-flow-entry-item__text {
    font-size: 0.875rem;
  }
}

.p-company-visit-form {
  margin-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form {
    margin-block: 2.5rem;
  }
}

.p-company-visit-form__title {
  font-size: 1.875rem;
  line-height: 1.2066666667;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #eb6100;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__title {
    font-size: 1.5rem;
  }
}

.p-company-visit-form__wrapper {
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__wrapper {
    margin-top: 1.875rem;
  }
}

.p-company-visit-form__lead {
  font-size: 1rem;
  line-height: 2.1875;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__lead {
    font-size: 0.8125rem;
    letter-spacing: 0.07em;
    text-align: left;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

/* 通常画面だけ表示 */
.form-text-normal {
  display: block;
}

.mw_wp_form_confirm .form-text-normal {
  display: none;
}

/* 確認画面だけ表示 */
.form-text-confirm {
  display: none;
}

.mw_wp_form_confirm .form-text-confirm {
  display: block;
}

.p-company-visit-form__box {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 0;
  color: #303030;
  width: 45.375rem;
  margin-top: 4.125rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__box {
    font-size: 1rem;
    width: 100%;
    margin-top: 3.125rem;
  }
}

.p-company-visit-form__note {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
  color: #eb6100;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__note {
    font-size: 0.875rem;
  }
}

.p-company-visit-form__input,
.p-company-visit-form__datepicker,
.p-company-visit-form__select,
.p-company-visit-form__textarea {
  height: 4.375rem;
  width: 100%;
  border: 0.0625rem solid #303030;
  color: #303030;
  background-color: #fff;
  padding-inline: 1.25rem;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__input,
  .p-company-visit-form__datepicker,
  .p-company-visit-form__select,
  .p-company-visit-form__textarea {
    height: 3.125rem;
    padding-inline: 0.9375rem;
  }
}
.p-company-visit-form__input::-webkit-input-placeholder,
.p-company-visit-form__datepicker::-webkit-input-placeholder,
.p-company-visit-form__select::-webkit-input-placeholder,
.p-company-visit-form__textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}
.p-company-visit-form__input::-moz-placeholder,
.p-company-visit-form__datepicker::-moz-placeholder,
.p-company-visit-form__select::-moz-placeholder,
.p-company-visit-form__textarea::-moz-placeholder {
  color: #8e8e8e;
}
.p-company-visit-form__input::-ms-input-placeholder,
.p-company-visit-form__datepicker::-ms-input-placeholder,
.p-company-visit-form__select::-ms-input-placeholder,
.p-company-visit-form__textarea::-ms-input-placeholder {
  color: #8e8e8e;
}
.p-company-visit-form__input::placeholder,
.p-company-visit-form__datepicker::placeholder,
.p-company-visit-form__select::placeholder,
.p-company-visit-form__textarea::placeholder {
  color: #8e8e8e;
}
.p-company-visit-form__input:focus,
.p-company-visit-form__datepicker:focus,
.p-company-visit-form__select:focus,
.p-company-visit-form__textarea:focus {
  outline: 0.125rem solid #1e90ff;
}

.p-company-visit-form__item {
  margin-top: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__item {
    margin-top: 1.25rem;
  }
}

.p-company-visit-form__label {
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* 必須マーク（疑似要素） */
.p-company-visit-form__label--required::after {
  content: "※";
  font-size: 0.75rem;
  font-weight: 700;
  color: #eb6100;
  padding-top: 0.25rem;
  margin-left: 0.1875rem;
}

.p-company-visit-form__select {
  height: 3.125rem;
  padding-right: 3.1875rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.p-company-visit-form__select:focus {
  outline: 0.125rem solid #1e90ff;
}

.p-company-visit-form__select::-ms-expand {
  display: none;
}

.p-company-visit-form__select-wrap {
  width: 17.5rem;
  position: relative;
}

.p-company-visit-form__select-wrap::before {
  content: "";
  position: absolute;
  right: 3.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.0625rem;
  height: 3.125rem;
  background-color: #303030;
  pointer-events: none;
  opacity: 0.4;
}

.p-company-visit-form__select-wrap:has(.error)::before {
  top: 1.5625rem;
}

.p-company-visit-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 0.8125rem solid transparent;
  border-right: 0.8125rem solid transparent;
  border-top: 0.875rem solid #303030;
  pointer-events: none;
}

.p-company-visit-form__select-wrap:has(.error)::after {
  top: 1.5625rem;
}

.p-company-visit-form__date-group {
  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.6875rem;
  margin: 1.4375rem 0 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__date-group {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: 0;
  }
}

.p-company-visit-form__date-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__date-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5625rem;
  }
}

.p-company-visit-form__date-item {
  width: 21.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__date-item {
    width: 100%;
    gap: 0.3125rem;
  }
}

.p-company-visit-form__date-item:nth-child(2) {
  width: 20.125rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__date-item:nth-child(2) {
    width: 100%;
  }
}

.p-company-visit-form__date-label {
  color: #8e8e8e;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__date-label {
    width: 5rem;
  }
}

.p-company-visit-form__datepicker-wrap,
.p-company-visit-form__time-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}

.p-company-visit-form__date-group .p-company-visit-form__input {
  background-color: transparent;
}

.p-company-visit-form__error {
  position: absolute;
}

.p-company-visit-form__datepicker,
.p-company-visit-form__time {
  width: 14.625rem;
  height: 3.125rem;
  padding-inline: 1.4375rem 4.5625rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  position: relative;
  z-index: 2;
  cursor: text;
}
.p-company-visit-form__datepicker::-webkit-input-placeholder,
.p-company-visit-form__time::-webkit-input-placeholder {
  color: #8e8e8e;
}
.p-company-visit-form__datepicker::-moz-placeholder,
.p-company-visit-form__time::-moz-placeholder {
  color: #8e8e8e;
}
.p-company-visit-form__datepicker::-ms-input-placeholder,
.p-company-visit-form__time::-ms-input-placeholder {
  color: #8e8e8e;
}
.p-company-visit-form__datepicker::placeholder,
.p-company-visit-form__time::placeholder {
  color: #8e8e8e;
}

.p-company-visit-form__datepicker-icon,
.p-company-visit-form__time-icon {
  width: 3.125rem;
  height: 3.125rem;
  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;
  background-color: #fff;
  border-left: 0.0625rem solid #303030;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__datepicker-icon,
  .p-company-visit-form__time-icon {
    cursor: default;
  }
}

.p-company-visit-form__datepicker-icon::before,
.p-company-visit-form__time-icon::before {
  content: "";
  aspect-ratio: 1/1;
  width: 1.8125rem;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__datepicker-icon::before,
  .p-company-visit-form__time-icon::before {
    width: 1.5625rem;
  }
}

.p-company-visit-form__datepicker-icon::before {
  background: url("../images/company-visit/calendar.png") no-repeat center/contain;
}

.p-company-visit-form__time-icon::before {
  background: url("../images/company-visit/clock.png") no-repeat center/contain;
}

/* Flatpickr の位置調整（PC のとき右側に出すため） */
.flatpickr-calendar {
  z-index: 9999; /* ヘッダーなどに負けないように */
}

.p-company-visit-form__input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
}

.p-company-visit-form__time {
  color: #303030;
}

.p-company-visit-form__time:has(option[value=""]:checked) {
  color: #8e8e8e;
}

.flatpickr-extra-buttons {
  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: 1.875rem;
}

.p-company-visit-form__textarea {
  height: 11.9375rem;
  padding-inline: 1.25rem;
  resize: none;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__textarea {
    line-height: 1.5;
    padding: 0.9375rem;
    font-size: 1rem;
  }
}

.p-company-visit-form__textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}

.p-company-visit-form__textarea::-moz-placeholder {
  color: #8e8e8e;
}

.p-company-visit-form__textarea::-ms-input-placeholder {
  color: #8e8e8e;
}

.p-company-visit-form__textarea::placeholder {
  color: #8e8e8e;
}

.p-company-visit-form__privacy {
  margin-top: 3.75rem;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0;
  font-weight: 400;
  background: #fff;
  padding: 0.5rem 2.1875rem 1.25rem 2.0625rem;
  height: 13.1875rem;
  overflow-y: scroll;
  border: 0.0625rem solid #303030;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__privacy {
    padding: 0.625rem 0.9375rem 0.9375rem;
    margin-top: 1.875rem;
  }
}

.p-company-visit-form__privacy::-webkit-scrollbar,
.p-company-visit-form__textarea::-webkit-scrollbar {
  width: 0.5rem;
}
.p-company-visit-form__privacy::-webkit-scrollbar-thumb,
.p-company-visit-form__textarea::-webkit-scrollbar-thumb {
  background: #aeaeae;
  border-radius: 0.25rem;
}
.p-company-visit-form__privacy::-webkit-scrollbar-track,
.p-company-visit-form__textarea::-webkit-scrollbar-track {
  background: #e9e9e9;
}

.p-company-visit-form__privacy-title {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 0;
  font-weight: 400;
  text-align: center;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__privacy-title {
    font-size: 1rem;
  }
}

.p-company-visit-form__privacy-agree {
  margin: 4.375rem 0 0 0.3125rem;
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 0;
  text-align: 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.625rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__privacy-agree {
    margin: 4.375rem 0 0 0;
    font-size: 1rem;
    line-height: 1.5;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 1.875rem;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-company-visit-form__privacy-agree .error {
    margin-right: 10.625rem;
  }
}

.p-company-visit-form__privacy-agree label,
.p-company-visit-form__privacy-agree input[type=checkbox] {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__privacy-agree label,
  .p-company-visit-form__privacy-agree input[type=checkbox] {
    cursor: default;
  }
}

.mwform-checkbox-field label,
.mwform-radio-field label {
  color: #303030;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .mwform-checkbox-field label,
  .mwform-radio-field label {
    gap: 0.375rem;
  }
}

.p-company-visit-form__checkbox {
  width: 1.5625rem;
  height: 1.5625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.3125rem;
  border: 0.0625rem solid #303030;
  border-radius: 0;
  background-color: #fff;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__checkbox {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.p-company-visit-form__checkbox:checked {
  background-color: #1e90ff;
  border-color: #1e90ff;
}
.p-company-visit-form__checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 0.625rem;
  height: 1.125rem;
  border: solid #fff;
  border-width: 0 0.3125rem 0.3125rem 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__checkbox::after {
    width: 0.5rem;
    height: 1rem;
    border-width: 0 0.25rem 0.25rem 0;
  }
}
.p-company-visit-form__checkbox:checked::after {
  opacity: 1;
}

.p-company-visit-form__submit {
  width: 24.605rem;
  height: 6.441875rem;
  font-size: 2rem;
  line-height: 0.446875;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  background-color: #eb6100;
  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;
  text-align: center;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-inline: auto;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__submit {
    width: 12.5rem;
    height: 2.875rem;
    font-size: 1rem;
    cursor: default;
  }
}

/* 予約希望日のエラーメッセージ位置調整 */
.p-company-visit-form__datepicker-wrap > .error,
.p-company-visit-form__time-wrap > .error {
  position: absolute;
  top: 100%;
  margin-top: 0.25rem;
  line-height: 1.4;
  color: #b70000;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-company-visit-form__datepicker-wrap > .error,
  .p-company-visit-form__time-wrap > .error {
    font-size: 0.875rem;
  }
}

.mw_wp_form_confirm .p-company-visit-form__label--required::after,
.mw_wp_form_confirm .p-company-visit-form__privacy,
.mw_wp_form_confirm .p-company-visit-form__privacy-agree,
.mw_wp_form_confirm .p-company-visit-form__note {
  display: none;
}

body:has(.mw_wp_form_confirm) .p-company-visit-form {
  padding-top: 3.125rem;
  margin-block: min(6.25vw, 90px) 6.25rem;
}
@media screen and (max-width: 767px) {
  body:has(.mw_wp_form_confirm) .p-company-visit-form {
    padding-top: 3.125rem;
    margin-block: 3.125rem;
  }
}

.mw_wp_form_confirm .p-company-visit-form__confirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .p-company-visit-form__confirm {
    gap: 0.625rem;
  }
}

.mw_wp_form_confirm .p-company-visit-form__btn-back,
.mw_wp_form_confirm .p-company-visit-form__btn-submit {
  width: 16.25rem;
  height: 4rem;
  color: #fff;
  background-color: #eb6100;
  font-weight: 600;
  font-size: 1.5rem;
  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;
  text-align: center;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .p-company-visit-form__btn-back,
  .mw_wp_form_confirm .p-company-visit-form__btn-submit {
    width: 9.375rem;
    height: 2.875rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .p-company-visit-form__date-group {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

/* ================================
   MW WP Form 確認画面だけのデザイン調整
   （カレンダー・時計・セレクトの線と矢印を消す）
   ================================ */
.mw_wp_form_confirm .p-company-visit-form__datepicker-icon,
.mw_wp_form_confirm .p-company-visit-form__time-icon,
.mw_wp_form_confirm .p-company-visit-form__select-wrap::before,
.mw_wp_form_confirm .p-company-visit-form__select-wrap::after {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .mw_wp_form .error {
    font-size: 0.875rem;
  }
}

.mw_wp_form_confirm form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body:has(.mw_wp_form_confirm) .p-company-visit-mv,
body:has(.mw_wp_form_confirm) .p-company-visit-flow-entry,
body:has(.mw_wp_form_confirm) .p-company-visit-flow-day {
  display: none;
}

.p-company-visit-mv {
  width: 100%;
  position: relative;
}

.p-company-visit-mv__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-company-visit-mv__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-company__container {
  position: relative;
  width: 100%;
  padding: 0 0 5rem 0;
}

.p-company__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-company__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-company__content {
  width: 56.25rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-company__content {
    width: 100%;
    margin: 3.75rem auto 0;
  }
}

.p-company__container table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .p-company__container table {
    display: block;
  }
}

.p-company__container th,
.p-company__container td {
  padding: 0.625rem 0.625rem 0.5rem 0.625rem;
  text-align: left;
  border-bottom: 0.0625rem dotted #ccc;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-company__container th,
  .p-company__container td {
    display: block;
  }
}

.p-company__container th {
  font-size: 1rem;
  line-height: 2.25em;
  font-weight: 500;
  width: 30%;
  border-right: 0.0625rem solid #fff;
}
@media screen and (max-width: 767px) {
  .p-company__container th {
    width: 100%;
    line-height: 1em;
    padding: 0.9375rem 0 0 0.625rem;
    border: none;
  }
}

.p-company__container td {
  font-size: 1rem;
  line-height: 2.25em;
  font-weight: 500;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-company__container td {
    font-size: 0.875rem;
    line-height: 1.3em;
    width: 100%;
    padding: 0.625rem 0 0.9375rem 0.625rem;
  }
}

.p-company__container td a {
  pointer-events: none;
  cursor: text;
}
@media screen and (max-width: 767px) {
  .p-company__container td a {
    pointer-events: auto;
    text-decoration: underline;
  }
}

.p-company__container tr:last-child th,
.p-company__container tr:last-child td {
  border-bottom: none;
}

.history-row th {
  border-bottom: 0.0625rem dotted #ccc;
}
@media screen and (max-width: 767px) {
  .history-row th {
    border-bottom: none;
  }
}

.history-row td {
  padding: 0.3125rem 0 0 0.625rem;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .history-row td {
    padding: 0.5rem 0 0 0.625rem;
  }
}

.history-first th {
  padding-bottom: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .history-first th {
    padding-bottom: 0;
  }
}

.history-first th,
.history-first td {
  padding-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .history-first th,
  .history-first td {
    padding-top: 0.9375rem;
  }
}

.p-company__container .history-row.history-last th,
.p-company__container .history-row.history-last td {
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem dotted #ccc;
}
@media screen and (max-width: 767px) {
  .p-company__container .history-row.history-last th,
  .p-company__container .history-row.history-last td {
    padding-bottom: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .history-row.history-first td {
    padding-top: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .history-row.history-last td {
    padding-bottom: 0.9375rem;
    display: inline-block;
    width: 100%;
  }
}

.p-company__content02 {
  position: relative;
  width: 100%;
}

.p-company__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__btn {
    margin-top: 0.9375rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-company__button {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.p-company__button p {
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-company__button p {
    font-size: 1.125rem;
  }
}

.p-company__content02-title {
  position: relative;
  font-size: 2.375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #eb6100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5.4375rem 0 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-company__content02-title {
    font-size: 1.625rem;
    margin: 3.75rem 0 1.875rem 0;
  }
}

.map {
  position: relative;
  width: 100%;
  padding-top: 28.125rem;
}
@media screen and (max-width: 767px) {
  .map {
    padding-top: 21.875rem;
  }
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .map iframe {
    height: 100%;
  }
}

.p-culture {
  background-color: #eb6100;
  overflow: hidden;
}

.p-culture__wrapper {
  position: relative;
  padding-block: 5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-culture__wrapper {
    padding-block: 1.875rem;
  }
}

.p-culture__wrapper::before {
  content: "";
  background: url(../images/top/culture-bg.png) no-repeat center/cover;
  aspect-ratio: 1440/588;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-culture__wrapper::before {
    background: url(../images/top/culture-bg.png) no-repeat center/contain;
    aspect-ratio: 314/156;
    width: 23.75rem;
    top: -1.125rem;
    right: -0.625rem;
  }
}

.p-culture__inner {
  position: relative;
  z-index: 1;
}

.p-culture__image {
  width: 32.5rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-culture__image {
    width: 15.9375rem;
    margin-top: 0.375rem;
  }
}

.p-culture__image img {
  aspect-ratio: 524/110;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-culture__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 0;
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-culture__list {
    gap: 1.25rem;
    margin-top: 0.9375rem;
  }
}

.p-culture__item {
  width: 48.1818181818%;
}
@media screen and (max-width: 767px) {
  .p-culture__item {
    width: 100%;
    min-height: 11.875rem;
  }
}

.p-culture__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.p-culture-item__image {
  width: 30.1886792453%;
}
@media screen and (max-width: 767px) {
  .p-culture-item__image {
    width: 6.25rem;
    height: 100%;
  }
}

.p-culture-item__image img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-culture-item__content {
  width: 69.8113207547%;
  background-color: #fff;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-culture-item__content {
    width: 14.6875rem;
    padding: 1.0625rem 0.9375rem 0.875rem;
  }
}

.p-culture-item__title {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-culture-item__title {
    font-size: 1.5rem;
    line-height: 0.8875;
  }
}

.p-culture-item__text {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0;
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-culture-item__text {
    line-height: 1.7142857143;
  }
}

.p-education {
  position: relative;
  width: 100%;
}

.p-education__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-education__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.p-education__heading {
  font-size: 7.25rem;
}
@media screen and (max-width: 767px) {
  .p-education__heading {
    font-size: 3rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-education__container {
  position: relative;
  width: 100%;
}

.p-education__content01 {
  width: inherit;
  padding: 4.875rem 0 6.8125rem 0;
}
@media screen and (max-width: 767px) {
  .p-education__content01 {
    padding: 2.5rem 0 3.75rem 0;
  }
}

.p-education__content01-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-education__content01-title {
    font-size: 1.5rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
  }
}

.p-education__content01-title--e {
  font-family: "rift", sans-serif;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-education__content01-title--e {
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}

.p-education__content01-lead {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  display: inline-block;
  margin: 2.5625rem 0 2.125rem 0;
}
@media screen and (max-width: 767px) {
  .p-education__content01-lead {
    font-size: 2.125rem;
    line-height: 1;
    letter-spacing: 0.05em;
    margin: 1.25rem 0 1.25rem 0;
  }
}

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

.p-education__content01-text--o {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #eb6100;
  display: inline-block;
  width: 100%;
  margin: 3.4375rem 0 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-education__content01-text--o {
    font-size: 1.25rem;
    line-height: 1.35;
    margin: 1.875rem 0 0.625rem 0;
  }
}

.p-education__content01-text--o-02 {
  letter-spacing: 0.1em;
  display: inline-block;
  margin: 1.875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-education__content01-text--o-02 {
    letter-spacing: 0.05em;
    margin: 1.875rem 0 0 0;
  }
}

.p-education__content01-card-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 1.4375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-education__content01-card-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}

.p-education__content01-card-item {
  width: inherit;
  height: 37.5rem;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-education__content01-card-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
  }
}

.p-education__content01-item-title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  width: 100%;
  display: inline-block;
  background: #eb6100;
  padding: 0.6875rem 1.25rem 1.125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-education__content01-item-title {
    font-size: 1.125rem;
    line-height: 1.5;
    padding: 0.625rem;
    text-align: center;
  }
}

.p-education__content01-item-title--l {
  position: relative;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0 2.125rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-education__content01-item-title--l {
    font-size: 1.25rem;
    margin: 0 1.25rem 0 0;
  }
}

.p-education__content01-item-title--l-02 {
  letter-spacing: 0;
}

.p-education__content01-item-title--l::before {
  position: absolute;
  content: "";
  width: 0.0625rem;
  height: 1.25rem;
  background: #fff;
  top: 1rem;
  right: -1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-education__content01-item-title--l::before {
    top: 0.3125rem;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-education__content01-card-item:nth-child(2) .p-education__content01-item-title--l:before {
    top: 2.125rem;
    left: 1.9375rem;
  }
}

.p-education__content01-item-group {
  width: 100%;
  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.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.3125rem 1.875rem 1.5625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-education__content01-item-group {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.p-education__content01-item-box {
  width: 29.375rem;
  height: 11.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-education__content01-item-box {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: 1.25rem;
  }
}

.p-education__content01-item-box02 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.5625rem 0 0 0;
  gap: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-education__content01-item-box02 {
    padding: 0.9375rem 0;
    gap: 0.625rem;
  }
}

.p-education__content01-box-title {
  font-size: 3.25rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  padding: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-education__content01-box-title {
    font-size: 2rem;
    padding: 0;
  }
}

.p-education__content01-box-text-group {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  padding: 1.6875rem 0;
}
@media screen and (max-width: 767px) {
  .p-education__content01-box-text-group {
    padding: 0.9375rem 0 0;
  }
}

.p-education__content01-box-text {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-education__content01-box-text {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.p-education__check-text {
  color: #eb6100;
  margin: 0 0.4375rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-education__check-text {
    margin: 0 0.3125rem 0 0;
  }
}

.p-education__content01-item-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 0.25rem 1.75rem 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-education__content01-item-text {
    font-size: 0.875rem;
    padding: 0.9375rem;
  }
}

.p-education__content01-box-title--s {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
  padding: 0 0 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-education__content01-box-title--s {
    font-size: 1.25rem;
    padding: 0 1.25rem;
  }
}

.p-education__content01-box-title--l {
  font-family: "rift", sans-serif;
  font-size: 5.9375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-education__content01-box-title--l {
    font-size: 3.125rem;
  }
}

.p-education__content01-text--lo {
  font-size: 1.9375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
  padding: 0 1.6875rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-education__content01-text--lo {
    font-size: 1.5rem;
    padding: 0 0.625rem 0 0;
  }
}

.p-education__content01-text--so {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
  display: inline-block;
  width: 100%;
  height: 4.375rem;
  background: #f5f5f5;
  border-left: 0.625rem solid #eb6100;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 0 0 0 1.875rem;
  margin: 2.5625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-education__content01-text--so {
    font-size: 1.125rem;
    line-height: 1.35;
    letter-spacing: 0.05em;
    border-left: 0.3125rem solid #eb6100;
    padding: 1.25rem;
    height: auto;
  }
}

.p-education__content01-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.0625rem;
  margin: 1.0625rem 0 0.1875rem 0;
}
@media screen and (max-width: 767px) {
  .p-education__content01-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin: 0.9375rem 0;
    text-align: left;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.p-education__check-text02 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #eb6100;
  margin: 0 0.3125rem 0 0;
}

.p-education__content02 {
  width: 100%;
  background: #eb6100;
  padding: 5rem 0 5.4375rem 0;
}
@media screen and (max-width: 767px) {
  .p-education__content02 {
    padding: 2.5rem 0 2.5rem 0;
  }
}

.p-education__content02-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-education__content02-card-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-education__content02-card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.p-education__content02-item-label {
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 2.5238095238;
  letter-spacing: 0.1em;
  color: #eb6100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  width: 8.3125rem;
  height: 2.8125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-education__content02-item-label {
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    width: 6.25rem;
    height: 2.1875rem;
  }
}

.p-education__content02-item-title {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-education__content02-item-title {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.p-education__content02-item-text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-education__content02-item-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-education__content02-item-box {
  width: 100%;
  margin: 0.9375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-education__content02-item-box {
    margin: 0.625rem 0 0 0;
  }
}

.p-education__content02-box-title {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  width: 100%;
  height: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #525252;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-education__content02-box-title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    height: 3.125rem;
  }
}

.p-education__content02-box-list {
  width: 100%;
  height: 16.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-education__content02-box-list {
    height: auto;
    gap: 1.25rem;
    padding: 1.25rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-education__content02-box-item {
  width: 15.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-education__content02-box-item {
    width: 100%;
    gap: 0.9375rem;
  }
}

.p-education__content02-card-item:nth-child(2) .p-education__content02-box-item {
  width: 28.125rem;
}
@media screen and (max-width: 767px) {
  .p-education__content02-card-item:nth-child(2) .p-education__content02-box-item {
    width: 100%;
  }
}

.p-education__content02-box-item-number {
  font-family: "rift", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #eb6100;
  width: 1.875rem;
  height: 3.125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-education__content02-box-item-number {
    font-size: 1.875rem;
    width: 1.875rem;
    height: 2.5rem;
  }
}

.p-education__content02-box-item-text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-education__content02-box-item-text--l {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-education__content02-box-item-text--l {
    font-size: 1.125rem;
  }
}

.p-education__content02-box-item-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5625;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-education__content02-box-item-text {
    font-size: 0.875rem;
  }
}

.p-education__content03 {
  width: 100%;
  padding: 5.875rem 0 6.5625rem 0;
}
@media screen and (max-width: 767px) {
  .p-education__content03 {
    padding: 3.75rem 0 3.75rem 0;
  }
}

.p-education__content03-lead {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  display: inline-block;
  margin: 4.25rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-education__content03-lead {
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    margin: 1.875rem 0 0 0;
  }
}

.p-education__content03-lead--l {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-education__content03-lead--l {
    font-size: 2.25rem;
    letter-spacing: 0.05em;
  }
}

.p-education__content03-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 1.875rem 0 1.125rem 0;
}
@media screen and (max-width: 767px) {
  .p-education__content03-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.25rem;
    margin: 1.875rem 0 1.875rem 0;
  }
}

.p-education__content03-wrapper img {
  width: 100%;
  aspect-ratio: 522/296;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-education__content03-sub-wrapper {
  width: 31.25rem;
  height: 18.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-education__content03-sub-wrapper {
    width: 100%;
    height: auto;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.p-education__content03-box-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-education__content03-box-wrapper {
    gap: 1.25rem;
    margin: 1.875rem 0 0 0;
  }
}

.p-education__conent03-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-education__conent03-text {
    white-space: normal;
    white-space: initial;
    font-size: 0.875rem;
    letter-spacing: 0em;
  }
}

.p-education__content03-box-gorup {
  width: 14.375rem;
  height: 10.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #eb6100;
}
@media screen and (max-width: 767px) {
  .p-education__content03-box-gorup {
    width: 100%;
    height: auto;
    padding: 0.625rem 0;
    gap: 0.625rem;
  }
}

.p-education__content03-box-text {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5909090909;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-education__content03-box-text {
    font-size: 1.125rem;
  }
}

.p-education__content03-box-text--o {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5909090909;
  letter-spacing: 0.05em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-education__content03-box-text--o {
    font-size: 1.125rem;
  }
}

.p-education__content03-box-text--lo {
  font-family: "rift", sans-serif;
  font-size: 5.9375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-education__content03-box-text--lo {
    font-size: 3.125rem;
    margin: 0 0.625rem 0 0;
  }
}

.p-education__content03-wrapper02 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem 0.625rem;
  padding: 2.5rem 4.375rem;
  border: 0.125rem solid #eb6100;
  margin: 1.6875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-education__content03-wrapper02 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0.625rem;
    padding: 1.25rem;
    margin: 1.6875rem 0 0 0;
  }
}

.p-education__content03-wrapper02-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-education__content03-wrapper02-text--o {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-education__content03-wrapper02-text--o {
    font-size: 1.125rem;
  }
}

.p-education__content03-wrapper02-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-education__content03-wrapper02-text {
    font-size: 0.875rem;
    white-space: normal;
    white-space: initial;
  }
}

/* loop */
.p-education__loop {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 98.2%;
  overflow: hidden;
  top: 0;
  left: -1.4375rem;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .p-education__loop {
    display: none;
  }
}

.p-education__loop-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-family: "rift", sans-serif;
  font-size: 11rem;
  line-height: 1;
  overflow: hidden;
  color: #ebebeb;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 1439px) {
  .p-education__loop-text {
    display: none;
  }
}

.p-education__loop-text:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.p-education__loop-text:nth-child(even) {
  animation: loop2 50s linear infinite reverse;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-entry-form {
  margin-block: 5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-entry-form {
    margin-block: 2.5rem 5rem;
  }
}

.p-entry-form__title {
  font-size: 1.875rem;
  line-height: 1.2066666667;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #eb6100;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-entry-form__title {
    font-size: 1.5rem;
  }
}

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

.p-entry-form__lead {
  font-size: 1rem;
  line-height: 2.1875;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-entry-form__lead {
    font-size: 0.8125rem;
    letter-spacing: 0.07em;
    text-align: left;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

/* 通常画面だけ表示 */
.form-text-normal {
  display: block;
}

.mw_wp_form_confirm .form-text-normal {
  display: none;
}

/* 確認画面だけ表示 */
.form-text-confirm {
  display: none;
}

.mw_wp_form_confirm .form-text-confirm {
  display: block;
}

.p-entry-form__box {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 0;
  color: #303030;
  width: 45.375rem;
  margin-top: 2.6875rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-entry-form__box {
    font-size: 1rem;
    width: 100%;
    margin-top: 3.125rem;
  }
}

.p-entry-form__note {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
  color: #eb6100;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-entry-form__note {
    font-size: 0.875rem;
  }
}

.p-entry-form__input,
.p-entry-form__textarea {
  height: 4.375rem;
  width: 100%;
  border: 0.0625rem solid #303030;
  color: #303030;
  padding-inline: 1.25rem;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-entry-form__input,
  .p-entry-form__textarea {
    height: 3.125rem;
    padding-inline: 0.9375rem;
  }
}
.p-entry-form__input::-webkit-input-placeholder,
.p-entry-form__textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}
.p-entry-form__input::-moz-placeholder,
.p-entry-form__textarea::-moz-placeholder {
  color: #8e8e8e;
}
.p-entry-form__input::-ms-input-placeholder,
.p-entry-form__textarea::-ms-input-placeholder {
  color: #8e8e8e;
}
.p-entry-form__input::placeholder,
.p-entry-form__textarea::placeholder {
  color: #8e8e8e;
}
.p-entry-form__input:focus,
.p-entry-form__textarea:focus {
  outline: 0.125rem solid #1e90ff;
}

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

.p-entry-form__label {
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* 必須マーク（疑似要素） */
.p-entry-form__label--required::after {
  content: "※";
  font-size: 0.75rem;
  font-weight: 700;
  color: #eb6100;
  padding-top: 0.25rem;
  margin-left: 0.1875rem;
}

.p-entry-form__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  margin-block: 0.625rem 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-entry-form__radio-group {
    margin-block: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 2.5rem;
  }
}
.p-entry-form__radio-group label {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  cursor: pointer;
  color: #616161;
}
.p-entry-form__radio-group input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.875rem;
  height: 1.875rem;
  border: 0.0625rem solid #848484;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 0;
  margin-left: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-entry-form__radio-group input[type=radio]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 1.1875rem;
  height: 1.1875rem;
  border-radius: 50%;
  background-color: #12b0ff;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.p-entry-form__radio-group input[type=radio]:checked {
  background-color: #fff;
}
.p-entry-form__radio-group input[type=radio]:checked::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.p-entry-form__radio-group input[type=radio]:hover {
  border-color: #999;
}

.p-entry-form__textarea {
  height: 11.9375rem;
  padding-inline: 1.25rem;
  resize: none;
}
@media screen and (max-width: 767px) {
  .p-entry-form__textarea {
    line-height: 1.5;
    padding: 0.9375rem;
    font-size: 1rem;
  }
}

.p-entry-form__textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}

.p-entry-form__textarea::-moz-placeholder {
  color: #8e8e8e;
}

.p-entry-form__textarea::-ms-input-placeholder {
  color: #8e8e8e;
}

.p-entry-form__textarea::placeholder {
  color: #8e8e8e;
}

.p-entry-form__privacy {
  margin-top: 3.75rem;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0;
  font-weight: 400;
  background: #fff;
  padding: 0.5rem 2.1875rem 1.25rem 2.0625rem;
  height: 13.1875rem;
  overflow-y: scroll;
  border: 0.0625rem solid #303030;
}
@media screen and (max-width: 767px) {
  .p-entry-form__privacy {
    padding: 0.625rem 0.9375rem 0.9375rem;
    margin-top: 1.875rem;
  }
}

.p-entry-form__privacy::-webkit-scrollbar,
.p-entry-form__textarea::-webkit-scrollbar {
  width: 0.5rem;
}
.p-entry-form__privacy::-webkit-scrollbar-thumb,
.p-entry-form__textarea::-webkit-scrollbar-thumb {
  background: #aeaeae;
  border-radius: 0.25rem;
}
.p-entry-form__privacy::-webkit-scrollbar-track,
.p-entry-form__textarea::-webkit-scrollbar-track {
  background: #e9e9e9;
}

.p-entry-form__privacy-title {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 0;
  font-weight: 400;
  text-align: center;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-entry-form__privacy-title {
    font-size: 1rem;
  }
}

.p-entry-form__privacy-agree {
  margin: 5.9375rem 0 0 0.3125rem;
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 0;
  text-align: 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.625rem;
}
@media screen and (max-width: 767px) {
  .p-entry-form__privacy-agree {
    margin: 5.9375rem 0 0 0;
    font-size: 1rem;
    line-height: 1.5;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 1.875rem;
    gap: 0;
    text-align: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .p-entry-form__privacy-agree .error {
    margin-right: 10.625rem;
  }
}

.p-entry-form__privacy-agree label,
.p-entry-form__privacy-agree input[type=checkbox] {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-entry-form__privacy-agree label,
  .p-entry-form__privacy-agree input[type=checkbox] {
    cursor: default;
  }
}

.mwform-checkbox-field label {
  color: #303030;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mwform-checkbox-field label {
    gap: 0.375rem;
  }
}

.p-entry-form__checkbox {
  width: 1.5625rem;
  height: 1.5625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.3125rem;
  border: 0.0625rem solid #303030;
  border-radius: 0;
  background-color: #fff;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media screen and (max-width: 767px) {
  .p-entry-form__checkbox {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.p-entry-form__checkbox:checked {
  background-color: #1e90ff;
  border-color: #1e90ff;
}
.p-entry-form__checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 0.625rem;
  height: 1.125rem;
  border: solid #fff;
  border-width: 0 0.3125rem 0.3125rem 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-entry-form__checkbox::after {
    width: 0.5rem;
    height: 1rem;
    border-width: 0 0.25rem 0.25rem 0;
  }
}
.p-entry-form__checkbox:checked::after {
  opacity: 1;
}

.p-entry-form__submit {
  width: 24.605rem;
  height: 6.441875rem;
  font-size: 2rem;
  line-height: 0.446875;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  background-color: #eb6100;
  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;
  text-align: center;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-inline: auto;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-entry-form__submit {
    width: 12.5rem;
    height: 2.875rem;
    font-size: 1rem;
  }
}

.mw_wp_form_confirm .p-entry-form__label--required::after,
.mw_wp_form_confirm .p-entry-form__privacy,
.mw_wp_form_confirm .p-entry-form__privacy-agree,
.mw_wp_form_confirm .p-entry-form__note {
  display: none;
}

body:has(.mw_wp_form_confirm) .p-entry-form {
  padding-block: 3.125rem 6.25rem;
  margin-block: 0;
}
@media screen and (max-width: 767px) {
  body:has(.mw_wp_form_confirm) .p-entry-form {
    padding-block: 3.125rem 5rem;
  }
}

.mw_wp_form_confirm .p-entry-form__confirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .p-entry-form__confirm {
    gap: 0.625rem;
  }
}

.mw_wp_form_confirm .p-entry-form__btn-back,
.mw_wp_form_confirm .p-entry-form__btn-submit {
  width: 16.25rem;
  height: 4rem;
  color: #fff;
  background-color: #eb6100;
  font-weight: 600;
  font-size: 1.5rem;
  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;
  text-align: center;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .p-entry-form__btn-back,
  .mw_wp_form_confirm .p-entry-form__btn-submit {
    width: 9.375rem;
    height: 2.875rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .mw_wp_form .error {
    font-size: 0.875rem;
  }
}

/* フォーム先頭のエラーメッセージ */
.js-form-error-message {
  color: #B70000;;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .js-form-error-message {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
}

.mw_wp_form_confirm form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body:has(.mw_wp_form_confirm) .p-entry-mv,
body:has(.mw_wp_form_confirm) .p-entry-flow-entry,
body:has(.mw_wp_form_confirm) .p-entry-flow-day {
  display: none;
}

.p-entry-mv {
  width: 100%;
  position: relative;
}

.p-entry-mv__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-entry-mv__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-entry {
  width: 100%;
  background-image: url("../images/footer/footer-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.p-entry--w {
  width: 100%;
  background: #fff;
}

.p-entry__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.25rem 0 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-entry__container {
    padding: 0.6875rem 0 0 0;
  }
}

.p-entry__title-group {
  position: relative;
  text-align: center;
}

.p-entry__title {
  font-family: "rift", sans-serif;
  font-size: 22rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
  display: block;
  padding: 0 0 0 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-entry__title {
    font-size: 6rem;
    letter-spacing: 0.08em;
    padding: 0 0 0 1.6875rem;
  }
}

.p-entry__title--w {
  color: #F0F0F0;
}

.p-entry__description {
  position: absolute;
  font-family: "rift", sans-serif;
  font-size: 2.125rem;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #000;
  top: 6.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0 0 0 2.625rem;
  z-index: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-entry__description {
    font-size: 0.8125rem;
    letter-spacing: -0.03em;
    padding: 0 0 0 1.875rem;
    top: 1.25rem;
  }
}

.p-entry__subtitle {
  font-size: 6.375rem;
  letter-spacing: 0.02em;
  display: inline;
}
@media screen and (max-width: 767px) {
  .p-entry__subtitle {
    font-size: 2.375rem;
    letter-spacing: 0.07em;
  }
}

.p-event {
  position: relative;
  width: 100%;
}

.p-event__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-event__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-event__container {
  position: relative;
  width: 100%;
}

.p-event__content {
  position: relative;
  width: inherit;
  padding: 5.75rem 0 7.3125rem 0;
}
@media screen and (max-width: 767px) {
  .p-event__content {
    padding: 2.5rem 0 2.5rem 0;
  }
}

.p-event__card-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-event__card-list {
    gap: 2.5rem;
  }
}

.p-event__card-item {
  width: inherit;
  height: 25.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-event__card-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
  }
}

.p-event__card-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-event__card-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-event__item-group {
  width: 50%;
  height: 19.0625rem;
  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;
  background: #f5f5f5;
  padding: 2.6875rem 2rem 2.3125rem 2.375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-event__item-group {
    width: inherit;
    height: auto;
    gap: 0.625rem;
    padding: 1.25rem 0.9375rem 1.875rem 0.9375rem;
    margin: 0;
  }
}

.p-event__item-title {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
  text-align: start;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-event__item-title {
    font-size: 1.25rem;
    line-height: 1.5;
    text-align: start;
  }
}

.p-event__item-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-event__item-text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.p-event__img-list {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-event__img-list {
    width: 100%;
  }
}

.p-event__img-list img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* loop */
.p-event__loop {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 178.4%;
  overflow: hidden;
  top: 0;
  left: -1.4375rem;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .p-event__loop {
    display: none;
  }
}

.p-event__loop-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-family: "rift", sans-serif;
  font-size: 11rem;
  line-height: 1;
  overflow: hidden;
  color: #ebebeb;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 1439px) {
  .p-event__loop-text {
    display: none;
  }
}

.p-event__loop-text:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.p-event__loop-text:nth-child(even) {
  animation: loop2 50s linear infinite reverse;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-evolution {
  position: relative;
  width: 100%;
}

.p-evolution__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-evolution__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-evolution__container {
  width: 100%;
}

.p-evolution__content {
  position: relative;
  width: inherit;
  padding: 5.4375rem 0 5.6875rem 0;
}
@media screen and (max-width: 767px) {
  .p-evolution__content {
    padding: 2.5rem 0 0 0;
  }
}

.p-evolution__content img {
  position: absolute;
  aspect-ratio: 599/1014;
  width: 37.4375rem;
  height: 63.375rem;
  top: -3.125rem;
  left: -0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-evolution__content img {
    display: none;
  }
}

.p-evolution__content-subtitle {
  position: absolute;
  font-family: "rift", sans-serif;
  font-size: 6.25rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #8e8e8e;
  text-transform: uppercase;
  opacity: 0.2;
  top: -3.1875rem;
  right: -0.5rem;
}
@media screen and (max-width: 767px) {
  .p-evolution__content-subtitle {
    font-size: 3.75rem;
    letter-spacing: 0.05em;
    top: 1.1875rem;
    right: auto;
    right: initial;
    left: 0;
    white-space: nowrap;
  }
}

.p-evolution__content-title {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.17em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-evolution__content-title {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}

.p-evolution__content-title--e {
  font-family: "rift", sans-serif;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-evolution__content-title--e {
    font-size: 2.25rem;
    letter-spacing: 0.05em;
  }
}

.p-evolution__area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 6.375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-evolution__area {
    display: inline-block;
    margin: 0;
  }
}

.p-evolution__list {
  margin: 2.1875rem 0 0 13.1875rem;
  border-top: 0.125rem solid #eb6100;
}
@media screen and (max-width: 767px) {
  .p-evolution__list {
    width: 100%;
    margin: 4.375rem 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-evolution__item {
  width: 55.4375rem;
  padding: 0 0 0 1.875rem;
  border-bottom: 0.125rem solid #eb6100;
}
@media screen and (max-width: 767px) {
  .p-evolution__item {
    width: inherit;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .p-evolution__item:nth-child(2) {
    padding: 0 0 0 7.25rem;
  }
  .p-evolution__item:nth-child(2) .p-evolution__item-title {
    margin: 1.875rem 0 0 0;
  }
  .p-evolution__item:nth-child(2) .p-evolution__item-text {
    padding: 1rem 0 2rem 0;
    line-height: 1.6;
  }
  .p-evolution__item:nth-child(3) {
    padding: 0 0 0 13.0625rem;
  }
  .p-evolution__item:nth-child(3) .p-evolution__item-title {
    margin: 2.875rem 0 0 0;
  }
  .p-evolution__item:nth-child(3) .p-evolution__item-text {
    padding: 0.5625rem 0 2.75rem 0;
  }
  .p-evolution__item:nth-child(4) {
    padding: 0 0 0 19.1875rem;
  }
  .p-evolution__item:nth-child(4) .p-evolution__item-title {
    margin: 2.875rem 0 0 0;
  }
  .p-evolution__item:nth-child(4) .p-evolution__item-text {
    padding: 0.625rem 0 2.625rem 0;
    letter-spacing: 0.009em;
    white-space: nowrap;
  }
  .p-evolution__item:nth-child(5) {
    width: 32.625rem;
    margin: 0 0 0 22.8125rem;
  }
  .p-evolution__item:nth-child(5) .p-evolution__item-title {
    margin: 2.1875rem 0 0 0;
    letter-spacing: 0.09em;
  }
  .p-evolution__item:nth-child(5) .p-evolution__item-text {
    padding: 0.625rem 0 1.9375rem 0;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}
.p-evolution__item-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  margin: 2.0625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-evolution__item-title {
    font-size: 1.25rem;
    line-height: 1.35;
    margin: 1.25rem 0 0 0;
  }
}

.p-evolution__item-description {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  margin: 1.25rem 0 1.375rem 0;
}
@media screen and (max-width: 767px) {
  .p-evolution__item-description {
    font-size: 0.875rem;
    margin: 0.625rem 0 0.625rem 0;
  }
}

.p-evolution__bage-list {
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.4375rem 0 1.0625rem 0;
  padding: 0 0 0 1.0625rem;
  gap: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-evolution__bage-list {
    display: grid;
    grid-template-rows: auto;
    margin: 1.25rem 0 0.625rem 0.875rem;
    padding: 0;
    gap: 0.625rem;
  }
}

.p-evolution__bage-item {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-evolution__bage-item {
    font-size: 0.875rem;
  }
}

.p-evolution__bage-item::before {
  position: absolute;
  content: "●";
  color: #eb6100;
  left: -1rem;
  top: 0.0625rem;
}

.p-evolution__item-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #000;
  padding: 0 0 2.0625rem 0;
}
@media screen and (max-width: 767px) {
  .p-evolution__item-text {
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0.625rem 0 1.25rem 0;
  }
}

.p-faq-body {
  padding-block: 5rem 3.9375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-faq-body {
    padding-block: 2.5rem 2.8125rem;
  }
}

.p-faq-body__title {
  font-size: 2rem;
  line-height: 0.78125;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-faq-body__title {
    font-size: 1.25rem;
  }
}

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

.p-faq-body__question::before,
.p-faq-body__answer::before {
  font-size: 4rem;
  line-height: normal;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "rift", sans-serif;
  position: absolute;
  left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq-body__question::before,
  .p-faq-body__answer::before {
    font-size: 2.8125rem;
    left: 0.9375rem;
  }
}

.p-faq-body__question {
  background-color: #525252;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  padding: 1.9375rem 1.25rem 1.9375rem 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq-body__question {
    font-size: 1rem;
    padding: 1.125rem 0.625rem 1.125rem 3.75rem;
  }
}

.p-faq-body__question::before {
  content: "Q.";
  color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-faq-body__answer {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 500;
  background-color: #fff;
  padding: 1.1875rem 1.25rem 1.1875rem 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq-body__answer {
    font-size: 0.875rem;
    padding: 0.9375rem 0.625rem 0.9375rem 3.75rem;
  }
}

.p-faq-body__answer::before {
  content: "A.";
  color: #eb6100;
  top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-faq-body__answer::before {
    top: 0.5rem;
  }
}

.p-faq-body__answer-text--mt {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq-body__answer-text--mt {
    margin-top: 0.875rem;
  }
}

.p-faq-body__item:not(:nth-child(2)) ul,
.p-faq-body__answer-item-list {
  list-style: disc;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-faq-body__item:not(:nth-child(2)) ul,
  .p-faq-body__answer-item-list {
    margin-left: 1.4375rem;
  }
}

.p-faq-body__item ol {
  list-style: decimal;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-faq-body__item ol {
    margin-left: 1.4375rem;
  }
}

.p-faq-mv {
  width: 100%;
  position: relative;
}

.p-faq-mv__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-faq-mv__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-footer {
  width: 100%;
}

.p-footer__container {
  width: 100%;
  margin: 2.75rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-footer__container {
    margin: 3.0625rem 0 0 0;
  }
}

.p-footer__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 2.8125rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 1.3125rem 0;
    border-bottom: 1px solid #8e8e8e;
  }
}

.p-footer__area {
  width: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-footer__area {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer__logo {
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 11.3125rem;
    height: 2.9375rem;
    margin: 0 0 0 1.125rem;
  }
}

.p-footer__logo img {
  width: 100%;
  aspect-ratio: 240/64;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-footer__logo img {
    aspect-ratio: 181/47;
  }
}

.p-footer__nav {
  width: 49.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    width: 100%;
  }
}

.p-footer__nav-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.25rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    display: block;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    margin: 1.875rem 0 0 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-column-gap: 1.625rem;
       -moz-column-gap: 1.625rem;
            column-gap: 1.625rem;
  }
}

.p-footer__nav-item {
  width: 11.4375rem;
  border-right: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item {
    width: 100%;
    border-right: none;
    height: auto;
    -webkit-column-break-inside: avoid;
       page-break-inside: avoid;
            break-inside: avoid;
  }
}

.p-footer__nav-item:first-child {
  border-left: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item:first-child {
    width: 100%;
    border-left: none;
  }
}

.p-footer__nav-item:nth-child(2) {
  width: 14.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item:nth-child(2) {
    width: 100%;
    margin: 2.3125rem 0 0 0;
  }
}

.p-footer__nav-item:nth-child(3) {
  width: 11.1875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item:nth-child(3) {
    width: 100%;
  }
}

.p-footer__nav-item:nth-child(4) {
  width: 12.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item:nth-child(4) {
    width: 100%;
    margin: 2.4375rem 0 0 0;
  }
}

.p-footer__nav-item-link {
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0em;
  color: #eb6100;
  display: inline-block;
  padding: 0 0 0 1.8125rem;
  margin: 0 0 1.1875rem 0;
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item-link {
    padding: 0 0 0.375rem 0;
    margin: 0;
    border-bottom: 0.125rem solid #eb6100;
    width: 100%;
  }
}

.p-footer__nav-list .p-footer__nav-item:nth-child(2) .p-footer__nav-item-link {
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list .p-footer__nav-item:nth-child(2) .p-footer__nav-item-link {
    margin: 0;
  }
}

.p-footer__nav-list .p-footer__nav-item:nth-child(3) .p-footer__nav-item-link {
  margin: 0 0 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list .p-footer__nav-item:nth-child(3) .p-footer__nav-item-link {
    margin: 0;
  }
}

.p-footer__sub-item-list {
  padding: 0 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sub-item-list {
    padding: 0;
    margin: 0.25rem 0 0 0;
  }
}

.p-footer__sub-item {
  position: relative;
  margin: 0 0 0.5625rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__sub-item {
    margin: 0 0 0.3125rem 0;
  }
}

.p-footer__nav-item:nth-child(2) .p-footer__sub-item:first-child .p-footer__sub-item-link::before,
.p-footer__nav-item:nth-child(3) .p-footer__sub-item:first-child .p-footer__sub-item-link::before {
  display: none;
}

.p-footer__sub-item-link {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.8461538462;
  letter-spacing: 0em;
  color: #303030;
  padding: 0 0 0 1.125rem;
  display: inline-block;
  white-space: nowrap;
}

.p-footer__sub-item-link--e {
  font-family: "rift", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #eb6100;
  padding: 0;
  margin: 0 0 0.1875rem 0;
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .p-footer__sub-item-link--e {
    margin: 0;
  }
}

.p-footer__sub-item-link--c {
  font-size: 0.75rem;
  font-weight: 700;
  color: #eb6100;
  padding: 0;
  margin: 0 0 0.4375rem 0;
  pointer-events: none;
  cursor: default;
}

.p-footer__sub-item-link::before {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.0625rem;
  background: #eb6100;
  top: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  left: 0.375rem;
}

.p-footer__drawermenu {
  position: static;
  top: 100%;
  left: 0;
  right: auto;
  z-index: 10;
  max-height: none;
  overflow: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  padding: 0 0 0.5625rem 1.0625rem;
  margin-bottom: 0.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer__drawermenu {
    margin-bottom: 0.625rem;
  }
}

.p-footer__drawermenu::after {
  content: "";
  background: url(../images/footer/footer-line_pc.png) no-repeat center/cover;
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__drawermenu::after {
    background: url(../images/footer/footer-line_sp.png) no-repeat center/cover;
  }
}

.p-footer__drawermenu-item {
  padding: 0;
  margin: 0;
}

.p-footer__drawermenu-item-link {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.8461538462;
  letter-spacing: 0.05em;
  color: #303030;
  white-space: nowrap;
  display: inline-block;
  margin: 0 0 0.5625rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__drawermenu-item-link {
    margin: 0 0 0.25rem 0;
  }
}

.p-footer__drawermenu-item-link--l {
  letter-spacing: 0em;
}

.p-footer__drawermenu-item-link::before {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.0625rem;
  background: #eb6100;
  top: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  left: -0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__drawermenu-item-link::before {
    width: 0.6875rem;
    top: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    left: -0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__drawermenu-item-link--g::before {
    width: 0.6875rem;
    top: 26%;
    left: -0.625rem;
  }
}

.p-footer__copyright-content {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #eeeeee;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright-content {
    padding: 0.9375rem 0 0.75rem 0;
  }
}

.p-footer__copyright-group {
  width: 76.3888888889%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright-group {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-footer__copyright {
  font-family: "rift", sans-serif;
  font-size: 0.6875rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #3d3d3d;
  margin: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    letter-spacing: 0.1em;
    margin: 0;
  }
}

.p-footer__copyright-item {
  width: 19.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 6.25rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright-item {
    display: none;
  }
}

.p-footer__copyright-item--m {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright-item--m {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0.75rem 0 1.4375rem 0;
    padding: 0 1.25rem 0 0;
    gap: 3.5rem;
  }
}

.p-footer__copyright-item-link {
  position: relative;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 3.3333333333;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright-item-link {
    font-size: 0.6875rem;
    line-height: 3.7272727273;
  }
}

.p-footer__copyright-item-link::after {
  position: absolute;
  content: "";
  background-image: url("../images/footer/copyright-img.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 0.875rem;
  height: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -1.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright-item-link::after {
    width: 0.75rem;
    height: 0.75rem;
    right: -1.375rem;
  }
}

.c-page-top {
  position: absolute;
  top: -1.0625rem;
  right: 7.125rem;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: pointer;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .c-page-top {
    top: -0.75rem;
    right: 0.4375rem;
  }
}

.c-page-top.is-show {
  opacity: 1;
  visibility: visible;
}

.c-page-topi__con {
  width: 2.3125rem;
  height: 2.3125rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .c-page-topi__con {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-header {
  width: 100%;
  height: min(6.25vw, 90px);
  position: fixed;
  top: 0;
  z-index: 2000;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.125rem;
  }
}

.p-header__wrapper {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: min(11.8055555556vw, 170px);
}
@media screen and (max-width: 767px) {
  .p-header__wrapper {
    margin-left: 1.3125rem;
  }
}

.p-header__logo {
  width: min(16.0416666667vw, 231px);
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 8.0625rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: block;
}

.p-header__logo img {
  aspect-ratio: 231/61;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-header__logo img {
    aspect-ratio: 129/34.15;
  }
}

.p-header__container {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__container {
    display: none;
    width: 100%;
    height: 100vh;
    background-color: #f5f5f5;
    position: fixed;
    top: 3.125rem;
    left: 0;
    padding: 1.625rem 1.25rem 6.25rem;
    overflow-y: auto;
    -webkit-transition: none;
    transition: none;
  }
}

.p-header__nav {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    height: auto;
  }
}

.p-header__list {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-header__list {
    height: auto;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    display: block;
  }
}

.p-header__item {
  height: inherit;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__item {
    height: auto;
    width: 100%;
    -webkit-column-break-inside: avoid;
       page-break-inside: avoid;
            break-inside: avoid;
    margin-bottom: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__item:nth-child(2),
  .p-header__item:nth-child(6) {
    margin-bottom: 0;
  }
}

.p-header-item__toggle,
.p-header-item__link {
  font-size: min(1.0416666667vw, 15px);
  line-height: normal;
  letter-spacing: 0;
  font-weight: 700;
  color: #2e2f35;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: min(1.3888888889vw, 20px);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-header-item__toggle,
  .p-header-item__link {
    font-size: 0.9375rem;
    line-height: 2.1875;
    letter-spacing: 0.05em;
    color: #eb6100;
    height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 0;
    cursor: default;
  }
}

@media screen and (max-width: 767px) {
  .p-header-item__toggle::after {
    content: "";
    width: 100%;
    height: 0.125rem;
    border-radius: 9999px;
    background-color: #eb6100;
    display: block;
    margin-top: -0.1875rem;
  }
}

.p-header__item:nth-child(5) .p-header-item__link {
  padding-inline: min(1.3888888889vw, 20px) min(2.7777777778vw, 40px);
}
@media screen and (max-width: 767px) {
  .p-header__item:nth-child(5) .p-header-item__link {
    padding-inline: 0;
  }
}

.p-header-item__dropdown {
  background-color: #fff;
  border-top: 0.125rem solid #eb6100;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-block: 0.5rem 0.9375rem;
  position: absolute;
  top: 100%;
  left: 51%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(-0.375rem);
          transform: translateX(-50%) translateY(-0.375rem);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, transform 0.5s ease;
  transition: opacity 0.3s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-header-item__dropdown {
    width: 100%;
    background-color: transparent;
    border-top: none;
    opacity: 1;
    visibility: visible;
    position: static;
    -webkit-transform: none;
            transform: none;
    padding-block: 0.375rem 0;
  }
}

.p-header__item:first-child .p-header-item__dropdown {
  padding-block: 0.375rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__item:first-child .p-header-item__dropdown {
    padding-block: 0.1875rem 0;
  }
}

.p-header-item__dropdown::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.4375rem solid transparent;
  border-left: 0.4375rem solid transparent;
  border-bottom: 0.625rem solid #eb6100;
  border-top: 0;
  position: absolute;
  top: -0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-header-item__dropdown::before {
    content: none;
  }
}

.p-header__item:hover .p-header-item__dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
@media screen and (max-width: 767px) {
  .p-header__item:hover .p-header-item__dropdown {
    -webkit-transform: none;
            transform: none;
  }
}

.p-header-item__dropdown-heading {
  font-size: min(1.0416666667vw, 15px);
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "rift", sans-serif;
  color: #eb6100;
  margin-left: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-header-item__dropdown-heading {
    font-size: 0.9375rem;
    margin-left: 0;
  }
}

.p-header__item:nth-child(3) .p-header-item__dropdown-heading {
  font-size: min(0.8333333333vw, 12px);
  line-height: 2.3333333333;
}
@media screen and (max-width: 767px) {
  .p-header__item:nth-child(3) .p-header-item__dropdown-heading {
    font-size: 0.75rem;
  }
}

.p-header-item__content + .p-header-item__content::before {
  content: "";
  background: url(../images/top/header-line.png) no-repeat center/contain;
  width: 73%;
  height: 0.0625rem;
  display: block;
  margin-block: 0.625rem 0.8125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-header-item__content + .p-header-item__content::before {
    width: calc(100% + 0.8125rem);
    margin-block: 0.5625rem 0.6875rem;
    margin-left: -0.8125rem;
  }
}

.p-header-item__content-item-link {
  font-size: min(0.9027777778vw, 13px);
  line-height: 2.1538461538;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #303030;
  display: block;
  padding: 0.3125rem 1.875rem 0.3125rem 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header-item__content-item-link {
    font-size: 0.8125rem;
    line-height: 1.55;
    padding: 0.375rem 0.375rem 0.375rem 1.1875rem;
  }
}

.p-header-item__content-item-link::before {
  content: "";
  width: 0.75rem;
  height: 0.0625rem;
  background-color: #eb6100;
  position: absolute;
  top: 50%;
  left: 2.1875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-header-item__content-item-link::before {
    width: 0.625rem;
    top: 1rem;
    left: 0.25rem;
  }
}

.p-header__contact {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__contact {
    height: auto;
    margin-top: 2.125rem;
  }
}

.p-header-contact__group {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-header-contact__group {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.0625rem;
    width: 19.6875rem;
    margin-inline: auto;
  }
}

.p-header-contact__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(11.1111111111vw, 160px);
  padding: min(1.7361111111vw, 25px) min(1.0416666667vw, 15px) min(1.3194444444vw, 19px);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header-contact__btn {
    gap: 0.5rem;
    width: 100%;
    padding: 0.8125rem 0;
  }
}

.p-header-contact__btn:hover {
  opacity: 1;
}

.p-header-contact-btn__title {
  font-size: min(2.5vw, 36px);
  line-height: 0.5222222222;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "rift", sans-serif;
  color: #fff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header-contact-btn__title {
    font-size: 2rem;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 0.625rem;
    margin-left: -1.25rem;
  }
}

.p-header-contact-btn__text {
  font-size: min(0.8333333333vw, 12px);
  line-height: 0.625;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "rift", sans-serif;
  color: #fff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header-contact-btn__text {
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}

.p-header-contact__btn--black {
  background-color: #525252;
  border: 0.125rem solid #525252;
}

.p-header-contact__btn--black:hover {
  background-color: #eb6100;
  border: 0.125rem solid #eb6100;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-header-contact__btn--black:hover {
    background-color: #525252;
    border: 0.125rem solid #525252;
  }
}

@media screen and (max-width: 767px) {
  .p-header-contact__btn--black .p-header-contact-btn__title::before {
    content: "";
    background: url(../images/c-parts/sp-btn-white.png) no-repeat center/contain;
    aspect-ratio: 1/1;
    width: 1.375rem;
    margin-top: -0.1875rem;
  }
}

.p-header-contact__btn--orange {
  background-color: #eb6100;
  border: 0.125rem solid #eb6100;
}

.p-header-contact__btn--orange:hover {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-header-contact__btn--orange:hover {
    background-color: #eb6100;
  }
}

.p-header-contact__btn--orange:hover .p-header-contact-btn__title,
.p-header-contact__btn--orange:hover .p-header-contact-btn__text {
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-header-contact__btn--orange:hover .p-header-contact-btn__title,
  .p-header-contact__btn--orange:hover .p-header-contact-btn__text {
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-header-contact__btn--orange .p-header-contact-btn__title::before {
    content: "";
    background: url(../images/c-parts/sp-btn-orange.png) no-repeat center/contain;
    aspect-ratio: 1/1;
    width: 1.375rem;
    margin-top: -0.1875rem;
  }
}

.p-header__sp-link-wrapper {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__sp-link-wrapper {
    margin-top: 1.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__sp-link {
    font-size: 0.725rem;
    line-height: 3.7327586207;
    letter-spacing: 0.05em;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__sp-link::after {
    content: "";
    background: url(../images/common/external-icon.png) no-repeat center/contain;
    aspect-ratio: 1/1;
    width: 0.8125rem;
  }
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: 3.125rem;
    height: inherit;
    background-color: #eb6100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    text-align: center;
    position: absolute;
    right: 0;
    padding: 0.875rem 0.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger span {
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.is-active span:nth-child(1) {
    -webkit-transform: translateY(0.4375rem) rotate(42deg);
            transform: translateY(0.4375rem) rotate(42deg);
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.is-active span:nth-child(2) {
    background-color: transparent;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.is-active span:nth-child(3) {
    -webkit-transform: translateY(-0.4375rem) rotate(-42deg);
            transform: translateY(-0.4375rem) rotate(-42deg);
  }
}

.home .p-header {
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .home .p-header {
    background-color: #fff;
  }
}

.home .p-header-item__toggle,
.home .p-header-item__link {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .home .p-header-item__toggle,
  .home .p-header-item__link {
    color: #eb6100;
  }
}

.home .p-header__contact {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .home .p-header__contact {
    position: relative;
    opacity: 1;
    pointer-events: auto;
  }
}

.home .p-header__item:nth-child(5) .p-header-item__link {
  padding-inline: min(1.3888888889vw, 20px) min(4.1666666667vw, 60px);
}

/* MV超え */
.home .p-header.is-scrolled {
  background-color: #fff;
}

.home .p-header.is-scrolled .p-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .home .p-header.is-scrolled .p-header__contact {
    display: block;
  }
}

.home .p-header.is-scrolled .p-header__item:nth-child(5) .p-header-item__link {
  padding-inline: min(1.3888888889vw, 20px) min(2.7777777778vw, 40px);
}

.home .p-header.is-scrolled .p-header-item__toggle,
.home .p-header.is-scrolled .p-header-item__link {
  color: #2e2f35;
}
@media screen and (max-width: 767px) {
  .home .p-header.is-scrolled .p-header-item__toggle,
  .home .p-header.is-scrolled .p-header-item__link {
    color: #eb6100;
  }
}

.home .p-header.is-scrolled .p-header__contact {
  position: static;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-history {
  position: relative;
  width: 100%;
}

.p-history__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-history__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-history__container {
  position: relative;
  width: 100%;
}

.p-history__content {
  position: relative;
  width: inherit;
  padding: 5.125rem 0 3.1875rem 0;
}
@media screen and (max-width: 767px) {
  .p-history__content {
    padding: 2.5rem 0 2.5rem 0;
  }
}

.p-history__content-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-history__content-title {
    font-size: 1.5rem;
    line-height: 1.35;
    letter-spacing: 0.05em;
  }
}

.p-history__content-title--e {
  font-family: "rift", sans-serif;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-history__content-title--e {
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}

.p-history__content-text-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin: 0.875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-history__content-text-group {
    gap: 0.9375rem;
    margin: 0.875rem 0 0 0;
  }
}

.p-history__content-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-history__content-text {
    font-size: 0.875rem;
    margin: 1.25rem 0 0 0;
  }
}

.p-history__content02 {
  width: 100%;
  background-image: url("../images/history/history-background02.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6.6875rem 0 12.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-history__content02 {
    padding: 3.125rem 0 4.375rem 0;
  }
}

@media screen and (max-width: 767px) {
  .p-history__heading {
    font-size: 3.375rem;
  }
}

.p-history__list {
  position: relative;
  width: 100%;
  margin: 1.25rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-history__list {
    margin: 2.5rem 0 0 0;
  }
}

.p-history__list::before {
  position: absolute;
  content: "";
  width: 0.125rem;
  height: 100%;
  background-size: 0.125rem 0.5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.25rem, #eb6100), color-stop(0.25rem, transparent));
  background-image: linear-gradient(to bottom, #eb6100 0.25rem, transparent 0.25rem);
  background-repeat: repeat-y;
  left: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-history__list::before {
    left: 4.75rem;
  }
}

.p-history__item {
  width: inherit;
}

.p-history__item-group {
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-history__year-wrapper {
  width: 4.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 2.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-history__year-wrapper {
    width: 3.75rem;
    margin: 0 0.625rem 0 0;
  }
}

.p-history__item-year {
  font-family: "rift", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #eb6100;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-history__item-year {
    font-size: 1.875rem;
    line-height: 2.3333333333;
  }
}

.p-history__item-node {
  font-family: "rift", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 5;
  letter-spacing: 0.1em;
  color: #eb6100;
  display: inline-block;
  margin: 0 2.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-history__item-node {
    font-size: 0.875rem;
    line-height: 5;
    letter-spacing: 0.05em;
    margin: 0 0.625rem 0 0;
  }
}

.p-history__item-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.6;
  letter-spacing: 0.05em;
  background: #fff;
  display: inline-block;
  padding: 0 0 0 1.5625rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-history__item-text {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.1875rem 0 0.1875rem 0.625rem;
  }
}

/* loop */
.p-history__loop {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40.5%;
  overflow: hidden;
  top: 0;
  left: -1.4375rem;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .p-history__loop {
    display: none;
  }
}

.p-history__loop-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-family: "rift", sans-serif;
  font-size: 11rem;
  line-height: 1;
  overflow: hidden;
  color: #ebebeb;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 1439px) {
  .p-history__loop-text {
    display: none;
  }
}

.p-history__loop-text:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.p-history__loop-text:nth-child(even) {
  animation: loop2 50s linear infinite reverse;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-interview-pages {
  position: relative;
  width: 100%;
}

.p-interview-pages__title-group {
  position: absolute;
  top: 5.1vw;
  left: 11.7vw;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__title-group {
    top: 1.625rem;
    left: 1.1875rem;
  }
}

.p-interview-pages__title-group picture {
  width: 100%;
}

.p-interview-pages__title-group img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__title-group img {
    aspect-ratio: 375/160;
  }
}

.p-interview-pages__title-wrapper {
  position: absolute;
  top: 4.625rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__title-wrapper {
    top: 1.625rem;
  }
}

.p-interview-pages__subtitle {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #2e2f35;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__subtitle {
    font-size: 0.875rem;
  }
}

.p-interview-pages__subtitle--l {
  font-size: 2.8125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #2e2f35;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__subtitle--l {
    font-size: 1.0625rem;
    line-height: 1;
  }
}

.p-interview-pages__title {
  font-family: "rift", sans-serif;
  font-size: 8.3vw;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: #2e2f35;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__title {
    font-size: 2.1875rem;
    line-height: 1.6;
  }
}

.p-interview-pages__lead {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #2e2f35;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__lead {
    font-size: 0.8125rem;
    line-height: 1.5384615385;
  }
}

.p-interview-pages__container {
  width: 100%;
}

.p-interview-pages__content {
  position: relative;
  overflow: hidden;
  width: inherit;
  padding: 5.3125rem 0 4.375rem 0;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__content {
    padding: 3.125rem 0 2.5rem 0;
  }
}

@media screen and (max-width: 767px) {
  .p-interview-pages__content001 {
    padding: 3.125rem 0 1.25rem 0;
  }
}

/* スケジュール */
.p-interview-pages__content02 {
  width: 100%;
  background: #eb6100;
  padding: 6.25rem 0 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__content02 {
    padding: 1.875rem 0 3.125rem 0;
  }
}

@media screen and (max-width: 767px) {
  .p-interview-pages__heading {
    font-size: 3rem;
  }
}

.p-interview-pages__box {
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2.8125rem 0 0 0;
  gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 2.5rem 0 0 0;
    gap: 0;
  }
}

.p-interview-pages__task-list {
  width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__task-list {
    width: 100%;
  }
}

.p-interview-pages__task-list:last-child {
  position: relative;
}

.p-interview-pages__task-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-interview-pages__task-item02 {
  margin: 1.875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__task-item02 {
    margin: 0 0 0 0;
  }
}

.p-interview-pages__task-time {
  font-family: "rift", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  width: 4.375rem;
  text-align: end;
  margin: 0 1.6875rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__task-time {
    font-size: 1.5rem;
    width: 3.125rem;
    margin: 0 0.9375rem 0 0;
  }
}

@media screen and (max-width: 767px) {
  .p-interview-pages__task-time02 {
    margin: 0 1.25rem 0 0;
  }
}

.p-interview-pages__task-node {
  width: 0.6875rem;
  height: 0.6875rem;
  background: #fff;
  border-radius: 50%;
  margin: 0.625rem 0 0 0;
}

.p-interview-pages__task-title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__task-title {
    font-size: 1.125rem;
  }
}

.p-interview-pages__task {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__task {
    font-size: 0.875rem;
    line-height: 2.1428571429;
    letter-spacing: 0.03em;
  }
}

@media screen and (max-width: 767px) {
  .p-interview-pages__task02 {
    white-space: nowrap;
  }
}

.p-interview-pages__task-group {
  margin: 0 0 1.875rem 2.125rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__task-group {
    margin: 0 0 1.875rem 0.9375rem;
  }
}

.p-interview-pages__task-group02 {
  position: relative;
}

.p-interview-pages__task-list:last-child:before {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__task-list:last-child:before {
    position: absolute;
    content: "";
    width: 0.0625rem;
    height: 3.375rem;
    background: #fff;
    display: block;
    left: 4.375rem;
    top: -2.75rem;
  }
}

.p-interview-pages__task-line01 {
  width: 0.0625rem;
  height: 3.125rem;
  background: #fff;
  display: block;
  margin: 0.625rem 0.3125rem 0 0.3125rem;
}

.p-interview-pages__task-line02 {
  width: 0.0625rem;
  height: 5rem;
  background: #fff;
  display: block;
  margin: 0.625rem 0.3125rem 0 0.3125rem;
}

.p-interview-pages__task-line03 {
  width: 0.0625rem;
  height: 6.875rem;
  background: #fff;
  display: block;
  margin: 0.625rem 0.3125rem 0 0.3125rem;
}

.p-interview-pages__task-line04 {
  width: 0.0625rem;
  height: 8.75rem;
  display: block;
  background: #fff;
  margin: 0.625rem 0.3125rem 0 0.3125rem;
}

.p-interview-pages__task-line05 {
  width: 0.0625rem;
  height: 9.375rem;
  display: block;
  background: #fff;
  margin: 0.625rem 0.3125rem 0 0.3125rem;
}

.p-interview-pages__task-line06 {
  width: 0.0625rem;
  height: 10.625rem;
  display: block;
  background: #fff;
  margin: 0.625rem 0.3125rem 0 0.3125rem;
}

.p-interview-pages__task-line07 {
  width: 0.0625rem;
  height: 12.5rem;
  display: block;
  background: #fff;
  margin: 0.625rem 0.3125rem 0 0.3125rem;
}

.p-interview-pages__content03 {
  width: 100%;
  padding: 3.125rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-interview-pages__content03 {
    padding: 1.25rem 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-interview-pages__loop {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 150%;
  overflow: hidden;
  top: 0;
  left: -1.4375rem;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media (max-width: 1439px) {
  .p-interview-pages__loop {
    display: none;
  }
}

.p-interview-pages__loop-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-family: "rift", sans-serif;
  font-size: 11rem;
  line-height: 1;
  overflow: hidden;
  color: #ebebeb;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.p-interview-pages__loop-text:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.p-interview-pages__loop-text:nth-child(even) {
  animation: loop2 50s linear infinite reverse;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-interview {
  width: 100%;
  position: relative;
}

.p-interview__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-interview__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-interview__container {
  width: 100%;
}

.p-interview__content {
  width: inherit;
  padding: 3.75rem 0 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-interview__content {
    padding: 2.5rem 0 3.125rem 0;
  }
}

.p-interview__text-group {
  width: 100%;
}

.p-interview__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.2222222222;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-interview__text {
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}

.p-interview__img-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  row-gap: 3.75rem;
  margin: 4.25rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-interview__img-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.875rem 0 0 0;
  }
}

.p-interview__img-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  row-gap: 3.75rem;
  margin: 4.25rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-interview__img-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.875rem 0 0 0;
  }
}

.p-interview__img-link {
  display: block;
  width: 100%;
  aspect-ratio: 340/588;
  background-size: cover;
  background-position: center;
  -webkit-transition: background-image 0.5s ease;
  transition: background-image 0.5s ease;
}

/* kodama */
.item-kodama .p-interview__img-link {
  background-image: url("../images/interview/Kodama01.png");
}

/* fukuoka */
.item-fukuoka .p-interview__img-link {
  background-image: url("../images/interview/fukuoka01.png");
}

/* matumura */
.item-matumura .p-interview__img-link {
  background-image: url("../images/interview/matumura01.png");
}

/* maruyama */
.item-maruyama .p-interview__img-link {
  background-image: url("../images/interview/maruyama01.png");
}

/* oga */
.item-oga .p-interview__img-link {
  background-image: url("../images/interview/oga01.png");
}

/* fujimoto */
.item-fujimoto .p-interview__img-link {
  background-image: url("../images/interview/fujimoto01.png");
}

/* shimada */
.item-shimada .p-interview__img-link {
  background-image: url("../images/interview/shimada01.png");
}

@media (hover: hover) and (pointer: fine) {
  .item-kodama .p-interview__img-link:hover {
    background-image: url("../images/interview/kodama02.png");
    opacity: 1;
  }
  .item-fukuoka .p-interview__img-link:hover {
    background-image: url("../images/interview/fukuoka02.png");
    opacity: 1;
  }
  .item-matumura .p-interview__img-link:hover {
    background-image: url("../images/interview/matumura02.png");
    opacity: 1;
  }
  .item-maruyama .p-interview__img-link:hover {
    background-image: url("../images/interview/maruyama02.png");
    opacity: 1;
  }
  .item-oga .p-interview__img-link:hover {
    background-image: url("../images/interview/oga02.png");
    opacity: 1;
  }
  .item-fujimoto .p-interview__img-link:hover {
    background-image: url("../images/interview/fujimoto02.png");
    opacity: 1;
  }
  .item-shimada .p-interview__img-link:hover {
    background-image: url("../images/interview/shimada02.png");
    opacity: 1;
  }
}
.p-kai {
  position: relative;
  width: 100%;
}

.p-kai__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-kai__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-kai__container {
  position: relative;
  width: 100%;
}

.p-kai__content {
  position: relative;
  width: inherit;
  padding: 5.9375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-kai__content {
    padding: 2.5rem 0 0 0;
  }
}

.p-kai__content-title {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-kai__content-title {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.p-kai__content-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin: 1.25rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-kai__content-text {
    font-size: 0.875rem;
    margin: 1.25rem 0 0 0;
  }
}

.p-kai__content02 {
  width: 100%;
  padding: 3.625rem 0 8.125rem 0;
}
@media screen and (max-width: 767px) {
  .p-kai__content02 {
    padding: 2.5rem 0 2.5rem 0;
  }
}

.p-kai__card-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.75rem;
  row-gap: 3.125rem;
  margin: 1.75rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-kai__card-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.p-kai__card-item {
  position: relative;
  width: 100%;
  height: 19.0625rem;
  background: #f5f5f5;
  counter-increment: item;
}
@media screen and (max-width: 767px) {
  .p-kai__card-item {
    height: auto;
  }
}

.p-kai__card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6.6875rem;
  height: 6.6875rem;
  background-color: #eb6100;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-kai__card-item::before {
    width: 4.1875rem;
    height: 4.1875rem;
  }
}

.p-kai__card-item::after {
  content: counter(item);
  position: absolute;
  top: 0.125rem;
  left: 1.3125rem;
  font-family: "rift", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-kai__card-item::after {
    font-size: 2.25rem;
    top: 0.125rem;
    left: 0.875rem;
  }
}

.p-kai__item-group {
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6875rem;
  padding: 0 2.75rem;
  margin: 3.375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-kai__item-group {
    padding: 0 0.9375rem 1.875rem 0.9375rem;
    margin: 1.875rem 0 0 0;
  }
}

.p-kai__item-title {
  font-size: 1.4375rem;
  font-weight: bold;
  line-height: 1.3043478261;
  letter-spacing: 0.05em;
  color: #eb6100;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-kai__item-title {
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 15.625rem;
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.p-kai__item-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-kai__item-text {
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.p-kai__img-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin: 4.0625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-kai__img-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 2.5rem 0 0 0;
  }
}

.p-kai__img-list img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* loop */
.p-kai__loop {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 156.8%;
  overflow: hidden;
  top: 0;
  left: -1.4375rem;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .p-kai__loop {
    display: none;
  }
}

.p-kai__loop-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-family: "rift", sans-serif;
  font-size: 11rem;
  line-height: 1;
  overflow: hidden;
  color: #ebebeb;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 1439px) {
  .p-kai__loop-text {
    display: none;
  }
}

.p-kai__loop-text:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.p-kai__loop-text:nth-child(even) {
  animation: loop2 50s linear infinite reverse;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-lead-message {
  padding-block: 5.8125rem;
}
@media screen and (max-width: 767px) {
  .p-lead-message {
    padding-block: 1rem 2rem;
    padding-inline: 1.125rem;
  }
}

.p-lead-message__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-lead-message__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-lead-message__text {
  font-size: 1.25rem;
  line-height: 2.5;
  letter-spacing: 0.15em;
  font-weight: 500;
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .p-lead-message__text {
    font-size: 0.875rem;
    line-height: 2.2;
    letter-spacing: 0.09em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.p-lead-message__image {
  width: 12.591875rem;
  margin-right: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-lead-message__image {
    width: 8rem;
    margin-top: 1.125rem;
    margin-inline: auto;
  }
}

.p-lead-message__image img {
  aspect-ratio: 201.47/285;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-message {
  position: relative;
  width: 100%;
}

.p-message__title-group {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-message__title-group {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.p-message__description {
  color: #fff;
}

.p-message__heading {
  color: #fff;
}

.p-message img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-message img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-message__container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-message__content img {
  aspect-ratio: 440/660;
  -o-object-fit: cover;
     object-fit: cover;
  width: 27.5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-message__content img {
    width: 12.5rem;
    height: auto;
    margin: auto;
  }
}

.p-message__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6.25rem 0 0 0;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-message__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.5rem 0 0 0;
    gap: 0rem;
  }
}

.p-message__wrapper {
  width: 100%;
  margin: 0;
}

.p-message__name-group {
  width: 100%;
}

.p-message__name-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0 0 0 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-message__name-title {
    font-size: 1rem;
    text-align: center;
    padding: 0.9375rem;
  }
}

.p-message__name-text {
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 1rem 0 0 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-message__name-text {
    font-size: 1.875rem;
    margin: 0;
    text-align: center;
  }
}

.p-message__name-text--c {
  font-family: "rift", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0 1.25rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-message__name-text--c {
    font-size: 1.625rem;
    padding: 0 0.625rem 0 0;
  }
}

.p-message__interview-area {
  width: 100%;
  margin: 2.5625rem 0 0 0;
}

.p-message__interview-title {
  margin: 0 0 0 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-message__interview-title {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.p-message__interview-text {
  letter-spacing: 0.1em;
  margin: 1.125rem 0.25rem 0 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-message__interview-text {
    font-size: 1rem;
    letter-spacing: 0em;
    margin: 1.875rem 0 0 0;
  }
}

.p-message__area {
  width: 100%;
  margin: 6.0625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-message__area {
    margin: 2.5rem 0 0 0;
  }
}

.p-message__interview {
  width: inherit;
  margin: 2.6875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-message__interview {
    margin: 1.25rem 0 3.125rem 0;
  }
}

.p-message__loop {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 180%;
  overflow: hidden;
  top: 0rem;
  left: -1.4375rem;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media (max-width: 1439px) {
  .p-message__loop {
    display: none;
  }
}

.p-message__loop-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-family: "rift", sans-serif;
  font-size: 11rem;
  line-height: 1;
  overflow: hidden;
  color: #ebebeb;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.p-message__loop-text:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.p-message__loop-text:nth-child(even) {
  animation: loop2 50s linear infinite reverse;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-movie {
  padding-bottom: 16.625rem;
  margin-top: 5.75rem;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-movie {
    padding-block: 2.5rem 7.1875rem;
    margin-top: 0;
  }
}

.p-movie::before {
  content: "";
  background: url(../images/top/movie-bg.png) no-repeat center/cover;
  aspect-ratio: 1440/1136;
  width: 100%;
  min-height: 78.8888888889vw;
  position: absolute;
  top: 2.2916666667vw;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-movie::before {
    background: url(../images/top/movie-bg_sp.png) no-repeat center/cover;
    aspect-ratio: 393/610.03;
    min-height: auto;
    top: 5.25rem;
  }
}

.p-movie__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-movie__wrapper {
    display: grid;
    grid-template-areas: "title" "video" "text";
  }
}

.p-movie__video {
  aspect-ratio: 949/536;
  width: 65.9027777778vw;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-movie__video {
    width: 19.6875rem;
    margin-top: 1.25rem;
    grid-area: video;
  }
}

.p-movie-video__player {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.p-movie-video__mask {
  background: rgba(0, 0, 0, .35);
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.p-movie-video__mask.is-visible {
  opacity: 1;
}

.p-movie-video__arrow-wrap {
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: absolute;
  z-index: 10;
  pointer-events: none;
}

.p-movie-video__arrow-wrap.is-paused {
  opacity: 1;
}

.p-movie-video__arrow {
  background: url(../images/top/movie-arrow.png) no-repeat center/contain;
  inset: 0;
  aspect-ratio: 1/1;
  width: 12.0138888889vw;
  margin: auto;
  position: absolute;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .p-movie-video__arrow {
    width: 3.7875rem;
  }
}

.p-movie__inner {
  padding-top: 3.1875rem;
}
@media screen and (max-width: 767px) {
  .p-movie__inner {
    padding-top: 0;
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-movie__title {
    padding-inline: 1.25rem;
    grid-area: title;
  }
}

.p-movie__text {
  font-size: 1rem;
  line-height: 2.1875;
  letter-spacing: 0;
  font-weight: 500;
  margin-top: 0.25rem;
  max-width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .p-movie__text {
    font-size: 0.875rem;
    letter-spacing: -0.05em;
    margin-top: 2.0625rem;
    padding-inline: 1.25rem;
    grid-area: text;
  }
}

.p-news-body {
  margin-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-news-body {
    margin-block: 3.125rem;
  }
}

.p-news-bar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-bar__list {
    gap: 0.9375rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-news-bar__item {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 600;
  color: #fff;
  background-color: #ec6a32;
  border-radius: 0.9375rem;
  min-width: 5.625rem;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news-bar__item {
    font-size: 0.875rem;
  }
}

.p-news-bar__item a {
  display: block;
  padding: 0.1875rem 0.75rem;
}

.p-news-content__card {
  border-bottom: 0.0625rem solid #000;
  display: block;
  padding-block: 1.25rem;
}

.p-news-content__card:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .p-news-content__card:hover {
    opacity: 1;
  }
}

.p-news-content__meta {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding-block: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-news-content__meta {
    padding-block: 0.3125rem;
  }
}

.p-news-content__category {
  background-color: #e6e6e6;
  border-radius: 0.75rem;
  min-width: 4.375rem;
  text-align: center;
  padding: 0.125rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-content__category {
    min-width: 5rem;
  }
}

.p-news-content__title {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-news-content__title {
    font-size: 1rem;
    word-break: break-word;
  }
}

.p-news-content__empty {
  margin-top: 2.5rem;
}

.p-single__content a {
  color: #1a0dab;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-single__content a {
    -webkit-transition: none;
    transition: none;
  }
}

.p-single__content a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .p-single__content a:hover {
    opacity: 1;
  }
}

.p-news-mv {
  width: 100%;
  position: relative;
}

.p-news-mv__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-news-mv__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-personnel-system {
  position: relative;
  width: 100%;
}

.p-personnel-system__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
  margin-left: -0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-personnel-system__title {
    top: 2.1875rem;
    left: 1.25rem;
    margin-left: 0;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

@media screen and (max-width: 767px) {
  .p-personnel-system__heading {
    font-size: 2.75rem;
  }
}

.p-personnel-system__container {
  position: relative;
  width: 100%;
}

.p-personnel-system__content {
  position: relative;
  width: inherit;
  padding: 5.125rem 0 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-personnel-system__content {
    padding: 2.5rem 0 2.5rem 0;
  }
}

.p-personnel-system__content-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-personnel-system__content-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.p-personnel-system__content-title--e {
  font-family: "rift", sans-serif;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-personnel-system__content-title--e {
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}

.p-personnel-system__content-text-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0.875rem 0 6.6875rem 0;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-personnel-system__content-text-group {
    margin: 0.625rem 0 2.5rem 0;
  }
}

.p-personnel-system__content-text--o {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-personnel-system__content-text--o {
    font-size: 1.125rem;
  }
}

.p-personnel-system__content-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-personnel-system__content-text {
    font-size: 0.875rem;
  }
}

.p-personnel-system__content img {
  width: 100%;
  aspect-ratio: 1102/1283;
  -o-object-fit: cover;
     object-fit: cover;
}

/* loop */
.p-personnel-system__loop {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 121%;
  overflow: hidden;
  top: 0;
  left: -1.4375rem;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .p-personnel-system__loop {
    display: none;
  }
}

.p-personnel-system__loop-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-family: "rift", sans-serif;
  font-size: 11rem;
  line-height: 1;
  overflow: hidden;
  color: #ebebeb;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 1439px) {
  .p-personnel-system__loop-text {
    display: none;
  }
}

.p-personnel-system__loop-text:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.p-personnel-system__loop-text:nth-child(even) {
  animation: loop2 50s linear infinite reverse;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-philosophy {
  width: 100%;
  position: relative;
}

.p-philosophy__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-philosophy__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-philosophy__wrapper {
  position: relative;
  overflow: hidden;
  padding: 0.9375rem 0 0 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-philosophy__wrapper {
    padding: 1.875rem 0 1.875rem 0;
  }
}

.p-philosophy__text-group {
  width: inherit;
  border-bottom: 1px solid #525252;
  padding: 4.375rem 0 5.9375rem 0;
}
@media screen and (max-width: 767px) {
  .p-philosophy__text-group {
    padding: 1.875rem 0;
  }
}

.p-philosophy__text-group:last-child {
  border-bottom: none;
}

.p-philosophy__text-subtitle {
  font-family: "rift", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .p-philosophy__text-subtitle {
    font-size: 1.5rem;
    margin: 0 0 0.625rem 0;
  }
}

.p-philosophy__text-subtitle--j {
  font-size: 1.5rem;
  line-height: 1.4166666667;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-philosophy__text-subtitle--j {
    font-size: 1.25rem;
  }
}

.p-philosophy__text-subtitle--e {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4166666667;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-philosophy__text-subtitle--e {
    font-size: 1.25rem;
  }
}

.p-philosophy__text-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #303030;
}
@media screen and (max-width: 767px) {
  .p-philosophy__text-title {
    font-size: 1.5rem;
  }
}

.p-philosophy__text-title--e {
  font-family: "rift", sans-serif;
  font-size: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__text-title--e {
    font-size: 1.5rem;
  }
}

.p-philosophy__text-title--e {
  font-family: "rift", sans-serif;
  font-size: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__text-title--e {
    font-size: 1.5rem;
  }
}

.p-philosophy__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1875;
  letter-spacing: 0.05em;
  color: #000;
  margin: 1.375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-philosophy__text {
    font-size: 0.875rem;
    letter-spacing: 0.04em;
  }
}

.p-philosophy__subtext-group {
  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.875rem;
}
@media screen and (max-width: 767px) {
  .p-philosophy__subtext-group {
    gap: 1.25rem;
  }
}

.p-philosophy__subtext {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #303030;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-philosophy__subtext {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.p-philosophy__subtext--e {
  font-family: "rift", sans-serif;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #303030;
}
@media screen and (max-width: 767px) {
  .p-philosophy__subtext--e {
    font-size: 1.25rem;
  }
}

.p-philosophy__loop {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 150%;
  overflow: hidden;
  top: -0.9375rem;
  left: -1.4375rem;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .p-philosophy__loop {
    display: none;
  }
}

.p-philosophy__loop-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-family: "rift", sans-serif;
  font-size: 11rem;
  line-height: 1;
  overflow: hidden;
  color: #ebebeb;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 1439px) {
  .p-philosophy__loop-text {
    display: none;
  }
}

.p-philosophy__loop-text:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.p-philosophy__loop-text:nth-child(even) {
  animation: loop2 50s linear infinite reverse;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-privacy-policy-body {
  padding-block: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-body {
    padding-block: 3.125rem;
  }
}

.p-privacy-policy-body__lead {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-body__lead {
    font-size: 0.875rem;
  }
}

.p-privacy-policy-body__list {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-body__list {
    margin-top: 2.5rem;
  }
}

.p-privacy-policy-body__item + .p-privacy-policy-body__item {
  margin-top: 2.5rem;
}

.p-privacy-policy-body-item__title {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-body-item__title {
    font-size: 1rem;
  }
}

.p-privacy-policy-body-item__text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-body-item__text {
    font-size: 0.875rem;
  }
}

.p-privacy-policy-body-item__list {
  margin-top: 0.625rem;
}

.p-privacy-policy-body-item__content {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-body-item__content {
    font-size: 0.875rem;
  }
}

.p-privacy-policy-mv {
  width: 100%;
  position: relative;
}

.p-privacy-policy-mv__title {
  position: absolute;
  top: 6.0625rem;
  left: 10.625rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy-mv__title {
    top: 0.625rem;
    left: 1.375rem;
  }
}

.p-single__hero {
  padding-block: 3.75rem 2.5rem;
}

.p-single-hero__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}

.p-single-hero__meta-date {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.p-single-hero__meta-category {
  background-color: #e6e6e6;
  border-radius: 0.9375rem;
  min-width: 5.3125rem;
  display: inline-block;
  text-align: center;
  padding-inline: 0.625rem;
}

.p-single__hero-title {
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  border-bottom: 0.0625rem solid #000;
  padding-block: 0.3125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single__hero-title {
    font-size: 1.25rem;
  }
}

.p-single__content {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-single__content {
    font-size: 1rem;
  }
}

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

.p-single__content h2 {
  font-size: 1.5rem;
  border-left: 0.5rem solid #eb6100;
  background-color: #faebd7;
  padding: 0.5rem 0.9375rem;
  margin-block: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__content h2 {
    font-size: 1.25rem;
    margin-block: 0.9375rem;
  }
}

.p-single__content h3 {
  font-size: 1.25rem;
  border-top: 0.1875rem solid #faebd7;
  border-bottom: 0.1875rem solid #faebd7;
  padding: 0.3125rem 0.625rem;
  margin-block: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__content h3 {
    font-size: 1.125rem;
    margin-block: 0.9375rem;
  }
}

.p-single__content h4 {
  font-size: 1.125rem;
  margin-block: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__content h4 {
    font-size: 1rem;
    margin-block: 0.9375rem;
  }
}

.p-single__content p {
  margin-block: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__content p {
    margin-block: 0.9375rem;
  }
}

.p-single__content ul,
.p-single__content ol {
  margin-left: 1.5625rem;
}

.p-single__content ul {
  list-style: disc;
}

.p-single__content ol {
  list-style: decimal;
}

.p-single__content hr {
  border-top: 0.0625rem solid #ccc;
  margin-block: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__content hr {
    margin-block: 0.9375rem;
  }
}

.wp-block-quote p {
  border-left: 0.1875rem solid #ccc;
  padding: 1.25rem;
}

.wp-block-table {
  margin-block: 1.875rem;
}
@media screen and (max-width: 767px) {
  .wp-block-table {
    margin-block: 0.9375rem;
  }
}

.wp-block-table thead {
  border-bottom: 0.0625rem solid #000;
  background-color: #e6e6e6;
}

.wp-block-table tr:last-child td {
  border-bottom: 0.0625rem solid #000;
}

.p-single__content .wp-block-media-text {
  display: grid;
  grid-template-columns: 1fr 50%;
  grid-template-rows: auto;
  margin-block: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-block-media-text {
    margin-block: 0.9375rem;
  }
}

.wp-block-image {
  margin-block: 1.875rem;
}
@media screen and (max-width: 767px) {
  .wp-block-image {
    margin-block: 0.9375rem;
  }
}

.p-single__pager {
  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: 2.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  text-align: center;
  margin-block: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-single__pager {
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-block: 2.5rem 3.125rem;
  }
}

.p-single__pager-prev,
.p-single__pager-next {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 3.75rem;
  text-align: center;
  color: #fff;
  width: 12.5rem;
  height: 3.75rem;
  border-radius: 0.25rem;
  background-color: #eb6100;
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-single__pager-prev,
  .p-single__pager-next {
    font-size: 0.75rem;
    width: 7.5rem;
    height: 2.75rem;
    line-height: 2.75rem;
  }
}

.p-single__pager-arrow-prev {
  position: relative;
  display: inline-block;
  width: 0.75rem;
  height: 1px;
  margin: 0.1375rem 0;
  border-radius: 9999px;
  background-color: #fff;
}

.p-single__pager-prev a,
.p-single__pager-next a {
  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;
  width: 100%;
  height: 100%;
  color: #fff;
  gap: 0.4375rem;
}

.p-single__pager-arrow-prev::before,
.p-single__pager-arrow-prev::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0;
  width: 0.1875rem;
  height: 0.0625rem;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: 0.5px 50%;
          transform-origin: 0.5px 50%;
}

.p-single__pager-arrow-prev::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-single__pager-arrow-prev::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-single__pager-arrow-next {
  position: relative;
  display: inline-block;
  width: 0.75rem;
  height: 0.0625rem;
  margin: 0.1375rem 0;
  border-radius: 9999px;
  background-color: #fff;
}

.p-single__pager-arrow-next::before,
.p-single__pager-arrow-next::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 0.3125rem;
  height: 0.0625rem;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
}

.p-single__pager-arrow-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-single__pager-arrow-next::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-single__pager-archive {
  width: 8.3125rem;
  height: 3.75rem;
  color: #eb6100;
  border: 1px solid #eb6100;
  border-radius: 0.25rem;
  line-height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-single__pager-archive {
    width: 6.25rem;
    height: 2.75rem;
    font-size: 0.75rem;
    line-height: 2.75rem;
  }
}

.p-single__pager-archive a {
  display: block;
}

.p-sport {
  position: relative;
  width: 100%;
}

.p-sports__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-sports__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-sports__container {
  width: 100%;
}

.p-sports__content01 {
  width: inherit;
  padding: 5.0625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__content01 {
    padding: 3.125rem 0 0 0;
  }
}

.p-sports__content01-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-sports__content01-title {
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }
}

.p-sports__content01-title--e {
  font-family: "rift", sans-serif;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-sports__content01-title--e {
    font-size: 2.25rem;
    letter-spacing: 0.03em;
  }
}

.p-sports__content01-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #000;
  margin: 1.5rem 0 5.375rem 0;
}
@media screen and (max-width: 767px) {
  .p-sports__content01-text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
    margin: 1.25rem 0 3.125rem 0;
    padding: 0.625rem 0;
    line-height: 1.9;
  }
}

.p-sports__content02 {
  width: 100%;
  background: #eb6100;
  padding: 4.875rem 0 3.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-sports__content02 {
    padding: 2.5rem 0 2.5rem 0;
  }
}

.p-sports__content02-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-sports__content02-title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
}

.p-sports__content02-wrapper {
  width: 100%;
}

.p-sports__content02-group {
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.9375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__content02-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 1.875rem 0 0 0;
  }
}

.p-sports__group-img {
  width: 37.5rem;
  margin: 0.875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__group-img {
    width: 100%;
    margin: 0;
  }
}

.p-sports__content02-group img {
  width: 100%;
  aspect-ratio: 600/370;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sports__group-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #fff;
  display: inline-block;
  width: 31.25rem;
  padding: 0 3.625rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__group-text {
    font-size: 0.875rem;
    line-height: 1.8;
    padding: 1.25rem 0;
    width: 100%;
  }
}

.p-sports__content02-group02 {
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 1.5rem 0 0 0;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-sports__content02-group02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: none;
        -ms-flex-pack: none;
            justify-content: none;
    margin: 1.25rem 0 0 0;
    gap: 1.25rem;
  }
}

.p-sports__group02-box {
  width: 27.5625rem;
}
@media screen and (max-width: 767px) {
  .p-sports__group02-box {
    width: 100%;
  }
}

.p-sports__group02-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
  display: inline-block;
  background: #525252;
  width: 100%;
  height: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sports__group02-title {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    letter-spacing: 0.1em;
    height: 2rem;
  }
}

.p-sports__group02-description {
  width: 100%;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.6875rem 1.8125rem 1.875rem 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-sports__group02-description {
    padding: 1.25rem 1.25rem 0.625rem 1.875rem;
    -webkit-column-gap: 1.5625rem;
       -moz-column-gap: 1.5625rem;
            column-gap: 1.5625rem;
  }
}

.p-sports__group02-text {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1875;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-sports__group02-text {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-sports__group02-text::before {
  position: absolute;
  content: "●";
  color: #eb6100;
  left: -1rem;
}

.p-sports__group02-text:last-child {
  grid-column: 1/-1;
}

@media screen and (max-width: 767px) {
  .p-sports__group02-text:nth-child(n+3) {
    grid-column: 1/-1;
  }
}

.p-sports__content02-box02 {
  width: 37.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-sports__content02-box02 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0.625rem;
  }
}

.p-sports__content02-box02 img {
  width: 17.5rem;
  height: 12.5rem;
  aspect-ratio: 280/200;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-sports__content02-box02 img {
    width: auto;
    height: auto;
  }
}

.p-sports__interview-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 5.0625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__interview-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
    margin: 2.5rem 0 0 0;
  }
}

.p-sports__interview-item {
  width: 100%;
}

.p-sports__interview-title {
  font-family: "rift", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0.375rem 0 0.3125rem 1.3125rem;
  text-transform: uppercase;
  display: inline-block;
  width: 10.625rem;
  background: #525252;
  -webkit-clip-path: polygon(0 0, 89% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 89% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .p-sports__interview-title {
    font-size: 1.25rem;
    line-height: 1.1;
    padding: 0.375rem 0 0.125rem 0.9375rem;
    width: 8.125rem;
  }
}

.p-sports__interview-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 0.25rem solid #525252;
  background: #fff;
  padding: 1.625rem 1.875rem 0 1.875rem;
  margin: -0.0625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__interview-group {
    border-top: 0.125rem solid #525252;
    padding: 1.875rem 1.25rem 1.25rem 1.25rem;
    gap: 1.25rem;
  }
}

.p-sports__interview-group img {
  aspect-ratio: 160/160;
  -o-object-fit: cover;
     object-fit: cover;
  width: 10rem;
  margin: 0.1875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__interview-group img {
    width: 6.875rem;
    height: 9.375rem;
    margin: 0;
  }
}

.p-sports__profile {
  width: 100%;
}

.p-sports__profile-name {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-sports__profile-name {
    font-size: 1.5rem;
  }
}

.p-sports__profile-name--e {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  margin: 0.375rem 0 0 0;
}

.p-sports__profile-position {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000;
  margin: 0.9375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__profile-position {
    font-size: 0.875rem;
  }
}

.p-sports__profile-affiliation {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-sports__profile-affiliation {
    font-size: 0.875rem;
    margin: 0.625rem 0 0 0;
  }
}

.p-sports__profile-word {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  margin: 1.6875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__profile-word {
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0;
    background: #fff;
    padding-inline: 1.25rem 0;
  }
}

.p-sports__interview-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1875;
  letter-spacing: 0.05em;
  color: #000;
  background: #fff;
  display: inline-block;
  padding: 1.25rem 1.875rem 1.875rem 1.875rem;
  height: 16.25rem;
  margin: -0.0625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__interview-text {
    font-size: 0.875rem;
    padding: 1.25rem;
    padding-top: 0.25rem;
    height: auto;
    line-height: 1.8;
  }
}

.p-sports__content03 {
  width: 100%;
  padding: 4.9375rem 0 5.3125rem 0;
}
@media screen and (max-width: 767px) {
  .p-sports__content03 {
    padding: 2.5rem 0 2.5rem 0;
  }
}

.p-sports__content03-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5625;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-sports__content03-title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.p-sports__content03-text {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #000;
  margin: 1.125rem 0 0 0;
  padding: 0 0 0 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-sports__content03-text {
    font-size: 1.125rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0.9375rem 0;
  }
}

.p-sports__content03-wrapper {
  width: 100%;
  margin: 1.875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__content03-wrapper {
    margin: 1.25rem 0 0 0;
  }
}

.p-sports__wrapper-label {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.7916666667;
  letter-spacing: 0.1em;
  color: #eb6100;
  display: inline-block;
  background: #f5f5f5;
  width: inherit;
  height: 4.375rem;
  border-left: 0.625rem solid #eb6100;
  padding: 0.9375rem 0.9375rem 0.9375rem 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-sports__wrapper-label {
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    height: 4.375rem;
    border-left: 0.3125rem solid #eb6100;
    padding: 0.4375rem 0.625rem 0.625rem 0.625rem;
  }
}

.p-sports__support-list {
  width: inherit;
  margin: 1.875rem 0 0 0;
}

.p-sports__support-item {
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__support-item {
    margin: 0.9375rem 0 0 0;
  }
}

.p-sports__support-number {
  font-family: "rift", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  margin: 0 0.625rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-sports__support-number {
    font-size: 1.875rem;
    margin: 0 0.3125rem 0 0;
  }
}

.p-sports__support-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-sports__support-title {
    font-size: 1.25rem;
  }
}

.p-sports__support-description {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  border-bottom: 1px solid #525252;
  padding: 1.0625rem 0rem 1.5625rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-sports__support-description {
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0.625rem 0rem 0.9375rem 0;
  }
}

.p-sports__support-description:last-of-type {
  border-bottom: none;
}

.p-sports__content04 {
  width: 100%;
  background: #e6e6e6;
  padding: 3.75rem 0 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-sports__content04 {
    padding: 2.5rem 0 2.5rem 0;
    margin-bottom: 1.25rem;
  }
}

.p-sports__content04-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sports__content04-title {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
}

.p-sports__team-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4375rem;
  margin: 2.0625rem 0 5.5625rem 0;
}
@media screen and (max-width: 767px) {
  .p-sports__team-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0 2.5rem 0;
  }
}

.p-sports__team-group02 {
  width: 100%;
  background: #fff;
  margin: 2.0625rem 0 0 0;
  padding: 1.875rem 3.75rem;
  display: inline-grid;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  row-gap: 0.9375rem;
  grid-template-columns: repeat(3, auto);
}
@media screen and (max-width: 767px) {
  .p-sports__team-group02 {
    grid-template-columns: repeat(1, auto);
    padding: 1.875rem 1.25rem;
    text-align: center;
  }
}

.p-sports__team-type {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-sports__team-type {
    font-size: 1.125rem;
    line-height: 1.3;
  }
}

.p-technique {
  position: relative;
  width: 100%;
}

.p-technique__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-technique__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-technique__wrapper {
  width: 100%;
}

.p-technique__top-text-group {
  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.6875rem;
  margin: 6.25rem 0 5.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-technique__top-text-group {
    margin: 3.75rem 0 2.5rem 0;
  }
}

.p-technique__top-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-technique__top-text {
    font-size: 1.25rem;
    line-height: 1.5;
    white-space: nowrap;
  }
}

.p-technique__top-text--l {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.045em;
  color: #000;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-technique__top-text--l {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-technique__heading {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.17em;
  color: #eb6100;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-technique__heading {
    font-size: 1.25rem;
  }
}

.p-technique__heading-e {
  font-family: "rift", sans-serif;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-technique__heading-e {
    font-size: 2.25rem;
  }
}

.p-technique__card-list {
  margin: 2.1875rem 0 5.625rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  counter-reset: technique-counter;
}
@media screen and (max-width: 767px) {
  .p-technique__card-list {
    grid-template-columns: repeat(1, 1fr);
    margin: 1.875rem 0 3.75rem 0;
    gap: 1.875rem;
  }
}

.p-technique__card-item {
  width: 33.125rem;
}
@media screen and (max-width: 767px) {
  .p-technique__card-item {
    width: 100%;
  }
}

.p-technique__card-item-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  display: inline-block;
  background: #eb6100;
  width: 100%;
  padding: 0.875rem 0.625rem 0.875rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-technique__card-item-title {
    font-size: 1.125rem;
    padding: 0.875rem 0.625rem 0.875rem 2.5rem;
  }
}

.p-technique__card-item-title::before {
  position: absolute;
  counter-increment: technique-counter;
  content: counter(technique-counter);
  font-family: "rift", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  top: 0.5rem;
  left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-technique__card-item-title::before {
    font-size: 1.875rem;
    top: 0.625rem;
    left: 0.9375rem;
  }
}

.p-technique__card-item-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1875;
  letter-spacing: 0.05em;
  color: #000;
  display: inline-block;
  height: 14.4375rem;
  background: #f5f5f5;
  padding: 1.3125rem 1.8125rem 2.1875rem 1.8125rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-technique__card-item-text {
    font-size: 0.875rem;
    height: auto;
    padding: 0.9375rem;
    letter-spacing: 0.01em;
    line-height: 2;
  }
}

.p-technique__box-group {
  margin: 2.1875rem 0 6.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-technique__box-group {
    margin: 1.25rem 0 3.75rem 0;
  }
}

.p-technique__box-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-technique__box-list {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
    justify-items: center;
  }
}

.p-technique__box-item {
  background: #eb6100;
  text-align: center;
  padding: 1.125rem 1.25rem 1.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-technique__box-item {
    width: 100%;
    height: 5rem;
    padding: 0.625rem;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.p-technique__box-item:nth-child(1) {
  padding: 2.4375rem 1.25rem 1.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-technique__box-item:nth-child(1) {
    padding: 0.625rem;
  }
}

.p-technique__box-item:nth-child(even) {
  background: #525252;
}

.p-technique__box-text {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #fff;
  display: inline-block;
}

.p-technique__box-text-l {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0em;
  color: #fff;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-technique__box-text-l {
    font-size: 1.5rem;
  }
}

.p-technique__box-text-m {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0em;
  color: #fff;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-technique__box-text-m {
    font-size: 1.25rem;
  }
}

.p-technique__plot-container {
  width: 100%;
}

.p-technique__text-area {
  width: 100%;
  margin: 1.375rem 0 4.1875rem 0;
}
@media screen and (max-width: 767px) {
  .p-technique__text-area {
    margin: 0.9375rem 0 1.875rem 0;
  }
}

.p-technique__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #000;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-technique__text {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.03em;
  }
}

.p-technique__plot-content {
  width: 100%;
}

.p-technique__plot-content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f5f5f5;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-technique__plot-content-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background: none;
  }
}

.p-technique__plot-title {
  font-size: 1.9375rem;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: #eb6100;
  padding: 1.0625rem 0.75rem 0.9375rem 1rem;
  border-left: 0.625rem solid #eb6100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-technique__plot-title {
    font-size: 1.25rem;
    border-left: 0.3125rem solid #eb6100;
    padding: 0.25rem;
    height: 3.125rem;
    background: #f5f5f5;
    width: 100%;
    padding-left: 0.625rem;
  }
}

.p-technique__plot-titl--e {
  font-family: "rift", sans-serif;
  font-size: 2.375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 0 0.4375rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-technique__plot-titl--e {
    font-size: 1.75rem;
  }
}

.p-technique__plot-title--j {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.092em;
  color: #eb6100;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-technique__plot-title--j {
    color: #eb6100;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
    padding: 0.3125rem 0.625rem 0 0.3125rem;
  }
}

.p-technique__plot-group {
  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.8125rem;
  margin: 2.125rem 0 4.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-technique__plot-group {
    gap: 0.9375rem;
    margin: 1.875rem 0 2.5rem 0;
  }
}

.p-technique__plot-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-technique__plot-text {
    font-size: 1rem;
  }
}

.p-technique__plot-text--e {
  font-family: "rift", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  padding: 0 0.1875rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-technique__plot-text--e {
    font-size: 1.375rem;
    padding: 0;
  }
}

.p-technique__plot-block {
  width: 100%;
  margin: 1.9375rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-technique__plot-block {
    margin: 1.25rem 0 0 0;
    gap: 0;
  }
}

.p-technique__plot-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 2.5625rem 0.4375rem;
  gap: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-technique__plot-box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0.75rem 0 2.5rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 0.625rem;
  }
}

.p-technique__text--l {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-technique__text--l {
    font-size: 1.125rem;
  }
}

.p-technique__plot-title-n {
  border: none;
  background: #fff;
  padding: 0;
  height: auto;
}

.p-technique__plot-titl--el {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-technique__plot-titl--el {
    font-size: 1.75rem;
  }
}

.p-technique__plot-title--jn {
  font-weight: bold;
}

.p-technique__text-area02 {
  margin: 0 0 3.3125rem 0;
}
@media screen and (max-width: 767px) {
  .p-technique__text-area02 {
    margin: 0.5rem 0 2.5rem 0;
  }
}

.p-technique__plot-img {
  width: 100%;
  margin: 0 0 4.6875rem 0;
}
@media screen and (max-width: 767px) {
  .p-technique__plot-img {
    margin: 0 0 3.125rem 0;
  }
}

.p-technique__plot-img img {
  aspect-ratio: 1100/604;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-technique__plot-img img {
    aspect-ratio: 393/1497;
  }
}

.p-technique__cure-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 5.3125rem 0;
}
@media screen and (max-width: 767px) {
  .p-technique__cure-content {
    margin: 0 0 3.125rem 0;
  }
}

.p-technique__cure-title {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
  margin: 0 0 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-technique__cure-title {
    font-size: 1.25rem;
    margin: 0 0 1.25rem 0;
  }
}

.p-technique__heading02 {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000;
  margin: 0 0 1.0625rem 0;
}
@media screen and (max-width: 767px) {
  .p-technique__heading02 {
    font-size: 1.125rem;
    line-height: 1.35;
    margin: 0 0 1.25rem 0;
  }
}

.p-technique__cure-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 2rem 0 1.5625rem 0;
  gap: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-technique__cure-group {
    gap: 0;
    margin-block: 1.25rem;
  }
}

.p-cure-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.0833333333;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-cure-text {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-technique__strong-content {
  width: 100%;
  background: #e6e6e6;
  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.875rem;
  padding: 4.6875rem 0 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .p-technique__strong-content {
    padding: 3.125rem 0 0.9375rem 0;
  }
}

.p-technique__strong-text-group {
  width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  margin: 1.875rem 0 3.375rem 0;
}
@media screen and (max-width: 767px) {
  .p-technique__strong-text-group {
    margin: 1.25rem 0 1.875rem 0;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-technique__strong-content .p-technique__text {
    letter-spacing: 0.05em;
  }
}

.p-technique__card02-list {
  margin: 1.5625rem 0 5.625rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  counter-reset: technique02-counter;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-list {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 0 2.5rem 0;
    gap: 1.875rem;
  }
}

.p-technique__card02-item {
  width: 100%;
  counter-increment: technique02-counter;
}

.p-technique__card02-item:nth-child(5) {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-item:nth-child(5) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-tequchnique__card02-item-group02 .p-technique__card02-item-title {
  padding-left: 2.375rem;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-tequchnique__card02-item-group02 .p-technique__card02-item-title {
    border-left: none;
    padding: 0.625rem 0.625rem 0.625rem 0.9375rem;
  }
}

.p-tequchnique__card02-item-group02 .p-technique__card02-item-title::before {
  display: none;
}

.p-technique__card02-item:nth-child(5) .p-tequchnique__card02-item-group01 .p-technique__card02-text-group,
.p-technique__card02-item:nth-child(5) .p-tequchnique__card02-item-group02 .p-technique__card02-text-group {
  height: 23.75rem;
  background: #fff;
  padding: 1.9375rem 1.6875rem 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-item:nth-child(5) .p-tequchnique__card02-item-group01 .p-technique__card02-text-group,
  .p-technique__card02-item:nth-child(5) .p-tequchnique__card02-item-group02 .p-technique__card02-text-group {
    height: auto;
    padding: 1.25rem 0.9375rem;
  }
}

.p-tequchnique__card02-item-group01 {
  width: 25.3125rem;
}
@media screen and (max-width: 767px) {
  .p-tequchnique__card02-item-group01 {
    width: 100%;
  }
}

.p-tequchnique__card02-item-group02 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-technique__card02-item-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  display: inline-block;
  background: #eb6100;
  width: 100%;
  padding: 0.875rem 0.625rem 0.875rem 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-item-title {
    font-size: 1rem;
    padding: 0.625rem 0.625rem 0.625rem 2.5rem;
  }
}

.p-technique__card02-item-title::before {
  position: absolute;
  content: counter(technique02-counter, decimal-leading-zero);
  font-family: "rift", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  top: 0.5rem;
  left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-item-title::before {
    font-size: 1.625rem;
    top: 0.625rem;
    left: 0.9375rem;
  }
}

.p-technique__card02-text-group {
  height: 14.4375rem;
  background: #fff;
  padding: 1.375rem 1.6875rem 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-text-group {
    height: auto;
    padding: 0.9375rem 0.9375rem;
  }
}

.p-technique__card02-text-group02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-left: 1px solid #eb6100;
  padding: 1.375rem 1.6875rem 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-text-group02 {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-left: none;
    padding: 0.9375rem 1.25rem;
  }
}

.p-technique__card02-text-group02 img {
  aspect-ratio: 190/300;
  padding: 0.6875rem 0.625rem 1.0625rem 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-text-group02 img {
    padding: 0;
  }
}

.p-technique__card02-text-box {
  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.5625rem;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-text-box {
    gap: 0.9375rem;
  }
}

.p-technique__card02-item-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 2.1875;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-item-text {
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    padding: 0;
    line-height: 1.9;
  }
}

.p-technique__card02-item-text02 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-item-text02 {
    font-size: 0.875rem;
    letter-spacing: 0.04em;
  }
}

.p-technique__card02-item-text--l {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-item-text--l {
    font-size: 1.125rem;
  }
}

.p-technique__icon {
  color: #eb6100;
  margin: 0 0.25rem 0 0;
}

.p-technique__card02-text-title {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  display: inline-block;
  margin: 0 0 1.125rem 0;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-text-title {
    font-size: 1.125rem;
    line-height: 1.35;
    margin: 0 0 0.625rem 0;
  }
}

.p-technique__card02-text-box02 {
  padding: 0.5rem 0.625rem 0.75rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-text-box02 {
    padding: 0;
  }
}

.p-technique__card02-text-wrapper {
  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.1875rem;
}
@media screen and (max-width: 767px) {
  .p-technique__card02-text-wrapper {
    margin: 1.875rem 0 0 0;
  }
}

.p-test {
  color: blue;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-test {
    font-size: 1.5625rem;
  }
}

.p-thanks {
  text-align: center;
  padding-block: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding-block: 6.25rem;
  }
}

.p-thanks__title {
  font-weight: bold;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: 1.125rem;
  }
}

.p-thanks__text {
  font-size: 1rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__text {
    font-size: 0.875rem;
  }
}

.p-thanks__btn {
  width: 16.25rem;
  margin-top: 1.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-thanks__btn {
    width: 12.5rem;
  }
}

.p-thanks__btn a {
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: 0;
  color: #fff;
  background-color: #eb6100;
  display: block;
  text-align: center;
  padding: 1.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-thanks__btn a {
    font-size: 1rem;
    padding: 0.8125rem;
  }
}

/* 完了画面ではリード文を非表示にする */
.mw_wp_form_complete .p-form__lead {
  display: none;
}

.p-top-benefits__wrapper {
  background: url(../images/top/benefits-bg.png) no-repeat center/cover;
  padding-block: 5rem 3.125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__wrapper {
    background-position: -16.625rem;
    padding-block: 2.5rem;
  }
}

.p-top-benefits__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1.5625rem 1.25rem;
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__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: 1.25rem;
  }
}

.p-top-benefits__item {
  background-color: #fff;
  -webkit-box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, .25);
          box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, .25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 21.875rem;
  padding: 1.25rem 0.875rem 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__item {
    min-height: auto;
    padding: 1.25rem;
  }
}

.p-top-benefits__item:nth-child(n+3):nth-child(-n+6) {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__item:nth-child(n+3):nth-child(-n+6) {
    margin-top: 0;
  }
}

.p-top-benefits__item.card-01,
.p-top-benefits__item.card-02 {
  min-height: 18.75rem;
  padding: 1.25rem 2.125rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__item.card-01,
  .p-top-benefits__item.card-02 {
    min-height: auto;
    padding: 1.25rem;
  }
}

.p-top-benefits__item.card-01 {
  grid-column: 1/3;
  grid-row: 1;
}

.p-top-benefits__item.card-02 {
  grid-column: 3/5;
  grid-row: 1;
}

.p-top-benefits-item__title {
  font-size: 1.875rem;
  line-height: 1.0666666667;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #eb6100;
  text-align: center;
  border-bottom: 0.125rem solid #eb6100;
  width: 100%;
  padding-bottom: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-benefits-item__title {
    font-size: 1.5rem;
  }
}

.p-top-benefits__item.card-01 .p-top-benefits-item__title,
.p-top-benefits__item.card-02 .p-top-benefits-item__title {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__item.card-01 .p-top-benefits-item__title,
  .p-top-benefits__item.card-02 .p-top-benefits-item__title {
    font-size: 1.5rem;
  }
}

.p-top-benefits-item__image-wrapper {
  height: 9.875rem;
  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;
}

.p-top-benefits__item.card-01 .p-top-benefits-item__image-wrapper,
.p-top-benefits__item.card-02 .p-top-benefits-item__image-wrapper {
  height: 9.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__item.card-01 .p-top-benefits-item__image-wrapper,
  .p-top-benefits__item.card-02 .p-top-benefits-item__image-wrapper {
    height: 8.75rem;
  }
}

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

.p-top-benefits__item.card-01 .p-top-benefits-item__image {
  width: 22.635rem;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__item.card-01 .p-top-benefits-item__image {
    width: 16.875rem;
    margin-left: -0.9375rem;
  }
}

.p-top-benefits__item.card-01 .p-top-benefits-item__image img {
  aspect-ratio: 362.16/144.98;
}

.p-top-benefits__item.card-02 .p-top-benefits-item__image {
  width: 26.25rem;
  margin-top: -1.0625rem;
  margin-left: -2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__item.card-02 .p-top-benefits-item__image {
    width: 18.75rem;
    margin-top: 0;
    margin-left: -0.625rem;
  }
}

.p-top-benefits__item.card-02 .p-top-benefits-item__image img {
  aspect-ratio: 412.01/120;
}

.p-top-benefits__item.card-03 .p-top-benefits-item__image {
  width: 8.8025rem;
}

.p-top-benefits__item.card-03 .p-top-benefits-item__image img {
  aspect-ratio: 140.84/134.12;
}

.p-top-benefits__item.card-04 .p-top-benefits-item__image {
  width: 7.25rem;
}

.p-top-benefits__item.card-04 .p-top-benefits-item__image img {
  aspect-ratio: 116/116;
}

.p-top-benefits__item.card-05 .p-top-benefits-item__image {
  width: 8.018125rem;
  margin-top: 0.625rem;
  margin-left: -1.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__item.card-05 .p-top-benefits-item__image {
    margin-top: 0;
  }
}

.p-top-benefits__item.card-05 .p-top-benefits-item__image img {
  aspect-ratio: 128.29/107;
}

.p-top-benefits__item.card-06 .p-top-benefits-item__image {
  width: 10.866875rem;
}

.p-top-benefits__item.card-06 .p-top-benefits-item__image img {
  aspect-ratio: 173.87/121.92;
}

.p-top-benefits__item.card-07 .p-top-benefits-item__image {
  width: 9.8125rem;
  margin-left: -1.25rem;
}

.p-top-benefits__item.card-07 .p-top-benefits-item__image img {
  aspect-ratio: 157/110.16;
}

.p-top-benefits__item.card-08 .p-top-benefits-item__image {
  width: 9.80625rem;
  margin-top: -0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__item.card-08 .p-top-benefits-item__image {
    margin-top: 0;
  }
}

.p-top-benefits__item.card-08 .p-top-benefits-item__image img {
  aspect-ratio: 156.9/131.81;
}

.p-top-benefits__item.card-09 .p-top-benefits-item__image {
  width: 10.271875rem;
  margin-top: -1.5rem;
  margin-left: 0.375rem;
}

.p-top-benefits__item.card-09 .p-top-benefits-item__image img {
  aspect-ratio: 164.35/137.77;
}

.p-top-benefits__item.card-10 .p-top-benefits-item__image {
  width: 12.5rem;
  margin-top: -0.5rem;
  margin-left: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__item.card-10 .p-top-benefits-item__image {
    margin-top: 0;
  }
}

.p-top-benefits__item.card-10 .p-top-benefits-item__image img {
  aspect-ratio: 200/137;
}

.p-top-benefits-item__text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.p-top-benefits-item__text-note {
  font-size: 0.6875rem;
  line-height: 2.1818181818;
  letter-spacing: 0.05em;
  width: 100%;
  text-align: left;
}

.p-top-benefits__item:not(:nth-child(1)):not(:nth-child(2)) .p-top-benefits-item__text {
  letter-spacing: 0.05em;
}

.p-top-benefits__next-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-benefits__next-btn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-top-faq {
  background-color: #525252;
  padding-block: 5rem 3.9375rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-faq {
    padding-block: 2.5rem;
  }
}

.p-top-faq__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-top-faq__category-title {
  font-size: 2rem;
  line-height: 0.78125;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  border-bottom: 0.125rem solid #fff;
  padding-block: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__category-title {
    font-size: 1.25rem;
    padding-block: 2.5rem 1.25rem;
  }
}

.p-top-faq__question::before,
.p-top-faq__answer::before {
  font-size: 4rem;
  line-height: normal;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "rift", sans-serif;
  position: absolute;
  left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__question::before,
  .p-top-faq__answer::before {
    font-size: 2.8125rem;
    left: 0.9375rem;
  }
}

.p-top-faq__question {
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  padding: 1.9375rem 1.25rem 1.9375rem 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-faq__question {
    font-size: 1rem;
    padding: 1.125rem 0.625rem 1.125rem 3.75rem;
  }
}

.p-top-faq__question::before {
  content: "Q.";
  color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-top-faq__answer {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 500;
  background-color: #fff;
  padding: 1.1875rem 1.25rem 1.1875rem 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-faq__answer {
    font-size: 0.875rem;
    padding: 0.9375rem 0.625rem 0.9375rem 3.75rem;
  }
}

.p-top-faq__answer::before {
  content: "A.";
  color: #eb6100;
  top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__answer::before {
    top: 0.5rem;
  }
}

.p-top-faq__item:first-child .p-top-faq__answer-list,
.p-top-faq__answer-item-list {
  list-style: disc;
  margin-left: 1.875rem;
}

.p-top-faq__next-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__next-btn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-top-interview {
  margin-top: -4.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-interview {
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
  }
}

.p-top-interview__wrapper {
  background: url(../images/top/interview-bg.png) no-repeat left/cover;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-interview__wrapper {
    background: url(../images/top/interview-bg_sp.png) no-repeat center/contain;
    background-position: bottom;
    padding-bottom: 1.6875rem;
  }
}

.p-top-interview__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p-top-interview__title-wrapper {
  text-align: left;
}

.p-top-interview__text {
  font-size: 1rem;
  line-height: 2.1875;
  letter-spacing: 0;
  font-weight: 500;
  margin-top: 0.25rem;
  max-width: 43.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-interview__text {
    font-size: 0.875rem;
    letter-spacing: -0.05em;
    margin-top: 1.25rem;
  }
}

.p-top-interview__slider {
  padding-block: 7.125rem 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-interview__slider {
    padding-block: 3.75rem 2.3125rem;
  }
}

.p-top-interview__slider-slide.swiper-slide {
  width: 23.6111111111vw;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: translateY(10.5rem) scale(1);
          transform: translateY(10.5rem) scale(1);
}
@media screen and (max-width: 767px) {
  .p-top-interview__slider-slide.swiper-slide {
    width: 11.625rem;
  }
}

.p-top-interview__slider .swiper-slide-prev,
.p-top-interview__slider .swiper-slide-next {
  -webkit-transform: translateY(5.625rem) scale(1);
          transform: translateY(5.625rem) scale(1);
}
@media screen and (max-width: 767px) {
  .p-top-interview__slider .swiper-slide-prev,
  .p-top-interview__slider .swiper-slide-next {
    -webkit-transform: translateY(3.0625rem) scale(1);
            transform: translateY(3.0625rem) scale(1);
  }
}

.p-top-interview__slider .swiper-slide-active {
  -webkit-transform: translateY(0) scale(1.088);
          transform: translateY(0) scale(1.088);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-interview__slider .swiper-slide-active {
    -webkit-transform: translateY(0) scale(1.078);
            transform: translateY(0) scale(1.078);
  }
}

.p-top-interview__image img {
  aspect-ratio: 340/450;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-interview__image img {
    aspect-ratio: 194.75/257.76;
  }
}

.p-top-interview__content {
  background-color: #fff;
  padding-bottom: 0.625rem;
  display: none;
}

.p-top-interview__slider .swiper-slide-active .p-top-interview__content {
  display: block;
}

.p-top-interview-content__position {
  font-size: 0.875rem;
  line-height: normal;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  background-color: #303030;
  padding-block: 0.125rem 0.1875rem;
  margin-top: -0.0625rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-interview-content__position {
    font-size: 0.625rem;
  }
}

.p-top-interview-content__name-en {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  color: #222222;
  font-weight: 600;
  font-family: "rift", sans-serif;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-interview-content__name-en {
    font-size: 0.6875rem;
    padding-top: 0;
  }
}

.p-top-interview-content__name {
  font-size: 2rem;
  line-height: 0.9375;
  letter-spacing: 0.05em;
  color: #222222;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-interview-content__name {
    font-size: 1.145625rem;
  }
}

.p-top-interview-content__specialty {
  font-size: 0.875rem;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-interview-content__specialty {
    font-size: 0.6875rem;
    padding-top: 0.3125rem;
  }
}

.p-top-interview__next-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-right: 10.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-interview__next-btn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 1.25rem;
    margin-right: 0;
  }
}

.p-top-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-message__content {
  width: 50%;
  padding-block: 6.25rem 11.25rem;
  padding-right: 3.5625rem;
  padding-left: max(1.5625rem, (100vw - 1150px) / 2 + 1.5625rem);
}
@media screen and (max-width: 767px) {
  .p-top-message__content {
    width: 100%;
    padding: 2.5rem 1.25rem;
  }
}
@media screen and (min-width: 1441px) {
  .p-top-message__content {
    padding-left: 10.625rem;
  }
}

.p-top-message__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.125rem;
  margin-top: 0.9375rem;
}

.p-top-message__position {
  font-size: 1.875rem;
  line-height: 0.9;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "rift", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top-message__position {
    font-size: 1.25rem;
  }
}

.p-top-message__name {
  font-size: 2.125rem;
  line-height: 0.7941176471;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-message__name {
    font-size: 1.375rem;
  }
}

.p-top-message__text {
  font-size: 1rem;
  line-height: 2.1875;
  letter-spacing: 0;
  font-weight: 500;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__text {
    margin-top: 1.875rem;
  }
}

.p-top-message__next-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 2.5rem 0.375rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-message__next-btn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 2.5rem 0 0 0;
  }
}

.p-top-message__image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-top-message__image {
    width: 100%;
  }
}

.p-top-message__image img {
  aspect-ratio: 720/870;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-message__loop {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: absolute;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
}

.p-top-message__loop-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: loop-left 50s linear infinite;
          animation: loop-left 50s linear infinite;
}

.p-top-message__loop-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-size: 11.25rem;
  line-height: 0.73;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "rift", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top-message__loop-text {
    font-size: 8.125rem;
  }
}

.p-top-message__loop-base {
  -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
          clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-top-message__loop-base {
    display: none;
  }
}

.p-top-message__loop-base .p-top-message__loop-text {
  color: #ebebeb;
  opacity: 1;
}

.p-top-message__loop-over {
  -webkit-clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
          clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
@media screen and (max-width: 767px) {
  .p-top-message__loop-over {
    -webkit-clip-path: none;
            clip-path: none;
  }
}

.p-top-message__loop-over .p-top-message__loop-text {
  color: #fff;
  opacity: 0.5;
}

@-webkit-keyframes loop-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes loop-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-top-mv {
  width: 100%;
  height: min(56.25vw, 50.625rem);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top-mv {
    height: 100%;
    margin-top: 3.125rem;
  }
}

.p-top-mv__content {
  width: 50%;
  height: 100%;
  max-height: 1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: min(6.25vw, 90px);
  padding-left: min(5.9027777778vw, 113px);
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .p-top-mv__content {
    width: 100%;
    max-height: none;
    display: block;
    padding: 0;
    overflow: hidden;
  }
}

.p-top-mv__content-wrapper {
  margin-top: min(8.3333333333vw, 160px);
}
@media screen and (max-width: 767px) {
  .p-top-mv__content-wrapper {
    margin-top: 0;
  }
}

.p-top-mv__image {
  width: min(60.2777777778vw, 1157px);
  position: relative;
  max-width: none;
}
@media screen and (max-width: 767px) {
  .p-top-mv__image {
    width: 23.4375rem;
    top: 1.875rem;
    left: 1rem;
  }
}

.p-top-mv__image img {
  aspect-ratio: 717.1/204.36;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-top-mv__image img {
    aspect-ratio: 343.69/102.18;
  }
}

.p-top-mv__image::before {
  content: "";
  background: url(../images/top/mv-point.png) no-repeat center/contain;
  aspect-ratio: 101/101.6;
  width: min(7.0138888889vw, 135px);
  position: absolute;
  top: max(-2.6388888889vw, -56px);
  left: min(0.2777777778vw, 5px);
}
@media screen and (max-width: 767px) {
  .p-top-mv__image::before {
    width: 2.1875rem;
    top: -0.5rem;
    left: 0;
  }
}

.p-top-mv__btn {
  width: min(25.4756944444vw, 489px);
  margin: max(-2.9166666667vw, -56px) 0 0 min(6.3888888889vw, 123px);
}
@media screen and (max-width: 767px) {
  .p-top-mv__btn {
    width: 100%;
    background-color: #525252;
    padding-block: 2.375rem;
    margin: 25.5625rem 0 0 0;
  }
}

.p-top-mv .c-btn__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(2.0138888889vw, 39px);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-top-mv .c-btn__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 19.6875rem;
    gap: 1.0625rem;
    margin-inline: auto;
  }
}

.p-top-mv .c-btn {
  gap: min(1.1111111111vw, 21px);
  width: 100%;
  padding: min(1.3194444444vw, 25px) min(1.8055555556vw, 35px) min(1.1805555556vw, 23px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-mv .c-btn {
    height: auto;
    gap: 0.875rem;
    padding: 0.9375rem;
  }
}

.p-top-mv .c-btn__title {
  font-size: min(3.125vw, 60px);
  line-height: 0.74;
  letter-spacing: 0.05em;
  padding: 0 0 0 min(1.3888888889vw, 27px);
}
@media screen and (max-width: 767px) {
  .p-top-mv .c-btn__title {
    font-size: 2rem;
    color: #fff;
  }
}

.p-top-mv .c-btn__title::before {
  aspect-ratio: 1/1;
  width: min(2.2916666667vw, 44px);
  height: auto;
  top: 0;
  left: max(-1.25vw, -24px);
}
@media screen and (max-width: 767px) {
  .p-top-mv .c-btn__title::before {
    width: 1.375rem;
    left: -1.3125rem;
  }
}

.p-top-mv .c-btn__text {
  font-size: min(1.1111111111vw, 21px);
  line-height: 0.83125;
}
@media screen and (max-width: 767px) {
  .p-top-mv .c-btn__text {
    font-size: 0.875rem;
    line-height: 0.4571428571;
  }
}

@media screen and (max-width: 767px) {
  .p-top-mv .c-btn:hover {
    background-color: #eb6100;
  }
}

@media screen and (max-width: 767px) {
  .p-top-mv .c-btn:hover .c-btn__title,
  .p-top-mv .c-btn:hover .c-btn__text {
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-top-mv .c-btn:hover .c-btn__title::before {
    background-image: url("../images/c-parts/orange-btn.png");
  }
}

@media screen and (max-width: 767px) {
  .p-top-mv .c-btn--w {
    background-color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-top-mv .c-btn--w .c-btn__title,
  .p-top-mv .c-btn--w .c-btn__text {
    color: #eb6100;
  }
}

.p-top-mv .c-btn__title--w::before {
  aspect-ratio: 1/1;
  width: min(2.4305555556vw, 47px);
  height: auto;
  top: 0;
  left: max(-1.5972222222vw, -31px);
}
@media screen and (max-width: 767px) {
  .p-top-mv .c-btn__title--w::before {
    background: url(../images/c-parts/white-btn.png) no-repeat center/contain;
    width: 1.3125rem;
    left: -1.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-mv .c-btn--w:hover {
    background-color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-top-mv .c-btn--w:hover .c-btn__title--w,
  .p-top-mv .c-btn--w:hover .c-btn__text--w {
    color: #eb6100;
  }
}

@media screen and (max-width: 767px) {
  .p-top-mv .c-btn--w:hover .c-btn__title--w::before {
    background-image: url(../images/c-parts/white-btn.png);
  }
}

.p-top-mv__bg-text-wrapper {
  margin-top: auto;
  margin-left: min(5.7638888889vw, 111px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-mv__bg-text-wrapper {
    margin-left: 0;
    -webkit-writing-mode: sideways-lr;
        -ms-writing-mode: sideways-lr;
            writing-mode: sideways-lr;
    position: absolute;
    right: 0;
    bottom: 15.4375rem;
    overflow: visible;
  }
}

.p-top-mv__bg-text {
  font-size: min(6.5270833333vw, 125px);
  line-height: 1.0213852538;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "rift", sans-serif;
  color: #eaeaea;
  position: relative;
  top: min(0.9722222222vw, 19px);
}
@media screen and (max-width: 767px) {
  .p-top-mv__bg-text {
    font-size: 3.3225rem;
    line-height: 0.7;
    letter-spacing: 0.026em;
    color: rgba(255, 255, 255, .7);
  }
}

.p-top-mv__bg-text span {
  font-size: min(10.09375vw, 194px);
  line-height: 0.6604747162;
  letter-spacing: 0;
  padding-left: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-mv__bg-text span {
    font-size: 5.138125rem;
    letter-spacing: -0.02em;
    padding-left: 0;
    padding-bottom: 0.5625rem;
  }
}

.p-top-mv__slider {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-mv__slider {
    width: 100%;
    height: 34.0625rem;
    position: absolute;
    top: -0.75rem;
    left: 0;
    overflow: visible;
  }
}

.p-top-mv__slide-image {
  width: 100%;
  height: 100%;
}

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

.p-top-news {
  background-color: #525252;
  padding: 1.375rem 1.5625rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    height: auto;
    top: -0.0625rem;
    padding: 1.875rem 1.25rem 2.5rem;
  }
}

.p-top-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-top-news__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-news__heading {
  width: 27.3381294964%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__heading {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-right: 0;
  }
}

.p-top-news__heading::after {
  content: "";
  width: 0.125rem;
  height: 6.4125rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-news__heading::after {
    content: none;
  }
}

.p-top-news__title-wrapper {
  position: relative;
}

.p-top-news__label {
  display: block;
  visibility: hidden;
  height: 0;
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
}

.p-top-news__title {
  font-size: 5.85375rem;
  line-height: 0.6011103993;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "rift", sans-serif;
  color: #fff;
  position: absolute;
  top: 0.8125rem;
  left: -0.1875rem;
  white-space: nowrap;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-top-news__title {
    font-size: 3.125rem;
  }
}

.p-top-news__next {
  padding-top: 5.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-news__next {
    padding-top: 3.4375rem;
  }
}

.p-top-news__next::before {
  content: "";
  background: url(../images/top/news-item.png) no-repeat center/contain;
  aspect-ratio: 168.79/61.63;
  width: 10.549375rem;
  position: absolute;
  top: 45%;
  left: -10.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-news__next::before {
    content: none;
  }
}

.p-top-news__next .c-next__group {
  gap: 0.625rem;
}

.p-top-news__next .c-next__text {
  font-size: 0.75rem;
}

.p-top-news__next .c-next__title-box {
  gap: 0.9375rem;
}

.p-top-news__next .c-title__icon {
  width: 1.44625rem;
  height: auto;
  aspect-ratio: 1/1;
}

.p-top-news__next .c-next__title {
  font-size: 1.444375rem;
}

.p-top-news__list {
  width: 72.6618705036%;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.p-top-news__list .p-news-content {
  padding: 0;
  margin-top: 0;
}
.p-top-news__list .p-news-content__item {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}
.p-top-news__list .p-news-content__card {
  border-bottom: none;
  padding-block: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list .p-news-content__card {
    padding-block: 0.9375rem;
  }
}
.p-top-news__list .p-news-content__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-news__list .p-news-content__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.3125rem;
  }
}
.p-top-news__list .p-news-content__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding: 0 1.125rem 0 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-news__list .p-news-content__meta {
    padding-inline: 0;
  }
}
.p-top-news__list .p-news-content__meta::after {
  content: "";
  width: 0.0625rem;
  height: 0.75rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-news__list .p-news-content__meta::after {
    content: none;
  }
}
.p-top-news__list .p-news-content__date {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-news__list .p-news-content__date {
    font-size: 0.875rem;
  }
}
.p-top-news__list .p-news-content__category {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 600;
  background-color: #ec6a32;
  border-radius: 0.625rem;
  min-width: 4.5rem;
  display: inline-block;
  text-align: center;
  padding: 0.25rem 0.75rem 0.375rem;
}
.p-top-news__list .p-news-content__title {
  font-size: 1rem;
  font-weight: 400;
  padding-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list .p-news-content__title {
    font-size: 0.875rem;
    padding-left: 0;
  }
}
.p-top-news__list .p-news-content__image,
.p-top-news__list .p-news-content__excerpt {
  display: none;
}

.p-top-philosophy__wrapper {
  background: url(../images/top/philosophy-bg.png) no-repeat center/cover;
  padding-block: 3.75rem 3.125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__wrapper {
    background: url(../images/top/philosophy-bg_sp.png) no-repeat center/cover;
    padding-block: 1.25rem 1.5625rem;
    position: relative;
  }
}

.p-top-philosophy__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-top-philosophy .c-title__description {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-philosophy .c-title__heading {
    font-size: 4.25rem;
    line-height: normal;
    letter-spacing: 0.05em;
    margin-top: -1rem;
  }
}

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

.p-top-philosophy__content-text {
  font-size: 1.5rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  max-width: 28.125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__content-text {
    font-size: 0.875rem;
    line-height: 1.63;
    letter-spacing: 0.05em;
  }
}

.p-top-philosophy__content-image {
  width: 22.28125rem;
  margin-top: 2.5rem;
  margin-inline: auto 23.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__content-image {
    width: 8.9375rem;
    margin-top: 0.5625rem;
    margin-inline: auto;
  }
}

.p-top-philosophy__content-image img {
  aspect-ratio: 356.5/66.5;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-philosophy__next-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-philosophy__next-btn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    position: absolute;
    top: 7.0625rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-top-trainer-support {
  padding-block: 6.25rem 5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-trainer-support {
    padding-block: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-trainer-support__title .c-title__heading {
    font-size: 3.125rem;
  }
}

.p-top-trainer-support__text {
  font-size: 1rem;
  line-height: 2.1875;
  letter-spacing: 0;
  font-weight: 500;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-trainer-support__text {
    font-size: 0.875rem;
  }
}

.p-top-trainer-support__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-trainer-support__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.9375rem 0;
    margin-top: 1.875rem;
  }
}

.p-top-trainer-support__item {
  aspect-ratio: 1/1;
  width: 15.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-trainer-support__item {
    width: 47.7611940299%;
  }
}

.p-top-trainer-support-item {
  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;
  border: 0.0625rem solid #221714;
}

.p-top-trainer-support-item__image img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-trainer-support__item:nth-child(1) .p-top-trainer-support-item__image {
  width: 12.06rem;
}
@media screen and (max-width: 767px) {
  .p-top-trainer-support__item:nth-child(1) .p-top-trainer-support-item__image {
    width: 7.8125rem;
  }
}

.p-top-trainer-support__item:nth-child(2) .p-top-trainer-support-item__image {
  width: 13.4425rem;
}
@media screen and (max-width: 767px) {
  .p-top-trainer-support__item:nth-child(2) .p-top-trainer-support-item__image {
    width: 8.6875rem;
  }
}

.p-top-trainer-support__item:nth-child(3) .p-top-trainer-support-item__image {
  width: 15.4375rem;
}

.p-top-trainer-support__item:nth-child(4) .p-top-trainer-support-item__image {
  width: 11.79375rem;
}
@media screen and (max-width: 767px) {
  .p-top-trainer-support__item:nth-child(4) .p-top-trainer-support-item__image {
    width: 7.625rem;
  }
}

.p-top-trainer-support__item:nth-child(4) .p-top-trainer-support-item__image img {
  aspect-ratio: 188.7/216.31;
}

.p-top-trainer-support__next-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-trainer-support__next-btn {
    margin-top: 2.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-m1 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-m1__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-m1__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-m1__container {
  position: relative;
  width: 100%;
}

.p-m1__content {
  position: relative;
  width: inherit;
  padding: 5.9375rem 0 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-m1__content {
    padding: 2.5rem 0 2.5rem 0;
  }
}

.p-m1__content-title {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-m1__content-title {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
}

.p-m1__content-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin: 1.25rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-m1__content-text {
    font-size: 0.875rem;
    margin: 1.25rem 0 0 0;
  }
}

.p-m1__img-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin: 3.75rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-m1__img-list {
    margin: 2.5rem 0 0 0;
  }
}

.p-m1__img-item {
  width: 100%;
}

.p-m1__img-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* loop */
.p-m1__loop {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 121.9%;
  overflow: hidden;
  top: 0;
  left: -1.4375rem;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .p-m1__loop {
    display: none;
  }
}

.p-m1__loop-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-family: "rift", sans-serif;
  font-size: 11rem;
  line-height: 1;
  overflow: hidden;
  color: #ebebeb;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 1439px) {
  .p-m1__loop-text {
    display: none;
  }
}

.p-m1__loop-text:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.p-m1__loop-text:nth-child(even) {
  animation: loop2 50s linear infinite reverse;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.p-why {
  position: relative;
  width: 100%;
}

.p-why__container::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/section-why/why-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 12.125rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-why__container::before {
    top: 6.25rem;
    background-position: right;
  }
}

.p-why__container {
  position: relative;
  width: inherit;
  padding: 10.125rem 0 8.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-why__container {
    padding: 3.125rem 0 3.75rem 0;
  }
}

.p-why__content01 {
  width: inherit;
  margin: 2.1875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-why__content01 {
    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;
  }
}

.p-why__pc-img {
  width: 100%;
  aspect-ratio: 1100/1192;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-why__pc-img {
    display: none;
  }
}

.p-why__sp-img {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-why__sp-img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-why__content02 {
  width: inherit;
  margin: 2.5rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-why__content02 {
    margin: 3.75rem 0 0 0;
  }
}

@media screen and (max-width: 767px) {
  .p-why__container::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10%;
    background: #D9D9D9;
    bottom: 0;
    z-index: -2;
  }
}

@media screen and (max-width: 767px) {
  .p-why__title {
    font-size: 3.375rem;
  }
}

.p-work-style {
  width: 100%;
  position: relative;
}

.p-work-style__title {
  position: absolute;
  top: 6.74vw;
  left: 11.8vw;
}
@media screen and (max-width: 767px) {
  .p-work-style__title {
    top: 2.1875rem;
    left: 1.25rem;
  }
}

.img {
  width: 100%;
  aspect-ratio: 1440/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img {
    aspect-ratio: 375/160;
    -o-object-position: right center;
       object-position: right center;
  }
}

.p-work-style__container {
  width: 100%;
}

.p-work-style__content {
  width: inherit;
  padding: 5.4375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__content {
    padding: 3.75rem 0 0 0;
  }
}

.p-work-style__content-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-work-style__content-title {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.p-work-style__content-title--e {
  font-family: "rift", sans-serif;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #eb6100;
}
@media screen and (max-width: 767px) {
  .p-work-style__content-title--e {
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}

.p-work-style__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 2.0625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin: 0;
  }
}

.p-work-style__item {
  height: 33.75rem;
  background: #eb6100;
  padding: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-work-style__item {
    height: auto;
    padding: 0.9375rem;
    margin: 1.875rem 0 0 0;
  }
}

.p-work-style__item:nth-child(2) {
  background: #525252;
}

.p-work-style__item:nth-child(3) {
  height: 30rem;
  background: #525252;
}
@media screen and (max-width: 767px) {
  .p-work-style__item:nth-child(3) {
    height: auto;
  }
}

.p-work-style__item:nth-child(3) .p-work-style__item-text-area {
  height: 14.9375rem;
}
@media screen and (max-width: 767px) {
  .p-work-style__item:nth-child(3) .p-work-style__item-text-area {
    height: auto;
  }
}

.p-work-style__item:nth-child(4) {
  height: 30rem;
}
@media screen and (max-width: 767px) {
  .p-work-style__item:nth-child(4) {
    height: auto;
  }
}

.p-work-style__item:nth-child(4) .p-work-style__item-text-area {
  height: 14.9375rem;
}
@media screen and (max-width: 767px) {
  .p-work-style__item:nth-child(4) .p-work-style__item-text-area {
    height: auto;
  }
}

.p-work-style__item-title {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #fff;
  text-align: center;
  border-bottom: 0.125rem solid #fff;
  padding: 0 0 0.8125rem 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-title {
    font-size: 1.875rem;
    line-height: 1;
    letter-spacing: 0.2em;
    padding: 0.9375rem 0;
  }
}

.p-work-style__item-heading {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin: 0.9375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-heading {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.05em;
    margin: 0.4375rem 0 0 0;
  }
}

.p-work-style__item-heading--l {
  font-family: "rift", sans-serif;
  font-size: 7.375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0.6875rem 0 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-heading--l {
    font-size: 3.75rem;
    line-height: 1;
    letter-spacing: 0.01em;
    margin: 0 0.3125rem 0 0.3125rem;
  }
}

.p-work-style__item-text-area {
  height: 18.75rem;
  background: #fff;
  padding: 1rem 1.125rem 1.125rem 1.0625rem;
  margin: 1.1875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-text-area {
    height: auto;
    padding: 0.9375rem 1.25rem;
    margin: 0.625rem 0 0 0;
  }
}

.p-work-style__item-text-area:nth-last-child(3) {
  height: 14.9375rem;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-text-area:nth-last-child(3) {
    height: auto;
  }
}

.p-work-style__item-text-area:nth-child(4) {
  height: 14.9375rem;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-text-area:nth-child(4) {
    height: auto;
  }
}

.p-work-style__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-text {
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.p-work-style__content02 {
  width: 100%;
  padding: 5.0625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__content02 {
    padding: 3.75rem 0 0 0;
  }
}

.p-work-style__list02 {
  display: grid;
  grid-template-columns: 46.875rem 19.375rem;
  gap: 2.5rem;
  margin: 1.375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__list02 {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin: 0;
  }
}

.p-work-style__item02 {
  height: 26.375rem;
}
@media screen and (max-width: 767px) {
  .p-work-style__item02 {
    height: auto;
  }
}

.p-work-style__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-work-style__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-work-style__wrapper::before {
  content: "";
  position: absolute;
  top: 1.3125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.1875rem;
  height: 83%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-work-style__wrapper::before {
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    width: 0.125rem;
    height: 100%;
  }
}

.p-work-style__item-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-group {
    padding: 0.9375rem 0;
  }
}

.p-work-style__item-heading--s {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin: 0.125rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-heading--s {
    font-size: 1.25rem;
    margin: 0;
  }
}

.p-work-style__item-heading--ls {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-heading--ls {
    margin: 0 0.3125rem;
  }
}

.p-work-style__item-lead {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0.125rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-lead {
    font-size: 1rem;
  }
}

.p-work-style__item-text-area02 {
  height: 8.875rem;
  margin: 0.5625rem 0 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-text-area02 {
    height: auto;
  }
}

.p-work-style__item-text--o {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #eb6100;
  display: inline-block;
  margin: 0.9375rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-text--o {
    font-size: 1.125rem;
    line-height: 1.5;
    margin: 0;
  }
}

.p-work-style__item-text02 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0.5625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-text02 {
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0.625rem 0 0 0;
    text-align: left;
  }
}

.p-work-style__heading-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 1.6875rem 0 2.0625rem;
  margin: 0 0 1.375rem 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-work-style__heading-group {
    padding: 0 1.875rem;
    margin: 0 0 1.375rem 0;
  }
}

.p-work-style__item-heading--lw {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  margin: 0.625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-heading--lw {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}

.p-work-style__item-title02 {
  letter-spacing: 0.05em;
}

.p-work-style__content03 {
  width: 100%;
  padding: 5.1875rem 0 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__content03 {
    padding: 3.75rem 0 1.25rem 0;
  }
}

.p-work-style__list03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 2.125rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__list03 {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin: 0;
  }
}

.p-work-style__item.p-work-style__item03 {
  background: #f5f5f5;
  height: 20.625rem;
  padding: 1.4375rem 1.25rem 1.4375rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-work-style__item.p-work-style__item03 {
    height: auto;
    padding: 1.25rem 1.25rem;
  }
}

.p-work-style__item-title03 {
  letter-spacing: 0.1em;
  color: #eb6100;
  border-bottom: 0.125rem solid #eb6100;
}

.p-work-style__item03:last-child {
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .p-work-style__item03:last-child {
    grid-column: span 1;
  }
}

.p-work-style__wrapper02 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-work-style__wrapper02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-work-style__item03 img {
  width: 15.5rem;
  height: 8.625rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0.625rem 0 0 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-work-style__item03 img {
    margin: 0.625rem auto;
    max-width: 13.75rem;
    width: 100%;
    height: auto;
  }
}

.p-work-style__item03:last-child img {
  width: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-work-style__item03:last-child img {
    width: auto;
    width: initial;
  }
}

.p-work-style__item-text-area03 {
  height: 5.8125rem;
  margin: 0.625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-text-area03 {
    height: auto;
  }
}

.p-work-style__item-text-area04 {
  width: 30.25rem;
  margin: 1.5625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-text-area04 {
    width: 100%;
    margin: 0.625rem 0 0 0;
  }
}

.p-workstyle__item-text-area05 {
  text-align: left;
  text-align: initial;
}

.p-work-style__item-text03 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-text03 {
    font-size: 0.875rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}

.p-work-style__item-text04 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-work-style__item-text04 {
    font-size: 0.875rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}

.p-work-style__btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-work-style__btn {
    margin: 1.875rem 0 0 0;
  }
}

.p-work-style__next-title {
  font-size: 1.75rem;
}

.p-work-style__next-text {
  font-size: 0.6875rem;
}

.p-work-style__next-title-icon {
  width: 1.75rem;
}

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

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