@charset "UTF-8";
/* --------------------------------------------------
* top
*/
.js-scroll-trigger {
  opacity: 0;
  transition: opacity 0.01s;
}

.js-scroll-trigger.is-animated {
  opacity: 1;
}

.anim-text-reveal .char-wrap span {
  display: inline-block;
  opacity: 0;
  transform: translateY(2px);
}

@keyframes slideUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-text-reveal.is-animated .char-wrap span {
  animation: slideUpIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-bg-fill {
  position: relative;
  background-color: transparent !important;
}
.anim-bg-fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.anim-bg-fill.is-kv::before {
  background-color: var(--accent-color-or);
  transform: translateX(-100%);
}
.anim-bg-fill.is-kv.is-animated::before {
  animation: BgRevisedRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.anim-bg-fill.is-method::before {
  background-color: var(--accent-color-bl);
  transform: translateX(100%);
}
.anim-bg-fill.is-method.is-animated::before {
  animation: BgRevisedLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.anim-bg-fill.is-community::before {
  background-color: var(--accent-color-or);
  transform: translateX(-100%);
}
.anim-bg-fill.is-community.is-animated::before {
  animation: BgRevisedRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-bg-fill .text-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}

@keyframes BgRevisedRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes BgRevisedLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadeInText {
  to {
    opacity: 1;
    visibility: visible;
  }
}
.anim-bg-fill.is-animated::before {
  animation: BgRevisedRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-bg-fill.is-animated::before {
  animation: BgRevisedLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-bg-fill.is-animated .text-content {
  animation: fadeInText 0.1s linear 0.4s forwards;
}

.anim-image-sweep {
  position: relative;
  overflow: hidden;
}

.anim-image-sweep img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.anim-image-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--base-color);
  transform: translateX(0);
  z-index: 2;
  overflow: hidden;
}
.anim-image-mask.is-fv {
  background-color: var(--base-inverse);
}

@keyframes maskSweep {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes maskSweepReversed {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes imageSlideIn {
  to {
    opacity: 1;
  }
}
.anim-image-sweep.is-animated .anim-image-mask {
  animation: maskSweep 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-image-sweep.is-animated .anim-image-mask.is-fv {
  animation: maskSweepReversed 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-image-sweep.is-animated img {
  animation: imageSlideIn 0.3s ease-in-out 0.4s forwards;
}

.fv-logo-ja,
.fv-logo-en {
  position: relative;
  overflow: hidden;
}

.fv-logo-ja::before,
.fv-logo-en::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: var(--base-inverse);
  animation-name: slide-mask;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}

@keyframes slide-mask {
  0% {
    transform: translateX(0);
    width: 100%;
  }
  99% {
    transform: translateX(0);
    width: 0;
  }
  100% {
    transform: translateX(0);
    width: 0;
    visibility: hidden;
  }
}
body {
  position: relative;
}

#top .section {
  padding-block: clamp(80px, 80px + (120 - 80) * (100vw - 768px) / (1920 - 768), 120px);
  margin-top: -0.4px;
}
#top .section-head {
  display: flex;
  align-items: center;
  gap: clamp(24px, 24px + (48 - 24) * (100vw - 768px) / (1920 - 768), 48px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #top .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
#top .section-head-en {
  font-size: clamp(40px, 40px + (56 - 40) * (100vw - 768px) / (1920 - 768), 56px);
}
#top .section-head-ja {
  font-size: clamp(24px, 24px + (48 - 24) * (100vw - 768px) / (1920 - 768), 48px);
  font-weight: var(--font-weight-black);
}
#top .section-label {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
#top .section-label.is-method {
  left: 100%;
  transform: translate(-100%, -50%);
}
#top .section-label.is-community {
  left: 0;
  transform: translate(0%, -50%);
}
#top .section-label-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#top .section-label-bg.is-method {
  background: var(--accent-color-bl);
  transform-origin: right;
}
#top .section-label-bg.is-community {
  background: var(--accent-color-or);
  transform-origin: left;
}
#top .section-label-text {
  font-size: clamp(48px, 48px + (96 - 48) * (100vw - 768px) / (1920 - 768), 96px);
  line-height: 2;
  padding-inline: 32px;
  position: relative;
  z-index: 10;
  transition: opacity 0.08s ease-in;
}
#top .section-label-text span.is-white {
  color: var(--base-inverse);
}
#top .top-news {
  position: absolute;
  top: clamp(16px, 16px + (28 - 16) * (100vw - 768px) / (1920 - 768), 28px);
  left: clamp(16px, 16px + (28 - 16) * (100vw - 768px) / (1920 - 768), 28px);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: clamp(10px, 10px + (18 - 10) * (100vw - 768px) / (1920 - 768), 18px);
  padding: clamp(10px, 10px + (16 - 10) * (100vw - 768px) / (1920 - 768), 16px) clamp(16px, 16px + (24 - 16) * (100vw - 768px) / (1920 - 768), 24px);
  background-color: var(--base-inverse);
  border-radius: 6px;
  color: var(--base-color);
  transition: all 0.3s ease-in;
  padding-right: clamp(112px, 112px + (160 - 112) * (100vw - 768px) / (1920 - 768), 160px);
  z-index: 1980;
  animation: fadeUp 2s ease-in-out;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#top .top-news::before {
  position: absolute;
  content: "";
  width: clamp(56px, 56px + (64 - 56) * (100vw - 768px) / (1920 - 768), 64px);
  height: 100%;
  background-color: var(--primary-color);
  top: 0;
  right: 0;
  border-radius: 0 6px 6px 0;
  transition: background-color 0.3s ease-in-out, border-left 0.3s ease-in-out;
  border-left: 1px solid rgba(245, 245, 245, 0.8);
}
#top .top-news::after {
  position: absolute;
  content: "";
  width: clamp(18px, 18px + (26 - 18) * (100vw - 768px) / (1920 - 768), 26px);
  height: clamp(18px, 18px + (26 - 18) * (100vw - 768px) / (1920 - 768), 26px);
  background: url("/assets/img/common/icon_arrow_black.svg") no-repeat center;
  background-size: 100% auto;
  top: 50%;
  right: 3.6%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #top .top-news::after {
    right: 6%;
  }
}
#top .top-news .news-meta {
  display: flex;
  align-items: center;
  gap: clamp(8px, 8px + (14 - 8) * (100vw - 768px) / (1920 - 768), 14px);
  flex-shrink: 0;
}
#top .top-news .news-cate {
  font-size: clamp(10px, 10px + (13 - 10) * (100vw - 768px) / (1920 - 768), 13px);
  color: var(--base-inverse);
  border-radius: 120px;
  background: var(--base-color);
  display: inline-block;
  padding: 4px clamp(12px, 12px + (18 - 12) * (100vw - 768px) / (1920 - 768), 18px);
  margin-left: 0;
  white-space: nowrap;
}
#top .top-news .news-date {
  font-size: clamp(11px, 11px + (14 - 11) * (100vw - 768px) / (1920 - 768), 14px);
  display: inline-block;
  margin-left: 0;
  white-space: nowrap;
}
#top .top-news .news-title {
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 768px) / (1920 - 768), 20px);
  font-weight: var(--font-weight-bold);
  margin-left: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  margin-top: clamp(-2px, -2px + (-3 - -2) * (100vw - 768px) / (1920 - 768), -3px);
}
@media screen and (min-width: 768px) {
  #top .top-news:hover {
    color: var(--base-inverse);
    background-color: var(--base-color);
  }
  #top .top-news:hover .news-cate {
    color: var(--base-color);
    background-color: var(--base-inverse);
  }
  #top .top-news:hover::before {
    background-color: var(--base-color);
    border-left: 1px solid var(--base-inverse);
  }
  #top .top-news:hover::after {
    background: url("/assets/img/common/icon_arrow_yellow.svg") no-repeat center;
    background-size: 100% auto;
  }
}
#top .fv {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100dvh;
}
#top .fv img {
  height: 100%;
  object-fit: cover;
}
#top .fv-news {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 1980;
}
#top .fv-news .news-link {
  border-radius: 4px 4px 4px 4px;
}
#top .fv-news .button-text {
  display: flex;
  align-items: center;
  background: var(--base-inverse);
}
#top .fv-news .news-cate {
  font-size: 10px;
  margin-left: 0;
}
#top .fv-news .news-date {
  font-size: 10px;
  margin-left: 10px;
}
#top .fv-news .news-title {
  font-size: 16px;
  margin-top: -3px;
}
#top .fv-news .button-icon {
  border-radius: 0 4px 4px 0;
  width: 64px;
  height: 64px;
}
#top .fv-news .button-icon::before {
  left: 22px;
}
#top .fv-news {
  opacity: 0;
  animation: fv-fade 1.6s ease-in-out forwards;
}
@keyframes fv-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#top .fv-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#top .fv-slide.is-active {
  opacity: 1;
  z-index: 1;
}
#top .fv-slide.is-first {
  opacity: 0;
  animation: fv-fade 1.6s ease-in-out forwards;
}
@keyframes fv-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#top .fv-spacer {
  height: 100vh;
  opacity: 0;
}
#top .fv-logo {
  position: absolute;
  z-index: 10;
  bottom: -1%;
  width: 100%;
  background: url("/assets/img/top/logo_bg.png") no-repeat center;
  background-size: 100% auto;
}
#top .fv-logo-inner {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding-block: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
}
#top .fv-logo-ja {
  width: 25%;
  line-height: 1;
}
#top .fv-logo-en {
  width: 100%;
  line-height: 1;
}
#top .fv-text {
  color: var(--base-inverse);
  font-size: clamp(24px, 24px + (32 - 24) * (100vw - 768px) / (1920 - 768), 32px);
  font-weight: var(--font-weight-bold);
  position: absolute;
  top: 32.7272727273%;
  right: 6.25%;
  line-height: 1.28;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #top .fv-text {
    display: none;
  }
}
#top .intro {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 0.8) 20%, rgb(245, 245, 245) 100%);
  backdrop-filter: blur(1px);
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-block: 400px 100px;
}
#top .intro-head {
  display: flex;
  width: 100%;
}
#top .intro-lead {
  width: 50%;
  font-size: clamp(36px, 36px + (72 - 36) * (100vw - 768px) / (1920 - 768), 72px);
  font-weight: var(--font-weight-black);
  line-height: 1.28;
}
#top .intro-desc {
  width: 50%;
}
#top .intro-text {
  font-size: clamp(14px, 14px + (22 - 14) * (100vw - 768px) / (1920 - 768), 22px);
  font-weight: var(--font-weight-medium);
  line-height: 2.4;
  text-align: left;
}
#top .intro-text:not(:first-child) {
  margin-top: 2rem;
}
#top .gallery-slider {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--base-color);
  border-bottom: 1px solid var(--base-color);
}
#top .slider-row:first-child {
  border-bottom: 1px solid var(--base-color);
}
#top .slider-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
  animation: autoSlide 90s linear infinite;
  width: max-content;
}
#top .slider-track.is-reverse {
  animation-direction: reverse;
}
#top .slider-item {
  flex-shrink: 0;
  white-space: nowrap;
  padding-inline: 28px;
  padding-block: 16px;
}
#top .slider-item:nth-child(even) {
  border-right: 1px solid var(--base-color);
  border-left: 1px solid var(--base-color);
}
#top .slider-item:nth-child(odd) {
  padding-block: 0;
}
#top .slider-item img {
  width: auto;
  height: clamp(60px, 60px + (100 - 60) * (100vw - 768px) / (1920 - 768), 100px);
  max-width: none;
  object-fit: contain;
}
#top .slider-item-text {
  font-size: clamp(36px, 36px + (60 - 36) * (100vw - 768px) / (1920 - 768), 60px);
  display: inline-block;
}
#top .about {
  position: relative;
  z-index: 1;
  background: var(--base-inverse);
}
#top .about-head {
  display: flex;
  padding: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
}
#top .profile {
  background: var(--primary-color);
  width: 50%;
  padding-block: clamp(16px, 16px + (32 - 16) * (100vw - 768px) / (1920 - 768), 32px);
  padding-left: clamp(16px, 16px + (32 - 16) * (100vw - 768px) / (1920 - 768), 32px);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: clamp(64px, 64px + (136 - 64) * (100vw - 768px) / (1920 - 768), 136px);
}
#top .profile-head {
  display: grid;
  row-gap: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
}
#top .profile-label {
  display: inline-block;
  font-size: clamp(40px, 40px + (112 - 40) * (100vw - 768px) / (1920 - 768), 112px);
  font-weight: var(--font-weight-bold);
  color: var(--base-inverse);
  line-height: 1;
  padding-block: clamp(16px, 16px + (32 - 16) * (100vw - 768px) / (1920 - 768), 32px);
  text-transform: uppercase;
}
#top .profile-lead {
  font-size: clamp(32px, 32px + (60 - 32) * (100vw - 768px) / (1920 - 768), 60px);
  font-weight: var(--font-weight-black);
  letter-spacing: -1px;
  line-height: 1.2;
}
#top .profile-name {
  font-size: clamp(12px, 12px + (18 - 12) * (100vw - 768px) / (1920 - 768), 18px);
  font-weight: var(--font-weight-black);
}
#top .sns-list {
  display: flex;
  gap: clamp(8px, 8px + (12 - 8) * (100vw - 768px) / (1920 - 768), 12px);
  margin-top: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
}
#top .sns-link {
  display: block;
  width: clamp(20px, 20px + (28 - 20) * (100vw - 768px) / (1920 - 768), 28px);
  height: clamp(20px, 20px + (28 - 20) * (100vw - 768px) / (1920 - 768), 28px);
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  #top .sns-link:hover {
    opacity: 0.64;
  }
}
#top .profile-birth {
  margin-top: clamp(16px, 16px + (22 - 16) * (100vw - 768px) / (1920 - 768), 22px);
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
}
#top .career-item {
  padding-left: 16px;
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
  position: relative;
}
#top .career-item::before {
  position: absolute;
  content: "▪︎";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 16px;
}
#top .profile-img {
  width: 50%;
}
#top .profile-img img {
  height: 100%;
  object-fit: cover;
}
#top .works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--base-color);
}
#top .work {
  padding-block: clamp(48px, 48px + (66 - 48) * (100vw - 768px) / (1920 - 768), 66px);
}
#top .work:not(:last-child) {
  border-right: 1px solid var(--base-color);
}
#top .work-head {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  width: 76.875%;
}
#top .work-label {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  font-size: clamp(12px, 12px + (18 - 12) * (100vw - 768px) / (1920 - 768), 18px);
}
#top .work-label::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(8px, 8px + (13 - 8) * (100vw - 768px) / (1920 - 768), 13px);
  height: clamp(8px, 8px + (13 - 8) * (100vw - 768px) / (1920 - 768), 13px);
  background: url("/assets/img/top/work_label_blue.svg") no-repeat center;
  background-size: 100% auto;
}
#top .work-label.is-trainer::before {
  background: url("/assets/img/top/work_label_blue.svg") no-repeat center;
  background-size: 100% auto;
}
#top .work-label.is-youtuber::before {
  background: url("/assets/img/top/work_label_orange.svg") no-repeat center;
  background-size: 100% auto;
}
#top .work-label.is-runner::before {
  background: url("/assets/img/top/work_label_yellow.svg") no-repeat center;
  background-size: 100% auto;
}
#top .work-date {
  display: inline-block;
  text-transform: uppercase;
  font-size: clamp(12px, 12px + (18 - 12) * (100vw - 768px) / (1920 - 768), 18px);
}
#top .work-title {
  font-size: clamp(16px, 16px + (30 - 16) * (100vw - 768px) / (1920 - 768), 30px);
  text-align: center;
  margin-top: 28px;
}
#top .work-img {
  width: clamp(200px, 200px + (320 - 200) * (100vw - 768px) / (1920 - 768), 320px);
  margin-top: 22px;
  margin-inline: auto;
}
#top .work-desc {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
  line-height: 1.8;
  width: 76.875%;
  margin-top: clamp(32px, 32px + (60 - 32) * (100vw - 768px) / (1920 - 768), 60px);
  margin-inline: auto;
}
#top .sponsor {
  position: relative;
  z-index: 1;
  color: var(--base-inverse);
  background: #313131;
}
#top .sponsor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 40px + (72 - 40) * (100vw - 768px) / (1920 - 768), 72px) clamp(20px, 20px + (36 - 20) * (100vw - 768px) / (1920 - 768), 36px);
  margin-top: clamp(56px, 56px + (88 - 56) * (100vw - 768px) / (1920 - 768), 88px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #top .sponsor-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
#top .sponsor-link {
  display: block;
}
@media screen and (min-width: 768px) {
  #top .sponsor-link:hover .sponsor-img img {
    scale: 1.08;
  }
}
#top .sponsor-img {
  display: block;
  overflow: hidden;
}
#top .sponsor-img img {
  transition: scale 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  #top .sponsor-img img {
    transition: none;
  }
}
#top .sponsor-body {
  display: grid;
  row-gap: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
  margin-top: clamp(16px, 16px + (24 - 16) * (100vw - 768px) / (1920 - 768), 24px);
}
#top .sponsor-name {
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 768px) / (1920 - 768), 20px);
  font-weight: var(--font-weight-black);
}
#top .sponsor-desc {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
  line-height: 2;
}
#top .news {
  position: relative;
  z-index: 1;
  background: var(--base-inverse);
}
#top .news-list {
  margin-top: clamp(56px, 56px + (88 - 56) * (100vw - 768px) / (1920 - 768), 88px);
}
#top .news-cate,
#top .news-date,
#top .news-title {
  transition: all 0.3s ease-in-out;
}
#top .news-item {
  border-top: 1px solid var(--base-color);
}
#top .news-item:last-child {
  border-bottom: 1px solid var(--base-color);
}
#top .news-item.is-notfound {
  border: none;
  margin-left: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
  font-size: clamp(20px, 20px + (32 - 20) * (100vw - 768px) / (1920 - 768), 32px);
  font-weight: var(--font-weight-bold);
  opacity: 0.6;
  text-align: center;
  padding-block: clamp(40px, 40px + (80 - 40) * (100vw - 768px) / (1920 - 768), 80px);
}
#top .news-item a {
  display: flex;
  align-items: center;
  gap: clamp(18px, 18px + (36 - 18) * (100vw - 768px) / (1920 - 768), 36px);
  padding-block: clamp(40px, 40px + (64 - 40) * (100vw - 768px) / (1920 - 768), 64px);
  position: relative;
  transition: all 0.3s ease-in;
}
#top .news-item a::before {
  position: absolute;
  content: "";
  width: clamp(100px, 100px + (160 - 100) * (100vw - 768px) / (1920 - 768), 160px);
  height: 100%;
  background-color: var(--primary-color);
  top: 0;
  right: 0;
  border-left: 1px solid var(--base-color);
  transition: all 0.3s ease-in-out, border-left 0.3s ease-in-out;
}
#top .news-item a::after {
  position: absolute;
  content: "";
  width: clamp(21.97px, 21.97px + (29.3 - 21.97) * (100vw - 768px) / (1920 - 768), 29.3px);
  height: clamp(20.25px, 20.25px + (27 - 20.25) * (100vw - 768px) / (1920 - 768), 27px);
  background: url("/assets/img/common/icon_arrow_black.svg") no-repeat center;
  background-size: 100% auto;
  top: 50%;
  right: 3.4375%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #top .news-item a::after {
    right: 4.4%;
  }
}
@media screen and (min-width: 768px) {
  #top .news-item a:hover {
    color: var(--base-inverse);
    background-color: var(--base-color);
  }
  #top .news-item a:hover .news-cate {
    color: var(--base-color);
    background-color: var(--base-inverse);
    display: inline-block;
  }
  #top .news-item a:hover::before {
    background-color: var(--base-color);
    border-left: 1px solid var(--base-inverse);
  }
  #top .news-item a:hover::after {
    background: url("/assets/img/common/icon_arrow_yellow.svg") no-repeat center;
    background-size: 100% auto;
  }
}
#top .news-meta {
  display: flex;
  align-items: center;
}
#top .news-cate {
  font-size: clamp(10px, 10px + (15 - 10) * (100vw - 768px) / (1920 - 768), 15px);
  color: var(--base-inverse);
  border-radius: 120px;
  background: var(--base-color);
  display: inline-block;
  padding: 4px clamp(20px, 20px + (32 - 20) * (100vw - 768px) / (1920 - 768), 32px);
  margin-left: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
}
#top .news-date {
  font-size: clamp(11px, 11px + (18 - 11) * (100vw - 768px) / (1920 - 768), 18px);
  display: inline-block;
  margin-left: clamp(18px, 18px + (36 - 18) * (100vw - 768px) / (1920 - 768), 36px);
}
#top .news-title {
  font-size: clamp(16px, 16px + (30 - 16) * (100vw - 768px) / (1920 - 768), 30px);
  font-weight: var(--font-weight-bold);
  margin-left: 16px;
}
#top .service {
  position: relative;
  z-index: 1;
  background: var(--base-inverse);
}
#top .service-head {
  font-size: clamp(40px, 40px + (64 - 40) * (100vw - 768px) / (1920 - 768), 64px);
  font-weight: var(--font-weight-black);
  line-height: 1.24;
}
#top .service-content {
  margin-top: clamp(56px, 56px + (88 - 56) * (100vw - 768px) / (1920 - 768), 88px);
}
#top .service-content:last-child {
  margin-top: clamp(120px, 120px + (200 - 120) * (100vw - 768px) / (1920 - 768), 200px);
}
#top .service-kv {
  position: relative;
}
#top .service-label {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
#top .service-label.is-method {
  left: 100%;
  transform: translate(-100%, -50%);
}
#top .service-label.is-community {
  left: 0;
  transform: translate(0%, -50%);
}
#top .service-label-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  z-index: -1;
}
#top .service-label-bg.is-method {
  background: var(--accent-color-bl);
  transform-origin: right;
}
#top .service-label-bg.is-community {
  background: var(--accent-color-or);
  transform-origin: left;
}
#top .service-label-text {
  font-size: 112px;
  line-height: 2;
  padding-inline: 32px;
  opacity: 0;
}
#top .service-label-text span {
  color: var(--base-inverse);
}
#top .service-lead {
  position: relative;
  padding-left: clamp(96px, 96px + (220 - 96) * (100vw - 768px) / (1920 - 768), 220px);
  margin-top: clamp(36px, 36px + (100 - 36) * (100vw - 768px) / (1920 - 768), 100px);
}
#top .service-lead.is-community {
  left: 38.28125%;
}
#top .service-lead-num {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: clamp(80px, 80px + (150 - 80) * (100vw - 768px) / (1920 - 768), 150px);
  line-height: 1;
}
#top .service-lead-text {
  font-size: clamp(28px, 28px + (42 - 28) * (100vw - 768px) / (1920 - 768), 42px);
  font-weight: var(--font-weight-black);
  line-height: 1.2;
}
#top .service-list {
  display: flex;
  gap: 2%;
  justify-content: space-between;
  margin-top: clamp(96px, 96px + (160 - 96) * (100vw - 768px) / (1920 - 768), 160px);
}
#top .service-item {
  width: 49%;
}
#top .service-item:last-child {
  margin-top: 16%;
}
#top .service-title {
  font-size: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
  margin-top: clamp(18px, 18px + (30 - 18) * (100vw - 768px) / (1920 - 768), 30px);
}
#top .service-text {
  font-size: clamp(14px, 14px + (22 - 14) * (100vw - 768px) / (1920 - 768), 22px);
  font-weight: var(--font-weight-black);
  margin-top: clamp(4px, 4px + (8 - 4) * (100vw - 768px) / (1920 - 768), 8px);
}
#top .service-button {
  margin-top: clamp(15px, 15px + (30 - 15) * (100vw - 768px) / (1920 - 768), 30px);
}
#top .brand {
  position: relative;
  z-index: 1;
  background: var(--base-inverse);
}
#top .brand-inner {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #top .brand-inner {
    flex-direction: column;
  }
}
#top .brand-image {
  width: 60%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #top .brand-image {
    width: 100%;
  }
}
#top .brand-body {
  width: 40%;
  background: #f4f4f4;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #top .brand-body {
    width: 100%;
    padding-inline: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
    gap: 0;
    margin-top: 0;
  }
}
#top .brand-body-inner {
  position: absolute;
  top: 50%;
  left: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #top .brand-body-inner {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    padding-block: clamp(40px, 40px + (64 - 40) * (100vw - 768px) / (1920 - 768), 64px);
  }
}
#top .brand-title {
  font-size: clamp(32px, 32px + (56 - 32) * (100vw - 768px) / (1920 - 768), 56px);
}
#top .brand-text {
  font-size: clamp(14px, 14px + (22 - 14) * (100vw - 768px) / (1920 - 768), 22px);
  font-weight: var(--font-weight-bold);
  margin-top: clamp(20px, 20px + (32 - 20) * (100vw - 768px) / (1920 - 768), 32px);
}
#top .brand-button {
  margin-top: clamp(12px, 12px + (20 - 12) * (100vw - 768px) / (1920 - 768), 20px);
}

#training-session .page-header {
  padding-block: clamp(160px, 160px + (240 - 160) * (100vw - 768px) / (1920 - 768), 240px) clamp(64px, 64px + (110 - 64) * (100vw - 768px) / (1920 - 768), 110px);
}
#training-session .header-title {
  width: clamp(480px, 480px + (680 - 480) * (100vw - 768px) / (1920 - 768), 680px);
  margin-inline: auto;
}
#training-session .header-title .anim-image-mask {
  background: var(--accent-color-or);
}
#training-session .header-title-image {
  display: block;
  width: clamp(480px, 480px + (680 - 480) * (100vw - 768px) / (1920 - 768), 680px);
  margin-inline: auto;
}
#training-session .header-slider {
  overflow: hidden;
  white-space: nowrap;
  margin-top: clamp(56px, 56px + (96 - 56) * (100vw - 768px) / (1920 - 768), 96px);
}
#training-session .slider-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
  animation: autoSlide 90s linear infinite;
  width: max-content;
}
#training-session .slider-item {
  flex-shrink: 0;
  white-space: nowrap;
  padding-inline: clamp(8px, 8px + (12 - 8) * (100vw - 768px) / (1920 - 768), 12px);
}
#training-session .slider-item:nth-child(even) {
  margin-top: clamp(56px, 56px + (96 - 56) * (100vw - 768px) / (1920 - 768), 96px);
}
#training-session .slider-item img {
  height: clamp(320px, 320px + (583 - 320) * (100vw - 768px) / (1920 - 768), 583px);
  width: auto;
  max-width: none;
  object-fit: contain;
}
@keyframes autoSlide {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
#training-session .sns-list {
  display: flex;
  gap: clamp(16px, 16px + (24 - 16) * (100vw - 768px) / (1920 - 768), 24px);
  justify-content: center;
}
#training-session .sns-item {
  width: clamp(28px, 28px + (38 - 28) * (100vw - 768px) / (1920 - 768), 38px);
  height: clamp(28px, 28px + (38 - 28) * (100vw - 768px) / (1920 - 768), 38px);
}
#training-session .sns-link {
  display: block;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  #training-session .sns-link:hover {
    opacity: 0.64;
  }
}
#training-session .header-sns {
  text-align: center;
  margin-top: clamp(80px, 80px + (140 - 80) * (100vw - 768px) / (1920 - 768), 140px);
  display: grid;
  row-gap: clamp(20px, 20px + (32 - 20) * (100vw - 768px) / (1920 - 768), 32px);
}
#training-session .header-link-note {
  font-weight: var(--font-weight-bold);
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
}
#training-session .section {
  display: flex;
  border-top: 1px solid var(--base-color);
  border-bottom: 1px solid var(--base-color);
}
#training-session .section.cta {
  border-top: none;
  border-bottom: none;
}
#training-session .section-head {
  width: 50%;
  padding-top: 56px;
  padding-inline: clamp(32px, 32px + (64 - 32) * (100vw - 768px) / (1920 - 768), 64px);
}
#training-session .section-body {
  width: 50%;
}
#training-session .summary-body {
  border-left: 1px solid var(--base-color);
}
#training-session .section-title {
  font-size: clamp(28px, 28px + (64 - 28) * (100vw - 768px) / (1920 - 768), 64px);
  font-weight: var(--font-weight-black);
}
#training-session .summary-item {
  font-weight: var(--font-weight-bold);
  font-size: clamp(12px, 12px + (18 - 12) * (100vw - 768px) / (1920 - 768), 18px);
}
#training-session .summary-desc {
  font-weight: var(--font-weight-bold);
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
  margin-top: clamp(16px, 16px + (32 - 16) * (100vw - 768px) / (1920 - 768), 32px);
}
#training-session .accordion {
  border-top: 1px solid var(--base-color);
}
#training-session .accordion:first-child {
  border-top: none;
}
#training-session .accordion-button {
  width: 100%;
  cursor: pointer;
  padding-block: clamp(36px, 36px + (72 - 36) * (100vw - 768px) / (1920 - 768), 72px);
  background: none;
  border: none;
  outline: none;
  font: inherit;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#training-session .accordion-question {
  font-weight: var(--font-weight-black);
  font-size: clamp(14px, 14px + (22 - 14) * (100vw - 768px) / (1920 - 768), 22px);
  position: relative;
  padding-left: clamp(64px, 64px + (128 - 64) * (100vw - 768px) / (1920 - 768), 128px);
}
#training-session .accordion-question::before {
  position: absolute;
  content: "";
  top: 50%;
  left: clamp(24px, 24px + (64 - 24) * (100vw - 768px) / (1920 - 768), 64px);
  transform: translateY(-50%);
  width: clamp(27.39px, 27.39px + (40.79 - 27.39) * (100vw - 768px) / (1920 - 768), 40.79px);
  height: clamp(21.43px, 21.43px + (37.59 - 21.43) * (100vw - 768px) / (1920 - 768), 37.59px);
  background: url("/assets/img/common/icon_arrow_orange.svg") no-repeat center;
  background-size: 100% auto;
}
#training-session .accordion-question.is-blue::before {
  background: url("/assets/img/common/icon_arrow_blue.svg") no-repeat center;
  background-size: 100% auto;
}
#training-session .accordion-icon {
  width: clamp(20px, 20px + (44 - 20) * (100vw - 768px) / (1920 - 768), 44px);
  height: clamp(20px, 20px + (44 - 20) * (100vw - 768px) / (1920 - 768), 44px);
  position: relative;
  padding-right: 32px;
  display: inline-block;
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
#training-session .accordion-icon::before {
  position: absolute;
  content: "";
  width: 1px;
  height: clamp(20px, 20px + (44 - 20) * (100vw - 768px) / (1920 - 768), 44px);
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background: var(--base-color);
}
#training-session .accordion-icon::after {
  position: absolute;
  content: "";
  width: clamp(20px, 20px + (44 - 20) * (100vw - 768px) / (1920 - 768), 44px);
  height: 1px;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background: var(--base-color);
}
#training-session .accordion-button[aria-expanded=true] .accordion-icon {
  transform: rotate(45deg);
}
#training-session .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding-left: 24px;
  line-height: 1.7;
  color: #333;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  padding-inline: clamp(64px, 64px + (128 - 64) * (100vw - 768px) / (1920 - 768), 128px) 32px;
}
#training-session .accordion-content:first-child {
  padding-inline: 0;
}
#training-session .accordion-block {
  padding-inline: 0 32px;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
}
#training-session .accordion-title {
  font-size: clamp(14px, 14px + (20 - 14) * (100vw - 768px) / (1920 - 768), 20px);
}
#training-session .accordion-text {
  font-size: clamp(14px, 14px + (20 - 14) * (100vw - 768px) / (1920 - 768), 20px);
  letter-spacing: 0.48px;
  margin-bottom: clamp(36px, 36px + (72 - 36) * (100vw - 768px) / (1920 - 768), 72px);
}
#training-session .accordion-postscript {
  padding-inline: 0 32px;
  font-size: clamp(14px, 14px + (20 - 14) * (100vw - 768px) / (1920 - 768), 20px);
  margin-bottom: clamp(36px, 36px + (72 - 36) * (100vw - 768px) / (1920 - 768), 72px);
}
#training-session .accordion-button[aria-expanded=true] + .accordion-content {
  display: block;
}
#training-session .cta-section {
  border-bottom: none;
}
#training-session .cta-head-title span {
  display: inline-block;
}
#training-session .cta-head-desc {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
  font-weight: var(--font-weight-bold);
  margin-top: clamp(16px, 16px + (32 - 16) * (100vw - 768px) / (1920 - 768), 32px);
}
#training-session .cta-body {
  padding-block: 56px 120px;
  padding-right: clamp(32px, 32px + (64 - 32) * (100vw - 768px) / (1920 - 768), 64px);
  display: grid;
  row-gap: clamp(40px, 40px + (64 - 40) * (100vw - 768px) / (1920 - 768), 64px);
}
#training-session .cta-trc .cta-img {
  width: 100%;
  display: grid;
  place-items: center;
}
#training-session .cta-moshicom .cta-img {
  width: 100%;
  display: grid;
  place-items: center;
}
#training-session .cta-title {
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 768px) / (1920 - 768), 22px);
  font-weight: var(--font-weight-bold);
  margin-top: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
}
#training-session .cta-text {
  line-height: 2;
  margin-top: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
}
#training-session .cta-button {
  margin-top: clamp(16px, 16px + (24 - 16) * (100vw - 768px) / (1920 - 768), 24px);
}
#training-session .cta-button .button-text {
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 768px) / (1920 - 768), 18px);
}
#training-session .trc-card-img {
  display: flex;
}

#trc {
  background: var(--base-color);
}
#trc .inner {
  padding-inline: clamp(40px, 40px + (80 - 40) * (100vw - 768px) / (1920 - 768), 80px);
}
#trc .contents {
  color: var(--base-inverse);
}
#trc .trc-hero {
  position: relative;
  z-index: 1;
  background: url("/assets/img/trc/hero_img.webp") no-repeat center;
  background-size: 100% auto;
  aspect-ratio: 1920/1080;
}
#trc .trc-hero-logo {
  position: absolute;
  width: clamp(188px, 188px + (400 - 188) * (100vw - 768px) / (1920 - 768), 400px);
  top: clamp(120px, 120px + (240 - 120) * (100vw - 768px) / (1920 - 768), 240px);
  right: 9.375%;
}
#trc .trc-hero-lead {
  position: absolute;
  width: clamp(112px, 112px + (172 - 112) * (100vw - 768px) / (1920 - 768), 172px);
  top: clamp(240px, 240px + (560 - 240) * (100vw - 768px) / (1920 - 768), 560px);
  right: 11.0416666667%;
}
#trc .trc-about {
  padding-block: clamp(80px, 80px + (160 - 80) * (100vw - 768px) / (1920 - 768), 160px) clamp(40px, 40px + (64 - 40) * (100vw - 768px) / (1920 - 768), 64px);
}
#trc .about-title {
  font-size: clamp(64px, 64px + (112 - 64) * (100vw - 768px) / (1920 - 768), 112px);
  font-family: var(--font-boldonse);
  font-weight: var(--font-weight-medium);
}
#trc .about-desc {
  margin-top: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 768px) / (1920 - 768), 20px);
}
#trc .about-body {
  margin-top: clamp(40px, 40px + (80 - 40) * (100vw - 768px) / (1920 - 768), 80px);
}
#trc .about-slider {
  overflow: hidden;
  white-space: nowrap;
}
#trc .slider-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
  animation: autoSlide 90s linear infinite;
  width: max-content;
}
#trc .slider-item {
  flex-shrink: 0;
  white-space: nowrap;
  padding-inline: 6px;
}
#trc .slider-item img {
  height: clamp(200px, 200px + (320 - 200) * (100vw - 768px) / (1920 - 768), 320px);
  width: auto;
  max-width: none;
  object-fit: contain;
}
#trc .trc-benefit {
  padding-top: clamp(64px, 64px + (100 - 64) * (100vw - 768px) / (1920 - 768), 100px);
}
#trc .trc-benefit-top {
  position: relative;
  border-top: 1px solid #434343;
  border-bottom: 1px solid #434343;
}
#trc .trc-benefit-top .member-benefit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 64px;
}
#trc .trc-benefit-top .member-benefit .member-benefit-content {
  width: 46%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #trc .trc-benefit-top .member-benefit .member-benefit-content {
    width: 100%;
  }
}
#trc .trc-benefit-top .member-benefit .member-benefit-image.is-pc {
  width: 50%;
  height: 100%;
}
#trc .trc-benefit-top .member-benefit .member-benefit-image.is-pc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #trc .trc-benefit-top .member-benefit .member-benefit-image.is-pc {
    display: none;
  }
}
#trc .trc-benefit-top .member-benefit .member-benefit-image.is-tab {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #trc .trc-benefit-top .member-benefit .member-benefit-image.is-tab {
    display: block;
    width: 100%;
    margin-top: clamp(40px, 40px + (64 - 40) * (100vw - 768px) / (1920 - 768), 64px);
  }
}
#trc .trc-benefit-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
}
#trc .trc-benefit-bottom .member-benefit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #434343;
  padding-block: clamp(48px, 48px + (80 - 48) * (100vw - 768px) / (1920 - 768), 80px);
}
#trc .trc-benefit-bottom .member-benefit .member-benefit-content {
  width: 64%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #trc .trc-benefit-bottom .member-benefit .member-benefit-content {
    width: 100%;
  }
}
#trc .trc-benefit-bottom .member-benefit .member-benefit-image.is-pc {
  width: 32%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #trc .trc-benefit-bottom .member-benefit .member-benefit-image.is-pc {
    display: none;
  }
}
#trc .trc-benefit-bottom .member-benefit .member-benefit-image.is-tab {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #trc .trc-benefit-bottom .member-benefit .member-benefit-image.is-tab {
    display: block;
    width: 100%;
    margin-top: clamp(40px, 40px + (64 - 40) * (100vw - 768px) / (1920 - 768), 64px);
  }
}
#trc .trc-benefit-bottom .member-benefit:nth-child(odd) {
  border-right: 1px solid #434343;
}
#trc .member-benefit-label {
  display: flex;
  align-items: center;
  font-weight: var(--font-weight-black);
  position: relative;
  z-index: 2;
  color: var(--base-color);
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 768px) / (1920 - 768), 18px);
}
#trc .member-benefit-label span {
  font-size: clamp(24px, 24px + (36 - 24) * (100vw - 768px) / (1920 - 768), 36px);
  display: inline-block;
  margin-left: 6px;
}
#trc .member-benefit-label::before {
  position: absolute;
  content: "";
  width: clamp(80px, 80px + (100 - 80) * (100vw - 768px) / (1920 - 768), 100px);
  height: clamp(80px, 80px + (100 - 80) * (100vw - 768px) / (1920 - 768), 100px);
  background-color: #FF8538;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#trc .member-benefit-label.is-second::before {
  background-color: #366ADD;
}
#trc .member-benefit-label.is-third::before {
  background-color: #D2EA18;
}
#trc .member-benefit-label.is-fourth::before {
  background-color: #E85694;
}
#trc .member-benefit-label.is-fifth::before {
  background-color: #24B95D;
}
#trc .member-benefit-title {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: clamp(32px, 32px + (48 - 32) * (100vw - 768px) / (1920 - 768), 48px);
  padding-left: 10px;
}
@media screen and (min-width: 1040px) and (max-width: 1300px) {
  #trc .member-benefit-title {
    flex-direction: column;
    align-items: flex-start;
  }
}
#trc .member-benefit-list {
  margin-top: clamp(48px, 48px + (72 - 48) * (100vw - 768px) / (1920 - 768), 72px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
}
#trc .member-benefit-item {
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 768px) / (1920 - 768), 20px);
  padding-left: 24px;
  position: relative;
}
#trc .member-benefit-item::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("/assets/img/trc/icon_dot_orange.svg") no-repeat center;
  background-size: 100% auto;
}
#trc .member-benefit-lead {
  display: inline-block;
  font-size: clamp(18px, 18px + (30 - 18) * (100vw - 768px) / (1920 - 768), 30px);
}
@media screen and (min-width: 1040px) and (max-width: 1300px) {
  #trc .member-benefit-lead {
    margin-left: -10px;
  }
}
#trc .member-benefit-text {
  color: #959595;
  margin-top: 32px;
  line-height: 2;
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 768px) / (1920 - 768), 16px);
}
#trc .member-benefit-desc {
  margin-top: clamp(20px, 20px + (32 - 20) * (100vw - 768px) / (1920 - 768), 32px);
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 768px) / (1920 - 768), 16px);
  letter-spacing: 0.1rem;
  line-height: 1.8;
}
#trc .member-benefit-price {
  display: block;
}
#trc .trc-highlight {
  padding-block: clamp(64px, 64px + (100 - 64) * (100vw - 768px) / (1920 - 768), 100px);
}
#trc .trc-highlight-inner {
  display: flex;
  flex-direction: row-reverse;
  gap: 4%;
}
#trc .trc-highlight-body {
  width: 46%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(24px, 24px + (32 - 24) * (100vw - 768px) / (1920 - 768), 32px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #trc .trc-highlight-body {
    width: 100%;
  }
}
#trc .trc-highlight-image img {
  height: 100%;
  object-fit: cover;
}
#trc .trc-highlight-image.is-tab {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #trc .trc-highlight-image.is-tab {
    display: block;
    width: 100%;
  }
}
#trc .trc-highlight-image.is-pc {
  width: 50%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #trc .trc-highlight-image.is-pc {
    display: none;
  }
}
#trc .trc-highlight-icon {
  position: relative;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 768px) / (1920 - 768), 18px);
  padding-left: 80px;
  color: var(--primary-color);
}
#trc .trc-highlight-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 61.52px;
  height: 51.29px;
  background: url("/assets/img/trc/icon_quote.svg") no-repeat center;
  background-size: 100% auto;
}
#trc .trc-highlight-title {
  font-size: clamp(21px, 21px + (45 - 21) * (100vw - 768px) / (1920 - 768), 45px);
  font-weight: var(--font-weight-black);
}
#trc .trc-highlight-desc {
  letter-spacing: 0.1rem;
  line-height: 1.8;
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 768px) / (1920 - 768), 16px);
}
#trc .trc-highlight-movie {
  aspect-ratio: 757/458;
  width: 100%;
  position: relative;
}
#trc .trc-highlight-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}
#trc .trc-cta {
  padding-block: clamp(64px, 64px + (80 - 64) * (100vw - 768px) / (1920 - 768), 80px);
  padding-inline: clamp(40px, 40px + (80 - 40) * (100vw - 768px) / (1920 - 768), 80px);
  border-top: 1px solid #414141;
}
#trc .trc-cta-inner {
  background: var(--base-inverse);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(24px, 24px + (64 - 24) * (100vw - 768px) / (1920 - 768), 64px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #trc .trc-cta-inner {
    flex-direction: column-reverse;
  }
}
#trc .cta-head {
  font-family: var(--font-boldonse);
  color: var(--base-color);
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 768px) / (1920 - 768), 24px);
}
#trc .cta-price {
  width: clamp(240px, 240px + (476 - 240) * (100vw - 768px) / (1920 - 768), 476px);
}
#trc .cta-detail {
  margin-top: clamp(16px, 16px + (20 - 16) * (100vw - 768px) / (1920 - 768), 20px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
}
#trc .cta-detail-item {
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 768px) / (1920 - 768), 20px);
  padding-left: 24px;
  position: relative;
  color: var(--base-color);
  font-weight: var(--font-weight-bold);
}
#trc .cta-detail-item::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("/assets/img/trc/icon_dot_yellow.svg") no-repeat center;
  background-size: 100% auto;
}
#trc .cta-button {
  margin-top: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
  background: #F5F5F5;
}
#trc .cta-content {
  width: 46%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #trc .cta-content {
    width: 100%;
    margin-top: 40px;
  }
}
#trc .cta-image {
  width: 50%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #trc .cta-image {
    width: 100%;
  }
}
#trc .summary {
  display: flex;
  border-top: 1px solid #414141;
  border-bottom: 1px solid #414141;
  margin-bottom: 80px;
}
#trc .summary.cta {
  border-bottom: none;
}
#trc .section-head {
  width: 50%;
  padding-top: 56px;
  padding-inline: clamp(32px, 32px + (64 - 32) * (100vw - 768px) / (1920 - 768), 64px);
}
#trc .section-body {
  width: 50%;
}
#trc .summary-body {
  border-left: 1px solid #414141;
}
#trc .summary-list {
  margin-top: 40px;
  display: grid;
  row-gap: 4px;
}
#trc .section-title {
  font-size: clamp(28px, 28px + (64 - 28) * (100vw - 768px) / (1920 - 768), 64px);
  font-weight: var(--font-weight-black);
}
#trc .summary-item {
  font-weight: var(--font-weight-bold);
}
#trc .summary-item .mark {
  margin-right: 1rem;
}
#trc .summary-desc {
  font-weight: var(--font-weight-bold);
  margin-top: 2rem;
}
#trc .accordion {
  border-top: 1px solid #414141;
}
#trc .accordion:first-child {
  border-top: none;
}
#trc .accordion-button {
  width: 100%;
  cursor: pointer;
  padding-block: clamp(36px, 36px + (72 - 36) * (100vw - 768px) / (1920 - 768), 72px);
  background: none;
  border: none;
  outline: none;
  font: inherit;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#trc .accordion-question {
  font-weight: var(--font-weight-black);
  font-size: clamp(14px, 14px + (22 - 14) * (100vw - 768px) / (1920 - 768), 22px);
  color: var(--base-inverse);
  position: relative;
  padding-left: clamp(64px, 64px + (128 - 64) * (100vw - 768px) / (1920 - 768), 128px);
}
#trc .accordion-question::before {
  position: absolute;
  content: "";
  top: 50%;
  left: clamp(24px, 24px + (64 - 24) * (100vw - 768px) / (1920 - 768), 64px);
  transform: translateY(-50%);
  width: clamp(27.39px, 27.39px + (40.79 - 27.39) * (100vw - 768px) / (1920 - 768), 40.79px);
  height: clamp(21.43px, 21.43px + (37.59 - 21.43) * (100vw - 768px) / (1920 - 768), 37.59px);
  background: url("/assets/img/common/icon_arrow_yellow.svg") no-repeat center;
  background-size: 100% auto;
}
#trc .accordion-icon {
  width: clamp(20px, 20px + (44 - 20) * (100vw - 768px) / (1920 - 768), 44px);
  height: clamp(20px, 20px + (44 - 20) * (100vw - 768px) / (1920 - 768), 44px);
  position: relative;
  padding-right: 32px;
  display: inline-block;
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
#trc .accordion-icon::before {
  position: absolute;
  content: "";
  width: 1px;
  height: clamp(20px, 20px + (44 - 20) * (100vw - 768px) / (1920 - 768), 44px);
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background: var(--base-inverse);
}
#trc .accordion-icon::after {
  position: absolute;
  content: "";
  width: clamp(20px, 20px + (44 - 20) * (100vw - 768px) / (1920 - 768), 44px);
  height: 1px;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background: var(--base-inverse);
}
#trc .accordion-button[aria-expanded=true] .accordion-icon {
  transform: rotate(45deg);
}
#trc .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding-left: 24px;
  line-height: 1.7;
  color: #333;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}
#trc .accordion-text {
  color: var(--base-inverse);
  padding-inline: clamp(40px, 40px + (104 - 40) * (100vw - 768px) / (1920 - 768), 104px) 32px;
  font-size: clamp(14px, 14px + (20 - 14) * (100vw - 768px) / (1920 - 768), 20px);
  letter-spacing: 0.48px;
  margin-bottom: clamp(36px, 36px + (72 - 36) * (100vw - 768px) / (1920 - 768), 72px);
}
#trc .accordion-text a {
  display: block;
}
#trc .accordion-button[aria-expanded=true] + .accordion-content {
  max-height: clamp(200px, 200px + (400 - 200) * (100vw - 768px) / (1920 - 768), 400px);
}

#news .news-wrap {
  padding-block: clamp(180px, 180px + (256 - 180) * (100vw - 768px) / (1920 - 768), 256px);
  display: flex;
  gap: clamp(120px, 120px + (328 - 120) * (100vw - 768px) / (1920 - 768), 328px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #news .news-wrap {
    flex-direction: column;
  }
}
#news .page-head {
  flex-shrink: 0;
}
#news .page-subtitle {
  font-size: clamp(48px, 48px + (80 - 48) * (100vw - 768px) / (1920 - 768), 80px);
  line-height: 1.4;
}
#news .page-title {
  font-size: clamp(16px, 16px + (22 - 16) * (100vw - 768px) / (1920 - 768), 22px);
  letter-spacing: -0.04em;
  margin-top: 8px;
  margin-left: 8px;
}
#news .news-article {
  display: grid;
  row-gap: clamp(48px, 48px + (64 - 48) * (100vw - 768px) / (1920 - 768), 64px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #news .news-article {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 24px;
  }
}
#news .article-thumbnail {
  width: 29.1071428571%;
  object-fit: cover;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  #news .article-thumbnail {
    width: 100%;
  }
}
#news .article-image {
  overflow: hidden;
}
#news .article-image img {
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease-in-out;
}
#news .article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
#news .article-meta .cate {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 768px) / (1920 - 768), 14px);
  color: var(--base-inverse);
  border-radius: 120px;
  background: var(--base-color);
  display: inline-block;
  padding: 4px clamp(20px, 20px + (32 - 20) * (100vw - 768px) / (1920 - 768), 32px);
}
#news .article-item a {
  display: flex;
  gap: clamp(16px, 16px + (40 - 16) * (100vw - 768px) / (1920 - 768), 40px);
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  #news .article-item a {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  #news .article-item a:hover img {
    scale: 1.08;
  }
}
#news .article-body {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 12px + (28 - 12) * (100vw - 768px) / (1920 - 768), 28px);
  flex: 1;
}
#news .daytime {
  font-size: clamp(16px, 16px + (22 - 16) * (100vw - 768px) / (1920 - 768), 22px);
  font-weight: var(--font-weight-black);
}
#news .article-ttl {
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 768px) / (1920 - 768), 22px);
  font-weight: var(--font-weight-black);
}
#news .excerpt {
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 768px) / (1920 - 768), 18px);
  font-weight: var(--font-weight-bold);
  color: #959595;
}
#news .not-found {
  font-size: clamp(18px, 18px + (32 - 18) * (100vw - 768px) / (1920 - 768), 32px);
  font-weight: var(--font-weight-bold);
  opacity: 0.6;
  margin-top: 5.6rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #news .not-found {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  #news .not-found {
    margin-top: 0;
    font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
  }
}
#news .wp-pagenavi {
  display: flex;
  gap: clamp(10px, 10px + (16 - 10) * (100vw - 768px) / (1920 - 768), 16px);
  justify-content: center;
  margin-top: clamp(64px, 64px + (80 - 64) * (100vw - 768px) / (1920 - 768), 80px);
}
#news span.pages,
#news a.previouspostslink,
#news a.nextpostslink {
  display: none;
}
#news a.page {
  border: 1px solid var(--base-color);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  #news a.page:hover {
    border: 1px solid var(--base-color);
    color: var(--base-inverse);
    background: var(--base-color);
  }
}
#news span.current {
  border: 1px solid var(--base-color);
  color: var(--base-inverse);
  background: var(--base-color);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

#contact .contact-wrap {
  padding-block: clamp(180px, 180px + (256 - 180) * (100vw - 768px) / (1920 - 768), 256px);
  display: flex;
  gap: clamp(80px, 80px + (328 - 80) * (100vw - 768px) / (1920 - 768), 328px);
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  #contact .contact-wrap {
    flex-direction: column;
  }
}
@media (min-width: 1400px) and (max-width: 1600px) {
  #contact .contact-wrap {
    gap: clamp(7.5rem, -10rem + 20vw, 10rem);
  }
}
#contact .page-head {
  flex-shrink: 0;
}
#contact .page-subtitle {
  font-size: clamp(48px, 48px + (80 - 48) * (100vw - 768px) / (1920 - 768), 80px);
  line-height: 1.4;
}
#contact .page-title {
  font-size: 22px;
  letter-spacing: -0.04em;
  margin-top: 8px;
  margin-left: 8px;
}
#contact .contact-container {
  flex: 1;
  max-width: 900px;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  #contact .contact-container {
    max-width: 100%;
  }
}
#contact .form-notice {
  font-size: clamp(16px, 16px + (21 - 16) * (100vw - 768px) / (1920 - 768), 21px);
  letter-spacing: -0.01em;
}
#contact .form-notice a {
  text-decoration: underline;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  #contact .form-notice a:hover {
    opacity: 0.64;
  }
}
#contact .form-container {
  margin-top: 50px;
  display: grid;
  row-gap: 56px;
}
#contact .form-group:not(:first-child) {
  margin-top: 56px;
}
#contact .form-label {
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 768px) / (1920 - 768), 18px);
  font-weight: var(--font-weight-bold);
  margin-bottom: 24px;
  display: inline-block;
}
#contact .required-label,
#contact .optional-label {
  border-radius: 4px;
  padding-block: 4px;
  padding-inline: 12px;
  font-size: clamp(10px, 10px + (14 - 10) * (100vw - 768px) / (1920 - 768), 14px);
  line-height: 1;
  letter-spacing: 0.2em;
  box-sizing: border-box;
  color: var(--base-inverse);
  margin-right: 10px;
}
#contact .required-label {
  background: var(--accent-color-or);
}
#contact .optional-label {
  color: var(--accent-color-bl);
  border: 1px solid var(--accent-color-bl);
  padding-block: 1px;
  padding-inline: 9px;
}
#contact .wpcf7-form-control.wpcf7-radio {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  #contact .wpcf7-form-control.wpcf7-radio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #contact .wpcf7-form-control.wpcf7-radio {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
#contact .wpcf7-form-control .wpcf7-list-item {
  margin-top: 0;
}
#contact .privacy {
  text-align: center;
}
#contact .privacy .wpcf7-list-item {
  padding-inline: 0;
}
#contact .wpcf7-list-item {
  padding-inline: 30px 54px;
  padding-block: 20px;
  border: 1px solid #ededed;
  border-radius: 6px;
  margin-left: 0;
  transition: border 0.8s ease-in-out;
}
#contact .wpcf7-list-item.is-checked {
  border: 1px solid var(--accent-color-or);
}
#contact .wpcf7-list-item-label {
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 768px) / (1920 - 768), 16px);
}
#contact .wpcf7-text,
#contact .wpcf7-textarea {
  width: 100%;
  padding-block: 16px;
  padding-left: 20px;
  border: 1px solid #c9c9c9;
  border-radius: 6px;
  font-size: clamp(16px, 16px + (21 - 16) * (100vw - 768px) / (1920 - 768), 21px);
}
#contact .wpcf7-text::placeholder,
#contact .wpcf7-textarea::placeholder {
  color: #c9c9c9;
  font-size: 18px;
  letter-spacing: -0.04em;
  font-weight: var(--font-weight-bold);
}
#contact input[type=text]:focus,
#contact input[type=email]:focus,
#contact input[type=tel]:focus,
#contact textarea:focus {
  outline: none;
  border: 4px solid var(--accent-color-or);
}
#contact .wpcf7-checkbox .wpcf7-list-item {
  border: none;
  padding-block: 0;
  padding-left: 0;
}
#contact .wpcf7-submit {
  display: block;
  font-size: 21px;
  font-weight: var(--font-weight-black);
  color: var(--base-inverse);
  max-width: 390px;
  width: 100%;
  border-radius: 6px;
  margin-inline: auto;
  padding-block: 24px;
  background: var(--base-color);
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  #contact .wpcf7-submit:hover {
    color: var(--base-color);
    background: var(--base-inverse);
    border: 1px solid var(--base-color);
  }
}
#contact .wpcf7-submit:focus, #contact .wpcf7-submit:focus-visible {
  outline: none;
  border: 4px solid var(--accent-color-or);
}
#contact .wpcf7 input[type=checkbox],
#contact .wpcf7 input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border: 1px solid #ededed;
  border-radius: 4px;
  background: #ededed;
  position: relative;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
}
#contact .wpcf7 input[type=radio] {
  margin-right: 24px;
}
#contact .wpcf7 input[type=checkbox] {
  border: 1px solid #c9c9c9;
  background: var(--base-inverse);
  margin-right: 10px;
}
#contact .wpcf7 input[type=checkbox]::after,
#contact .wpcf7 input[type=radio]::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  background: url(/assets/img/common/icon_check_gray.svg) no-repeat center;
  background-size: 100% auto;
  width: 16px;
  height: 12px;
  pointer-events: none;
}
#contact .wpcf7 input[type=checkbox]:checked {
  border-color: var(--accent-color-or);
}
#contact .wpcf7 input[type=checkbox]:checked::after,
#contact .wpcf7 input[type=radio]:checked::after {
  background: url(/assets/img/common/icon_check_orange.svg) no-repeat center;
  width: 16px;
  height: 12px;
}
#contact .wpcf7 input[type=checkbox]:focus-visible,
#contact .wpcf7 input[type=radio]:focus-visible {
  outline: 4px solid var(--accent-color-or);
  outline-offset: 2px;
}
#contact .wpcf7 input[type=checkbox]:disabled,
#contact .wpcf7 input[type=radio]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#contact .wpcf7 .wpcf7-list-item-label {
  vertical-align: middle;
}
#contact .form-submit {
  margin-top: 56px;
}
#contact .wpcf7-acceptance .wpcf7-list-item {
  border: none !important;
}
#contact span.wpcf7-list-item {
  transition: none;
}
#contact span.wpcf7-list-item.is-checked {
  border: 2px solid orange !important;
}
#contact .wpcf7-response-output {
  display: none !important;
}

#notfound .notfound {
  height: 96dvh;
  position: relative;
}
#notfound .notfound-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#notfound .notfound-button {
  margin-top: clamp(32px, 32px + (48 - 32) * (100vw - 768px) / (1920 - 768), 48px);
}
#notfound .page-title {
  display: inline-flex;
  flex-direction: column;
}
#notfound .page-title .num {
  font-size: clamp(56px, 56px + (80 - 56) * (100vw - 768px) / (1920 - 768), 80px);
}
#notfound .page-title .text {
  font-size: clamp(20px, 20px + (32 - 20) * (100vw - 768px) / (1920 - 768), 32px);
}
#notfound .notfound-desc {
  margin-top: clamp(12px, 12px + (24 - 12) * (100vw - 768px) / (1920 - 768), 24px);
}
#notfound .notfound-text {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
}

#news.entry-single .article {
  padding-top: 160px;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
}
#news.entry-single .article-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#news.entry-single .article-label-en {
  font-size: 28px;
}
#news.entry-single .article-label-ja {
  font-size: 20px;
}
#news.entry-single .article-image {
  margin-top: 24px;
}
#news.entry-single .article-meta {
  margin-top: 24px;
}
#news.entry-single .article-time {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}
#news.entry-single .article-title {
  font-size: 24px;
  font-weight: var(--font-weight-black);
  margin-top: 12px;
}
#news.entry-single .article-content {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.48px;
}
#news.entry-single .article-button-back {
  text-align: center;
  margin-block: 80px 160px;
}
#news.entry-single .article-button-back a {
  display: block;
  font-size: 18px;
  font-weight: var(--font-weight-black);
  color: var(--base-inverse);
  max-width: 200px;
  width: 100%;
  border-radius: 6px;
  margin-inline: auto;
  padding-block: 16px;
  background: var(--base-color);
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  #news.entry-single .article-button-back:hover a {
    color: var(--base-color);
    background: var(--base-inverse);
    border: 1px solid var(--base-color);
  }
}

#thanks .thanks {
  height: 96dvh;
  position: relative;
}
#thanks .thanks-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#thanks .thanks-button {
  margin-top: clamp(32px, 32px + (48 - 32) * (100vw - 768px) / (1920 - 768), 48px);
}
#thanks .page-title {
  display: inline-flex;
  flex-direction: column;
  font-size: clamp(20px, 20px + (32 - 20) * (100vw - 768px) / (1920 - 768), 32px);
}
#thanks .thanks-desc {
  margin-top: clamp(12px, 12px + (24 - 12) * (100vw - 768px) / (1920 - 768), 24px);
}
#thanks .thanks-text {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
}

.c-post-content {
  /* =====================
  　  エレメントスタイル
  ===================== */
}
.c-post-content p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.9444444444;
  letter-spacing: 0.06em;
}
.c-post-content code {
  padding: 0.5em 1em;
  font-family: Menlo, Yu Gothic, Monaco, "Courier New", monospace;
  font-size: 0.75em;
  color: crimson;
  background-color: #f0f0f1;
}
.c-post-content {
  /* =======================
  　  見出し H2が標準
  ======================= */
}
.c-post-content h1,
.c-post-content h2,
.c-post-content h3,
.c-post-content h4,
.c-post-content h5,
.c-post-content h6 {
  margin-top: 50px;
  margin-bottom: 40px;
  line-height: 1.7692307692;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .c-post-content h1,
  .c-post-content h2,
  .c-post-content h3,
  .c-post-content h4,
  .c-post-content h5,
  .c-post-content h6 {
    margin-top: 50rem;
    margin-bottom: 35rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-post-content h1,
  .c-post-content h2,
  .c-post-content h3,
  .c-post-content h4,
  .c-post-content h5,
  .c-post-content h6 {
    margin-top: 40rem;
    margin-bottom: 25rem;
  }
}
.c-post-content h1 {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .c-post-content h1 {
    font-size: 28rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-post-content h1 {
    font-size: 28rem;
  }
}
.c-post-content h2 {
  font-size: 26px;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .c-post-content h2 {
    font-size: 26rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-post-content h2 {
    font-size: 26rem;
  }
}
.c-post-content h3 {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .c-post-content h3 {
    font-size: 26rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-post-content h3 {
    font-size: 26rem;
  }
}
.c-post-content h4,
.c-post-content h5,
.c-post-content h6 {
  font-size: 22px;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .c-post-content h4,
  .c-post-content h5,
  .c-post-content h6 {
    font-size: 22rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-post-content h4,
  .c-post-content h5,
  .c-post-content h6 {
    font-size: 22rem;
  }
}
.c-post-content {
  /* =====================
  　  引用
  ===================== */
}
.c-post-content .wp-block-quote {
  border-left: 0.25em solid currentColor;
  margin: 0 0 1.75em 0;
  padding-left: 1em;
  overflow-wrap: break-word;
}
.c-post-content .wp-block-quote cite,
.c-post-content .wp-block-quote footer {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  font-size: 0.8125em;
  font-style: normal;
  color: #555;
}
.c-post-content .wp-block-quote cite::before,
.c-post-content .wp-block-quote footer::before {
  content: "ー";
  margin-right: 0.4em;
}
.c-post-content .wp-block-quote.has-text-align-right {
  border-left: none;
  border-right: 0.25em solid currentColor;
  padding-left: 0;
  padding-right: 1em;
}
.c-post-content .wp-block-quote.has-text-align-center {
  border: none;
  padding-left: 0;
}
.c-post-content .wp-block-quote.is-style-plain {
  padding: 10px 20px 20px;
  border-left: none;
  background: #f5f5f5;
}
.c-post-content .wp-block-quote.is-style-plain p {
  font-style: italic;
}
.c-post-content .wp-block-quote.is-style-plain,
.c-post-content .wp-block-quote.is-style-large,
.c-post-content .wp-block-quote.is-large {
  border: none;
}
.c-post-content .wp-block-quote.is-style-large,
.c-post-content .wp-block-quote.is-large {
  padding: 10px 20px 20px;
  border-left: none;
  white-space: pre-wrap;
  margin-bottom: 1em;
  background: #f5f5f5;
}
.c-post-content .wp-block-quote.is-style-large p,
.c-post-content .wp-block-quote.is-large p {
  font-size: 1.5em;
  font-style: italic;
  line-height: 1.6;
}
.c-post-content .wp-block-quote.is-style-large cite,
.c-post-content .wp-block-quote.is-style-large footer,
.c-post-content .wp-block-quote.is-large cite,
.c-post-content .wp-block-quote.is-large footer {
  font-size: 1.125em;
  text-align: right;
}
.c-post-content {
  /* ================
  　  リスト
  ================ */
}
.c-post-content ul,
.c-post-content ol {
  list-style: revert;
  list-style-type: revert;
  margin-bottom: 20px;
  padding: revert;
  font-size: 18px;
  line-height: 1.9444444444;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .c-post-content ul,
  .c-post-content ol {
    margin-bottom: 20rem;
    font-size: 16rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-post-content ul,
  .c-post-content ol {
    margin-bottom: 16rem;
    font-size: 16rem;
  }
}
.c-post-content ul li,
.c-post-content ol li {
  list-style: revert;
}
.c-post-content {
  /* ================
  　  キャプション
  ================ */
}
.c-post-content .wp-element-caption {
  font-size: 12px;
  text-align: center;
}
.c-post-content {
  /* ================
  　  テーブル
  ================ */
  /* ================
  　  画像
  ================ */
}
.c-post-content .wp-block-image {
  margin: 0 0 1.5em;
}
.c-post-content .wp-block-columns .wp-block-image {
  margin: 0;
}
.c-post-content .wp-block-cover {
  margin: 0 0 1.5em;
}
.c-post-content {
  /* ================
  　  カラム
  ================ */
}
.c-post-content .wp-block-columns {
  margin: 0 0 1.5em;
}
.c-post-content {
  /* ================
  　  ボタン
  ================ */
}
.c-post-content .wp-block-buttons {
  margin-bottom: 25px;
}
.c-post-content .wp-block-buttons > .wp-block-button {
  display: block;
  width: clamp(350px, 80%, 400px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-post-content .wp-block-buttons > .wp-block-button {
    width: 300rem;
  }
}
.c-post-content .wp-element-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 14px 0;
  border-bottom: 1px solid #000;
  border-radius: 0px;
  font-size: 18px;
  color: var(--font-color);
  letter-spacing: 0.1em;
  background-color: transparent;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .c-post-content .wp-element-button {
    padding: 14rem 0;
    font-size: 18rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-post-content .wp-element-button {
    padding: 14rem 0;
    font-size: 18rem;
  }
}
.c-post-content .wp-element-button:hover::after {
  transform: translateX(8px);
}
.c-post-content .wp-element-button::after {
  content: "";
  width: 24px;
  height: 21px;
  margin-left: auto;
  background: url("/assets/img/common/icon_arrow.svg") no-repeat center;
  background-size: cover;
  transition: transform 0.4s var(--ease-inout-sine);
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .c-post-content .wp-element-button::after {
    width: 22rem;
    height: 19rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-post-content .wp-element-button::after {
    width: 24rem;
    height: 21rem;
  }
}

#privacy .privacy-wrap {
  padding-block: clamp(180px, 180px + (256 - 180) * (100vw - 768px) / (1920 - 768), 256px);
  max-width: 1300px;
  margin-inline: auto;
}
#privacy .page-head {
  flex-shrink: 0;
}
#privacy .page-subtitle {
  font-size: clamp(48px, 48px + (80 - 48) * (100vw - 768px) / (1920 - 768), 80px);
  line-height: 1.4;
}
#privacy .page-title {
  font-size: clamp(16px, 16px + (22 - 16) * (100vw - 768px) / (1920 - 768), 22px);
  letter-spacing: -0.04em;
  margin-top: 8px;
}
#privacy .privacy-container {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
#privacy .privacy-title {
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 768px) / (1920 - 768), 24px);
}
#privacy .privacy-text {
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 768px) / (1920 - 768), 18px);
  font-weight: var(--font-weight-regular);
  margin-top: 20px;
  line-height: 1.7;
}
#privacy .privacy-text a {
  overflow-wrap: anywhere;
  display: block;
  line-height: 1.4;
}
#privacy .privacy-list {
  margin-top: 28px;
}
#privacy .privacy-item {
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 768px) / (1920 - 768), 18px);
  font-weight: var(--font-weight-regular);
  position: relative;
  padding-left: 1rem;
  line-height: 1.7;
}
#privacy .privacy-item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--base-color);
  display: flex;
  align-items: flex-start;
}

#tokushoho .tokushoho-wrap {
  padding-block: clamp(180px, 180px + (256 - 180) * (100vw - 768px) / (1920 - 768), 256px);
  max-width: 1300px;
  margin-inline: auto;
}
#tokushoho .page-head {
  flex-shrink: 0;
}
#tokushoho .page-subtitle {
  font-size: clamp(48px, 48px + (80 - 48) * (100vw - 768px) / (1920 - 768), 80px);
  line-height: 1.4;
}
#tokushoho .page-title {
  font-size: clamp(16px, 16px + (22 - 16) * (100vw - 768px) / (1920 - 768), 22px);
  letter-spacing: -0.04em;
  margin-top: 8px;
}
#tokushoho .tokushoho-container {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
#tokushoho .tokushoho-title {
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 768px) / (1920 - 768), 24px);
}
#tokushoho .tokushoho-text {
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 768px) / (1920 - 768), 18px);
  font-weight: var(--font-weight-regular);
  margin-top: 20px;
  line-height: 1.7;
}

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