@charset "UTF-8";

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

* {
  font-size: 1rem;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th {
  text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

sup {
  vertical-align: text-top;
}

a:not([class]) {
  transition: 0.3s;
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  vertical-align: top;
}

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

span {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

:focus:not(:focus-visible) {
  outline: 0;
  /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}

@media (max-width: 1920px) {
  html {
    font-size: 0.8333333333vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 4.1025641026vw;
  }
}

@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* 背景カラー */
  background-color: black;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値では非表示 */
  /* アニメーション時間は 0.8秒 */
  transition: opacity 0.16s ease;
}

/* body要素に.fadeoutセレクタがある場合には、レイヤーが表示されるようにopacityを１に設定します。 */
body.js-fade::after {
  opacity: 1;
}

.js-body.is-active {
  overflow: hidden;
}

.js-img {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

.js-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #000000;
  transform: translateY(-101%);
  transition: all 0.3s ease-in-out 0.3s;
}

.js-img img {
  vertical-align: middle;
  transform: translateY(-101%);
}

.js-img.is-active::after {
  animation: mask 0.8s ease-in-out forwards;
}

.js-img.is-active img {
  animation: viewin 1s ease-in-out forwards;
}

@keyframes mask {
  0% {
    transform: translateY(-101%);
  }

  40% {
    transform: translateY(0%);
  }

  60% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes viewin {
  0% {
    transform: translateY(-100%);
  }

  40% {
    transform: translateY(0%);
  }

  60% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(0%);
  }
}

.js-title span {
  display: inline-block;
  background: #000000;
  color: #ffffff;
}

.js-title span:first-child {
  padding-left: 0.75rem;
}

.js-title span:last-child {
  padding-right: 1rem;
}

.circle {
  position: absolute;
  width: 0.1875rem;
  height: 0.1875rem;
  background: #000000;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}

.l-inner {
  max-width: 95rem;
  margin-inline: auto;
  padding-right: 25px;
  padding-left: 25px;
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-lower-lg {
  position: relative;
  padding-top: 20.5625rem;
}

@media screen and (max-width: 767px) {
  .l-lower-lg {
    padding-top: 13.75rem;
  }
}

.l-lower-lg::before {
  content: "";
  position: absolute;
  top: 12.375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 93.229%;
  height: 1px;
  background: #000000;
}

@media screen and (max-width: 767px) {
  .l-lower-lg::before {
    top: 9.375rem;
  }
}

.l-lower-sm {
  margin-top: 8.625rem;
}

@media screen and (max-width: 767px) {
  .l-lower-sm {
    margin-top: 6.25rem;
  }
}

.c-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.c-arrow::before {
  border-radius: 100vh;
  transition: 0.25s;
}

.c-btn:active .c-arrow::before {
  background: #2157be;
  border: 0.125rem solid #ffffff;
}

@media screen and (max-width: 767px) {
  .c-btn:active .c-arrow::before {
    border: 0.0625rem solid #ffffff;
  }
}

.c-btn:active .c-arrow::after {
  border-top: solid 0.125rem #ffffff;
  border-right: solid 0.125rem #ffffff;
}

@media screen and (max-width: 767px) {
  .c-btn:active .c-arrow::after {
    border-top: solid 0.0625rem #ffffff;
    border-right: solid 0.0625rem #ffffff;
  }
}

@media (any-hover: hover) {
  .c-btn:hover .c-arrow::before {
    background: #2157be;
    border: 0.125rem solid #ffffff;
  }
}

@media screen and (any-hover: hover) and (max-width: 767px) {
  .c-btn:hover .c-arrow::before {
    border: 0.0625rem solid #ffffff;
  }
}

@media (any-hover: hover) {
  .c-btn:hover .c-arrow::after {
    border-top: solid 0.125rem #ffffff;
    border-right: solid 0.125rem #ffffff;
  }
}

@media screen and (any-hover: hover) and (max-width: 767px) {
  .c-btn:hover .c-arrow::after {
    border-top: solid 0.0625rem #ffffff;
    border-right: solid 0.0625rem #ffffff;
  }
}

.c-btn {
  position: relative;
  font-size: 1.125rem;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1rem;
  }
}

.c-marker {
  display: inline-block;
  padding-inline: 0.75rem;
  padding-block: 0.25rem;
  background: #000000;
  color: #ffffff;
}

.c-text-lg {
  font-size: 1.125rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .c-text-lg {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.p-404__inner.l-inner {
  max-width: 60rem;
  padding-top: 8.75rem;
  padding-bottom: 10rem;
}

@media screen and (max-width: 767px) {
  .p-404__inner.l-inner {
    padding-top: 6.25rem;
    padding-bottom: 7.5rem;
  }
}

.p-404__title {
  font-size: 2.5rem;
  text-align: center;
}

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

.p-404__btn {
  margin-top: 6.25rem;
  text-align: center;
}

.p-404__btn a {
  width: 26.25rem;
  padding-block: 2rem;
  border-radius: 100vh;
  border: 1px solid #2157be;
  background: #2157be;
  color: #ffffff;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  transition: 0.25s;
}

@media screen and (max-width: 767px) {
  .p-404__btn a {
    width: 17.5rem;
    padding-block: 1.125rem;
    font-size: 1.125rem;
  }
}

@media (any-hover: hover) {
  .p-404__btn a:hover {
    background: #ffffff;
    color: #2157be;
  }
}

.p-access {
  background: url(../images/company/access_bg.webp) center/cover no-repeat, url(../images/company/access_bg.jpg) center/cover no-repeat;
}

.p-access__inner.l-inner {
  padding-block: 8.125rem;
}

@media screen and (max-width: 767px) {
  .p-access__inner.l-inner {
    padding-block: 6.875rem;
  }
}

.p-access__header {
  position: relative;
}

.p-access__title-en {
  color: #ffffff;
}

.p-lower__title-ja.p-access__title-ja {
  position: relative;
  padding-left: 0;
  color: #ffffff;
}

.p-lower__title-ja.p-access__title-ja::before {
  content: none;
}

.p-access__meta-list {
  position: absolute;
  top: 0.6875rem;
  left: 50%;
}

@media screen and (max-width: 767px) {
  .p-access__meta-list {
    position: static;
    margin-top: 1rem;
  }
}

.p-access__meta-item {
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

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

.p-access__meta-item a {
  border-bottom: 1px solid transparent;
  transition: 0.25s;
}

.p-access__meta-item a:active {
  border-bottom: 1px solid #ffffff;
}

@media (any-hover: hover) {
  .p-access__meta-item a:hover {
    border-bottom: 1px solid #ffffff;
  }
}

.p-access__body {
  margin-top: 3.75rem;
}

.p-access__body iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1454/500;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-access__body iframe {
    height: 14.0625rem;
  }
}

.p-band {
  mix-blend-mode: difference;
  color: #ffffff;
}

.p-band--top {
  position: absolute;
  bottom: -4.1875rem;
  left: 0;
  right: 0;
  z-index: 1;
}

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

.p-band--bottom {
  position: absolute;
  top: -5.25rem;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .p-band--bottom {
    top: -1.9375rem;
  }
}

.p-band__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.375rem;
  overflow: clip;
}

@media screen and (max-width: 767px) {
  .p-band__list {
    gap: 2.125rem;
  }
}

.p-band__item {
  font-family: "Permanent Marker", serif;
  font-size: 9.375rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  animation: loop 28s linear infinite;
}

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

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

  100% {
    transform: translateX(-100%);
  }
}

.p-business__inner.l-inner {
  padding-bottom: 10.5rem;
}

@media screen and (max-width: 767px) {
  .p-business__inner.l-inner {
    padding-bottom: 7.5rem;
  }
}

.p-business__body {
  max-width: 65.125rem;
  margin-top: 7.0625rem;
  margin-inline: auto;
}

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

.p-business__item {
  display: flex;
  gap: 3.25rem;
}

@media screen and (max-width: 767px) {
  .p-business__item {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-business__item:not(:first-child) {
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .p-business__item:not(:first-child) {
    margin-top: 3rem;
  }
}

.p-business__item-title {
  flex-shrink: 0;
  width: 10.5625rem;
  padding-top: 0.5rem;
  font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
  .p-business__item-title {
    width: 100%;
    padding-top: 0;
    font-size: 1.25rem;
  }
}

.p-business__subitem:not(:first-child) {
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-business__subitem:not(:first-child) {
    margin-top: 2rem;
  }
}

.p-business__subitem-title {
  display: inline-block;
  padding: 0.375rem 0.625rem;
  background: #333333;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
}

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

.p-business__subitem-text {
  margin-top: 1.5rem;
}

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

.p-circle {
  position: absolute;
  pointer-events: none;
}

.p-circle--sm {
  animation: floating-sm 0.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-sm {
  0% {
    transform: translateX(-15px) translateY(-10px);
  }

  100% {
    transform: translateX(30px) translateY(10px);
  }
}

.p-circle--md {
  animation: floating-md 1s ease-in-out infinite alternate-reverse;
}

@keyframes floating-md {
  0% {
    transform: translateX(-15px) translateY(-10px);
  }

  100% {
    transform: translateX(20px) translateY(10px);
  }
}

.p-circle--lg {
  animation: floating-lg 1s ease-in-out infinite alternate-reverse;
}

@keyframes floating-lg {
  0% {
    transform: translateX(-10px) translateY(-20px);
  }

  100% {
    transform: translateX(5px) translateY(20px);
  }
}

.p-circle--mv {
  top: -27.0625rem;
  left: -10.4375rem;
}

@media screen and (max-width: 767px) {
  .p-circle--mv {
    top: -6.25rem;
    left: -5rem;
  }
}

.p-circle--business {
  z-index: -1;
  bottom: -25.125rem;
  right: -9.5625rem;
}

@media screen and (max-width: 767px) {
  .p-circle--business {
    bottom: 2.5rem;
    right: -8.125rem;
  }
}

.p-circle-about--lg {
  bottom: 13.875rem;
  left: -7.0625rem;
}

@media screen and (max-width: 767px) {
  .p-circle-about--lg {
    bottom: 37.5rem;
  }
}

.p-circle-about--sm {
  bottom: 7.125rem;
  right: -4.875rem;
}

.p-circle--news {
  bottom: -30.375rem;
  right: -7.875rem;
}

@media screen and (max-width: 767px) {
  .p-circle--news {
    bottom: -22.875rem;
    right: auto;
    left: -7.5625rem;
  }
}

.p-circle img {
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-circle--sm img {
  width: 36.5625rem;
  height: 36.5625rem;
}

@media screen and (max-width: 767px) {
  .p-circle--sm img {
    width: 14.625rem;
    height: 14.625rem;
  }
}

.p-circle--md img {
  width: 48rem;
  height: 48rem;
}

@media screen and (max-width: 767px) {
  .p-circle--md img {
    width: 14.375rem;
    height: 14.375rem;
  }
}

.p-circle--lg img {
  width: 62.1875rem;
  height: 62.1875rem;
}

@media screen and (max-width: 767px) {
  .p-circle--lg img {
    width: 24.875rem;
    height: 24.875rem;
  }
}

.p-company__fv {
  background: url(../images/company/fv.webp) center/cover no-repeat, url(../images/company/fv.jpg) center/cover no-repeat;
}

.p-company__inner.l-inner {
  padding-bottom: 8.625rem;
}

@media screen and (max-width: 767px) {
  .p-company__inner.l-inner {
    padding-bottom: 7.5rem;
  }
}

.p-company__body {
  margin-top: 9.125rem;
  margin-left: auto;
  max-width: 78.5rem;
}

@media screen and (max-width: 767px) {
  .p-company__body {
    margin-top: 6.25rem;
    margin-left: 0;
  }
}

.p-company__item {
  display: flex;
  gap: 10.0625rem;
}

@media screen and (max-width: 767px) {
  .p-company__item {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-company__item:not(:first-child) {
  margin-top: 7.5rem;
}

@media screen and (max-width: 767px) {
  .p-company__item:not(:first-child) {
    margin-top: 6.25rem;
  }
}

.p-company__item-title {
  flex-shrink: 0;
  width: 10.125rem;
  font-size: 1.125rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-company__item-title {
    width: 100%;
    font-size: 1.75rem;
  }
}

.p-company__item:first-child .p-company__item-title {
  letter-spacing: 0.05em;
}

.p-company__item-text {
  width: 57.375rem;
}

@media screen and (max-width: 767px) {
  .p-company__item-text {
    width: 100%;
  }
}

.p-company__item:first-child .p-company__item-text {
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-company__item:first-child .p-company__item-text {
    font-size: 1.125rem;
  }
}

.p-company__item-table {
  background: #ffffff;
}

.p-company__item-tr {
  display: flex;
  gap: 3.5rem;
}

@media screen and (max-width: 767px) {
  .p-company__item-tr {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.p-company__item-th {
  flex-shrink: 0;
  width: 12.25rem;
  padding-block: 2rem;
  border-top: 2px solid #646464;
  color: #646464;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .p-company__item-th {
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 0;
    font-size: 0.9375rem;
  }
}

.p-company__item-tr:last-child .p-company__item-th {
  border-bottom: 2px solid #646464;
}

@media screen and (max-width: 767px) {
  .p-company__item-tr:last-child .p-company__item-th {
    border-bottom: none;
  }
}

.p-company__item-td {
  width: 37.75rem;
  padding-block: 2rem;
  border-top: 2px solid #dddddd;
  color: #333333;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .p-company__item-td {
    width: 100%;
    padding-top: 0;
    padding-bottom: 1.5rem;
    border-top: none;
    font-size: 0.9375rem;
  }
}

.p-company__item-tr:last-child .p-company__item-td {
  border-bottom: 2px solid #dddddd;
}

@media screen and (max-width: 767px) {
  .p-company__item-tr:last-child .p-company__item-td {
    border-bottom: 2px solid #646464;
  }
}

.p-company__item-td a {
  border-bottom: 1px solid transparent;
}

@media (any-hover: hover) {
  .p-company__item-td a:hover {
    border-bottom: 1px solid #000000;
  }
}

.p-contact-form {
  padding: 2rem;
  border: 1px solid #333333;
}

.p-contact__inner.l-inner {
  padding-bottom: 16.375rem;
}

@media screen and (max-width: 767px) {
  .p-contact__inner.l-inner {
    padding-bottom: 7.5rem;
  }
}

.p-contact-form__inner {
  max-width: 800px;
  margin-inline: auto;
}

.p-contact-form__dl {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.p-contact-form__dl--textarea {
  align-items: flex-start;
}

.p-contact-form__dl:not(:first-child) {
  margin-top: 1.8125rem;
}

.p-contact-form__dt {
  flex-shrink: 0;
}

.p-contact-form__dt--radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-contact-form__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-contact-form__dd {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.p-contact-form__dt--required {
  flex-shrink: 0;
  padding: 0.25rem 0.5rem;
  background: #034495;
  color: #ffffff;
  font-size: 0.625rem;
  line-height: 1;
}

.p-contact-form__text,
.p-contact-form__mail,
textarea {
  width: 100%;
  height: auto;
  padding: 0.625rem;
  font-size: 16px;
  line-height: 1.5;
  background: #f5f5f5;
  border: 1px solid #dddddd;
  outline: none;
}

.p-contact-form__text:focus,
.p-contact-form__mail:focus,
textarea:focus {
  border: 1px solid #333333;
}

.p-contact-form__text::-moz-placeholder, .p-contact-form__mail::-moz-placeholder, textarea::-moz-placeholder {
  color: #9f9f9f;
}

.p-contact-form__text::placeholder,
.p-contact-form__mail::placeholder,
textarea::placeholder {
  color: #9f9f9f;
}

textarea {
  height: 15rem;
  resize: vertical;
}

.p-contact-form__submit-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin-top: 2.9375rem;
}

.p-contact-form__submit {
  position: relative;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.33em;
  z-index: 1;
  transition: 0.25s;
}

.p-contact-form__submit::-webkit-search-decoration {
  display: none;
}

.p-contact-form__submit {
  padding-inline: 4.25rem;
  padding-block: 1rem;
  color: #ffffff;
  font-size: 1rem;
  border: 1px solid #ffffff;
  background: #333333;
}

@media (any-hover: hover) {
  .p-contact-form__submit:hover {
    box-shadow: 2px 7px 7px 0px rgba(0, 0, 0, 0.15);
  }

  .p-contact-form__submit:hover {
    background: #034495;
    color: #ffffff;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  padding: 1rem 0.5rem;
  border: 1px solid #2157be;
  background: rgba(33, 87, 190, 0.1);
  font-size: 1rem;
  text-align: center;
}

.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 textarea:focus {
  background: rgba(33, 87, 190, 0.1);
}

div.wpcf7 .wpcf7-spinner {
  display: block;
}

.p-contact.p-lower {
  background: url(../images/contact/bg.webp) center/cover no-repeat, url(../images/contact/bg.jpg) center/cover no-repeat;
}

.p-contact.l-lower-lg {
  padding-top: 21.8125rem;
}

@media screen and (max-width: 767px) {
  .p-contact.l-lower-lg {
    padding-top: 13.75rem;
  }
}

.p-contact.l-lower-lg::before {
  top: 9.4375rem;
  background: #838383;
}

.p-lower__title-en.p-contact__title-en {
  color: #ffffff;
}

.p-lower__title-ja.p-contact__title-ja {
  color: #ffffff;
}

.p-contact__body {
  max-width: 57.5rem;
  margin-inline: auto;
  padding-inline: 8.75rem;
  padding-top: 5rem;
  padding-bottom: 3.4375rem;
  border-radius: 5px;
  margin-top: 5.5625rem;
  background: #ffffff;
}

@media screen and (max-width: 767px) {
  .p-contact__body {
    margin-top: 5rem;
    padding-inline: 1rem;
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

.p-equipment__fv {
  background: url(../images/equipment/fv.webp) center/cover no-repeat, url(../images/equipment/fv.jpg) center/cover no-repeat;
}

.p-equipment__inner.l-inner {
  padding-bottom: 12.0625rem;
}

@media screen and (max-width: 767px) {
  .p-equipment__inner.l-inner {
    padding-bottom: 7.5rem;
  }
}

.p-equipment__body {
  margin-top: 5.8125rem;
}

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

.p-equipment__list {
  display: flex;
  justify-content: center;
}

.p-equipment__list--top {
  gap: 1.875rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .p-equipment__list--top {
    gap: 1.25rem 1rem;
  }
}

.p-equipment__list--top .p-equipment__item {
  width: calc((100% - 5.625rem) / 4);
}

@media screen and (max-width: 767px) {
  .p-equipment__list--top .p-equipment__item {
    width: calc((100% - 1rem) / 2);
  }
}

.p-equipment__list--top .p-equipment__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 340/250;
}

.p-equipment__item-title {
  margin-top: 1.125rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-equipment__item-title {
    margin-top: 0.375rem;
    font-size: 1rem;
    line-height: 1.3;
  }
}

.p-equipment__list--bottom {
  display: flex;
  gap: 2.5rem;
  margin-top: 4.375rem;
}

@media screen and (max-width: 767px) {
  .p-equipment__list--bottom {
    gap: 1rem;
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-equipment__list--bottom .p-equipment__item {
    width: calc((100% - 1rem) / 2);
  }
}

.p-equipment__list--bottom .p-equipment__item img {
  width: 100%;
  max-width: 30rem;
  height: auto;
  aspect-ratio: 480/340;
}

.p-equipment__item img {
  -o-object-fit: cover;
  object-fit: cover;
}

.p-equipment__table-wrapper {
  margin-top: 8.8125rem;
}

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

.p-equipment__table {
  width: 65.0625rem;
  margin-inline: auto;
  border: 1px solid #dddddd;
  border-collapse: collapse;
}

@media screen and (max-width: 767px) {
  .p-equipment__table {
    width: 100%;
    border: none;
  }
}

.p-equipment__tr {
  border: 1px solid #dddddd;
  border-collapse: collapse;
}

@media screen and (max-width: 767px) {
  .p-equipment__tr {
    display: flex;
    flex-direction: column;
    border: none;
  }
}

.p-equipment__th {
  width: 17.5625rem;
  padding-block: 0.96875rem;
  padding-left: 1.5rem;
  border: 1px solid #dddddd;
  background: #f9f9f9;
  border-collapse: collapse;
  color: #333333;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-equipment__th {
    width: 100%;
    padding-block: 0.625rem;
    padding-inline: 0.5rem;
  }
}

.p-equipment__td {
  padding-block: 0.96875rem;
  padding-left: 1.5rem;
  border: 1px solid #dddddd;
  border-collapse: collapse;
  background: #ffffff;
  color: #333333;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-equipment__td {
    height: 2.78125rem;
    padding-block: 0.625rem;
    padding-inline: 0.5rem;
    font-size: 0.9375rem;
  }
}

.p-equipment__td:nth-of-type(1) {
  width: 10.375rem;
}

@media screen and (max-width: 767px) {
  .p-equipment__td:nth-of-type(1) {
    width: 100%;
  }
}

.p-equipment__td:nth-of-type(2) {
  width: 11.875rem;
}

@media screen and (max-width: 767px) {
  .p-equipment__td:nth-of-type(2) {
    width: 100%;
  }
}

.p-equipment__td:nth-of-type(3) {
  width: 24.8125rem;
}

@media screen and (max-width: 767px) {
  .p-equipment__td:nth-of-type(3) {
    width: 100%;
  }
}

.p-flow__fv {
  background: url(../images/flow/fv.webp) center/cover no-repeat, url(../images/flow/fv.jpg) center/cover no-repeat;
}

.p-flow__inner.l-inner {
  padding-bottom: 10.5rem;
}

@media screen and (max-width: 767px) {
  .p-flow__inner.l-inner {
    padding-bottom: 7.5rem;
  }
}

.p-flow__body {
  position: relative;
  margin-top: 7.375rem;
}

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

.p-flow__item {
  position: relative;
  display: flex;
  gap: 1.5rem;
}

@media screen and (max-width: 767px) {
  .p-flow__item {
    gap: 1rem;
  }
}

.p-flow__item:not(:first-child) {
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .p-flow__item:not(:first-child) {
    margin-top: 3.125rem;
  }
}

.p-flow__item-tag {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 100vh;
  background: #333333;
}

@media screen and (max-width: 767px) {
  .p-flow__item-tag {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.p-flow__item-number {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

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

.p-flow__item-content {
  margin-top: 0.5625rem;
}

@media screen and (max-width: 767px) {
  .p-flow__item-content {
    margin-top: 0;
  }
}

.p-flow__item-title {
  font-size: 1.25rem;
  font-weight: 700;
}

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

.p-flow__item-text {
  margin-top: 0.75rem;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .p-flow__item-text {
    margin-top: 0.375rem;
    font-size: 0.9375rem;
  }
}

.p-flow__progress-wrapper {
  position: relative;
  width: 43.4375rem;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .p-flow__progress-wrapper {
    width: 100%;
  }
}

.p-flow__progress {
  position: absolute;
  top: 2.125rem;
  left: 1.375rem;
  height: 59.75rem;
}

@media screen and (max-width: 767px) {
  .p-flow__progress {
    top: 1.4375rem;
    left: 0.8125rem;
    height: 61.25rem;
  }
}

.p-flow__progress-bar {
  background: #333333;
}

.p-footer {
  background: #000000;
}

.p-footer__inner {
  padding-top: 5.875rem;
  padding-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding-inline: 1.5rem;
  }
}

.p-footer__container {
  display: flex;
  align-items: flex-start;
  gap: 36.1979166vw;
}

@media screen and (max-width: 767px) {
  .p-footer__container {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.p-footer__logo {
  width: 100%;
  max-width: 11.25rem;
  height: auto;
  aspect-ratio: 180/42;
  margin-left: 4.427083vw;
}

@media screen and (max-width: 767px) {
  .p-footer__logo {
    margin-left: 0;
  }
}

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

.p-footer__nav {
  width: 46.125rem;
  margin-top: 1rem;
}

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

.p-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.1875rem 6.875rem;
}

@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    flex-direction: column;
    gap: 1rem;
  }
}

.p-footer__nav-item {
  width: calc((100% - 20.625rem) / 4);
}

.p-footer__nav-item a {
  width: 100%;
  font-family: "Oswald", serif;
  color: #ffffff;
  letter-spacing: 0.2em;
  text-transform: capitalize;
  white-space: nowrap;
}

.p-footer__nav-item__line {
  position: relative;
}

.p-footer__nav-item__line::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  bottom: -0.125rem;
  transform: scale(0, 1);
  transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: 0.25s;
}

@media (any-hover: hover) {
  .p-footer__nav-item a:hover .p-footer__nav-item__line::before {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
  }
}

.p-footer__copyright {
  margin-top: 13.5rem;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 8.75rem;
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__copyright small {
    font-size: 12px;
  }
}

.p-hamburger {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-hamburger {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    position: relative;
    z-index: 999;
    width: 3rem;
    height: 3rem;
    border: 1px solid #000000;
    border-radius: 100vh;
    background: #ffffff;
    cursor: pointer;
    transition: 0.2s;
  }
}

.p-hamburger.is-open {
  border: 1px solid #ffffff;
  background: #000000;
}

.p-hamburger__bar {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.75rem;
  height: 1px;
  background: #000000;
  transition: 0.45s;
}

.p-hamburger__bar:nth-of-type(1) {
  top: -0.25rem;
}

.p-hamburger__bar:nth-of-type(2) {
  top: 0.25rem;
  left: 62%;
  width: 1rem;
}

.p-hamburger.is-open .p-hamburger__bar {
  background: #ffffff;
}

.p-hamburger.is-open .p-hamburger__bar:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(225deg);
}

.p-hamburger.is-open .p-hamburger__bar:nth-of-type(2) {
  top: -0.0625rem;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-225deg);
  width: 1.75rem;
}

.p-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  transition: 0.25s;
  border-bottom: 1px solid transparent;
}

.p-header.is-active {
  background: rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid #000000;
}

.p-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 3.75rem;
  padding-inline: 3.9375rem;
  transition: 0.25s;
}

@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-block: 1.5rem;
    padding-inline: 1rem;
  }
}

.p-header.is-active .p-header__inner {
  padding-block: 2rem;
}

@media screen and (max-width: 767px) {
  .p-header.is-active .p-header__inner {
    padding-block: 1.375rem;
  }
}

.p-header__logo {
  z-index: 999;
  max-width: 11.25rem;
  aspect-ratio: 180/41;
}

@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 10rem;
  }
}

.p-header__logo--black svg g g rect {
  fill: #000000;
}

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

.p-header__logo svg g g rect {
  transition: 0.25s;
}

.p-header.is-active .p-header__logo svg g g rect {
  fill: #000000;
}

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

.p-header__nav-list {
  display: flex;
  gap: 2.5rem;
}

.p-header__nav-item.p-header__nav-item--contact {
  display: flex;
  align-items: center;
}

.p-header__nav-item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: "Oswald", serif;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.19em;
  text-transform: capitalize;
  transition: 0.25s;
}

.p-header__nav--black .p-header__nav-item a {
  color: #000000;
}

.p-header.is-active .p-header__nav-item:not(:last-child) a {
  color: #000000;
}

.p-header__nav-item:not(:last-child) a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  bottom: 0.3125rem;
  transform: scale(0, 1);
  transform-origin: center top;
  /* 変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端 */
  transition: 0.25s;
}

.p-header__nav--black .p-header__nav-item:not(:last-child) a::before {
  background: #000000;
}

.p-header.is-active .p-header__nav-item:not(:last-child) a::before {
  background: #000000;
}

@media (any-hover: hover) {
  .p-header__nav-item a:hover::before {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
  }
}

.p-header__nav-item.p-header__nav-item--contact a {
  position: relative;
  padding: 0.75rem 2.25rem;
  height: initial;
  border: 1px solid #2157be;
  background: #2157be;
  color: #ffffff;
  letter-spacing: 0.1em;
  transition: 0.25s;
}

@media (any-hover: hover) {
  .p-header__nav-item.p-header__nav-item--contact a:hover {
    background: #ffffff;
    background: rgba(255, 255, 255, 0.6);
    color: #000000;
  }
}

.p-header__drawer {
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: rgba(255, 255, 255, 0.9);
  overflow-y: scroll;
  scrollbar-width: none;
}

.p-header__drawer-nav {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  padding-bottom: 3.75rem;
}

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

.p-header__drawer-item a {
  display: block;
  padding: 0.9375rem 0;
  font-family: "Oswald", serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2222222222;
  text-align: center;
  text-transform: capitalize;
  transition: 0.15s;
}

@media screen and (max-width: 767px) {
  .p-header__drawer-item a {
    font-size: 1rem;
    border-bottom: 1px solid #000000;
  }
}

@media screen and (max-width: 767px) {
  .p-header__drawer-item a:active {
    background: #000000;
    color: #ffffff;
  }
}

@media (any-hover: hover) {
  .p-header__drawer-item a:hover {
    background: #000000;
    color: #ffffff;
  }
}

.p-home-about__layout {
  margin-top: 26.0625rem;
}

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

.p-home-about__inner {
  position: relative;
}

.p-home-about__container {
  position: relative;
  z-index: 1;
  width: 66.5rem;
  height: 69.1875rem;
  padding-inline: 8.5rem;
  padding-block: 8.875rem;
  background: #ededed;
}

@media screen and (max-width: 767px) {
  .p-home-about__container {
    width: 100%;
    height: 100%;
    padding-inline: 1.125rem;
    padding-block: 2rem;
  }
}

.p-home-about__title-en {
  font-size: 6.375rem;
  letter-spacing: 0.02em;
}

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

.p-home-about__title-ja {
  margin-top: 0.5625rem;
}

.p-home-about__text {
  width: 28.5rem;
  margin-top: 3.5625rem;
  margin-left: 4.875rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-home-about__text {
    width: 100%;
    margin-top: 2rem;
    margin-left: 0;
    font-size: 1.125rem;
  }
}

.p-home-about__btn-wrapper {
  margin-top: 4.25rem;
  margin-left: 4.875rem;
}

@media screen and (max-width: 767px) {
  .p-home-about__btn-wrapper {
    margin-top: 2.5rem;
    margin-left: 0;
    text-align: right;
  }
}

.p-home-about__img {
  position: absolute;
}

.p-home-about__img--top {
  top: 17.6875rem;
  right: -8.375rem;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-home-about__img--top {
    top: 42.5rem;
    right: 0.9375rem;
  }
}

.p-home-about__img--middle {
  top: 54.5625rem;
  right: 22rem;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-home-about__img--middle {
    top: 52.9375rem;
    right: 10rem;
  }
}

.p-home-about__img--bottom {
  top: 75.25rem;
  right: 0.125rem;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .p-home-about__img--bottom {
    top: 60.0625rem;
    right: 4.0625rem;
  }
}

.p-home-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-about__img--top img {
  max-width: 41.125rem;
  aspect-ratio: 658/924;
}

@media screen and (max-width: 767px) {
  .p-home-about__img--top img {
    max-width: 12.5rem;
  }
}

.p-home-about__img--middle img {
  max-width: 40.5625rem;
  aspect-ratio: 649/510;
}

@media screen and (max-width: 767px) {
  .p-home-about__img--middle img {
    max-width: 12.5rem;
  }
}

.p-home-about__img--bottom img {
  max-width: 40.75rem;
  aspect-ratio: 652/412;
}

@media screen and (max-width: 767px) {
  .p-home-about__img--bottom img {
    max-width: 11.25rem;
  }
}

.p-home-btn {
  position: relative;
  padding-right: 4.4375rem;
  font-weight: 700;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-home-btn {
    padding-right: 2.875rem;
  }
}

.p-home-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6.4375rem;
  height: 1px;
  background: transparent;
  transition: 0.25s;
}

@media screen and (max-width: 767px) {
  .p-home-btn::before {
    width: 5.8125rem;
  }
}

.p-home-btn:active::before {
  background: #000000;
}

@media (any-hover: hover) {
  .p-home-btn:hover::before {
    background: #000000;
  }
}

.p-home-btn--white {
  color: #ffffff;
}

.p-home-btn--white:active::before {
  background: #ffffff;
}

@media (any-hover: hover) {
  .p-home-btn--white:hover::before {
    background: #ffffff;
  }
}

.p-home-btn__arrow {
  display: inline-block;
}

.p-home-btn__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.5rem;
  width: 3.125rem;
  height: 3.125rem;
  border: 1px solid #666666;
  border: 0.0625rem solid #666666;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-home-btn__arrow::before {
    right: -0.3125rem;
    width: 2.125rem;
    height: 2.125rem;
    border: 0.0625rem solid #666666;
    border: 0.0625rem solid #666666;
  }
}

.p-home-btn__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.875rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.625rem;
  height: 0.625rem;
  border-top: solid 2px #666666;
  border-right: solid 2px #666666;
  border-top: solid 0.125rem #666666;
  border-right: solid 0.125rem #666666;
  transition: 0.25s;
}

@media screen and (max-width: 767px) {
  .p-home-btn__arrow::after {
    right: 0.5625rem;
    border-top: solid 1px #666666;
    border-right: solid 1px #666666;
    border-top: solid 0.0625rem #666666;
    border-right: solid 0.0625rem #666666;
  }
}

.p-home-btn:active .p-home-btn__arrow::before {
  right: -0.75rem;
}

@media screen and (max-width: 767px) {
  .p-home-btn:active .p-home-btn__arrow::before {
    right: -0.5rem;
  }
}

.p-home-btn:active .p-home-btn__arrow::after {
  right: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-home-btn:active .p-home-btn__arrow::after {
    right: 0.375rem;
  }
}

@media (any-hover: hover) {
  .p-home-btn:hover .p-home-btn__arrow::before {
    right: -0.75rem;
  }
}

@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-home-btn:hover .p-home-btn__arrow::before {
    right: -0.5rem;
  }
}

@media (any-hover: hover) {
  .p-home-btn:hover .p-home-btn__arrow::after {
    right: 0.625rem;
  }
}

@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-home-btn:hover .p-home-btn__arrow::after {
    right: 0.375rem;
  }
}

.p-home-btn--white .p-home-btn__arrow::before {
  border: 2px solid #ffffff;
}

@media screen and (max-width: 767px) {
  .p-home-btn--white .p-home-btn__arrow::before {
    border: 1px solid #ffffff;
  }
}

.p-home-btn--white .p-home-btn__arrow::after {
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  border-top: solid 0.125rem #ffffff;
  border-right: solid 0.125rem #ffffff;
}

@media screen and (max-width: 767px) {
  .p-home-btn--white .p-home-btn__arrow::after {
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
    border-top: solid 0.0625rem #ffffff;
    border-right: solid 0.0625rem #ffffff;
  }
}

.p-home-business {
  position: relative;
}

.p-home-business__header {
  display: flex;
  justify-content: flex-end;
  padding-right: 20.5625rem;
}

@media screen and (max-width: 767px) {
  .p-home-business__header {
    justify-content: flex-start;
    padding-right: 0;
  }
}

.p-home-business__en {
  font-size: 5.625rem;
}

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

.p-home-business__title-ja {
  margin-top: 0.5625rem;
}

.p-home-business__body {
  display: flex;
  justify-content: space-between;
  margin-top: 3.8125rem;
}

@media screen and (max-width: 767px) {
  .p-home-business__body {
    flex-direction: column-reverse;
    margin-top: 3rem;
  }
}

.p-home-business__diagram {
  padding-left: 2.9375rem;
}

@media screen and (max-width: 767px) {
  .p-home-business__diagram {
    padding-left: 0;
  }
}

.p-home-business__diagram-list {
  position: relative;
  width: 33.9375rem;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .p-home-business__diagram-list {
    width: 100%;
  }
}

.p-home-business__diagram-list::before {
  content: "";
  position: absolute;
  top: -5.625rem;
  left: -12.5rem;
  width: 59.0625rem;
  height: 55.6875rem;
  background: url(../images/home/business_circle.webp) center/contain no-repeat, url(../images/home/business_circle.png) center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .p-home-business__diagram-list::before {
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    height: 25rem;
  }
}

.p-home-business__diagram-item {
  position: absolute;
  text-align: center;
}

.p-home-business__diagram-item:first-child {
  top: 10.75rem;
  left: 11.8125rem;
}

@media screen and (max-width: 767px) {
  .p-home-business__diagram-item:first-child {
    top: 8.75rem;
    left: 7.9375rem;
  }
}

.p-home-business__diagram-item:nth-of-type(2) {
  bottom: 0.0625rem;
  left: 0.25rem;
}

@media screen and (max-width: 767px) {
  .p-home-business__diagram-item:nth-of-type(2) {
    bottom: auto;
    top: 17.1875rem;
    left: 2rem;
  }
}

.p-home-business__diagram-item:last-child {
  bottom: 0.0625rem;
  left: 22.625rem;
}

@media screen and (max-width: 767px) {
  .p-home-business__diagram-item:last-child {
    bottom: auto;
    top: 17.1875rem;
    left: 12.8125rem;
  }
}

.p-home-business__diagram-item__subtitle {
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-home-business__diagram-item__subtitle {
    font-size: 0.625rem;
  }
}

.p-home-business__diagram-item__title {
  margin-top: 0.1875rem;
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-home-business__diagram-item__title {
    margin-top: 0;
    font-size: 1.25rem;
  }
}

.p-home-business__content {
  position: relative;
  z-index: 1;
  width: 36rem;
  margin-top: 0.375rem;
  margin-left: auto;
  margin-right: 0.8125rem;
}

@media screen and (max-width: 767px) {
  .p-home-business__content {
    width: 100%;
  }
}

.p-home-business__subtitle {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}

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

.p-home-business__text {
  font-weight: 500;
  line-height: 2.5;
}

.p-home-business__text_y {
  font-size: 1.2px;
}

@media screen and (max-width: 767px) {
  .p-home-business__text {
    line-height: 2;
  }
}

.p-home-business__subtitle+.p-home-business__text {
  margin-top: 2.6875rem;
}

@media screen and (max-width: 767px) {
  .p-home-business__subtitle+.p-home-business__text {
    margin-top: 1.5rem;
  }
}

.p-home-business__text+.p-home-business__text {
  margin-top: 2.5em;
}

.p-home-business__btn-wrapper {
  position: relative;
  margin-top: 6.875rem;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-home-business__btn-wrapper {
    margin-top: 4rem;
  }
}

.p-home-equipment {
  position: relative;
  background: url(../images/home/equipment_bg.webp) center/cover no-repeat, url(../images/home/equipment_bg.jpg) center/cover no-repeat;
}

.p-home-equipment__header {
  position: absolute;
  top: -11.125rem;
  left: 11.875rem;
}

@media (min-width: 1921px) {
  .p-home-equipment__header {
    left: 12vw;
  }
}

@media screen and (max-width: 767px) {
  .p-home-equipment__header {
    top: -5.375rem;
    left: 0;
    mix-blend-mode: difference;
  }
}

.p-home-equipment__title-en {
  font-size: 6.9375rem;
}

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

.p-home-equipment__title-ja {
  margin-top: 0.5625rem;
}

.p-home-equipment__title-en,
.p-home-equipment__title-ja {
  color: #ffffff;
}

.p-home-equipment__body {
  padding-top: 10.625rem;
  padding-bottom: 11.8125rem;
  padding-left: 25px;
}

@media screen and (max-width: 767px) {
  .p-home-equipment__body {
    padding-top: 6.25rem;
    padding-bottom: 8.25rem;
  }
}

.p-home-equipment__inner.l-inner {
  max-width: 79rem;
}

.p-home-equipment__btn-wrapper {
  text-align: end;
}

.p-home-equipment__slide {
  margin-top: 5rem;
}

.p-home-equipment__slide-list {
  gap: 1.4375rem;
}

.p-home-equipment__slide-header {
  display: flex;
  justify-content: flex-start;
}

.p-home-equipment__tag-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.p-home-equipment__product {
  font-family: "Permanent Marker", serif;
  color: #ffffff;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}

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

.p-home-equipment__number {
  margin-top: -1rem;
  font-family: "Permanent Marker", serif;
  color: #ffffff;
  font-size: 4.0625rem;
}

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

.p-home-equipment__slide-img {
  position: relative;
  margin-top: -0.8125rem;
  padding-left: 2.125rem;
}

.p-home-equipment__slide-img img {
  width: 100%;
  height: auto;
  max-width: 32.5rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .p-home-equipment__slide-img img {
    max-width: 18.75rem;
  }
}

.p-home-equipment__meta-list {
  position: absolute;
  bottom: 2.5rem;
  left: 1.4375rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.p-home-equipment__meta-item {
  display: inline-block;
  padding-inline: 1.25rem;
  background: #000000;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .p-home-equipment__meta-item {
    font-size: 1.5rem;
  }
}

.p-home-equipment__slide-body {
  margin-top: 0.9375rem;
  margin-left: 2.875rem;
}

.p-home-equipment__tr {
  display: flex;
  align-items: center;
  gap: 1.9375rem;
}

.p-home-equipment__tr:not(:first-child) {
  margin-top: 0.5625rem;
}

@media screen and (max-width: 767px) {
  .p-home-equipment__tr:not(:first-child) {
    margin-top: 0.25rem;
  }
}

.p-home-equipment__th,
.p-home-equipment__td {
  color: #ffffff;
  font-weight: 600;
  text-align: left;
}

.p-home-equipment__th {
  width: 4rem;
}

.p-home-flow {
  position: relative;
  background: url(../images/home/flow_bg.webp) center/cover no-repeat, url(../images/home/flow_bg.jpg) center/cover no-repeat;
}

.p-home-flow__inner.l-inner {
  padding-top: 13.625rem;
  padding-bottom: 13.875rem;
}

@media screen and (max-width: 767px) {
  .p-home-flow__inner.l-inner {
    padding-top: 7.5rem;
    padding-bottom: 8.75rem;
  }
}

.p-home-flow__title-en {
  color: #ffffff;
  font-size: 6.875rem;
}

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

.p-home-flow__title-ja {
  color: #ffffff;
  margin-top: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-home-flow__title-ja {
    margin-top: 0.5rem;
  }
}

.p-home-flow__body {
  margin-top: 3.4375rem;
  margin-left: 13.9375rem;
}

@media screen and (max-width: 767px) {
  .p-home-flow__body {
    margin-left: 0;
  }
}

.p-home-flow__container {
  display: flex;
  gap: 3.8125rem;
}

@media screen and (max-width: 767px) {
  .p-home-flow__container {
    gap: 1.625rem;
  }
}

.p-home-flow__progress {
  margin-top: 0.9375rem;
  height: 41.5rem;
}

@media screen and (max-width: 767px) {
  .p-home-flow__progress {
    height: 61.875rem;
  }
}

.p-home-flow__progress-bar {
  background: #ffffff;
}

.p-home-flow__item {
  position: relative;
  display: flex;
  gap: 0.75rem;
}

@media screen and (max-width: 767px) {
  .p-home-flow__item {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.p-home-flow__item:not(:first-child) {
  margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
  .p-home-flow__item:not(:first-child) {
    margin-top: 3rem;
  }
}

.p-home-flow__item::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: -4.375rem;
  width: 1rem;
  height: 1rem;
  border-radius: 100vh;
  background: #ffffff;
}

@media screen and (max-width: 767px) {
  .p-home-flow__item::before {
    top: 0.3125rem;
    left: -2.1875rem;
  }
}

.p-home-flow__item-title {
  flex-shrink: 0;
  width: 12.5rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-home-flow__item-title {
    font-size: 1rem;
    width: 100%;
  }
}

.p-home-flow__item-text {
  width: 38.9375rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
  .p-home-flow__item-text {
    width: 100%;
    font-size: 0.9375rem;
  }
}

.p-home-flow__btn-wrapper {
  margin-top: 3.875rem;
  margin-right: 1.6875rem;
  text-align: right;
}

.p-home-news {
  position: relative;
}

.p-home-news__title-en {
  font-size: 5.8125rem;
}

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

.p-home-news__title-ja {
  margin-top: 0.5625rem;
}

.p-home-news__body {
  position: relative;
  width: 100%;
  max-width: 82.1875rem;
  margin-top: 3.1875rem;
  margin-top: 4.5625rem;
  margin-inline: auto;
}

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

.p-home-news__btn-wrapper {
  position: absolute;
  top: -8.3125rem;
  right: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-home-news__btn-wrapper {
    top: auto;
    bottom: -4.375rem;
  }
}

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

.p-home-news__card {
  border-top: 1px solid #000000;
}

.p-home-news__card:last-child {
  border-bottom: 1px solid #000000;
}

.p-home-news__card a {
  display: flex;
  align-items: center;
  gap: 3.625rem;
  padding-block: 2.6875rem;
  padding-inline: 3.125rem;
  transition: 0.25s;
}

@media screen and (max-width: 767px) {
  .p-home-news__card a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    padding-block: 1rem;
    padding-inline: 0.5rem;
  }
}

.p-home-news__card a:active {
  background: #000000;
  color: #ffffff;
}

@media (any-hover: hover) {
  .p-home-news__card a:hover {
    background: #000000;
    color: #ffffff;
  }
}

.p-home-news__card-time {
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .p-home-news__card-time {
    font-size: 0.9375rem;
  }
}

.p-home-news__card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .p-home-news__card-title {
    font-size: 1rem;
    letter-spacing: normal;
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }
}

.p-home-partner__layout {
  margin-top: 24.8125rem;
}

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

.p-home-partner__container {
  position: relative;
}

.p-home-partner__img {
  position: absolute;
}

.p-home-partner__img--top {
  top: -8.5rem;
  left: -4.125rem;
  max-width: 25.4375rem;
  aspect-ratio: 407/571;
}

@media screen and (max-width: 767px) {
  .p-home-partner__img--top {
    top: 37.8125rem;
    left: 0;
    max-width: 12.9375rem;
  }
}

.p-home-partner__img--bottom {
  top: 14.625rem;
  left: 13.4375rem;
  max-width: 18rem;
  aspect-ratio: 288/445;
}

@media screen and (max-width: 767px) {
  .p-home-partner__img--bottom {
    top: 30.25rem;
    left: auto;
    right: 0;
    max-width: 10.5rem;
  }
}

.p-home-partner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-home-partner__content {
  margin-left: 41.3125rem;
}

@media screen and (max-width: 767px) {
  .p-home-partner__content {
    margin-left: 0;
  }
}

.p-home-partner__title-en {
  font-size: 6.875rem;
}

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

.p-home-partner__title-ja {
  margin-top: 0.5625rem;
}

.p-home-partner__body {
  margin-top: 6.875rem;
  margin-left: 4.625rem;
}

@media screen and (max-width: 767px) {
  .p-home-partner__body {
    margin-top: 4rem;
    margin-left: 0;
  }
}

.p-home-partner__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-home-partner__subtitle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}

.p-home-partner__subtitle .c-marker {
  color: #000000;
}

@media screen and (max-width: 767px) {
  .p-home-partner__subtitle .c-marker {
    color: #ffffff;
  }
}

.p-home-partner__text {
  margin-top: 4.625rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-home-partner__text {
    margin-top: 2.125rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.p-home-partners__btn-wrapper {
  margin-top: 7.4375rem;
  margin-left: 25.625rem;
}

.p-home__bg-top {
  position: relative;
  margin-top: -0.25rem;
  padding-top: 17.3125rem;
  padding-bottom: 56.4375rem;
  background: url(../images/home/bg_top.webp) center/cover no-repeat, url(../images/home/bg_top.jpg) center/contain no-repeat;
  overflow: clip;
}

@media screen and (max-width: 767px) {
  .p-home__bg-top {
    padding-top: 10rem;
    padding-bottom: 44.375rem;
  }
}

.p-home__bg-bottom {
  position: relative;
  background: url(../images/home/bg_bottom.webp) center/cover no-repeat, url(../images/home/bg_bottom.jpg) center/cover no-repeat;
  padding-top: 12.75rem;
  padding-bottom: 17.875rem;
  padding-bottom: 21.875rem;
  overflow: clip;
}

@media screen and (max-width: 767px) {
  .p-home__bg-bottom {
    padding-top: 7.5rem;
    padding-bottom: 28.75rem;
  }
}

.p-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 9999;
  opacity: 1;
  transition: 1.3s ease-in-out;
  pointer-events: none;
}

.p-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.3s ease-in-out, visibility 1.3s;
}

.p-loading__video video {
  width: 100vw;
  height: 100svh;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-loading__logo {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 25rem;
  aspect-ratio: 180/41;
  opacity: 0;
  transition: opacity 4s ease-in-out, transform 4s ease-in-out, top 3s;
}

@media screen and (max-width: 767px) {
  .p-loading__logo {
    max-width: 12.5rem;
  }
}

.p-loading__logo.is-active {
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  /* フェードイン完了 */
}

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

.p-lower {
  background: url(../images/common/lower_bg.webp) center/cover no-repeat, url(../images/common/lower_bg.jpg) center/cover no-repeat;
}

.p-lower__fv {
  position: relative;
  height: 25.375rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-lower__fv {
    height: 15rem;
  }
}

.p-lower__title {
  display: flex;
  flex-direction: column;
}

.p-lower__title-en {
  font-family: "Permanent Marker", serif;
  font-size: 3.9375rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

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

.p-lower__title-ja {
  position: relative;
  display: inline-block;
  margin-top: 0.75rem;
  padding-left: 0.625rem;
}

.p-lower__title-ja::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 100vh;
  background: #2157be;
}

.p-mv {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: clip;
}

.p-mv video {
  width: 100%;
  height: 100%;
  aspect-ratio: 1920/1000;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-mv video {
    height: 100svh;
    scale: 1.1;
  }
}

.p-news-detail__header {
  padding-block: 2rem;
  padding-inline: 0.5rem;
  border-bottom: 1px solid #dddddd;
}

.p-news-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.p-news-detail__body {
  margin-top: 5rem;
}

.p-news-detail__body p {
  font-size: 1.125rem;
  line-height: 1.7;
}

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

.p-news-detail__body p+p {
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .p-news-detail__body p+p {
    margin-top: 0.75rem;
  }
}

.p-news-detail__body img {
  display: block;
  width: 98%;
  margin-inline: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-news-detail__body ul {
  margin-top: 2.5rem;
  padding-left: 2em;
}

.p-news-detail__body li {
  list-style: disc;
  font-size: 1.125rem;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .p-news-detail__body li {
    font-size: 1rem;
  }
}

.p-news-detail__body li+li {
  margin-top: 0.5rem;
}

.p-news-detail__body a {
  border-bottom: 1px solid #2157be;
  color: #2157be;
  font-size: 1.125rem;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .p-news-detail__body a {
    font-size: 1rem;
  }
}

.p-news-detail__btn {
  margin-top: 7.5rem;
  text-align: center;
}

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

.p-news-detail__btn a {
  border-radius: 6px;
  border: 1px solid #2157be;
  background: #2157be;
  color: #ffffff;
  font-size: 1.375rem;
  font-weight: 500;
  padding-block: 1rem;
  padding-inline: 2.5rem;
  transition: 0.25s;
}

@media (any-hover: hover) {
  .p-news-detail__btn a:hover {
    background: #ffffff;
    color: #2157be;
  }
}

.p-news__inner.l-inner {
  padding-bottom: 9.375rem;
}

@media screen and (max-width: 767px) {
  .p-news__inner.l-inner {
    padding-bottom: 7.5rem;
  }
}

.p-news__body {
  max-width: 62.5rem;
  margin-top: 4.75rem;
  margin-inline: auto;
}

.p-news__card a {
  position: relative;
  display: flex;
  gap: 1rem;
  padding-block: 2rem;
  padding-right: 5.3125rem;
  padding-left: 2rem;
  border-bottom: 1px solid #dddddd;
}

@media screen and (max-width: 767px) {
  .p-news__card a {
    flex-direction: column;
    gap: 0.5rem;
    padding-block: 1.5rem;
    padding-left: 0.75rem;
    padding-right: 1.875rem;
  }
}

.p-news__card a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.125rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.4375rem;
  height: 0.4375rem;
  border-top: solid 2px #034495;
  border-right: solid 2px #034495;
  transition: 0.25s;
}

@media screen and (max-width: 767px) {
  .p-news__card a::before {
    right: 0.875rem;
  }
}

.p-news__card a:active {
  background: rgba(0, 0, 0, 0.11);
}

.p-news__card a:active::before {
  right: 1.75rem;
}

@media screen and (max-width: 767px) {
  .p-news__card a:active::before {
    right: 0.5rem;
  }
}

@media (any-hover: hover) {
  .p-news__card a:hover {
    background: rgba(0, 0, 0, 0.11);
  }

  .p-news__card a:hover::before {
    right: 1.75rem;
  }
}

@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-news__card a:hover::before {
    right: 0.5rem;
  }
}

.p-news__card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.p-news__card-time {
  color: #777777;
  letter-spacing: 0.04em;
}

.p-news__card-category {
  padding: 0.4375rem 1.5625rem;
  background: #000000;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-news__card-title {
  color: #333333;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 制限したい行数が3の場合 */
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-news__card-title {
    line-height: 1.6;
  }
}

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 4.25rem;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border: 1px solid transparent;
  color: #333333;
  font-size: 1.25rem;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1rem;
  }
}

.wp-pagenavi a:active {
  border: none;
  border: 1px solid #333333;
  background: rgba(51, 51, 51, 0.1);
}

.wp-pagenavi a:hover {
  border: none;
  border: 1px solid #333333;
}

.wp-pagenavi span.current {
  color: #333333;
}

.wp-pagenavi .smaller,
.wp-pagenavi .larger {
  color: #919191;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: #919191;
}

.wp-pagenavi .first,
.wp-pagenavi .last {
  width: 7.5rem;
}

@media screen and (max-width: 767px) {

  .wp-pagenavi .first,
  .wp-pagenavi .last {
    width: 4rem;
  }
}

.p-partner__body {
  margin-top: 6.1875rem;
  padding-bottom: 10rem;
}

@media screen and (max-width: 767px) {
  .p-partner__body {
    margin-top: 5.5rem;
    padding-bottom: 7.5rem;
  }
}

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

.p-partner__table {
  width: 78.625rem;
  margin-left: auto;
}

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

.p-partner__tr {
  display: flex;
  gap: 12.1875rem;
}

@media screen and (max-width: 767px) {
  .p-partner__tr {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-partner__tr:nth-of-type(1) .p-partner__td {
  letter-spacing: normal;
}

.p-partner__tr:not(:first-child) {
  margin-top: 7.9375rem;
}

@media screen and (max-width: 767px) {
  .p-partner__tr:not(:first-child) {
    margin-top: 6.25rem;
  }
}

.p-partner__th {
  flex-shrink: 0;
  width: 13.5rem;
  padding-top: 0.3125rem;
  font-size: 1.125rem;
  font-weight: 500;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .p-partner__th {
    width: 100%;
    font-size: 1.25rem;
  }
}

.p-partner__td {
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  line-height: 2;
}

.p-partner__btn-wrapper {
  margin-top: 2.875rem;
}

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

.p-partner__btn {
  position: relative;
  padding-right: 2.75rem;
}

@media screen and (max-width: 767px) {
  .p-partner__btn {
    padding-right: 2rem;
  }
}

.p-partner__btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 9.1875rem;
  height: 1px;
  background: transparent;
  transition: 0.25s;
}

@media screen and (max-width: 767px) {
  .p-partner__btn::before {
    width: 8.125rem;
  }
}

.p-partner__btn:active::before {
  background: #000000;
}

@media (any-hover: hover) {
  .p-partner__btn:hover::before {
    background: #000000;
  }
}

.p-partner__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.5rem;
  width: 1.9375rem;
  height: 1.9375rem;
  border: 0.0625rem solid #666666;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-partner__btn-arrow::before {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.p-partner__btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.3125rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 0.125rem #666666;
  border-right: solid 0.125rem #666666;
  transition: 0.25s;
}

@media screen and (max-width: 767px) {
  .p-partner__btn-arrow::after {
    right: 0.1875rem;
    border-top: solid 0.0625rem #666666;
    border-right: solid 0.0625rem #666666;
  }
}

.p-partner__btn:active .p-partner__btn-arrow::before {
  right: -0.75rem;
}

.p-partner__btn:active .p-partner__btn-arrow::after {
  right: 0.0625rem;
}

@media screen and (max-width: 767px) {
  .p-partner__btn:active .p-partner__btn-arrow::after {
    right: -0.0625rem;
  }
}

@media (any-hover: hover) {
  .p-partner__btn:hover .p-partner__btn-arrow::before {
    right: -0.75rem;
  }
}

@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-partner__btn:hover .p-partner__btn-arrow::before {
    right: -0.625rem;
  }
}

@media (any-hover: hover) {
  .p-partner__btn:hover .p-partner__btn-arrow::after {
    right: 0.0625rem;
  }
}

@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-partner__btn:hover .p-partner__btn-arrow::after {
    right: 0;
  }
}

.p-progress {
  flex-shrink: 0;
  width: 0.1875rem;
}

@media screen and (max-width: 767px) {
  .p-progress {
    width: 0.125rem;
  }
}

.p-progress__bar {
  width: 100%;
  height: 0;
  transform-origin: top;
  transition: 0.2s ease;
}

@media screen and (max-width: 767px) {
  .p-progress__bar {
    transition: 0.6s ease;
  }
}

.p-title__en {
  display: block;
  font-family: "Permanent Marker", serif;
  line-height: 1;
}

.p-title__ja {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.u-md-block {
  display: none;
}

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

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

.u-pc-contents {
  display: contents;
}

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

/*# sourceMappingURL=style.css.map */