@charset "UTF-8";
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-main: #ff6753;
  --color-main-10: #fff2f1;
  --color-main-20: #ffe5e2;
  --color-main-30: #ffd0ca;
  --color-main-50: #ffada3;
  --color-accent: #ffd3c2;
  --color-gray-bg: #3c3837;
  --color-gray-60: #999;
  --color-gray-text: #616161;
  --color-main-5: #fff8f7;
  --color-gray-bg: #3c3837;
  --space-2: 2px;
  --space-3: 3px;
  --space-4: 4px;
  --space-5: 5px;
  --space-6: 6px;
  --space-8: 8px;
  --space-8-5: 8.5px;
  --space-10: 10px;
  --space-12: 12px;
  --space-13: 13px;
  --space-14: 14px;
  --space-15: 15px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-25: 25px;
  --space-28: 28px;
  --space-30: 30px;
  --space-31: 31px;
  --space-33: 33px;
  --space-35: 35px;
  --space-40: 40px;
  --space-43: 43px;
  --space-48: 48px;
  --space-50: 50px;
  --space-60: 60px;
  --space-63: 63px;
  --space-80: 80px;
  --space-100: 100px;
  --space-110: 110px;
  --space-125: 125px;
  --space-130: 130px;
  --space-135: 135px;
  --space-150: 150px;
  --space-159: 159px;
  --space-160: 160px;
  --space-200: 200px;
  --space-250: 250px;
  --space-1em: 1em;
  --space-1-5em: 1.5em;
  --font-size-8: 8px;
  --font-size-10: 10px;
  --font-size-11: 11px;
  --font-size-12: 12px;
  --font-size-13: 13px;
  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-24: 24px;
  --font-size-28: 28px;
  --font-size-29: 29px;
  --font-size-32: 32px;
  --font-size-38: 38px;
  --font-size-48: 48px;
  --line-height-1: 1;
  --line-height-1-2: 1.2;
  --line-height-1-4: 1.4;
  --line-height-1-5: 1.5;
  --line-height-2: 2;
  --line-height-2-2: 2.2;
  --line-height-14: 14px;
  --line-height-16: 16px;
  --line-height-20: 20px;
  --line-height-21: 21px;
  --line-height-22: 22px;
  --line-height-23: 23px;
  --line-height-24: 24px;
  --line-height-25: 25px;
  --line-height-30: 30px;
  --line-height-35: 35px;
  --line-height-40: 40px;
  --line-height-44: 44px;
  --width-780: 780px;
  --drawer-width: 420px;
  --header-height: 78px;
  --anchor-scroll-offset: calc(var(--header-height) + 70px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  color-scheme: only light;
  font-size: var(--font-size-16);
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: var(--anchor-scroll-offset);
}

body {
  font-family: "Helvetica Neue", "Helvetica", "Arial", "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-drawer-open {
  overflow: hidden;
}
body:not(.wp-admin):not(.editor-styles-wrapper) {
  user-select: none;
}
body:not(.wp-admin):not(.editor-styles-wrapper) input,
body:not(.wp-admin):not(.editor-styles-wrapper) textarea {
  user-select: text;
}

a {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  a:hover:not([class^=c-]) {
    text-decoration: underline;
    color: var(--color-main);
  }
}
a.is-touched:not([class^=c-]) {
  text-decoration: underline;
  color: var(--color-main);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

p {
  letter-spacing: 5%;
}
@media screen and (max-width: 768px) {
  p {
    letter-spacing: 0;
  }
}

.sp-only {
  display: none;
}

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

@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

._angle-icon {
  display: block;
  color: inherit;
}

._divider {
  width: 100%;
  height: 0;
  border: none;
  border-bottom: 0.25px solid rgba(0, 0, 0, 0.3);
  margin: 0;
}

.l-main {
  padding-top: var(--space-125);
}
@media screen and (max-width: 768px) {
  .l-main {
    padding-top: var(--space-125);
  }
}

.l-contents {
  position: relative;
}

.l-container {
  width: 100%;
  max-width: calc(var(--width-780) + var(--space-30) * 2);
  margin: 0 auto;
  padding: 0 var(--space-30);
}
@media screen and (max-width: 768px) {
  .l-container {
    padding: 0 var(--space-33);
  }
}

.l-section {
  padding: var(--space-150) 0;
}
@media screen and (max-width: 768px) {
  .l-section {
    padding: var(--space-100) 0;
  }
}

.l-maincontents {
  position: relative;
}
.l-maincontents__logo {
  position: sticky;
  top: 50px;
  left: 50px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin-left: var(--space-30);
  background: var(--color-white);
  border-radius: 50%;
}
.l-maincontents__logo-img {
  display: block;
  width: 27px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .l-maincontents__logo {
    top: 30px;
    left: 30px;
  }
}

.t-d-title {
  font-size: var(--font-size-38);
  line-height: var(--line-height-40);
  font-weight: 500;
}

.t-d-subtitle {
  font-size: var(--font-size-14);
  line-height: var(--line-height-24);
  font-weight: 400;
}

.t-d-body {
  font-size: var(--font-size-12);
  line-height: var(--line-height-20);
  font-weight: 400;
}
.t-d-body--medium {
  font-weight: 500;
}
.t-d-body--bold {
  font-weight: 700;
}

.t-title-page {
  font-size: var(--font-size-48);
  line-height: var(--line-height-1);
  font-weight: 500;
}

.t-news-title {
  font-size: var(--font-size-20);
  line-height: var(--line-height-30);
  font-weight: 500;
}

.t-body-title {
  font-size: var(--font-size-20);
  line-height: var(--line-height-20);
  font-weight: 500;
}

.t-caption {
  font-size: var(--font-size-14);
  line-height: var(--line-height-22);
  font-weight: 400;
}

.t-news-date {
  font-size: var(--font-size-10);
  line-height: var(--line-height-20);
  font-weight: 400;
}

.t-oath {
  font-size: var(--font-size-20);
  line-height: var(--line-height-44);
  font-weight: 400;
}

.t-oath-caption {
  font-size: var(--font-size-24);
  line-height: var(--line-height-35);
  font-weight: 400;
}

.t-m-title {
  font-size: var(--font-size-32);
  line-height: var(--line-height-35);
  font-weight: 500;
}

.t-m-header-title {
  font-size: var(--font-size-38);
  line-height: var(--line-height-1);
  font-weight: 500;
}

.t-m-menu {
  font-size: var(--font-size-20);
  line-height: var(--line-height-1);
  font-weight: 500;
}

.t-regular {
  font-weight: 400;
}

.t-medium {
  font-weight: 500;
}

.t-bold {
  font-weight: 700;
}

.c-text-btn {
  display: inline-flex;
  align-items: center;
  width: 140px;
  height: 30px;
  padding: var(--space-4) var(--space-15);
  background-color: var(--color-main-5);
  border: none;
  border-bottom: 0.25px solid var(--color-black);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: var(--line-height-40);
  color: var(--color-black);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-text-btn:hover {
    background-color: var(--color-main-20);
    color: var(--color-black);
    text-decoration: none;
  }
}
.c-text-btn.is-touched {
  background-color: var(--color-main-20);
  color: var(--color-black);
  text-decoration: none;
}
.c-text-btn:active {
  background-color: var(--color-accent);
  border-bottom: none;
  color: var(--color-main);
}
.c-text-btn--white {
  color: var(--color-white);
}
@media (hover: hover) and (pointer: fine) {
  .c-text-btn--white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
  }
}
.c-text-btn--white.is-touched {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}
.c-text-btn--white:active {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.c-report-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 32px;
  padding: 0 var(--space-2);
  background-color: transparent;
  border: none;
  font-size: var(--font-size-10);
  font-weight: 400;
  line-height: var(--line-height-1-2);
  text-align: center;
  color: var(--color-black);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-report-btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
  }
}
.c-report-btn.is-touched {
  background-color: var(--color-black);
  color: var(--color-white);
  text-decoration: none;
}
.c-report-btn:active {
  background-color: var(--color-accent);
  color: var(--color-main);
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: var(--space-8-5) var(--space-43);
  background: linear-gradient(90deg, #ffd3c2 0%, #ff6753 100%);
  color: var(--color-white);
  font-size: var(--font-size-13);
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.btn__text {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff6753 0%, #ffd3c2 100%);
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover .btn__text {
    color: var(--color-white);
  }
  .btn:hover::before {
    opacity: 0;
  }
}
.btn.is-touched .btn__text {
  color: var(--color-white);
}
.btn.is-touched::before {
  opacity: 0;
}

.report-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: var(--space-3) 11px;
  border: 1px solid #333;
  border-radius: 50px;
  background: #fff;
  font-size: var(--font-size-10);
  font-weight: 600;
  line-height: var(--line-height-1-2);
  text-align: center;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .report-btn:hover {
    background-color: #333;
    color: var(--color-white);
    opacity: 1;
    text-decoration: none;
  }
}
.report-btn.is-touched {
  background-color: #333;
  color: var(--color-white);
  opacity: 1;
  text-decoration: none;
}

.c-post {
  margin-bottom: var(--space-40);
}
.c-post__title {
  font-size: var(--font-size-24);
  font-weight: 700;
  margin-bottom: var(--space-16);
}
.c-post__content {
  line-height: var(--line-height-2);
}

.c-main {
  position: relative;
  padding: var(--space-150) 0;
  background: var(--color-main);
  overflow: hidden;
}
.c-main__bg, .c-main__bg .is-fadeout {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: url(../images/home__main-pc-cover.svg) no-repeat center top/cover;
  width: 100%;
  height: 100%;
}
.c-main__bg {
  top: -800px;
}
.c-main__bg .is-fadeout {
  background: url(../images/home__main-pc.svg) no-repeat center top/cover;
}
.c-main__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: var(--space-160);
}
@media screen and (max-width: 768px) {
  .c-main__inner {
    gap: var(--space-80);
  }
}
.c-main__title {
  margin-bottom: var(--space-20);
  font-size: var(--font-size-38);
  font-weight: 500;
  line-height: var(--line-height-1);
}
.c-main__subtitle {
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 1.7;
}
.c-main__child {
  display: flex;
  flex-direction: column;
  gap: var(--space-40);
}
.c-main__img-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  aspect-ratio: 246/200;
  transition: background-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-main__img-link:hover {
    background-color: var(--color-accent);
  }
}
.c-main__img-link.is-touched {
  background-color: var(--color-accent);
}
@media screen and (max-width: 768px) {
  .c-main__img-link {
    height: auto;
  }
}
.c-main__sns {
  display: flex;
  align-items: center;
  gap: var(--space-20);
}
.c-main__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
}
.c-main__sns-link .instagram {
  width: 23px;
  height: 23px;
  transition: all 0.3s ease;
}
.c-main__sns-link .instagram path {
  transition: fill 0.3s ease;
}
.c-main__sns-link:has(.note) {
  width: 28px;
  height: 23px;
}
.c-main__sns-link .note {
  width: 12px;
  height: 12px;
}
.c-main__sns-link .note path {
  transition: fill 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-main__sns-link:hover .instagram path {
    fill: var(--color-main);
  }
  .c-main__sns-link:hover .note path {
    fill: var(--color-main);
  }
}
.c-main__sns-link.is-touched .instagram path {
  fill: var(--color-main);
}
.c-main__sns-link.is-touched .note path {
  fill: var(--color-main);
}

.c-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-20);
}
.c-nav-item__label {
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-1);
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .c-nav-item__label:hover {
    color: var(--color-main);
    text-decoration: underline;
  }
}
.c-nav-item__label.is-touched {
  color: var(--color-main);
  text-decoration: underline;
}
.c-nav-item.is-expanded .c-nav-item__label {
  color: var(--color-main);
  text-decoration: underline;
}
.c-nav-item__children {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.is-expanded .c-nav-item__children {
  display: flex;
}
.c-nav-item__child {
  font-size: var(--font-size-10);
  font-weight: 500;
  line-height: var(--line-height-1-4);
  color: var(--color-black);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-nav-item__child:hover {
    color: var(--color-main);
  }
}
.c-nav-item__child.is-touched {
  color: var(--color-main);
}

.c-dl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 13px;
  color: var(--color-black);
  transition: color 0.2s ease;
}
.c-dl-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
@media (hover: hover) and (pointer: fine) {
  .c-dl-icon:hover {
    color: var(--color-main-50);
  }
}
.c-dl-icon.is-touched {
  color: var(--color-main-50);
}
.c-dl-icon:active {
  color: var(--color-accent);
}

.c-link {
  --link-background: transparent;
  --link-background-hover: transparent;
  --link-background-active: var(--color-accent);
  --link-color: var(--color-gray-bg);
  --link-color-hover: var(--color-black);
  --link-color-active: var(--color-main);
  --link-border: none;
  --link-border-hover: var(--link-border);
  --link-border-active: var(--link-border);
  display: inline-flex;
  align-items: center;
  background-color: var(--link-background);
  border-bottom: var(--link-border);
  color: var(--link-color);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-link:hover {
    background-color: var(--link-background-hover);
    border-bottom: var(--link-border-hover);
    color: var(--link-color-hover);
    outline: none;
  }
}
.c-link.is-touched {
  background-color: var(--link-background-hover);
  border-bottom: var(--link-border-hover);
  color: var(--link-color-hover);
  outline: none;
}
.c-link:active, .c-link.is--active {
  background-color: var(--link-background-active);
  border-bottom: var(--link-border-active);
  color: var(--link-color-active);
}
.c-link:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
}
.c-link--category {
  --link-background: var(--color-white);
  --link-background-hover: var(--color-main-20);
  --link-background-active: var(--color-accent);
  justify-content: center;
  padding: var(--space-5) var(--space-15);
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: var(--line-height-25);
  letter-spacing: 0.7px;
  text-decoration: underline;
}
.c-link--category.is--active:not(:active) {
  --link-background-active: var(--color-main-10);
  --link-color-active: var(--color-black);
}
.c-link--category.no-underline {
  text-decoration: none;
}
.c-link--category-sm {
  height: 15px;
  padding: var(--space-5) var(--space-8);
  font-size: var(--font-size-8);
}
.c-link--more, .c-link--button {
  --link-background: var(--color-main-5);
  --link-background-hover: var(--color-main-20);
  --link-border: 0.25px solid rgba(0, 0, 0, 0.3);
  --link-border-hover: 0.25px solid rgba(0, 0, 0, 0.3);
  --link-border-active: 0.25px solid transparent;
  width: 140px;
  height: 30px;
  padding: var(--space-4) var(--space-10);
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: var(--line-height-40);
  letter-spacing: -0.15px;
}
.c-link--highlight {
  --link-background: var(--color-main-5);
  --link-background-hover: var(--color-main-20);
  --link-border: 0.25px solid rgba(0, 0, 0, 0.3);
  --link-border-hover: 0.25px solid rgba(0, 0, 0, 0.3);
  --link-border-active: 0.25px solid transparent;
  display: flex;
  gap: var(--space-3);
  width: 100%;
  min-height: 30px;
  padding: 0 var(--space-10);
  font-weight: 400;
  line-height: var(--line-height-20);
}
.c-link--highlight .c-link__text {
  font-weight: 500;
}
.c-link__text {
  text-decoration: inherit;
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: var(--line-height-20);
  letter-spacing: -0.15px;
  text-decoration: none;
  outline: none;
}
.c-link__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 9px;
  flex-shrink: 0;
  margin-left: var(--space-2);
  text-decoration: none;
}
.c-link__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.c-link__arrow--left {
  margin-right: var(--space-2);
  margin-left: 0;
}
.c-link__download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 13px;
  flex-shrink: 0;
  color: currentColor;
}
.c-link__download-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.c-link__download-icon path {
  stroke: currentColor;
  transition: stroke 0.2s ease;
}
.c-link--download .c-link__arrow {
  display: none;
}
.c-link--more .c-link__text, .c-link--button .c-link__text, .c-link--highlight .c-link__text {
  text-decoration: underline;
}
.c-link--more.no-underline .c-link__text, .c-link--button.no-underline .c-link__text, .c-link--highlight.no-underline .c-link__text {
  text-decoration: none;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-40);
}
.c-form__lead {
  margin-bottom: var(--space-20);
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-30);
  letter-spacing: 10%;
}
.c-form__note {
  font-size: var(--font-size-14);
  line-height: var(--line-height-25);
}
.c-form__note .required {
  font-size: var(--font-size-14);
  color: var(--color-main);
  font-family: "Noto Sans", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-form__note {
    font-size: var(--font-size-14);
    line-height: var(--line-height-23);
  }
}
.c-form__row {
  display: flex;
  gap: var(--space-20);
}
@media screen and (max-width: 768px) {
  .c-form__row {
    flex-direction: column;
  }
}
.c-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  flex: 1;
  width: 380px;
}
@media screen and (max-width: 768px) {
  .c-form__group {
    width: 100%;
  }
}
.c-form__group--full {
  width: 100%;
}
.c-form__label-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-20);
}
.c-form__label {
  position: relative;
  width: fit-content;
  padding-right: var(--space-10);
  font-size: var(--font-size-12);
  font-weight: 500;
  line-height: var(--line-height-22);
}
@media screen and (max-width: 768px) {
  .c-form__label {
    font-size: var(--font-size-14);
    line-height: var(--line-height-23);
  }
}
.c-form__label .required {
  font-family: "Noto Sans", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--color-main);
  line-height: var(--line-height-25);
  font-size: var(--font-size-14);
}
.c-form__error {
  font-size: var(--font-size-12);
  font-weight: 500;
  line-height: var(--line-height-22);
  color: var(--color-main);
  display: none;
}
@media screen and (max-width: 768px) {
  .c-form__error {
    font-size: var(--font-size-14);
    line-height: var(--line-height-23);
  }
}
.c-form__group.is-error .c-form__error {
  display: block;
}
.c-form__input, .c-form__textarea, .c-form__select {
  width: 100%;
  height: 30px;
  padding: 0 var(--space-15);
  background-color: var(--color-main-5);
  border: none;
  border-bottom: 0.25px solid rgba(0, 0, 0, 0.3);
  font-family: inherit;
  font-size: var(--font-size-14);
  line-height: var(--line-height-25);
  color: var(--color-black);
  transition: background-color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .c-form__input, .c-form__textarea, .c-form__select {
    font-size: var(--font-size-14);
    line-height: var(--line-height-23);
  }
}
.c-form__input::placeholder, .c-form__textarea::placeholder, .c-form__select::placeholder {
  color: var(--color-gray-60);
}
.c-form__input:focus, .c-form__textarea:focus, .c-form__select:focus {
  outline: none;
}
.c-form__group.is-error .c-form__input, .c-form__group.is-error .c-form__textarea, .c-form__group.is-error .c-form__select {
  background-color: var(--color-main-30);
}
.c-form__textarea {
  height: 180px;
  padding: var(--space-15);
  resize: vertical;
}
.c-form__select-wrapper {
  position: relative;
  width: 100%;
}
.c-form__select {
  display: block;
  appearance: none;
  border: 0.25px solid rgba(0, 0, 0, 0.3);
  padding-left: var(--space-20);
  padding-right: var(--space-30);
  cursor: pointer;
  background-image: none;
}
.c-form__select-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  border-left: 0.25px solid rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.c-form__select-icon img {
  width: 13px;
  height: auto;
}
.c-form__checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  cursor: pointer;
}
.c-form__checkbox input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--color-main-5);
  border: 0.25px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  flex-shrink: 0;
}
.c-form__checkbox input[type=checkbox]:checked {
  background-color: #f2f2f2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='10' viewBox='0 0 15 10' fill='none'%3E%3Cpath d='M0.732 4.223L6.315 9.953L15.268 1.23' stroke='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.c-form__checkbox span {
  font-size: var(--font-size-12);
  font-weight: 500;
  line-height: var(--line-height-20);
}
@media screen and (max-width: 768px) {
  .c-form__checkbox span {
    font-size: var(--font-size-14);
    line-height: var(--line-height-23);
  }
}

.c-form-confirm {
  display: flex;
  flex-direction: column;
  gap: var(--space-40);
}
.c-form-confirm .c-form__lead {
  margin-bottom: 0;
}
.c-form-confirm__display {
  display: flex;
  flex-direction: column;
  gap: var(--space-40);
}
.c-form-confirm__value {
  font-size: var(--font-size-14);
  line-height: var(--line-height-25);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-form-confirm__value {
    font-size: var(--font-size-14);
    line-height: var(--line-height-23);
  }
}
.c-form-confirm__value--textarea {
  white-space: pre-wrap;
}
.c-form-confirm__value--sub {
  font-size: var(--font-size-12);
  color: var(--color-gray-60);
}
.c-form-confirm__value--sub:empty {
  display: none;
}
.c-form-confirm__privacy {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  font-size: var(--font-size-12);
  font-weight: 500;
  line-height: var(--line-height-20);
}
@media screen and (max-width: 768px) {
  .c-form-confirm__privacy {
    font-size: var(--font-size-14);
    line-height: var(--line-height-23);
  }
}
.c-form-confirm__privacy a {
  text-decoration: underline;
}
.c-form-confirm__check {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: #f2f2f2;
  border: 0.25px solid #000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='10' viewBox='0 0 15 10' fill='none'%3E%3Cpath d='M0.732 4.223L6.315 9.953L15.268 1.23' stroke='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.c-form-confirm__actions {
  display: flex;
  gap: var(--space-20);
  margin-top: var(--space-40);
}
.c-form-confirm__error {
  text-align: center;
  padding: var(--space-40);
}
.c-form-confirm__error p {
  margin-bottom: var(--space-20);
}

.c-form-thanks {
  display: flex;
  flex-direction: column;
  padding: var(--space-40) 0;
}
@media screen and (max-width: 768px) {
  .c-form-thanks {
    padding: 0;
  }
}
.c-form-thanks__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-40);
}
.c-form-thanks__title {
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-30);
  letter-spacing: 1px;
  margin: 0;
}
.c-form-thanks__message {
  font-size: var(--font-size-14);
  line-height: var(--line-height-25);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-form-thanks__message {
    font-size: var(--font-size-14);
    line-height: var(--line-height-23);
  }
}

.c-text-btn--submit {
  background: linear-gradient(90deg, #ffd3c2 0%, #ff6753 100%);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  padding: var(--space-8-5) var(--space-43);
  min-width: 180px;
}
@media (hover: hover) and (pointer: fine) {
  .c-text-btn--submit:hover {
    background: linear-gradient(90deg, #ff6753 0%, #ffd3c2 100%);
    color: var(--color-white);
    text-decoration: none;
  }
}
.c-text-btn--submit.is-touched {
  background: linear-gradient(90deg, #ff6753 0%, #ffd3c2 100%);
  color: var(--color-white);
  text-decoration: none;
}
.c-text-btn--submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.c-content-h2 {
  display: flex;
  flex-direction: column;
  gap: var(--space-13);
  margin-bottom: var(--space-40);
}
@media screen and (max-width: 768px) {
  .c-content-h2 {
    margin-bottom: var(--space-20);
  }
}
.c-content-h2__title {
  font-size: var(--font-size-38);
  font-weight: 500;
  line-height: var(--line-height-40);
  color: var(--color-black);
  letter-spacing: 10%;
}
@media screen and (max-width: 768px) {
  .c-content-h2__title {
    letter-spacing: 0;
  }
}
.c-content-h2__subtitle {
  font-size: var(--font-size-16);
  line-height: var(--line-height-30);
  color: var(--color-black);
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  .c-content-h2__subtitle {
    font-size: var(--font-size-16);
    line-height: 27px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-content-h2__title {
    font-size: var(--font-size-32);
    line-height: var(--line-height-35);
  }
}
.c-content-h2.english .c-content-h2__title {
  font-weight: 400;
  letter-spacing: 0%;
}
@media screen and (max-width: 768px) {
  .c-content-h2.english .c-content-h2__title {
    font-size: var(--font-size-32);
  }
}

.c-service-card {
  display: flex;
  align-items: center;
  width: 100%;
  gap: var(--space-40);
  margin-bottom: var(--space-40);
}
@media screen and (max-width: 768px) {
  .c-service-card {
    gap: var(--space-20);
    flex-direction: column;
  }
}
.c-service-card__logo {
  width: 246px;
  height: 225px;
}
@media screen and (max-width: 768px) {
  .c-service-card__logo {
    width: 100%;
    align-items: center;
  }
}
.c-service-card__logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.c-service-card__logo-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-service-card__logo-img a:hover {
    opacity: 0.6;
  }
}
.c-service-card__logo-img a.is-touched {
  opacity: 0.6;
}
.c-service-card__logo-img img {
  max-width: 156px;
  height: auto;
}
.c-service-card__logo-label {
  font-size: var(--font-size-12);
  line-height: var(--line-height-20);
  text-align: center;
}
.c-service-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  height: 100%;
  gap: var(--space-20);
}
.c-service-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  padding: 0 0 0 var(--space-10);
  background-color: var(--color-main-5);
  border-bottom: 0.25px solid rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .c-service-card__header {
    height: 30px;
  }
}
.c-service-card__header .c-link--more {
  width: auto;
  height: calc(100% - 0.25px);
  border-bottom: none;
  line-height: var(--line-height-24);
}
.c-service-card__desc {
  font-size: var(--font-size-14);
  line-height: 25px;
}
.c-service-card__body {
  display: flex;
  align-items: stretch;
  gap: var(--space-20);
}
.c-service-card__sub-image {
  position: relative;
  flex-shrink: 0;
  width: 180px;
  overflow: hidden;
}
.c-service-card__sub-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.c-service-card__sub-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-service-card__content {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-service-card__body {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .c-service-card__sub-image {
    width: 100%;
    height: 220px;
  }
}

.wp-block-columns:has(.c-board-member) {
  gap: var(--space-20);
}
@media screen and (max-width: 768px) {
  .wp-block-columns:has(.c-board-member) {
    gap: var(--space-40);
  }
}

.c-board-member {
  position: relative;
  display: flex;
  flex-direction: column;
}
.c-board-member__image {
  position: relative;
  width: 100%;
  aspect-ratio: 180/225;
  overflow: hidden;
  transition: all 0.5s ease;
}
.c-board-member__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.c-board-member__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.c-board-member__summary {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: var(--space-20);
  background-color: var(--color-main-5);
  border-bottom: 0.25px solid rgba(0, 0, 0, 0.3);
  font-size: var(--font-size-14);
  transition: all 0.5s ease;
}
.c-board-member__position {
  font-weight: 600;
  font-size: var(--font-size-12);
  color: var(--color-black);
  line-height: var(--line-height-21);
}
.c-board-member__name-ja {
  margin: var(--space-2) 0 var(--space-4);
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-20);
}
.c-board-member__name-en {
  font-weight: 700;
  font-size: var(--font-size-12);
  line-height: var(--line-height-21);
  color: var(--color-gray-text);
}
@media screen and (max-width: 768px) {
  .c-board-member {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-board-member__image {
    height: auto;
    aspect-ratio: 336/340;
  }
}
@media screen and (max-width: 768px) {
  .c-board-member__summary {
    padding-left: var(--space-20);
    padding-right: var(--space-20);
  }
}

.c-board-member-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-20);
}
@media screen and (max-width: 768px) {
  .c-board-member-grid {
    flex-direction: column;
  }
}

.c-athlete-card {
  display: flex;
  flex-direction: column;
  background-color: #f2f2f2;
  border-bottom: 0.25px solid rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: var(--color-black);
  transition: background-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-athlete-card:hover {
    background-color: #e8e8e8;
  }
}
.c-athlete-card.is-touched {
  background-color: #e8e8e8;
}
.c-athlete-card__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 246/272;
}
.c-athlete-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.c-athlete-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-athlete-card:hover .c-athlete-card__image img {
    transform: scale(1.02);
  }
}
.c-athlete-card.is-touched .c-athlete-card__image img {
  transform: scale(1.02);
}
.c-athlete-card__content {
  display: flex;
  flex-direction: column;
  padding: var(--space-20);
  font-size: var(--font-size-14);
}
.c-athlete-card__title {
  font-weight: 600;
  line-height: var(--line-height-21);
}
.c-athlete-card__name-ja {
  margin: var(--space-2) 0 var(--space-4);
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-20);
}
.c-athlete-card__name-en {
  font-weight: 700;
  line-height: var(--line-height-24);
  color: var(--color-gray-text);
}
@media screen and (max-width: 768px) {
  .c-athlete-card {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-athlete-card__image {
    height: auto;
    aspect-ratio: 336/340;
  }
}
@media screen and (max-width: 768px) {
  .c-athlete-card__content {
    padding: var(--space-20);
  }
}

.c-athlete-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-40);
  width: 100%;
}
.c-athlete-detail__main {
  display: flex;
  align-items: flex-start;
  gap: var(--space-20);
}
.c-athlete-detail__image {
  flex-shrink: 0;
  width: 246px;
  overflow: hidden;
}
.c-athlete-detail__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.c-athlete-detail__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  font-weight: 600;
}
.c-athlete-detail__title {
  font-size: var(--font-size-14);
  line-height: var(--line-height-21);
}
.c-athlete-detail__name-ja {
  margin-top: var(--space-2);
  font-size: var(--font-size-20);
  line-height: var(--line-height-20);
}
.c-athlete-detail__name-en {
  margin-top: var(--space-4);
  font-size: var(--font-size-14);
  line-height: var(--line-height-24);
  color: var(--color-gray-text);
}
.c-athlete-detail__profile {
  margin-top: var(--space-20);
  font-size: var(--font-size-14);
  line-height: var(--line-height-25);
  color: var(--color-gray-text);
  font-weight: 400;
}
.c-athlete-detail__comment {
  margin-top: 26px;
  font-size: var(--font-size-14);
  line-height: var(--line-height-25);
}
.c-athlete-detail__comment-label {
  font-weight: 700;
  line-height: var(--line-height-20);
  color: var(--color-gray-text);
}
.c-athlete-detail__comment-text {
  font-weight: 400;
  color: var(--color-gray-text);
}
.c-athlete-detail__back {
  width: 246px;
}
@media screen and (max-width: 768px) {
  .c-athlete-detail {
    padding: 0 var(--space-30);
  }
}
@media screen and (max-width: 768px) {
  .c-athlete-detail__main {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .c-athlete-detail__image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-athlete-detail__image img {
    aspect-ratio: 150/194;
  }
}
@media screen and (max-width: 768px) {
  .c-athlete-detail__content {
    margin-top: var(--space-20);
  }
}
@media screen and (max-width: 768px) {
  .c-athlete-detail__back {
    width: auto;
  }
}

.c-background-noise {
  margin-top: var(--space-150);
  padding: var(--space-150) 0;
  background: url(../images/background--noise.jpg);
}
@media screen and (max-width: 768px) {
  .c-background-noise {
    margin-top: var(--space-100);
    padding: var(--space-100) 0;
  }
}
.c-background-noise .c-link--highlight {
  min-height: 30px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 47px 0 36px;
  background: var(--color-white);
}
.l-header__logo {
  flex-shrink: 0;
}
.l-header__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
}
@media screen and (max-width: 768px) {
  .l-header__logo a {
    width: 50px;
    height: 50px;
  }
}
.l-header__logo img {
  width: 50px;
  height: 43px;
}
@media screen and (max-width: 768px) {
  .l-header__logo img {
    width: 27px;
    height: 23px;
  }
}
.l-header__nav {
  position: absolute;
  left: 50%;
  top: 32px;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 29px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__nav-item a {
  white-space: nowrap;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: var(--line-height-1);
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-item a:hover {
    color: var(--color-main);
    text-decoration: underline;
  }
}
.l-header__nav-item a.is-touched {
  color: var(--color-main);
  text-decoration: underline;
}
.l-header__nav-item a:active {
  color: var(--color-accent);
}
.l-header__nav-item a.is--current {
  color: var(--color-main);
  text-decoration: underline;
}
.l-header__nav-item.is-active a {
  color: var(--color-main);
  text-decoration: underline;
}
.l-header__utils {
  display: flex;
  align-items: center;
  margin-top: 7px;
  gap: var(--space-20);
}
@media screen and (max-width: 768px) {
  .l-header__utils {
    gap: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__report-btn {
    display: none;
  }
}
.l-header__lang {
  position: relative;
}
.l-header__lang .country-selector.lii-weglot-switcher {
  position: relative;
  right: auto;
  bottom: auto;
  display: block;
  width: auto;
  line-height: var(--line-height-1);
}
.l-header__lang .country-selector.lii-weglot-switcher input {
  display: none !important;
}
.l-header__lang .country-selector.lii-weglot-switcher input:checked ~ label::before {
  transform: rotateX(180deg);
}
.l-header__lang .country-selector.lii-weglot-switcher input:checked ~ ul {
  opacity: 1;
  visibility: visible;
}
.l-header__lang .country-selector.lii-weglot-switcher label {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.l-header__lang .country-selector.lii-weglot-switcher label::before {
  flex-shrink: 0;
  width: 7px;
  height: 4px;
  background: url("../images/icon-angle--down.svg") center/contain no-repeat;
  content: "";
}
.l-header__lang .country-selector.lii-weglot-switcher .wglanguage-name,
.l-header__lang .country-selector.lii-weglot-switcher a {
  padding: 0;
  font-size: var(--font-size-10);
  font-weight: 500;
  line-height: var(--line-height-1);
  color: var(--color-black);
  text-decoration: none;
}
.l-header__lang .country-selector.lii-weglot-switcher ul {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  display: block;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.l-header__lang .country-selector.lii-weglot-switcher li {
  display: block;
  margin: 0;
  padding: 0;
  line-height: var(--line-height-1);
}
.l-header__lang .country-selector.lii-weglot-switcher a {
  display: block;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__lang .country-selector.lii-weglot-switcher a:hover {
    color: var(--color-black);
    text-decoration: none;
  }
}
.l-header__lang .country-selector.lii-weglot-switcher a.is-touched {
  color: var(--color-black);
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .l-header__lang {
    display: none;
  }
}
.l-header__lang-btn {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.l-header__lang-icon {
  width: 7px;
}
.is-open .l-header__lang-icon {
  transform: rotateX(180deg);
}
.l-header__lang-text {
  font-size: var(--font-size-10);
  font-weight: 500;
  color: var(--color-black);
}
.l-header__lang-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.is-open .l-header__lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-header__lang-dropdown li {
  margin: 0;
  padding: 0;
}
.l-header__lang-dropdown a {
  display: block;
  font-size: var(--font-size-10);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__lang-dropdown a:hover {
    background-color: #f5f5f5;
    text-decoration: none;
  }
}
.l-header__lang-dropdown a.is-touched {
  background-color: #f5f5f5;
  text-decoration: none;
}
.l-header__lang-dropdown a.is-active {
  color: var(--color-main);
}
.l-header__menu-btn {
  display: none;
  width: 16px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .l-header__menu-btn {
    display: block;
  }
}
.l-header__menu-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
  width: 16px;
  height: 16px;
}
.l-header__menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: var(--color-black);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 66px;
    padding: 0 31px 0 22px;
  }
}

.l-footer {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-top: var(--space-150);
  padding-top: var(--space-80);
  padding-bottom: var(--space-80);
  background: #3c3837;
  color: var(--color-white);
}
.l-footer.no-margin {
  margin-top: 0;
}
.l-footer a {
  white-space: nowrap;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .l-footer a {
    white-space: unset;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer a:hover {
    color: var(--color-main);
    text-decoration: none;
  }
}
.l-footer a.is-touched {
  color: var(--color-main);
  text-decoration: none;
}
.l-footer .l-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-60);
}
.l-footer__header {
  display: flex;
  align-items: flex-end;
  gap: var(--space-60);
}
.l-footer__logo {
  flex-shrink: 0;
}
.l-footer__logo img {
  display: block;
  width: 56px;
  height: 48px;
}
.l-footer__slogan {
  display: block;
  width: 176px;
  height: 16px;
}
.l-footer__nav {
  display: flex;
  gap: var(--space-20);
}
.l-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-35);
  width: 80px;
  flex-shrink: 0;
}
.l-footer__nav-group:nth-child(3) {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-group:nth-child(3) {
    width: auto;
  }
}
.l-footer__nav-group:nth-child(4) {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-group:nth-child(4) {
    width: auto;
  }
}
.l-footer__nav-group:nth-child(5) {
  width: 70px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-group:nth-child(5) {
    width: auto;
  }
}
.l-footer__nav-group:nth-child(6) {
  width: 90px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-group:nth-child(6) {
    width: auto;
  }
}
.l-footer__nav-group:nth-child(7) {
  width: 84px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-group:nth-child(7) {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav-group:nth-child(7) > a span:last-child {
    line-height: 28px;
  }
}
.l-footer__nav-title {
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: var(--line-height-1);
}
.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: var(--line-height-1-4);
}
.l-footer__nav-list a {
  display: block;
  font-size: var(--font-size-10);
  font-weight: 500;
  line-height: var(--line-height-1-4);
  white-space: pre-wrap;
}
.l-footer__bottom {
  display: flex;
  align-items: center;
  gap: var(--space-40);
  margin-top: var(--space-30);
}
.l-footer__services {
  display: flex;
  align-items: center;
  gap: var(--space-20);
}
.l-footer__service-logo {
  display: flex;
  align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__service-logo:hover img {
    opacity: 0.6;
  }
}
.l-footer__service-logo.is-touched img {
  opacity: 0.6;
}
.l-footer__service-logo img {
  height: auto;
  transition: all 0.3s ease;
}
.l-footer__service-logo--lii-sports img {
  width: 90px;
  aspect-ratio: 90/21;
}
.l-footer__service-logo--act img {
  width: 64px;
  aspect-ratio: 64/21;
}
.l-footer__service-logo--athlete-action img {
  width: 53px;
  aspect-ratio: 53/25;
}
.l-footer__service-logo--151plus img {
  width: 31px;
  aspect-ratio: 1/1;
}
.l-footer__service-logo--336 img {
  width: 41px;
  aspect-ratio: 1/1;
}
.l-footer__service-logo--haru-fit img {
  width: 50px;
  aspect-ratio: 50/32;
}
.l-footer__service-divider {
  width: 0.25px;
  height: 35px;
  background-color: var(--color-white);
  opacity: 0.4;
}
.l-footer__bottom-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  font-size: var(--font-size-10);
  font-weight: 400;
  line-height: var(--line-height-1-2);
}
.l-footer__bottom-right small {
  font-size: var(--font-size-10);
}
.l-footer__sns {
  display: flex;
  align-items: center;
  gap: var(--space-20);
  margin-left: auto;
}
.l-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer__sns-link:first-child svg {
  width: 23px;
  height: 23px;
}
.l-footer__sns-link:last-child {
  width: 28px;
  height: 23px;
}
.l-footer__sns-link:last-child svg {
  width: 13px;
  height: 13px;
}
.l-footer__sns-link svg {
  display: block;
}
.l-footer__sns-link svg path {
  transition: fill 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__sns-link:hover svg path {
    fill: var(--color-main);
  }
}
.l-footer__sns-link.is-touched svg path {
  fill: var(--color-main);
}
.l-footer__copyright {
  display: inline-block;
  transform: scale(1.2);
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: var(--space-80) 33px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .l-container {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: var(--space-60);
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__header {
    grid-column: 1/-1;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__logo img {
    width: 56px;
    height: 48px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__slogan {
    width: 176px;
    height: 16px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    flex-direction: column;
    gap: var(--space-30);
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav-group {
    flex-direction: row;
    gap: var(--space-20);
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav-group:nth-child(3), .l-footer__nav-group:nth-child(4), .l-footer__nav-group:nth-child(5) {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav-title {
    flex-shrink: 0;
    width: 65px;
    font-size: var(--font-size-14);
    line-height: var(--line-height-14);
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav-list {
    gap: var(--space-10);
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav-list a {
    font-size: var(--font-size-10);
    line-height: var(--line-height-14);
    color: #ccc;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__bottom {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: auto;
    gap: var(--space-40);
  }
}
@media screen and (max-width: 768px) {
  .l-footer__services {
    flex-direction: column;
    align-items: center;
    gap: var(--space-31);
    padding-top: var(--space-31);
  }
}
@media screen and (max-width: 768px) {
  .l-footer__service-logo {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__service-logo--athlete-action img {
    width: 77px;
    aspect-ratio: 77/36;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__service-logo--151plus img {
    width: 37px;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__service-logo--336 img {
    width: 59px;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__service-logo--haru-fit img {
    width: 63px;
    aspect-ratio: 63/41;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__service-divider {
    width: 100%;
    height: 0.5px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__sns {
    margin-top: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__bottom-right {
    align-items: start;
    gap: var(--space-10);
  }
}

.l-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 300;
}
.l-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.l-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-color: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.2s ease;
  z-index: 400;
  overflow-y: auto;
}
.l-drawer.is-active {
  transform: translateX(0);
}
.l-drawer__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  min-height: 100%;
  padding: 86px var(--space-30) var(--space-60) 52.4875621891%;
}
.l-drawer__close {
  position: absolute;
  top: 44px;
  right: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 32px;
}
@media screen and (max-width: 768px) {
  .l-drawer__close {
    top: 21px;
  }
}
.l-drawer__close span {
  position: absolute;
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 5px;
  background-color: #000;
  transition: all 0.3s ease;
}
.l-drawer__close span:first-child {
  transform: rotate(45deg);
}
.l-drawer__close span:last-child {
  transform: rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
  .l-drawer__close:hover span {
    background-color: var(--color-main);
  }
}
.l-drawer__close.is-touched span {
  background-color: var(--color-main);
}
.l-drawer__logo img {
  width: 43px;
}
.l-drawer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-30);
}
.l-drawer__nav-list li {
  line-height: var(--line-height-1);
}
.l-drawer__nav-list li:has(.c-report-btn) {
  margin-top: var(--space-14);
}
.l-drawer__nav-list a:not(.c-report-btn) {
  display: block;
  width: fit-content;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 0.9;
}
.l-drawer__nav-list a:not(.c-report-btn)::first-letter {
  text-transform: uppercase;
}
.l-drawer__nav-list .c-report-btn {
  width: fit-content;
}
.l-drawer__sns {
  gap: var(--space-13);
  margin-top: auto;
}
.l-drawer__nav-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-drawer .l-header__lang {
  display: block;
}

body.home .l-header {
  opacity: 0.25;
  background: transparent;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  body.home .l-header:hover {
    opacity: 1;
  }
}
body.home .l-header.is-touched {
  opacity: 1;
}
body.home .l-header .c-report-btn:not(:hover):not(:active) {
  background: transparent;
}
body.home .l-main {
  padding-top: 0;
}

.p-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 500px;
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-hero {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
  }
}
.p-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-hero__video {
    background: #ff745c;
    object-fit: cover;
  }
}
.p-hero__play-icon {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 100;
  cursor: pointer;
  opacity: 0.25;
  transition: all 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-hero__play-icon:hover {
    opacity: 1;
  }
}
.p-hero__play-icon.is-touched {
  opacity: 1;
}
.p-hero__play-icon:active path {
  fill: #ffd3c2;
}
@media screen and (max-width: 768px) {
  .p-hero__play-icon {
    left: 33px;
    bottom: 33px;
  }
}
.p-hero__play-icon .on {
  display: block;
}
.p-hero__play-icon .of {
  display: none;
}
.p-hero__play-icon.is-muted .on {
  display: none;
}
.p-hero__play-icon.is-muted .of {
  display: block;
}

.c-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  text-align: center;
}
.c-hero__announcement {
  position: absolute;
  top: 45px;
  left: 50px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 1.42;
  text-align-last: left;
}
.c-hero img {
  width: 38.59375vw;
  max-width: 494px;
}
@media screen and (max-width: 1024px) {
  .c-hero {
    min-height: 500px;
  }
  .c-hero__announcement {
    top: 26px;
    left: 30px;
  }
  .c-hero__announcement-main {
    font-size: var(--font-size-14);
  }
  .c-hero__announcement-sub {
    font-size: var(--font-size-12);
  }
  .c-hero img {
    max-width: 492px;
    width: 38.4375vw;
  }
}
@media screen and (max-width: 768px) {
  .c-hero img {
    width: 61.4427860697vw;
  }
}

.wp-block-group:has(.p-passion__content) {
  position: relative;
  z-index: 1;
}

.c-background-noise:has(.p-passion__content) {
  margin-top: 0;
}

.p-passion {
  position: relative;
  padding: var(--space-150) var(--space-250);
}
.p-passion__content .c-content-h2 {
  margin-bottom: 65px;
}
.p-passion__text p,
.p-passion__text .wp-block-paragraph {
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-44);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-passion {
    padding: var(--space-100) var(--space-30);
  }
}
@media screen and (max-width: 768px) {
  .p-passion__text p, .p-passion__text .wp-block-paragraph {
    font-size: var(--font-size-14);
    line-height: var(--line-height-2-2);
  }
}

.c-service__category-title {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid #000;
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-1);
}
.c-service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-20);
}
.c-service__item-text {
  margin-top: var(--space-5);
  font-size: var(--font-size-12);
  line-height: 1.65;
  text-align: center;
}
.c-service__item img {
  width: 90%;
  height: auto;
  object-fit: contain;
}
.c-service__item [alt="Lii sports"] {
  width: 156px;
  aspect-ratio: 13/3;
}
.c-service__item [alt=ACT] {
  width: 113px;
  aspect-ratio: 113/37;
}
.c-service__item [alt="Lii learning studio"] {
  width: 69px;
  aspect-ratio: 69/67;
}
.c-service__item [alt="HARU FIT TOKYO"] {
  width: 85px;
  aspect-ratio: 17/11;
}
@media screen and (max-width: 768px) {
  .c-service__title {
    font-size: var(--font-size-28);
  }
}
@media screen and (max-width: 768px) {
  .c-service__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-20);
  }
}
@media screen and (max-width: 768px) {
  .c-service__item img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .c-service__item [alt="Lii sports"] {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .c-service__item [alt=ACT] {
    width: 76%;
  }
}
@media screen and (max-width: 768px) {
  .c-service__item [alt="Lii learning studio"] {
    width: 54%;
  }
}
@media screen and (max-width: 768px) {
  .c-service__item [alt="HARU FIT TOKYO"] {
    width: 82%;
  }
}

.c-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-20);
}
@media (hover: hover) and (pointer: fine) {
  .c-news__item:hover {
    opacity: 1;
    text-decoration: none;
  }
}
.c-news__item.is-touched {
  opacity: 1;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-news__item:hover .c-news__thumb img {
    transform: scale(1.05);
  }
}
.c-news__item.is-touched .c-news__thumb img {
  transform: scale(1.05);
}
.c-news__thumb {
  aspect-ratio: 246/180;
  overflow: hidden;
  margin-bottom: var(--space-20);
}
.c-news__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.c-news__date {
  display: block;
  margin-bottom: var(--space-16);
  font-size: var(--font-size-10);
  font-weight: 450;
  line-height: var(--line-height-1);
}
.c-news__item-title {
  font-size: var(--font-size-14);
  font-weight: 700;
  line-height: var(--line-height-1-5);
}
.c-news__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .c-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-news__thumb {
    margin-bottom: var(--space-4);
  }
}
@media screen and (max-width: 480px) {
  .c-news {
    gap: var(--space-60);
  }
  .c-news__grid {
    grid-template-columns: 1fr;
    gap: var(--space-40);
  }
  .c-news__item {
    max-width: 260px;
    width: 54.7263681592vw;
    margin: 0 auto;
  }
}

.c-recruit__lead {
  font-size: var(--font-size-20);
  font-weight: 500;
}
.c-recruit__lead-sub {
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .c-recruit {
    padding: var(--space-40) 0;
  }
}

.c-press__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-20);
}
.c-press__item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
.c-press__item img {
  max-width: 80px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .c-press__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.5s ease-out;
}
.c-loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.c-loading__inner {
  position: relative;
  aspect-ratio: 224/178;
  max-width: 400px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
.c-loading__inner.is-visible {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-loading__inner {
    width: 56.7164179104%;
  }
}
.c-loading__ball {
  position: absolute;
  width: 38.3928571429%;
  aspect-ratio: 1/1;
  background: #ff6753;
  border-radius: 50%;
}
.c-loading__ball--right-top {
  top: 0;
  right: 0;
  opacity: 0;
  animation: ball-opacity 2s linear infinite alternate;
  animation-delay: 1s;
}
.c-loading__ball--left-bottom {
  bottom: 0;
  left: 0;
  opacity: 0;
  animation: ball-opacity 2s linear infinite alternate;
}
.c-loading__ball--move1, .c-loading__ball--follow1, .c-loading__ball--follow2, .c-loading__ball--follow3, .c-loading__ball--follow4, .c-loading__ball--follow5, .c-loading__ball--follow6 {
  position: absolute;
  bottom: 0;
  left: 0;
  will-change: transform;
  animation: ball-bounce1 1s cubic-bezier(0.83, 0.12, 0.12, 0.83) infinite alternate;
}
.c-loading__ball--follow1, .c-loading__ball--follow2, .c-loading__ball--follow3, .c-loading__ball--follow4, .c-loading__ball--follow5, .c-loading__ball--follow6 {
  animation-timing-function: ease-in-out;
}
.c-loading__ball--follow1 {
  opacity: 0.3;
  animation-delay: 0.15s;
}
.c-loading__ball--follow2 {
  opacity: 0.25;
  animation-delay: 0.3s;
}
.c-loading__ball--follow3 {
  opacity: 0.2;
  animation-delay: 0.45s;
}
.c-loading__ball--follow4 {
  opacity: 0.15;
  animation-delay: 0.6s;
}
.c-loading__ball--follow5 {
  opacity: 0.1;
  animation-delay: 0.75s;
}
.c-loading__ball--follow6 {
  opacity: 0.05;
  animation-delay: 0.9s;
}

@keyframes ball-bounce1 {
  0%, 10% {
    transform: translate(0, 0);
  }
  90%, 100% {
    transform: translate(160.4651162791%, -106.976744186%);
  }
}
@keyframes ball-opacity {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.c-page__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-13);
  max-width: calc(980px + var(--space-30) * 2);
  min-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-30) var(--space-80);
}
@media screen and (max-width: 768px) {
  .c-page__header {
    min-width: 100%;
    padding: 0 var(--space-33) 75px;
  }
}
.c-page__title {
  font-size: var(--font-size-48);
  font-weight: 500;
  line-height: var(--line-height-1-2);
}
@media screen and (max-width: 768px) {
  .c-page__title {
    font-size: var(--font-size-38);
  }
}
.c-page__description {
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: var(--line-height-24);
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  .c-page__description {
    white-space: normal;
  }
}
@media screen and (max-width: 768px) {
  .c-page__description br {
    display: none;
  }
}
.c-page__content {
  line-height: var(--line-height-2);
}
.c-page__content .h2-english {
  font-size: var(--line-height-20);
  font-weight: 500;
  line-height: var(--line-height-1);
}
.c-page__content .h2-english:not(:first-child) {
  margin-top: var(--space-80);
}
@media screen and (max-width: 768px) {
  .c-page__content .h2-english {
    padding: var(--space-10) 0;
  }
}
.c-page__content p:not([class]) {
  margin-bottom: var(--space-1-5em);
}

.c-oath {
  position: relative;
  text-align: center;
}
.c-oath__inner {
  max-width: calc(508px + var(--space-30) * 2);
  width: 100%;
  margin: 0 auto;
  padding: var(--space-100) var(--space-30) var(--space-150);
}
.c-oath__slogan {
  margin-bottom: var(--space-40);
}
.c-oath__slogan img {
  width: 100%;
  height: auto;
}
.c-oath__lead {
  margin-bottom: var(--space-40);
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 1.45;
}
.c-oath__body {
  margin: 0 auto var(--space-40);
  padding-left: var(--space-20);
  text-align: left;
}
.c-oath__body p {
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-2-2);
  margin-bottom: var(--space-20);
}
.c-oath__body p:last-child {
  margin-bottom: 0;
}
.c-oath__btn {
  margin-left: var(--space-20);
}
@media screen and (max-width: 768px) {
  .c-oath {
    margin-top: 20vh;
  }
}
@media screen and (max-width: 768px) {
  .c-oath__inner {
    margin-top: 55px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-oath__slogan img {
    width: 79.1044776119vw;
    max-width: 390px;
  }
}
@media screen and (max-width: 768px) {
  .c-oath__lead {
    font-size: var(--font-size-24);
    margin-bottom: var(--space-40);
  }
}
@media screen and (max-width: 768px) {
  .c-oath__body {
    width: 83.3333333333vw;
    max-width: 390px;
    margin: 0 auto var(--space-40);
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-oath__body p {
    font-size: var(--font-size-14);
    line-height: 2.28;
  }
}
@media screen and (max-width: 768px) {
  .c-oath__btn {
    margin-left: calc((100% - min(83.3333333333vw, 390px)) / 2);
  }
}

@media screen and (max-width: 768px) {
  body.philosophy .l-main {
    padding-top: 195px;
  }
}

.p-oath {
  position: relative;
  padding: var(--space-130) var(--space-50) var(--space-100) var(--space-50);
}
.p-oath .c-bounce {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1280px;
  width: 100%;
  height: 200%;
  margin: 0 auto;
  z-index: -1;
  pointer-events: none;
}
.p-oath .c-bounce canvas {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-oath .c-bounce {
    top: -45px;
    max-width: none;
    width: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .p-oath .c-bounce canvas {
    max-width: none;
  }
}
.p-oath > .wp-block-group__inner-container {
  display: contents;
}
.p-oath__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-40);
  max-width: 508px;
  margin: 0 auto;
}
.p-oath__inner > .wp-block-group__inner-container {
  width: 100%;
}
.p-oath__inner .c-content-h2 {
  align-items: flex-start;
  text-align: left;
  width: 100%;
  margin-bottom: 0;
}
.p-oath__slogan {
  width: 508px;
  transform: translateX(-5px);
  margin: 59px 0 0;
}
@media screen and (max-width: 768px) {
  .p-oath__slogan {
    transform: translateX(0);
    max-width: 337px;
    width: 100%;
    padding-left: 0;
    margin: 30px auto 0;
  }
}
.p-oath__slogan img {
  width: 93%;
  max-width: none;
  height: auto;
  margin: 0 auto;
  display: block;
}
.p-oath__lead {
  font-size: var(--font-size-24);
  line-height: var(--line-height-35);
  text-align: center;
  margin: 65px 0 0;
  width: 100%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-oath__lead {
    margin-top: 22px;
    font-size: var(--font-size-24);
    line-height: 40px;
    padding-left: var(--space-12);
  }
}
.p-oath__oath {
  display: flex;
  flex-direction: column;
  gap: var(--space-48);
  margin-top: 120px;
  width: 100%;
}
.p-oath__oath > .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-48);
}
.p-oath__oath .c-content-h2 {
  gap: 22px;
}
.p-oath__text > .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}
.p-oath__text p,
.p-oath__text .wp-block-paragraph {
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-44);
  text-align: left;
  margin: 0;
}
.p-oath__text--en {
  display: none;
}
html:lang(en) .p-oath__text--jp {
  display: none;
}
html:lang(en) .p-oath__text--en {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-oath {
    padding: var(--space-60) var(--space-30) var(--space-100);
  }
}
@media screen and (max-width: 768px) {
  .p-oath__inner {
    max-width: 335px;
    gap: var(--space-40);
  }
}
@media screen and (max-width: 768px) {
  .p-oath__inner > .wp-block-group__inner-container {
    max-width: 100%;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-oath__inner .c-content-h2 {
    margin-bottom: 43px;
  }
}
@media screen and (max-width: 768px) {
  .p-oath__oath {
    margin-top: 90px;
    gap: var(--space-40);
  }
}
@media screen and (max-width: 768px) {
  .p-oath__oath > .wp-block-group__inner-container {
    gap: var(--space-40);
  }
}
@media screen and (max-width: 768px) {
  .p-oath__oath .c-content-h2 {
    gap: var(--space-20);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-oath__text p, .p-oath__text .wp-block-paragraph {
    font-size: var(--font-size-14);
    line-height: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-oath__text {
    gap: var(--space-15);
  }
}
@media screen and (max-width: 768px) {
  .p-oath__text > .wp-block-group__inner-container {
    gap: var(--space-15);
  }
}

.p-ism {
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-ism {
    position: relative;
    padding: var(--space-100) 0 var(--space-50);
  }
}
.p-ism > .wp-block-group__inner-container {
  position: relative;
  padding: 85px 0 var(--space-200);
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-ism > .wp-block-group__inner-container {
    position: static;
    padding: 0;
  }
}
.p-ism .c-bounce2 {
  position: absolute;
  top: -195px;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-ism .c-bounce2 {
    top: -98px;
  }
}
.p-ism .c-bounce2 canvas {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1278px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-ism .c-bounce2 canvas {
    width: 516px;
  }
}
.p-ism .c-ism-canvas {
  position: absolute;
  top: -195px;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.p-ism .c-ism-canvas.is-active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-ism .c-ism-canvas {
    top: -98px;
  }
}
.p-ism .c-ism-canvas canvas {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1278px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-ism .c-ism-canvas canvas {
    width: 516px;
  }
}
.p-ism__inner {
  position: relative;
  z-index: 1;
}
.p-ism .c-content-h2 {
  margin-bottom: var(--space-125);
}
.p-ism__label-title {
  font-size: var(--font-size-48);
  font-weight: 700;
  line-height: var(--line-height-1);
  margin: 0;
  transition: color 0.3s ease;
}
.p-ism__label-sub {
  font-size: var(--font-size-18);
  line-height: var(--line-height-1-5);
  margin: 0;
  letter-spacing: 0;
}
.p-ism__detail {
  padding: var(--space-100) var(--space-30) 0;
}
.p-ism__detail:not(.p-ism-slider) > .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
}
.p-ism__detail .c-content-h2 {
  align-items: center;
  text-align: center;
}
.p-ism__detail .c-content-h2 .c-content-h2__title {
  font-size: var(--font-size-48);
  font-weight: 700;
  letter-spacing: 0;
}
.p-ism__detail .c-content-h2 .c-content-h2__subtitle {
  font-size: var(--font-size-18);
  letter-spacing: 0;
}
.p-ism__detail-title {
  font-size: var(--font-size-48);
  font-weight: 700;
  line-height: var(--line-height-1);
  margin-bottom: var(--space-16);
}
.p-ism__detail-sub {
  font-size: var(--font-size-18);
}
.p-ism__item {
  width: fit-content;
}
.p-ism__item .wp-block-heading,
.p-ism__item h3 {
  font-size: var(--font-size-38);
  font-weight: 700;
  line-height: var(--line-height-1);
  margin-bottom: var(--space-16);
}
.p-ism__item .wp-block-heading strong,
.p-ism__item h3 strong {
  font-weight: 700;
}
.p-ism__item-title {
  font-size: var(--font-size-38);
  font-weight: 700;
  line-height: var(--line-height-1);
  margin-bottom: var(--space-16);
}
.p-ism__item-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.p-ism__item-text {
  font-size: 19.5px;
  font-weight: 700;
  line-height: 1.6;
  padding-left: var(--space-20);
  position: relative;
  margin: 0;
}
.p-ism__item-text:not(:last-child) {
  margin-bottom: var(--space-6);
}
.p-ism__item-text::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  display: block;
  width: 8.5px;
  height: 1.2px;
  background: #221714;
}
@media screen and (max-width: 768px) {
  .p-ism__item-text::before {
    top: 8px;
    width: 5.5px;
  }
}
.p-ism__item-text strong {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-ism .c-content-h2 {
    margin-bottom: 31px;
  }
}
@media screen and (max-width: 768px) {
  .p-ism__header {
    padding: 0 var(--space-30);
  }
}
@media screen and (max-width: 768px) {
  .p-ism__labels {
    gap: var(--space-80);
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-ism__labels > .wp-block-group__inner-container {
    gap: var(--space-80);
  }
}
.p-ism__label {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.p-ism__label > .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  width: fit-content;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .p-ism__label > .wp-block-group__inner-container:hover .p-ism__label-title {
    color: #ff8879;
  }
}
.p-ism__label > .wp-block-group__inner-container.is-touched .p-ism__label-title {
  color: #ff8879;
}
.p-ism__label.is-current .p-ism__label-title {
  color: #ff8879;
}
.p-ism__label--board {
  margin: 0 0 203px 236px;
}
.p-ism__label--board > div {
  transform: rotate(-10.81deg);
}
.p-ism__label--advance {
  margin: 0 0 200px 226px;
}
.p-ism__label--advance > div {
  transform: rotate(1.41deg);
}
.p-ism__label--regular {
  margin: 0 0 0 180px;
}
.p-ism__label--regular > div {
  transform: rotate(10.56deg);
}
@media screen and (max-width: 768px) {
  .p-ism__label {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .p-ism__label--board, .p-ism__label--advance, .p-ism__label--regular {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-ism__label--board {
    margin-bottom: 127px;
  }
}
@media screen and (max-width: 768px) {
  .p-ism__label--advance {
    margin-bottom: 118px;
  }
}
@media screen and (max-width: 768px) {
  .p-ism__label--regular {
    margin-right: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-ism__label-title {
    font-size: var(--font-size-29);
  }
}
@media screen and (max-width: 768px) {
  .p-ism__label-sub {
    font-size: var(--font-size-11);
  }
}
@media screen and (max-width: 768px) {
  .p-ism__detail {
    margin-top: var(--space-159);
    padding: var(--space-100) 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p-ism__detail .c-content-h2 {
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-ism__detail .c-content-h2 .c-content-h2__title {
    font-size: var(--font-size-29);
  }
}
@media screen and (max-width: 768px) {
  .p-ism__detail .c-content-h2 .c-content-h2__subtitle {
    font-size: 11.3px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .p-ism .p-ism__detail-header {
    margin-bottom: 62px;
  }
}
@media screen and (max-width: 768px) {
  .p-ism__detail-title {
    font-size: var(--font-size-32);
  }
}
@media screen and (max-width: 768px) {
  .p-ism__item .wp-block-heading, .p-ism__item h3, .p-ism__item-title {
    margin-bottom: 10px;
    font-size: 23.5px;
  }
}
@media screen and (max-width: 768px) {
  .p-ism__item-text {
    padding-left: 13px;
    font-size: 12.18px;
  }
}
@media screen and (max-width: 768px) {
  .p-ism .p-ism__item:nth-child(1),
  .p-ism .p-ism__item:first-child {
    margin: 0 0 81px var(--space-30);
  }
}
@media screen and (max-width: 768px) {
  .p-ism .p-ism__item:nth-child(2) {
    margin: 0 0 var(--space-25) auto;
  }
}
@media screen and (max-width: 768px) {
  .p-ism .p-ism__item:nth-child(3) {
    margin: 0 0 0 0;
  }
}

.p-ism__detail:has(.swiper-slide-active) {
  margin-top: 387px;
}
@media screen and (max-width: 768px) {
  .p-ism__detail:has(.swiper-slide-active) {
    margin-top: 260px;
  }
}

@media screen and (max-width: 768px) {
  .p-detail__slide .wp-block-group__inner-container {
    max-width: 402px;
    width: 100%;
    margin: 0 auto;
  }
}
.p-detail__slide__regular .c-content-h2 {
  margin-bottom: 200px;
  padding-left: 50px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-detail__slide__regular .c-content-h2 {
    margin-bottom: 65px;
    padding-left: 0;
    gap: 0;
  }
}
.p-detail__slide__regular .p-ism__item:nth-child(1), .p-detail__slide__regular .p-ism__item:first-child {
  margin: 0 0 60px 180px;
}
@media screen and (max-width: 768px) {
  .p-detail__slide__regular .p-ism__item:nth-child(1), .p-detail__slide__regular .p-ism__item:first-child {
    margin: 0 0 130px 8.706%;
  }
}
.p-detail__slide__regular .p-ism__item:nth-child(2) {
  margin: 0 10px 52px auto;
}
@media screen and (max-width: 768px) {
  .p-detail__slide__regular .p-ism__item:nth-child(2) {
    margin: 0 2.488% 180px auto;
  }
}
.p-detail__slide__regular .p-ism__item:nth-child(3) {
  margin-left: 100px;
}
@media screen and (max-width: 768px) {
  .p-detail__slide__regular .p-ism__item:nth-child(3) {
    margin-left: 9.95%;
  }
}
.p-detail__slide__board .c-content-h2 {
  padding-right: 30px;
  margin-bottom: 108px;
}
@media screen and (max-width: 768px) {
  .p-detail__slide__board .c-content-h2 {
    padding-right: 0;
    margin-bottom: 90px;
  }
}
.p-detail__slide__board .p-ism__item:nth-child(1), .p-detail__slide__board .p-ism__item:first-child {
  margin: 0 0 130px 210px;
}
@media screen and (max-width: 768px) {
  .p-detail__slide__board .p-ism__item:nth-child(1), .p-detail__slide__board .p-ism__item:first-child {
    margin: 0 0 160px 35px;
  }
}
.p-detail__slide__board .p-ism__item:nth-child(2) {
  margin: 0 0 185px auto;
  transform: translateX(14px);
}
@media screen and (max-width: 768px) {
  .p-detail__slide__board .p-ism__item:nth-child(2) {
    margin: 0 50px 130px auto;
  }
}
.p-detail__slide__board .p-ism__item:nth-child(3) {
  margin: 0 31px 0 auto;
}
@media screen and (max-width: 768px) {
  .p-detail__slide__board .p-ism__item:nth-child(3) {
    margin: 0 70px 0 auto;
  }
}
.p-detail__slide__advance .c-content-h2 {
  margin-bottom: 110px;
  padding-right: 50px;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .p-detail__slide__advance .c-content-h2 {
    margin-bottom: 105px;
    padding-right: 0;
    gap: 0;
  }
}
.p-detail__slide__advance .p-ism__item:nth-child(1), .p-detail__slide__advance .p-ism__item:first-child {
  margin: 0 0 115px 210px;
}
@media screen and (max-width: 768px) {
  .p-detail__slide__advance .p-ism__item:nth-child(1), .p-detail__slide__advance .p-ism__item:first-child {
    margin: 0 0 130px 35px;
  }
}
.p-detail__slide__advance .p-ism__item:nth-child(2) {
  margin: 0 23px 120px auto;
}
@media screen and (max-width: 768px) {
  .p-detail__slide__advance .p-ism__item:nth-child(2) {
    margin: 0 35px 110px auto;
  }
}
.p-detail__slide__advance .p-ism__item:nth-child(3) {
  margin: 0 135px 0 auto;
}
@media screen and (max-width: 768px) {
  .p-detail__slide__advance .p-ism__item:nth-child(3) {
    margin: 0 85px 0 auto;
  }
}

.p-ism-slider__nav {
  position: absolute;
  top: 500px;
  z-index: 10;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-black);
  cursor: pointer;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-ism-slider__nav:hover {
    color: var(--color-main);
  }
}
.p-ism-slider__nav.is-touched {
  color: var(--color-main);
}
.p-ism-slider__nav:disabled, .p-ism-slider__nav.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.p-ism-slider__nav ._angle-icon {
  width: 24px;
  height: auto;
}
.p-ism-slider__nav--prev {
  left: 20px;
}
.p-ism-slider__nav--next {
  right: 20px;
}
@media screen and (max-width: 768px) {
  .p-ism-slider__nav {
    width: 44px;
    height: 44px;
    top: 5px;
    transform: translateY(-50%);
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .p-ism-slider__nav ._angle-icon {
    width: 15px;
  }
}

.l-container--company {
  position: relative;
  width: 100%;
}

.c-page__company-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 70px;
  color: var(--color-black);
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-page__company-btn:hover {
    color: var(--color-main);
  }
}
.c-page__company-btn.is-touched {
  color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .c-page__company-btn ._angle-icon {
    width: 13px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-page__company-btn {
    top: 20%;
    transform: none;
    left: var(--space-33);
  }
}
.c-page__company-btn--next {
  left: auto;
  right: 70px;
}
@media screen and (max-width: 768px) {
  .c-page__company-btn--next {
    right: var(--space-33);
  }
}

.p-company__member-top {
  margin-bottom: var(--space-40);
}
.p-company__member-top .c-board-member__image {
  aspect-ratio: 38/42;
}
@media screen and (max-width: 768px) {
  .p-company__member-top .c-board-member__image {
    aspect-ratio: 336/340;
  }
}
.p-company__member-top .wp-block-heading {
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-30);
  margin-bottom: var(--space-20);
}
.p-company__member-top .wp-block-paragraph {
  font-size: var(--font-size-14);
  line-height: 25px;
}

.p-company__member-row {
  margin-bottom: var(--space-80);
}

.l-company-member {
  margin-bottom: var(--space-80);
}

.l-company-member .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-20);
}
@media screen and (max-width: 768px) {
  .l-company-member .wp-block-group__inner-container {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-40);
  }
}

.l-company-athlete .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-20);
}
@media screen and (max-width: 768px) {
  .l-company-athlete .wp-block-group__inner-container {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-20);
  }
}

@media screen and (max-width: 768px) {
  .p-company-profile {
    margin-top: var(--space-100);
    padding: var(--space-100) 0;
  }
}
.p-company-profile .c-content-h2 {
  margin-bottom: var(--space-20);
}
.p-company-profile .wp-block-columns {
  align-items: start !important;
  flex-wrap: nowrap !important;
  gap: var(--space-20);
  padding: 17px 0;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.5);
  font-size: var(--font-size-16);
  line-height: var(--line-height-30);
}
.p-company-profile .wp-block-column:first-child {
  flex: none !important;
  width: 180px;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .p-company-profile .wp-block-column:first-child {
    width: 80px;
  }
}
.p-company-profile .wp-block-columns .wp-block-columns {
  align-items: flex-start !important;
  padding: 0;
  border-bottom: 0;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-company-profile .wp-block-columns .wp-block-columns {
    flex-direction: column-reverse;
    gap: var(--space-10);
  }
}
@media screen and (max-width: 768px) {
  .p-company-profile .wp-block-columns .wp-block-columns .wp-block-column:first-child {
    width: 100% !important;
  }
}
.p-company-profile .wp-block-columns .wp-block-columns p:first-child {
  font-weight: 600;
  font-size: var(--font-size-14);
  line-height: var(--line-height-21);
}
.p-company-profile .wp-block-columns .wp-block-columns:last-child {
  margin-top: 20px;
}
.p-company-profile iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 380/200;
}
@media screen and (max-width: 768px) {
  .p-company-profile iframe {
    aspect-ratio: 236/110;
  }
}
.p-company-profile .wp-block-column > .wp-block-list > li {
  margin-bottom: var(--space-30);
}
.p-company-profile li {
  position: relative;
  padding-left: 13px;
}
.p-company-profile li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 7.5px;
  height: 1.2px;
  background: #221714;
}

body.service .c-page__header {
  padding-bottom: 77px;
}
@media screen and (max-width: 768px) {
  body.service .c-page__header {
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 768px) {
  body.service .h2-english {
    padding: 0;
  }
}

.c-service-card.liisports .c-service-card__logo-img img {
  width: 156px;
}
@media screen and (max-width: 768px) {
  .c-service-card.act .c-service-card__logo {
    height: 208px;
  }
}
.c-service-card.act .c-service-card__logo-img img {
  width: 113px;
}
@media screen and (max-width: 768px) {
  .c-service-card.act .c-service-card__logo-img img {
    width: 135px;
  }
}
.c-service-card.onefiveone .c-service-card__logo-img img {
  width: 72px;
}
@media screen and (max-width: 768px) {
  .c-service-card.onefiveone .c-service-card__logo-img img {
    width: 86px;
  }
}
.c-service-card.athleteaction .c-service-card__logo-img img {
  width: 130px;
}
@media screen and (max-width: 768px) {
  .c-service-card.athleteaction .c-service-card__logo-img img {
    width: 156px;
  }
}
.c-service-card.harufittokyo .c-service-card__logo-img img {
  width: 85px;
}
@media screen and (max-width: 768px) {
  .c-service-card.harufittokyo .c-service-card__logo-img img {
    width: 102px;
  }
}
.c-service-card.thirtythreepointsix .c-service-card__logo-img img {
  width: 78px;
}
@media screen and (max-width: 768px) {
  .c-service-card.thirtythreepointsix .c-service-card__logo-img img {
    width: 94px;
  }
}

.p-contact__intro {
  margin-bottom: var(--space-40);
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-1-5);
}

body.design .c-page__header {
  padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
  body.design .c-content-h2 {
    margin-bottom: var(--space-40);
  }
}

.p-design__identity__logos h3.wp-block-heading,
.p-design__identity__logos .wp-block-heading,
.p-design__identity__colors h3.wp-block-heading,
.p-design__identity__colors .wp-block-heading,
.p-design__identity__keyvisual h3.wp-block-heading,
.p-design__identity__keyvisual .wp-block-heading {
  margin-bottom: var(--space-20);
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-20);
  color: #4a5565;
}
.p-design__identity__logos .wp-block-image,
.p-design__identity__colors .wp-block-image,
.p-design__identity__keyvisual .wp-block-image {
  margin: 0;
}
.p-design__identity__logos .wp-block-image figcaption,
.p-design__identity__colors .wp-block-image figcaption,
.p-design__identity__keyvisual .wp-block-image figcaption {
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: var(--line-height-25);
}

.l-container > h3.wp-block-heading {
  margin-bottom: var(--space-20);
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-20);
  color: #4a5565;
}

.p-design__identity__logos {
  display: flex;
  gap: var(--space-20);
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .p-design__identity__logos {
    flex-direction: column;
    margin-bottom: 25px;
  }
}
.p-design__identity__logos .wp-block-column {
  flex: 1;
  min-width: 0;
}
.p-design__identity__logos .wp-block-column .wp-block-image img {
  display: block;
  height: 175px;
  max-width: none;
  margin: 0 auto;
  object-fit: contain;
}
.p-design__identity__logos .wp-block-column:first-child .wp-block-image img {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .p-design__identity__logos .wp-block-column:first-child .wp-block-image img {
    width: 62.2023809524%;
  }
}
.p-design__identity__logos .wp-block-column:last-child .wp-block-image img {
  width: 55%;
}
.p-design__identity__logos .wp-block-image figcaption {
  margin-top: var(--space-40);
}

.p-design__identity__colors {
  display: flex;
  gap: var(--space-20);
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-design__identity__colors {
    margin-bottom: 40px;
  }
}
.p-design__identity__colors .p-design__identity__colors {
  margin-bottom: 0;
}
.p-design__identity__colors .wp-block-columns {
  gap: var(--space-20);
  margin-bottom: var(--space-40);
}
@media screen and (max-width: 768px) {
  .p-design__identity__colors .wp-block-columns {
    gap: var(--space-40) var(--space-20);
  }
}
.p-design__identity__colors .wp-block-columns:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-design__identity__colors .wp-block-columns .wp-block-column {
    flex-basis: calc(50% - 10px) !important;
    width: calc(50% - 10px) !important;
  }
}
.p-design__identity__colors .wp-block-columns .wp-block-column.p-design__identity__colors-text {
  flex-basis: 360px !important;
  flex-grow: 0 !important;
  width: 360px;
}
@media screen and (max-width: 768px) {
  .p-design__identity__colors .wp-block-columns .wp-block-column.p-design__identity__colors-text {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}
.p-design__identity__colors .wp-block-columns .wp-block-column.p-design__identity__colors-text p {
  font-size: var(--font-size-14);
  line-height: var(--line-height-24);
}
.p-design__identity__colors .wp-block-group {
  width: 100%;
}
.p-design__identity__colors p {
  line-height: var(--line-height-25);
}
.p-design__identity__colors p strong {
  font-weight: 700;
  letter-spacing: 0;
}
.p-design__identity__colors p .ls-minus {
  display: block;
  letter-spacing: 0;
}
.p-design__identity__colors .hidden {
  display: none;
}

.p-deisgn__identity__pallet {
  width: 100%;
  aspect-ratio: 18/9;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-deisgn__identity__pallet {
    aspect-ratio: 158/90;
  }
}
.p-deisgn__identity__pallet1 {
  background: #ff6753;
}
.p-deisgn__identity__pallet2 {
  background: #000;
}
.p-deisgn__identity__pallet3 {
  background: #c1cacc;
}
.p-deisgn__identity__pallet4 {
  background: #ebd8be;
}

.p-design__identity__keyvisual > .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-20);
  margin-bottom: var(--space-20);
}
.p-design__identity__keyvisual .wp-block-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .p-design__identity__keyvisual .wp-block-group {
    width: 100%;
  }
}
.p-design__identity__keyvisual .p-design__identity__keyvisual-main {
  width: 100%;
}
.p-design__identity__keyvisual .p-design__identity__keyvisual-main .wp-block-image img {
  display: block;
  width: 590px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-design__identity__keyvisual .p-design__identity__keyvisual-main .wp-block-image img {
    width: 65%;
  }
}
.p-design__identity__keyvisual .wp-block-image {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-design__identity__keyvisual .wp-block-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 336/247;
  }
}
.p-design__identity__keyvisual .wp-block-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 246/181;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-design__identity__keyvisual .wp-block-image img {
    aspect-ratio: 336/247;
  }
}
.p-design__identity__keyvisual p {
  font-size: var(--font-size-14);
  line-height: var(--line-height-25);
}
.p-design__identity__keyvisual p strong {
  line-height: var(--line-height-22);
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .p-design__identity__keyvisual {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-design__identity__keyvisual .wp-block-column {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-design__identity__keyvisual .wp-block-image img {
    aspect-ratio: 380/280;
  }
}

@media screen and (max-width: 768px) {
  .p-design__press .c-content-h2__title {
    font-size: var(--font-size-38);
  }
}
@media screen and (max-width: 768px) {
  .p-design__press .c-content-h2__subtitle {
    font-size: var(--font-size-14);
    line-height: var(--line-height-24);
  }
}
.p-design__press .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-20);
}
@media screen and (max-width: 768px) {
  .p-design__press .wp-block-columns {
    grid-template-columns: 1fr;
    gap: var(--space-40);
  }
}
.p-design__press .wp-block-columns .c-link {
  margin-top: auto;
}
.p-design__press .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}
.p-design__press .design__press__colums p {
  min-width: auto;
  font-size: var(--font-size-14);
  line-height: var(--line-height-25);
}
.p-design__press .design__press__colums p strong {
  font-weight: 700;
}
.p-design__press .design__press__colums .c-link--more {
  line-height: var(--line-height-25);
}
.p-design__press .design__press__bottom {
  max-width: 380px;
  margin-top: var(--space-80);
}
@media screen and (max-width: 768px) {
  .p-design__press .design__press__bottom {
    max-width: 100%;
  }
}
.p-design__press .design__press__bottom-contact .c-link--more {
  line-height: var(--line-height-25);
}
.p-design__press .design__press__bottom p {
  margin-bottom: var(--space-20);
  font-size: var(--font-size-14);
  line-height: var(--line-height-20);
  letter-spacing: -0.15px;
}

body.recruit .c-page__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-80);
}
@media screen and (max-width: 768px) {
  body.recruit .c-content-h2 {
    margin-bottom: var(--space-40);
  }
}
body.recruit .c-content-h2__title {
  font-size: var(--font-size-32);
}
@media screen and (max-width: 768px) {
  body.recruit .c-content-h2__title {
    line-height: var(--line-height-40);
    letter-spacing: 10%;
  }
}
body.recruit .c-content-h2.english .c-content-h2__title {
  font-size: var(--font-size-38);
}
body.recruit .wp-block-group:has(.c-recruit-slideshow) {
  margin-bottom: 25px;
}
body.recruit .c-recruit-slideshow {
  position: relative;
  width: 100%;
}
body.recruit .c-recruit-slideshow__slide img {
  aspect-ratio: 780/468;
  object-fit: cover;
}
body.recruit .c-recruit-slideshow__button {
  position: absolute;
  top: 240px;
  margin-top: 0;
  height: 24px;
}
@media screen and (max-width: 768px) {
  body.recruit .c-recruit-slideshow__button {
    display: none;
  }
}
body.recruit .c-recruit-slideshow__button--prev {
  left: -62px;
}
body.recruit .c-recruit-slideshow__button--next {
  right: -62px;
}
body.recruit .c-recruit-slideshow__pagination {
  top: auto;
  bottom: -38px;
}
body.recruit .c-recruit-slideshow .swiper-pagination-clickable .swiper-pagination-bullet {
  background: #fff2f1;
  opacity: 1;
}
body.recruit .c-recruit-slideshow .swiper-pagination-clickable .swiper-pagination-bullet-active {
  background: #ffbdb4;
}
body.recruit .c-recruit-slideshow__viewport {
  width: 100%;
  overflow: hidden;
}
body.recruit .c-recruit-slideshow__button {
  color: var(--color-black);
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  body.recruit .c-recruit-slideshow__button:hover {
    color: var(--color-main);
  }
}
body.recruit .c-recruit-slideshow__button.is-touched {
  color: var(--color-main);
}
body.recruit .c-recruit-slideshow__button::after {
  display: none;
}
body.recruit .c-recruit-slideshow__button ._angle-icon {
  display: block;
}
body.recruit .wp-block-columns {
  gap: var(--space-20);
}
@media screen and (max-width: 768px) {
  body.recruit .wp-block-columns {
    gap: var(--space-40);
    flex-direction: column;
  }
}
body.recruit .wp-block-columns .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  width: 246px;
  flex: none;
}
@media screen and (max-width: 768px) {
  body.recruit .wp-block-columns .wp-block-column {
    width: 100%;
  }
}
body.recruit .wp-block-columns h3 {
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-30);
  letter-spacing: 10%;
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-job-description .c-content-h2__title {
    margin-bottom: 20px;
  }
}
body.recruit .recruit-job-description .wp-block-lii-highlight-link {
  width: 246px;
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-job-description .wp-block-lii-highlight-link {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-apply__title {
    flex-direction: row;
    flex-wrap: nowrap !important;
  }
}
@media screen and (max-width: 768px) {
  body.recruit .recruit-apply__title .wp-block-column {
    flex: 1;
  }
}
body.recruit .recruit-apply__title .wp-block-column:last-child {
  flex: 1;
}
body.recruit .recruit-apply__title .wp-block-column:last-child .wp-block-paragraph {
  text-align: right;
  font-size: var(--font-size-12);
  line-height: var(--line-height-40);
  vertical-align: middle;
}
body.recruit .recruit-apply__title .c-content-h2 {
  gap: var(--space-20);
}
/*
.p-recruit__bg-line {
    position: absolute;
    top: -100px;
    // 50% - (コンテナ幅980px / 2) + オフセット36px = 50% - 454px
    left: calc(50% - 615px);
    width: 147px;
    height: 0%;
    border-radius: 0 0 100px 100px;
    background: rgba(#ff6753, 0.2);
    transform: rotate(-20.73deg) scaleY(1);
    transform-origin: top left;
    pointer-events: none;
    z-index: 0;
    transition: all 0.5s ease-in-out;
    @include mobile {
        top: -100px;
        left: -160px;
        width: 73px;
        transform: rotate(-10.68deg) scaleY(1);
    }
    .is--loaded & {
        height: 200%;
    }
    &-ball {
        position: absolute;
        left: 0;
        width: 147px;
        height: 147px;
        background: #ff6753;
        border-radius: 50%;
        opacity: 0;
        transition: all 0.1s ease-in-out;
        @include mobile {
            width: 73px;
            height: 73px;
        }
        .is--loaded & {
            opacity: 1;
        }
        &:nth-child(1) {
            top: 552px;
            transition-delay: 0.2s;
            @include mobile {
                top: 659px;
            }
        }
        &:nth-child(2) {
            top: 762px;
            transition-delay: 0.3s;
            @include mobile {
                top: 867px;
            }
        }
        &:nth-child(3) {
            top: 962px;
            transition-delay: 0.4s;
            @include mobile {
                top: 1069px;
            }
        }
    }
}
*/
.p-styleguide {
  padding: 120px 0 var(--space-80);
  background: #fafafa;
}
.p-styleguide__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-30);
}
.p-styleguide__page-title {
  font-size: var(--font-size-48);
  font-weight: 700;
  margin-bottom: var(--space-60);
  padding-bottom: var(--space-20);
  border-bottom: 2px solid var(--color-black);
}
.p-styleguide__section {
  margin-bottom: var(--space-60);
  padding: var(--space-30);
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.p-styleguide__section-title {
  font-size: var(--font-size-24);
  font-weight: 600;
  margin-bottom: var(--space-8);
  color: var(--color-main);
}
.p-styleguide__section-desc {
  font-size: var(--font-size-14);
  color: var(--color-gray-60);
  margin-bottom: var(--space-24);
}
.p-styleguide__example {
  padding: var(--space-30);
  background: #f5f5f5;
  border-radius: 4px;
  margin-bottom: var(--space-16);
}
.p-styleguide__example--full {
  padding: 0;
  overflow: hidden;
}
.p-styleguide__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-20);
}
.p-styleguide__code pre {
  margin: 0;
  padding: var(--space-16);
  background: #2d2d2d;
  border-radius: 4px;
  overflow-x: auto;
}
.p-styleguide__code code {
  font-family: "Monaco", "Consolas", monospace;
  font-size: var(--font-size-13);
  line-height: var(--line-height-1-5);
  color: #e6e6e6;
}
.p-styleguide__colors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: var(--space-16);
}
.p-styleguide__color {
  text-align: center;
  font-size: var(--font-size-11);
  line-height: var(--line-height-1-4);
}
.p-styleguide__color-swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  margin-bottom: var(--space-8);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.p-styleguide__subsection-title {
  font-size: var(--font-size-16);
  font-weight: 600;
  margin: 32px 0 var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid #e0e0e0;
  color: var(--color-black);
}
.p-styleguide__subsection-title:first-of-type {
  margin-top: 0;
}
.p-styleguide__variants {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-24);
  align-items: flex-end;
}
.p-styleguide__variant {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}
.p-styleguide__variant-label {
  font-size: var(--font-size-10);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-gray-60);
  letter-spacing: 0.5px;
}
@media screen and (max-width: 768px) {
  .p-styleguide {
    padding: var(--space-100) 0 var(--space-60);
  }
}
@media screen and (max-width: 768px) {
  .p-styleguide__page-title {
    font-size: var(--font-size-32);
  }
}
@media screen and (max-width: 768px) {
  .p-styleguide__section {
    padding: var(--space-20);
  }
}
@media screen and (max-width: 768px) {
  .p-styleguide__example {
    padding: var(--space-20);
  }
}

body.privacy-policy .c-page__content {
  font-size: var(--font-size-12);
  line-height: var(--line-height-20);
}
@media screen and (max-width: 768px) {
  body.privacy-policy .c-page__content {
    font-size: var(--font-size-14);
    line-height: var(--line-height-23);
  }
}
body.privacy-policy .c-page__content h2 {
  margin-top: var(--space-20);
  font-size: var(--font-size-12);
}
@media screen and (max-width: 768px) {
  body.privacy-policy .c-page__content h2 {
    font-size: var(--font-size-14);
    line-height: var(--line-height-23);
  }
}
body.privacy-policy .c-page__content a {
  text-decoration: underline;
}

.p-single {
  padding-bottom: var(--space-150);
}
@media screen and (max-width: 768px) {
  .p-single {
    padding: 0 0 var(--space-100);
  }
}
.p-single__main {
  width: min(100%, var(--width-780));
  margin: 0 auto;
}
.p-single__thumbnail {
  margin-bottom: var(--space-20);
}
.p-single__thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 1024/683;
  object-fit: cover;
}
.p-single__header {
  gap: var(--space-20);
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-20);
}
.p-single__header .c-news-card__meta {
  margin-bottom: 0;
}
.p-single__title {
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 10%;
}
.p-single__content {
  font-size: var(--font-size-14);
  line-height: var(--line-height-25);
  letter-spacing: 5%;
}
.p-single__content p {
  margin-bottom: var(--space-20);
  word-break: break-all;
}
.p-single__content p:last-child {
  margin-bottom: 0;
}
.p-single__content h2 {
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 15%;
  margin: var(--space-20) 0 0;
}
.p-single__content h3 {
  font-weight: 700;
  line-height: var(--line-height-22);
  margin: var(--space-20) 0 0;
}
.p-single__content h4 {
  font-weight: 700;
  line-height: var(--line-height-22);
  margin: var(--space-20) 0 0;
}
.p-single__content ul,
.p-single__content ol {
  margin: var(--space-20) 0;
  padding-left: var(--space-20);
}
.p-single__content * + ul,
.p-single__content * + ol {
  margin-top: 0;
}
.p-single__content ul {
  list-style: none;
}
.p-single__content ol {
  list-style: decimal;
}
.p-single__content ul li {
  position: relative;
}
.p-single__content ul li:before {
  content: "";
  position: absolute;
  left: -14px;
  top: 10px;
  width: 3px;
  height: 3px;
  background-color: var(--color-black);
  border-radius: 50%;
}
.p-single__content a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.3s ease;
  word-break: break-all;
}
@media (hover: hover) and (pointer: fine) {
  .p-single__content a:hover {
    color: var(--color-main);
  }
}
.p-single__content a.is-touched {
  color: var(--color-main);
}
.p-single__content a:active {
  color: var(--color-accent);
}
.p-single__content img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.p-single__content blockquote {
  margin: var(--space-20) 0;
  padding-left: var(--space-20);
  border-left: 1px solid var(--color-gray-bg);
}
.p-single__content .wp-block-image {
  margin: var(--space-20) 0;
}
.p-single__content .wp-block-image figcaption {
  margin: var(--space-10) 0 0;
  font-size: var(--font-size-10);
  line-height: 16.6px;
  color: var(--color-gray-text);
}
.p-single__content .wp-block-columns {
  gap: var(--space-20);
  margin: var(--space-20) 0;
}
@media screen and (max-width: 768px) {
  .p-single__content .wp-block-columns {
    flex-wrap: wrap !important;
  }
}
.p-single__content .wp-block-column {
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .p-single__content .wp-block-column {
    flex-basis: 100% !important;
  }
}
.p-single__other {
  margin-top: var(--space-80);
}
.p-single__other-title {
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: var(--line-height-20);
}
.p-single__other-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 180px));
  justify-content: center;
  gap: var(--space-20);
  margin: var(--space-40) 0;
}
@media screen and (max-width: 768px) {
  .p-single__other-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.p-single__other-link {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--color-black);
  text-decoration: none;
}
.p-single__other-image {
  display: block;
  width: 100%;
  aspect-ratio: 1024/683;
  object-fit: contain;
}
.p-single__other-date {
  font-size: var(--font-size-10);
  line-height: var(--line-height-20);
}
.p-single__other-item-title {
  font-size: var(--font-size-14);
  font-weight: 700;
  line-height: 21px;
}
.p-single__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: var(--space-40) auto 0;
}
.p-single__back {
  width: 180px;
}
.p-single__back .c-link {
  width: 100%;
}
.p-single__sns {
  display: flex;
  align-items: center;
  gap: var(--space-20);
}
.p-single__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  color: var(--color-black);
  transition: color 0.3s ease;
}
.p-single__sns-link svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.p-single__sns-link path {
  fill: currentColor;
  transition: fill 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-single__sns-link:hover {
    color: var(--color-main);
  }
}
.p-single__sns-link.is-touched {
  color: var(--color-main);
}

.p-archive__filter {
  margin-bottom: var(--space-40);
}
.p-archive__tabs {
  display: flex;
  flex-wrap: nowrap;
  height: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 0.25px solid rgba(0, 0, 0, 0.3);
  background: var(--color-main-5);
}
.p-archive__tab .c-link--category {
  --link-background: transparent;
  --link-background-hover: var(--color-main-20);
  width: auto;
  height: calc(100% - 0.25px);
  border-bottom: none;
  padding: var(--space-5) var(--space-15);
}
.p-archive__tab .c-link--category.is--active:not(:active) {
  --link-background-active: var(--color-main-20);
}
@media screen and (max-width: 768px) {
  .p-archive__tab .c-link--category {
    width: auto;
    height: auto;
    padding: var(--space-6) var(--space-15);
  }
}
@media screen and (max-width: 768px) {
  .p-archive .p-archive__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-10) 0;
    height: auto;
    background: none;
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .p-archive .p-archive__tab {
    background: var(--color-main-5);
    border-bottom: 0.25px solid rgba(0, 0, 0, 0.3);
  }
}
@media screen and (max-width: 768px) {
  .p-archive .p-archive__tab .c-link--category {
    justify-content: flex-start;
    width: 100%;
  }
}
.p-archive__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-60);
}
.p-archive__no-posts {
  padding: var(--space-40) 0;
  text-align: center;
  color: var(--color-gray-60);
  font-size: var(--font-size-14);
}
.p-archive__pagination {
  margin: var(--space-40) auto 0;
}
@media screen and (max-width: 768px) {
  .p-archive__pagination {
    padding: 0;
  }
}
.p-archive__page-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space-40);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-archive__page-list {
    justify-content: space-between;
  }
}
.p-archive__page-item a,
.p-archive__page-item span {
  font-weight: 400;
  font-size: var(--font-size-14);
  line-height: var(--line-height-25);
  color: var(--color-gray-text);
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-archive__page-item a:hover {
    color: var(--color-main);
  }
}
.p-archive__page-item a.is-touched {
  color: var(--color-main);
}
.p-archive__page-item .current {
  color: var(--color-main);
}
.p-archive__page-item .dots {
  color: var(--color-gray-60);
}
.p-archive__note {
  max-width: var(--width-780);
  margin: var(--space-80) auto 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-archive__note {
    margin-top: var(--space-80);
    padding: 0;
  }
}
.p-archive__note-header {
  margin-bottom: var(--space-40);
}
.p-archive__note-title {
  font-size: var(--font-size-38);
  font-weight: 500;
  line-height: var(--line-height-40);
  margin-bottom: var(--space-20);
  letter-spacing: 0%;
}
@media screen and (max-width: 768px) {
  .p-archive__note-title {
    font-size: var(--font-size-38);
  }
}
.p-archive__note-description {
  font-size: var(--font-size-14);
  line-height: var(--line-height-24);
  color: var(--color-black);
}
.p-archive__note-description .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-archive__note-description .sp-only {
    display: inline;
  }
}
.p-archive__note-cards {
  display: flex;
  gap: var(--space-20);
}
@media screen and (max-width: 768px) {
  .p-archive__note-cards {
    flex-direction: column;
    gap: var(--space-20);
  }
}
.p-archive__note-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  margin-top: var(--space-48);
}
.p-archive__note-lead {
  color: var(--color-black);
}
.p-archive__note-lead .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-archive__note-lead .sp-only {
    display: inline;
  }
}
.p-archive__note-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.p-archive__note-more {
  width: 246px;
}
.p-archive__note-more .c-link {
  width: 100%;
}
.p-archive__note-sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-20);
  width: 99px;
}
.p-archive__note-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-archive__note-sns-link svg {
  width: 23px;
  height: 23px;
}
.p-archive__note-sns-link svg path {
  transition: fill 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-archive__note-sns-link:hover svg path {
    fill: var(--color-main);
  }
}
.p-archive__note-sns-link.is-touched svg path {
  fill: var(--color-main);
}

.c-news-card__link {
  display: flex;
  align-items: flex-start;
  gap: var(--space-40);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-news-card__link:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.c-news-card__link.is-touched {
  opacity: 0.8;
  text-decoration: none;
}
.c-news-card__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 246px;
  overflow: hidden;
}
.c-news-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.c-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-news-card__link:hover .c-news-card__image img {
    transform: scale(1.02);
  }
}
.c-news-card__link.is-touched .c-news-card__image img {
  transform: scale(1.02);
}
.c-news-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  justify-content: space-between;
}
.c-news-card__body-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.c-news-card__title {
  font-size: var(--font-size-20);
  font-weight: 500;
  line-height: 36px;
  margin-bottom: var(--space-20);
  transition: opacity 0.3s ease;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .c-news-card__title:hover {
    opacity: 0.6;
  }
}
.c-news-card__title.is-touched {
  opacity: 0.6;
}
.c-news-card__excerpt {
  font-size: var(--font-size-14);
  line-height: var(--line-height-25);
  transition: opacity 0.3s ease;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .c-news-card__excerpt:hover {
    opacity: 0.6;
  }
}
.c-news-card__excerpt.is-touched {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .c-news-card__excerpt {
    word-break: break-all;
  }
}
.c-news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-20);
  height: 30px;
  padding: 0 0 0 var(--space-10);
  background-color: var(--color-main-5);
  border-bottom: 0.25px solid rgba(0, 0, 0, 0.3);
}
.c-news-card__meta .c-link {
  width: auto;
  height: calc(100% - 0.25px);
  border-bottom: none;
}
.c-news-card__meta-left {
  display: flex;
  align-items: center;
  gap: var(--space-20);
}
.c-news-card__date {
  font-size: var(--font-size-12);
  font-weight: 450;
  line-height: var(--line-height-20);
  color: var(--color-gray-text);
}
.c-news-card__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5) var(--space-8);
  font-size: var(--font-size-8);
  font-weight: 400;
  line-height: var(--line-height-20);
  color: var(--color-gray-bg);
  text-decoration: underline;
}
.c-news-card--large .c-news-card__link {
  flex-direction: column;
  gap: var(--space-20);
}
.c-news-card--large .c-news-card__image {
  width: 100%;
}
.c-news-card--large .c-news-card__content {
  padding-top: 0;
}
.c-news-card--large .c-news-card__title {
  font-size: var(--font-size-20);
  line-height: 36px;
  margin-bottom: var(--space-20);
  letter-spacing: 10%;
}
.c-news-card--large .c-news-card__meta {
  margin-top: var(--space-20);
}
@media screen and (max-width: 768px) {
  .c-news-card__link {
    flex-direction: column;
    gap: var(--space-20);
  }
}
@media screen and (max-width: 768px) {
  .c-news-card__image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-news-card__content {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-news-card__title {
    font-size: var(--font-size-20);
    line-height: var(--line-height-30);
  }
}
.c-news-card--large .c-news-card__image img {
  width: 100%;
}
.c-note-card {
  width: 246px;
  flex-shrink: 0;
}
.c-note-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-note-card__link:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.c-note-card__link.is-touched {
  opacity: 0.8;
  text-decoration: none;
}
.c-note-card__image {
  overflow: hidden;
  margin-bottom: var(--space-14);
}
.c-note-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1280/670;
  object-fit: contain;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-note-card__link:hover .c-note-card__image img {
    transform: scale(1.02);
  }
}
.c-note-card__link.is-touched .c-note-card__image img {
  transform: scale(1.02);
}
.c-note-card__content {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.c-note-card__date {
  font-size: var(--font-size-10);
  font-weight: 450;
  line-height: var(--line-height-40);
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-black);
}
.c-note-card__title {
  font-size: var(--font-size-14);
  font-weight: 700;
  line-height: var(--line-height-21);
  height: 42px;
  color: var(--color-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-note-card {
    width: 100%;
  }
}
.post-type-archive-track_record .c-page__header,
.tax-track_record_genre .c-page__header {
  padding-bottom: 77px;
}
@media screen and (max-width: 768px) {
  .post-type-archive-track_record .p-archive__tabs,
  .tax-track_record_genre .p-archive__tabs {
    gap: 0;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .post-type-archive-track_record .p-archive__tab .c-link--category,
  .tax-track_record_genre .p-archive__tab .c-link--category {
    justify-content: flex-start;
  }
}

.p-track-record .p-archive__filter {
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .p-track-record .p-archive__filter {
    margin-bottom: 40px;
  }
}

.p-track-record__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-40);
}

.p-track-record__section {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.p-track-record__section-title {
  font-size: var(--font-size-38);
  font-weight: 500;
  line-height: var(--line-height-40);
  color: var(--color-black);
}
.p-track-record__entries {
  display: flex;
  flex-direction: column;
}

.p-track-record__year-heading {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-track-record__year-heading {
    display: block;
    margin: var(--space-20) 0;
    font-size: var(--font-size-20);
    font-weight: 400;
    line-height: 27px;
  }
  .p-track-record__year-heading:first-child {
    margin-top: 0;
  }
}

.p-track-record__entry {
  width: 100%;
  border-bottom: 0.25px solid rgba(0, 0, 0, 0.3);
}

.p-track-record__entry-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: var(--space-20);
  padding: var(--space-20) 0;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.p-track-record__entry-content[href] {
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-track-record__entry-content[href]:hover {
    opacity: 0.6;
    text-decoration: none;
  }
}
.p-track-record__entry-content[href].is-touched {
  opacity: 0.6;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-track-record__entry-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-12);
    height: auto;
  }
}

.p-track-record__entry:first-child .p-track-record__entry-content {
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .p-track-record__year-heading + .p-track-record__entry .p-track-record__entry-content {
    padding-top: 0;
  }
}

.p-track-record__entry-main {
  display: flex;
  align-items: flex-start;
  gap: var(--space-20);
  flex: 1;
  min-width: 0;
}

.p-track-record__entry-year {
  flex-shrink: 0;
  font-size: var(--font-size-12);
  font-weight: 450;
  line-height: var(--line-height-20);
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-track-record__entry-year {
    display: none;
  }
}

.p-track-record__entry-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  justify-content: center;
  min-width: 0;
  flex: 1;
  font-weight: 400;
  color: var(--color-black);
}

@media screen and (max-width: 768px) {
  .p-track-record__entry-title {
    word-break: break-word;
  }
}

.p-track-record__entry-desc {
  font-weight: 400;
  font-size: var(--font-size-14);
  line-height: var(--line-height-25);
  color: var(--color-gray-60);
  margin: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-track-record__entry-desc a:hover {
    text-decoration: underline;
  }
}
.p-track-record__entry-desc a.is-touched {
  text-decoration: underline;
}
.p-track-record__entry-desc .is--black {
  color: var(--color-black);
}

.p-track-record__entry-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-track-record__entry-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.p-track-record__entries--partners {
  gap: var(--space-20);
}

.p-track-record__partner {
  display: flex;
  align-items: center;
  gap: var(--space-20);
  padding: var(--space-20) 0;
  width: 100%;
  border-bottom: 0.25px solid rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .p-track-record__partner {
    flex-direction: column;
    align-items: stretch;
  }
}
.p-track-record__partner:first-child {
  padding-top: 0;
}

.p-track-record__partner-photo {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  background-color: #eaeaea;
  overflow: hidden;
}
.p-track-record__partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-track-record__partner-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    max-width: 160px;
  }
}

.p-track-record__partner-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  flex: 1;
  min-width: 0;
}

.p-track-record__partner-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.p-track-record__partner-name {
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: var(--line-height-30);
  color: var(--color-black);
  margin: 0;
}

.p-track-record__partner-position {
  font-size: var(--font-size-12);
  font-weight: 450;
  line-height: var(--line-height-20);
  color: var(--color-gray-60);
  margin: 0;
}

.p-track-record__partner-comment {
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: var(--line-height-25);
  margin: 0;
}

.p-track-record__no-posts {
  font-size: var(--font-size-14);
  line-height: var(--line-height-24);
  color: var(--color-gray-text);
  padding: var(--space-40) 0;
}

.p-track-record__content {
  transition: opacity 0.2s ease;
}
.p-track-record__content.is-loading {
  opacity: 0.5;
  pointer-events: none;
}