@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
:root {
  --base-black: #4f4f4f;
  --base-gray: #eef0f3;
  --base-lightGray: #fdfdfd;
  --base-grayBlue: #97a5b5;
  --base-white: #ffffff;
  --base-lightBlue: #81d8d0;
  --base-red: #f53662;
  --base-lightPink: #f53561;
  --base-peach: #ec73b2;
  --base-brown: #8c4239;
  --base-darkGray: #97a5b5;
  --base-darkBlueGray: #98a6b5;
  --base-inputGray: #cdd6dd;
  --text-black1: #4f4f4f;
  --text-white: #ffffff;
  --text-lightBlue: #81d8d0;
  --text-red: #f53662;
  --text-peach: #ec73b2;
  --text-brown: #8c4239;
  --text-lightPink: #f53561;
  --base-bgBeige: #faf8f5;
  --base-bgLinearTop: #fafcfb;
  --base-darkText: #333;
  --base-mediumText: #555;
  --base-borderGray: #ccc;
  --base-lightBg: #f5f5f5;
  --base-darkGreen: #003032;
  --base-greenAccent: #5eada5;
  --base-purple: #6c5ce7;
  --base-darkPurple: #5b4bc4;
  --base-navy: #1a1a2e;
  --base-borderLight: #e0e0e0;
  --base-borderLightGray: #eee;
  --base-successGreen: #4cc764;
  --intro-border: #e5e7eb;
  --intro-darkGreen: #4e6269;
  --intro-cyan: #5fced8;
  --intro-borderSage: #a6bdc2;
  --intro-lightBg: #f3f4f6;
  --intro-darkText: #314348;
  --intro-yellow: #ffff00;
  --intro-midGreen: #4d6369;
  --base-mintBorder: #e6eeee;
  --base-lightGrayBorder: #eaeaea;
  --base-nearWhiteBg: #f9fbfb;
  --base-paleTealBg: #eaf4f6;
  --base-tealBg: #eaeff0;
  --base-lightMintBorder: #c8ebe9;
  --base-mintBg: #e8f8f7;
  --base-paleMintBg: #e8f5f5;
  --base-borderCard: #e8ecf0;
  --base-lightBorder: #ddd;
  --base-cardBorder: #dbdbdb;
  --base-midGray: #aaa;
  --base-mutedText: #999;
  --base-darkCharcoal: #444;
  --base-midCharcoal: #666;
  --base-slateGray: #6b7280;
  --base-coolGray: #9ca3af;
  --base-paleGray: #f0f0f0;
  --base-hoverGray: #f0f1f3;
  --base-teal: #3bb8b8;
  --base-softTeal: #7ecfcf;
  --base-mediumTeal: #5cc4bb;
  --base-mediumTealDark: #4ab3aa;
  --base-lightTeal: #a8e8e2;
  --base-lightTealScrollTrack: #e8f7f6;
  --base-darkTeal: #1a6b6b;
  --base-lightCyan: #e6faf8;
  --base-googleBlue: #6186ec;
  --base-googleRed: #cd523f;
  --base-googleYellow: #eabe43;
  --base-googleGreen: #63a45d;
  --base-googleStar: #fbbc04;
  --base-googleBadge: #1a73e8;
  --base-googleBadgeHover: #1557b0;
  --base-alertRed: #ff4d5a;
  --base-pink: #e8527a;
  --base-nearBlack: #1a1a1a;
  --base-pureBlack: #000000;
  --fs-3xs: 0.6875rem;
  --fs-xs: 0.75rem;
  --fs-2xs: 0.8125rem;
  --fs-sm: 0.875rem;
  --fs-sm2: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-lg2: 1.375rem;
  --fs-xl: 1.5rem;
  --fs-xl2: 1.75rem;
  --fs-2xl: 1.875rem;
  --fs-2xl2: 2rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.5rem;
  --fs-4xl2: 2.625rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;
  --fs-7xl: 4rem;
  --fs-8xl: 4.5rem;
  --fs-9xl: 5rem;
  --fs-display: 6.25rem;
  --font-outfit: "Outfit";
  --font-zen: "Zen Kaku Gothic New";
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  scroll-behavior: smooth;
  background-color: var(--base-bgBeige);
  font-family: var(--font-zen);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-black1);
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: clip;
}

a {
  text-decoration: none;
}

body a {
  color: inherit;
}

main {
  transition: margin-top 0.35s ease;
}

ul li::marker {
  color: var(--base-lightBlue);
  width: 10px;
  height: 10px;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span {
  text-wrap: wrap;
}

.l-header {
  width: calc(100% - 75px);
  background-color: var(--base-white);
  position: sticky;
  top: 0;
  z-index: 999;
}

.l-header__sp-btn {
  width: 100%;
  gap: 20px;
  transition: all 0.3s ease-in-out;
}

.l-header-wrapper {
  z-index: 999999;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 75px;
  padding: 12px 30px;
  padding-right: 0;
}

.l-header__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1 1 0%;
  gap: 20px;
}

.l-header__actions {
  display: flex;
  margin-right: 20px;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.l-header__sp-btn:hover {
  opacity: 0.7;
}

.l-header__sp-btn:hover .c-header-action-btn__arrow-img {
  transform: translateX(8px);
}

@media screen and (max-width: 1090px) {
  .l-header {
    position: sticky;
    top: 0px;
    z-index: 999;
  }
}
@media (max-width: 1024px) {
  .l-header {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 70px;
    height: auto;
  }
  .l-header-wrapper {
    padding: 3px 40px;
    height: 50px;
  }
  .l-header__brand {
    gap: 14px;
  }
  .l-header-wrapper .c-logo-text,
  .l-header-wrapper .c-logo-tagline {
    font-size: var(--fs-xs);
  }
}
.l-footer {
  width: 100%;
  background-image: url("../img/common/bg_footer.webp");
  color: var(--base-black);
  background-repeat: no-repeat;
  background-size: cover;
}

.l-footer__main-container {
  padding: 80px 120px 40px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.l-footer__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
}

.l-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex-shrink: 0;
}

.l-footer__nav-columns {
  display: flex;
  flex-direction: row;
  gap: 100px;
  flex-wrap: wrap;
}

.l-footer__nav-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 0;
}

/* margin-top: 0 は .l-footer__nav-section に統合（隣接セレクタ不要） */
.l-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.l-footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  font-size: var(--fs-sm2);
}

.l-footer__nav-list a,
.l-footer__legal-links a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.l-footer__nav-list a:hover,
.l-footer__legal-links a:hover {
  opacity: 0.7;
}

.l-footer__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.l-footer__legal-links {
  display: flex;
  flex-direction: row;
  gap: 65px;
  list-style: none;
  flex-wrap: wrap;
  font-size: var(--fs-sm2);
}

/* .l-footer__legal-links a text-decoration は上部 .l-footer__nav-list a と共通ルールでカバー済み */
@media (max-width: 1050px) {
  .l-footer__brand {
    align-items: center;
    justify-content: center;
  }
  .l-footer__brand .c-btn--light-blue {
    width: 100%;
  }
  .l-footer__main-container {
    padding: 40px 20px 30px;
    gap: 40px;
  }
  .l-footer__top {
    flex-direction: column;
    gap: 40px;
  }
  .l-footer__nav-columns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .l-footer__nav-group {
    gap: 0;
  }
  .l-footer__nav-section {
    gap: 0;
  }
  .l-footer__nav-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding-bottom: 0;
  }
  .l-footer__nav-section.open .l-footer__nav-list {
    max-height: 600px;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .l-footer__bottom {
    align-items: flex-end;
  }
  .l-footer__legal-links {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .l-footer__main-container {
    padding: 60px 48px 40px 48px;
    gap: 60px;
  }
  .l-footer__top {
    flex-direction: column;
    gap: 40px;
  }
  .l-footer__nav-columns {
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .l-footer__main-container {
    padding: 48px 1.25rem 32px 1.25rem;
    gap: 40px;
  }
  /* .l-footer__main-container の直接子は section 要素のため div 指定は不要 */
  .l-footer__nav-columns,
  .l-footer__nav-group {
    flex-direction: column;
    gap: 32px;
  }
  .l-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .l-footer__legal-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.c-btn {
  outline: none;
  border: none;
  cursor: pointer;
}

.c-header-action-btn:hover {
  opacity: 0.7;
}

.c-header-action-btn:hover .c-header-action-btn__arrow-img {
  transform: translateX(8px);
}

.c-btn--green-wrapper {
  background-color: var(--base-lightBlue);
  height: 40px;
  width: 40px;
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}

.c-btn--green-wrapper:hover {
  background-color: var(--base-white);
  border: 1px solid var(--base-lightBlue);
}

.c-btn--green-wrapper:hover img {
  filter: brightness(0) saturate(100%) invert(83%) sepia(97%) saturate(209%) hue-rotate(94deg) brightness(91%) contrast(85%);
}

.c-btn--light-blue {
  background-color: var(--base-lightBlue);
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  gap: 14px;
  padding: 16px 35px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  color: var(--text-white);
  font-family: var(--font-outfit);
}

.c-btn--light-blue:hover,
.c-btn--red:hover {
  opacity: 0.7;
}

.c-btn--light-blue img,
.c-btn--red img,
.c-announcement__btn svg {
  transition: all 0.3s ease-in-out;
}

.c-btn--light-blue:hover img:last-child,
.c-btn--red:hover img:last-child,
.c-announcement__btn:hover svg:last-child {
  transform: translateX(8px);
}

.c-btn--light-blue.p-recommended__btn:hover img {
  margin-right: 8px;
}

.c-btn--light-blue02 {
  background-color: var(--base-lightBlue);
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  gap: 14px;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  color: white;
  font-size: var(--fs-base);
}

.c-btn--light-blue02:hover,
.c-btn-icon--light-blue:hover {
  background-color: var(--base-white);
  border: 1px solid var(--base-lightBlue);
}

.c-btn--light-blue02:hover {
  color: var(--text-lightBlue);
}

.c-btn--light-blue02:hover img,
.c-btn-icon--light-blue:hover svg {
  filter: brightness(0) saturate(100%) invert(96%) sepia(12%) saturate(1406%) hue-rotate(96deg) brightness(92%) contrast(82%);
}

.c-btn-icon--light-blue {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  background-color: var(--base-lightBlue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}

.c-btn--red {
  background-color: var(--base-lightPink);
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: 700;
  width: fit-content;
  gap: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .c-btn--light-blue {
    font-size: var(--fs-base);
  }
}
.c-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.c-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.c-reveal--left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.c-reveal--left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.c-reveal--right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.c-reveal--right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.c-reveal--scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.c-reveal--scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.c-hover-text-underline {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.c-hover-text-underline::before,
.c-hover-text-underline::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 0px;
  height: 5px;
  margin: 5px 0 0;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.75s;
  opacity: 0;
  background-color: var(--base-lightBlue);
}

.c-hover-text-underline:hover::before,
.c-hover-text-underline:hover::after {
  right: 0;
}

.c-animation-jump {
  display: block;
  transform-origin: center bottom;
}

.c-animation-jump.is-jump-once {
  animation: p-storedetail-jump 1.8s ease-in-out 1;
}

@keyframes p-storedetail-jump {
  0%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-0.875rem);
  }
  35% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.4375rem);
  }
  65% {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-animation-jump,
  .c-animation-jump.is-jump-once {
    animation: none;
  }
}
.c-speech-bubble {
  transform-origin: center;
}

.c-speech-bubble.is-in-view {
  animation: jump 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes swing {
  0% {
    transform: translate3d(0px, 0px, 0px) rotate(0.2deg);
  }
  50% {
    transform: translate3d(0px, 0px, 0px) rotate(9.7deg);
  }
  100% {
    transform: translate3d(0px, 0px, 0px) rotate(-10deg);
  }
}
@keyframes jump {
  0% {
    transform: scale(1) rotate(0deg);
  }
  5% {
    transform: scale(1.2, 0.9) rotate(10deg);
  }
  10% {
    transform: scale(1) rotate(0deg);
  }
  15% {
    transform: scale(1.2, 0.9) rotate(10deg);
  }
  30% {
    transform: scale(1) translate(0);
  }
  44% {
    transform: scale(1.1, 0.9) translateY(14%) rotate(6deg);
  }
  60% {
    transform: scale(1) translateY(-24%) rotate(-40deg);
  }
  70% {
    transform: scale(1) translateY(-24%) rotate(-10deg);
  }
  90% {
    transform: scale(1.3, 0.9) translateY(20%) rotate(0deg);
  }
  100% {
    transform: scale(1) translate(0);
  }
}
.c-grow-wrapper-right {
  width: 100vw;
  overflow: hidden;
}

.c-clip-grow-right {
  width: 100%;
}

.c-clip-grow-right.is-in-view {
  animation: clipRevealRight 2s ease-out forwards;
}

@keyframes clipRevealRight {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-1750px);
    transform: translateX(-1750px);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-1750px);
    transform: translateX(-1750px);
  }
}
.c-text-slider {
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin-top: -5px;
  z-index: 0;
  background: var(--base-grayBlue);
}

.c-text-slider__track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: 3500px;
}

.c-text-slider__item {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--base-grayBlue);
  box-sizing: border-box;
}

.c-text-slider__slide-text {
  text-wrap: nowrap;
  font-family: var(--font-outfit);
  font-weight: 300;
  font-size: var(--fs-3xl);
  color: var(--text-white);
}

@media (max-width: 1024px) {
  .c-text-slider {
    height: 64px;
  }
}
@media screen and (max-width: 767px) {
  .c-text-slider {
    height: 50px;
  }
  .c-text-slider__slide-text {
    font-size: var(--fs-xl);
  }
}
.c-hero-text-slider-container {
  position: absolute;
  top: 214px;
  left: 105px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media screen and (max-width: 1200px) {
  .c-hero-text-slider-container {
    top: 150px;
  }
}
@media screen and (max-width: 1090px) {
  .c-hero-text-slider-container {
    top: 100px;
    left: 20px;
    gap: 0px;
  }
}
@media screen and (max-width: 900px) {
  .c-hero-text-slider-container {
    top: 100px;
    left: 20px;
    gap: 0px;
  }
}
.c-topic-container {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 52px;
  position: relative;
  margin-top: 50px;
}

.c-topic-section-header {
  padding-left: 240px;
  z-index: 10;
}

.c-topic-buttons-container {
  padding-left: 240px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.c-topic-slider .c-slider__wrapper.margin-removed {
  margin-left: 0;
}

.c-topic-slider__track {
  display: flex;
  flex-direction: row;
  gap: 0px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  list-style-type: none;
  margin-right: calc(var(--slider-column-gap) * -1);
  z-index: 2;
  scroll-padding-right: 100px;
  margin-left: -100px;
}

.c-topic-slider__track > li {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding-right: 30px;
  z-index: 2;
  flex-shrink: 0;
}

.c-slider__track--training > li {
  padding-right: 1px;
}

.c-topic-slider__track > li:first-child {
  width: 250px;
  height: 100%;
  padding-right: 0px;
}

.c-topic-slider__track > li:last-child {
  padding-right: 0px;
}

.c-topic-slider__track {
  scrollbar-width: none;
}

.c-topic-slider__track .c-slider__item {
  width: 400px;
  transition: 0.3s;
}

.c-topic-slider__track .c-slider__item:hover {
  opacity: 0.7;
}

.c-topic-slider__track.--nohover .c-slider__item:hover {
  opacity: 1;
}

.c-topic-slider__track::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: var(--left-spacing, 100px);
  transition: width 0.3s ease;
}

.c-topic-slider__track.no-spacing::before {
  width: 0;
}

.c-topic-slider__track::-webkit-scrollbar {
  display: none;
}

.c-topic-slider__buttons {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.c-topic-slider__buttons [disabled] {
  opacity: 0.5;
}

.c-topic-slider__button {
  padding: 0.5rem 1rem;
  background: var(--base-purple);
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: var(--fs-base);
  transition: background 0.2s;
}

.c-topic-slider__button:hover:not([disabled]) {
  background: var(--base-darkPurple);
}

.c-topic-slider__button[disabled] {
  background: var(--base-borderGray);
  cursor: not-allowed;
}

.c-topic-slider .c-slider__item {
  width: 100%;
  max-width: 400px;
  z-index: 2;
}

.c-topic-sticker {
  position: absolute;
  top: -170px;
  left: 555px;
  z-index: 0;
}

.c-topic-speech-bubble {
  position: absolute;
  top: -20px;
}

.c-topic-slider__dots {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 0px;
  margin-top: 15px;
  height: 5px;
  width: 100%;
  max-width: 1300px;
}

.c-topic-slider__dot {
  height: 2px;
  background-color: var(--base-white);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  flex: 1;
}

.c-topic-slider__dot.active {
  background-color: var(--base-lightBlue);
  height: 5px;
}

.c-topic-slider__dot.active {
  animation: dotPulse 0.3s ease;
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.c-topic-bg {
  position: absolute;
  bottom: 163.5px;
  width: 100vw;
  height: 80px;
  object-fit: cover;
}

.c-topic-ribbon {
  margin-top: -90px;
}

@media screen and (max-width: 1200px) {
  .c-topic-slider__track > li:first-child {
    display: none;
  }
  .c-topic-slider__track > li {
    padding-left: 1px;
    padding-right: 0px;
  }
  .c-topic-slider__track > li:last-child {
    padding-right: 20px;
  }
  .c-topic-section-header,
  .c-topic-container .c-topic-buttons-container {
    padding-left: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-topic-container {
    gap: 30px;
    padding-top: 40px;
  }
  .c-topic-sticker .c-topic-speech-bubble {
    width: 106.6px;
    height: auto;
    left: 80px;
  }
  .c-topic-buttons-container {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding-left: 16px;
  }
  .c-topic-slider__dots {
    padding-right: 20px;
  }
  .c-topic-bg {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .c-topic-slider__track .c-slider__item {
    width: 290px;
  }
  .c-topic-slider__slide-img {
    width: 290px;
  }
}
[data-slider-prev] img {
  transform: scaleX(-1);
}

.c-recruit-banner__section {
  width: 100%;
  height: 600px;
  background-image: url("../img/top/bg_recruit.webp");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.c-recruit-banner {
  display: flex;
  flex-direction: row;
  position: relative;
  height: 600px;
  overflow: hidden;
}

.c-recruit-info {
  padding-left: 16px;
  width: 100%;
  min-width: 0;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
}

.c-recruit-info__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}

.c-recruit-banner__section .c-section-header__text {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  text-wrap: wrap;
}

.c-recruit-banner__section .c-section-header__label,
.c-recruit-banner__section .c-section-header__text {
  color: var(--text-white);
}

.c-recruit-info__content-title {
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--text-white);
}

.c-recruit-info__content-desc {
  line-height: 2;
  color: var(--text-white);
}

.c-recruit-banner__track {
  display: flex;
  flex-direction: column;
  animation: scrollUp 35s linear infinite;
  height: fit-content;
}

.c-recruit-banner__track2 {
  animation: scrollDown 35s linear infinite;
}

.c-recruit-banner__track img {
  max-width: 386px;
  height: auto;
  display: block;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 1420px) {
  .c-recruit-banner__track img {
    max-width: 286px;
  }
}
@media screen and (max-width: 1200px) {
  .c-recruit-banner__section .c-section-header__text {
    font-size: var(--fs-9xl);
  }
}
@media screen and (max-width: 1090px) {
  .c-recruit-banner__section {
    flex-direction: column;
    height: auto;
    gap: 40px;
    padding: 60px 16px;
  }
  .c-recruit-info {
    max-width: 100%;
    padding-left: 0;
  }
  .c-recruit-banner {
    flex-direction: column;
    height: auto;
    width: 100%;
    gap: 5px;
    width: 100vw;
    overflow: hidden;
  }
  .c-recruit-banner__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: fit-content;
    height: auto;
    animation: scrollRight 35s linear infinite;
  }
  .c-recruit-banner__track2 {
    animation: scrollLeft 35s linear infinite;
  }
  .c-recruit-banner__track img {
    max-width: 255px;
    width: 255px;
    height: auto;
    flex-shrink: 0;
    margin-right: -88px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit-banner__section .c-section-header__text {
    font-size: var(--fs-6xl);
  }
  .c-recruit-banner__section {
    padding: 50px 16px;
  }
  .c-recruit-banner {
    width: 767px;
  }
  .c-recruit-info__content {
    gap: 25px;
  }
  .c-recruit-info {
    gap: 30px;
  }
}
.c-banner-section {
  height: auto;
  position: relative;
}

.c-banner__ribbon-img {
  position: absolute;
  bottom: -10px;
  z-index: 2;
  right: 0px;
  width: auto;
}

.c-banner {
  width: 100%;
  height: 15.625vw;
  position: relative;
  overflow: visible;
}

.c-banner__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.c-banner__img {
  position: absolute;
  right: -9.8%;
  top: -85%;
  width: auto;
  height: 325%;
  max-width: none;
}

.c-banner__img2 {
  position: absolute;
  right: -25.8%;
  bottom: -146%;
  width: auto;
  height: 425%;
  max-width: none;
}

.c-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(79, 79, 79) 0%, rgb(79, 79, 79) 47%, rgba(79, 79, 79, 0) 100%);
  z-index: 1;
}

.c-banner__ribbon {
  position: absolute;
  right: -45%;
  top: -43%;
  transform: translateY(-50%);
  height: 300%;
  width: auto;
  z-index: 2;
  pointer-events: none;
}

.c-banner__content {
  position: absolute;
  top: 50%;
  left: 5.75rem;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
}

.c-banner__title {
  font-size: var(--fs-4xl);
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-bottom: 0.375rem;
  font-weight: 400;
  width: 90%;
  color: var(--text-white);
}

.c-banner__subtitle {
  font-size: var(--fs-xl);
  line-height: 1;
  color: var(--base-lightBlue);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-family: var(--font-outfit);
  width: fit-content;
}

@media screen and (max-width: 1440px) {
  .c-banner {
    height: 15.3vw;
  }
  .c-banner__title {
    font-size: 1.8rem;
  }
  .c-banner__subtitle {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  .c-banner__ribbon-img {
    max-width: 61.5rem;
  }
  .c-banner__ribbon {
    position: absolute;
    right: -45%;
    top: -43%;
    transform: translateY(-50%);
    height: 250%;
    width: auto;
    z-index: 2;
    pointer-events: none;
  }
  .c-banner__content {
    left: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .c-banner {
    height: 27.34375vw;
  }
  .c-banner__title {
    font-size: var(--fs-xl2);
  }
  .c-banner__subtitle {
    font-size: var(--fs-md);
    margin-bottom: 0.75rem;
  }
  .c-banner__ribbon-img {
    max-width: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .c-banner {
    height: 20rem;
  }
  .c-banner__ribbon-img {
    bottom: 25%;
    right: -30%;
    height: 30%;
  }
  .c-banner__content {
    top: 0;
    height: 100%;
    transform: none;
    display: flex;
    flex-direction: column;
    padding-top: 3rem;
    left: 1.5rem;
  }
  .c-banner__title {
    font-size: var(--fs-lg2);
  }
  .c-banner__subtitle {
    font-size: var(--fs-sm);
    margin-bottom: 0.75rem;
  }
  .c-banner__overlay {
    background: linear-gradient(to bottom, rgb(79, 79, 79) 0%, rgba(79, 79, 79, 0.6) 20%, rgba(79, 79, 79, 0) 100%);
  }
  .c-banner__img {
    left: -50%;
    top: -80%;
    height: 300%;
  }
  .c-banner__img2 {
    right: -70%;
    bottom: -70%;
    height: 280%;
  }
}
@media screen and (max-width: 425px) {
  .c-banner__img {
    left: -40%;
    top: -20%;
    height: 180%;
  }
  .c-banner__img2 {
    right: -125%;
    bottom: -70%;
    height: 280%;
  }
}
.c-section-header__wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.c-section-header__label {
  font-size: var(--fs-md);
}

.c-section-header__text {
  font-size: var(--fs-display);
  line-height: normal;
  font-family: var(--font-outfit);
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .c-section-header__wrapper {
    gap: 10px;
    z-index: 10;
    position: relative;
  }
  .c-section-header__label {
    font-size: var(--fs-base);
    z-index: 10;
  }
  .c-section-header__text {
    font-size: var(--fs-6xl);
    z-index: 10;
    position: relative;
    margin-top: -20px;
  }
}
.c-footer-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 16px;
  background-image: url("../img/top/bg_banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.c-footer-banner__container {
  width: 100%;
  max-width: 1000px;
  padding: 72px 16px 60px 16px;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 53px;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.c-footer-banner__container h2 {
  font-weight: 700;
  font-size: var(--fs-2xl2);
}

.c-footer-banner__heading-accent {
  font-size: var(--fs-6xl);
  font-family: var(--font-outfit);
  font-weight: 600;
  color: var(--text-lightBlue);
}

.c-footer-banner__sticker1 {
  position: absolute;
  top: 45px;
  left: 0px;
}

.c-banner__speechbubble1 {
  position: absolute;
  top: -60px;
  left: -93px;
}

.c-banner__sticker2 {
  position: absolute;
  top: 30px;
  right: -40px;
}

.c-banner__speechbubble2 {
  position: absolute;
  top: -60px;
  right: -63px;
}

.c-footer-banner__btn {
  margin-left: auto;
  margin-right: auto;
}

.c-footer-banner__link-icon {
  margin-left: 10px;
  margin-bottom: 2px;
}

.c-banner__stickers-row {
  display: contents;
}

.c-footer-banner__stickers {
  display: contents;
}

.c-footer-banner__bubble1 {
  position: absolute;
  top: -60px;
  left: -93px;
}

.c-footer-banner__sticker2 {
  position: absolute;
  top: 30px;
  right: -40px;
}

.c-footer-banner__bubble2 {
  position: absolute;
  top: -60px;
  right: -63px;
}

.c-footer-banner__sticker2-img01 {
  margin-right: 20px;
  margin-top: -10px;
}

.c-footer-banner__sticker2-img02 {
  margin-right: 80px;
  margin-top: -10px;
}

@media screen and (max-width: 1200px) {
  .c-footer-banner__container h2 {
    line-height: 2;
  }
  .c-footer-banner__sticker1,
  .c-banner__sticker2,
  .c-footer-banner__sticker2 {
    display: none;
  }
  .c-footer-banner__sticker2-img02 {
    height: 320px;
    width: 115px;
    margin-right: 20px;
  }
  .c-footer-banner__sticker2-img01 {
    margin-right: -10px;
  }
  .c-footer-banner__container {
    width: auto;
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media screen and (max-width: 767px) {
  .c-footer-banner {
    padding: 40px 16px;
  }
  .c-footer-banner__container {
    width: 100%;
    padding: 40px 26px 0 26px;
    gap: 10px;
  }
  .c-footer-banner__container h2 {
    font-size: var(--fs-xl);
    text-align: center;
  }
  .c-footer-banner__heading-accent {
    font-size: var(--fs-3xl);
  }
  .c-footer-banner__container a {
    padding: 10px 35px 10px 20px;
    margin-top: 10px;
  }
  .c-banner__stickers-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding-top: 30px;
    margin-top: 10px;
    z-index: 22;
  }
  .c-footer-banner__sticker1,
  .c-banner__sticker2 {
    display: block;
    position: relative;
    top: 10px;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .c-footer-banner__sticker1img:last-child {
    width: 130px;
    height: auto;
    display: block;
    margin-left: 25px;
  }
  .c-footer-banner__sticker1img:first-child {
    position: absolute;
    top: -45px;
    left: -40px;
    width: 90px;
    height: auto;
    display: block;
  }
  .c-banner__sticker2 img:last-child {
    width: 170px;
    height: auto;
    display: block;
  }
  .c-banner__sticker2 img:first-child {
    position: absolute;
    top: -50px;
    right: -5px;
    width: 93px;
    height: auto;
    display: block;
  }
  .c-footer-banner__speech1,
  .c-banner__speechbubble2 {
    display: none;
  }
  .c-footer-banner__container h2 {
    line-height: 1.5;
  }
  .c-footer-banner__container a {
    font-weight: bold;
  }
  .c-footer-banner__stickers {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding-top: 30px;
    margin-top: 10px;
    z-index: 22;
  }
  .c-footer-banner__sticker1,
  .c-footer-banner__sticker2 {
    display: block;
    position: relative;
    top: 10px;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .c-footer-banner__sticker1 img:last-child {
    width: 130px;
    height: auto;
    display: block;
    margin-left: 25px;
  }
  .c-footer-banner__sticker1 img:first-child {
    position: absolute;
    top: -45px;
    left: -40px;
    width: 90px;
    height: auto;
    display: block;
  }
  .c-footer-banner__sticker2 img:last-child {
    width: 170px;
    height: auto;
    display: block;
  }
  .c-footer-banner__sticker2 img:first-child {
    position: absolute;
    top: -50px;
    right: -5px;
    width: 93px;
    height: auto;
    display: block;
  }
}
.c-hero-slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--base-darkGreen);
  max-height: 850px;
}

.c-hero-slider__images {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.c-hero-slider__frames {
  position: absolute;
  inset: 0;
  height: 100%;
}

.c-clip-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.c-hero-slider__frames__clip1 {
  background-image: none;
  background-repeat: unset;
  background-position: unset;
  background-size: unset;
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 37% 100%);
  animation: heroSlideTopLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  z-index: 2;
}

.c-hero-slider__frames__clip2 {
  background-image: none;
  background-size: unset;
  background-repeat: unset;
  background-position: unset;
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 37% 100%);
  animation: heroSlideBottomRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  position: absolute;
  right: 0px;
  width: 100vw;
  overflow: hidden;
}

.c-hero-slider__frames__clip1 .c-clip-img {
  width: 70%;
  height: 100%;
  position: absolute;
  left: 0;
  object-position: -200px;
  background-size: contain;
}

.c-hero-slider__frames__clip2 .c-clip-img {
  width: 100%;
  height: 100%;
  object-position: 230px -50px;
  position: absolute;
  right: 0;
}

.c-hero-slider__ribbon {
  position: absolute;
  bottom: 0;
  top: -15px;
  left: 20px;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.c-hero-slider__title {
  position: absolute;
  top: 30%;
  left: 105px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.c-hero-slider__title h1 {
  font-size: 2.4375rem;
  color: var(--text-white);
  line-height: 1.5;
  font-weight: 500;
}

@keyframes heroSlideTopLeft {
  0% {
    transform: translate(-80px, -80px);
    clip-path: inset(0 100% 0 0);
  }
  40% {
    clip-path: polygon(0 0, 43% 0, 57% 100%, 0% 100%);
  }
  100% {
    transform: translate(0, 0);
    clip-path: polygon(0 0, 43% 0, 57% 100%, 0% 100%);
  }
}
@keyframes heroSlideBottomRight {
  0% {
    opacity: 0;
    transform: translate(80px, 80px);
    clip-path: inset(0 0 0 100%);
  }
  40% {
    clip-path: inset(0 0 0 0%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    clip-path: inset(0 0 0 0%);
  }
}
@media screen and (max-width: 1580px) {
  .c-hero-slider__frames__clip1 {
    background-position: -200px;
  }
}
@media screen and (max-width: 1250px) {
  .c-clip-img {
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 0;
    background-size: cover;
  }
  .c-hero-slider__frames__clip1 .c-clip-img {
    width: 100vw;
    height: 100%;
    object-position: 160%;
    background-size: cover;
  }
  .c-hero-slider__images {
    height: 100vh;
  }
  .c-hero-slider__title {
    top: 80px;
    left: 20px;
  }
  .c-hero-slider__frames__clip1 {
    animation: heroSlideTopMobile 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  .c-hero-slider__frames__clip2 {
    animation: heroSlideBottomMobile 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.1s;
    opacity: 0;
  }
  @keyframes heroSlideTopMobile {
    0% {
      opacity: 0;
      transform: translate(-80px, -40px);
      clip-path: inset(0 100% 0 0);
    }
    40% {
      clip-path: polygon(0 0, 100% 0, 100% 58%, 0 42%);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0);
      clip-path: polygon(0 0, 100% 0, 100% 58%, 0 42%);
    }
  }
  @keyframes heroSlideBottomMobile {
    0% {
      opacity: 0;
      transform: translate(80px, 40px);
      clip-path: inset(0 0 0 100%);
    }
    40% {
      clip-path: polygon(0 42%, 100% 58%, 100% 100%, 0 100%);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0);
      clip-path: polygon(0 42%, 100% 58%, 100% 100%, 0 100%);
    }
  }
  .c-hero-slider__ribbon {
    transform: scale(1.5);
    top: 70px;
  }
}
@media screen and (max-width: 1215px) {
  .c-hero-slider__frames__clip1 .c-clip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    left: 0;
  }
  .c-hero-slider__frames__clip2 .c-clip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    right: 0;
    left: 0;
  }
  .c-clip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media screen and (max-width: 767px) {
  .c-hero-slider__ribbon {
    left: -320px;
    transform: scale(2);
  }
  .c-hero-slider__title h1 {
    font-size: var(--fs-lg2);
  }
}
@media screen and (max-width: 767px) {
  .c-hero-slider__frames__clip1 .c-clip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    left: 0;
  }
  .c-hero-slider__frames__clip2 .c-clip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    right: 0;
    left: 0;
  }
  .c-clip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media screen and (max-width: 600px) {
  .c-hero-slider__ribbon {
    top: 480px;
    left: -220px;
    transform: scale(2);
  }
}
@media screen and (max-width: 500px) {
  .c-hero-slider__ribbon {
    top: 350px;
    left: -240px;
    transform: scale(2.4);
  }
  .c-hero-slider__frames__clip1 .c-clip-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    left: 0;
  }
  .c-hero-slider__frames__clip2 .c-clip-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    right: 0;
    left: 0;
  }
  .c-clip-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}
.c-hero-animate__banner {
  overflow: hidden;
  width: 100%;
}

.c-hero-animate {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--base-navy);
  height: auto;
}

.c-hero-animate img {
  width: 100vw;
  display: block;
}

.c-hero-animate__panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.c-hero-animate__panel-left {
  background: var(--base-greenAccent);
  clip-path: polygon(48% 0, 0 0, 0 100%, 58% 100%);
}

.c-hero-animate__panel-right {
  background: var(--base-greenAccent);
  clip-path: polygon(100% 0, 48% 0, 58% 100%, 100% 100%);
}

.c-hero-animate.is-animate .c-hero-animate__panel-left {
  animation: out-left 1.3s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}

.c-hero-animate.is-animate .c-hero-animate__panel-right {
  animation: out-right 1.3s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}

@keyframes out-left {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  98% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(-10%, -110%, 0);
    opacity: 0;
  }
}
@keyframes out-right {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  98% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(10%, 110%, 0);
    opacity: 0;
  }
}
@media screen and (max-width: 860px) {
  .c-hero-slider__title h1 {
    font-size: var(--fs-2xl);
  }
}
@media screen and (max-width: 650px) {
  .c-hero-animate__panel {
    inset: 0;
  }
  .c-hero-animate__panel-left {
    background: var(--base-greenAccent);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 62%, 0% 45%);
    transform-origin: 0% 50%;
  }
  .c-hero-animate__panel-right {
    background: var(--base-greenAccent);
    clip-path: polygon(100% 100%, 0% 100%, 0% 0%, 0% 45%, 100% 55%);
    transform-origin: 100% 50%;
  }
  .c-hero-animate.is-animate .c-hero-animate__panel-left {
    animation: mobile-out-left 1.3s cubic-bezier(0.7, 0, 0.2, 1) forwards;
  }
  .c-hero-animate.is-animate .c-hero-animate__panel-right {
    animation: mobile-out-right 1.3s cubic-bezier(0.7, 0, 0.2, 1) forwards;
  }
  @keyframes mobile-out-left {
    0% {
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }
    98% {
      opacity: 0.9;
    }
    100% {
      transform: translate3d(-110%, -20%, 0);
      opacity: 0;
    }
  }
  @keyframes mobile-out-right {
    0% {
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }
    98% {
      opacity: 0.9;
    }
    100% {
      transform: translate3d(110%, 20%, 0);
      opacity: 0;
    }
  }
}
@media screen and (max-width: 500px) {
  .c-hero-slider__title h1 {
    font-size: var(--fs-lg);
  }
}
.c-hero-slider__ribbon--overflow {
  width: 100vw;
  overflow: hidden;
}

.c-hero-slider__ribbon-inner {
  width: 100%;
}

.c-hero-slider__ribbon-svg {
  width: 100vw;
  height: auto;
  display: block;
}

.c-announcement__section {
  background-image: url("../img/common/bg_camouflage01.webp");
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  padding: 5% 0%;
}

.c-announcement {
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 67.5rem;
  justify-content: center;
  align-items: center;
}

.c-announcement__title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.c-announcement__title-container h2 {
  font-size: var(--fs-2xl2);
  font-weight: 700;
  line-height: 1.2;
}

.c-announcement__title-container h2:nth-child(2) {
  color: var(--text-lightBlue);
  font-size: var(--fs-6xl);
  font-family: var(--font-outfit);
}

.c-announcement__body {
  display: flex;
  flex-direction: column;
  line-height: 2;
  font-weight: 500;
}

.c-announcement__body span {
  color: var(--base-lightBlue);
  text-decoration: underline;
  cursor: pointer;
}

.c-announcement__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--fs-lg);
}

.c-section--white {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  background-image: url("../img/common/bg_white_pattern.webp");
  background-size: cover;
  background-position: 0% -170%;
}

.c-section--light-blue {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  background-image: url("../img/common/bg_light_blue.webp");
  background-size: cover;
  background-position: center;
}

@media (max-width: 1024px) {
  .c-announcement {
    width: 100%;
    padding: 3.5rem 2.5rem;
  }
  .c-announcement__title-container {
    flex-direction: column;
    text-align: center;
  }
  .c-announcement__title-container h2:nth-child(2) {
    font-size: 2.75rem;
  }
}
@media (max-width: 767px) {
  .c-announcement {
    width: 100%;
    padding: 2.5rem 1.25rem;
    padding-bottom: 13rem;
    gap: 1.25rem;
  }
  .c-announcement__title-container {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
  }
  .c-announcement__title-container h2 {
    font-size: var(--fs-lg2);
  }
  .c-announcement__title-container h2:nth-child(2) {
    font-size: var(--fs-2xl2);
  }
  .c-announcement__body {
    font-size: var(--fs-sm2);
    line-height: 1.9;
  }
  .c-announcement__btn {
    font-size: var(--fs-base);
  }
}
.c-end-note__section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/common/img_gym01.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c-end-note {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 8rem 0;
}

.c-end-note__card {
  display: flex;
  flex-direction: column;
  background-color: white;
  flex: 1;
  position: relative;
}

.c-end-note__card:hover .c-btn--green-wrapper {
  background-color: var(--base-white);
  border: 1px solid var(--base-lightBlue);
}

.c-end-note__card:hover .c-btn--green-wrapper img {
  filter: brightness(0) saturate(100%) invert(83%) sepia(97%) saturate(209%) hue-rotate(94deg) brightness(91%) contrast(85%);
}

.c-end-note__card:hover .c-btn-icon--light-blue {
  background-color: var(--base-white);
  border: 1px solid var(--base-lightBlue);
}

.c-end-note__card:hover .c-btn-icon--light-blue svg {
  filter: brightness(0) saturate(100%) invert(96%) sepia(12%) saturate(1406%) hue-rotate(96deg) brightness(92%) contrast(82%);
}

.c-end-note__card a.c-btn--green-wrapper::before,
.c-end-note__card a:has(.c-btn-icon--light-blue)::before {
  content: "";
  position: absolute;
  inset: 0;
}

/* 本文内リンク: オーバーレイより前面 + リンク色（.c-end-note__card-body a と統合） */
.c-end-note__card-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding-right: 1rem;
}

.c-end-note__card-header h3 {
  font-size: var(--fs-xl);
  font-weight: 600;
  padding-left: 1rem;
  flex: 1;
}

.c-end-note__card-icon {
  background-color: var(--base-lightBlue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  height: 5.625rem;
  width: 5.625rem;
}

.c-end-note__card-icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--base-lightBlue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-end-note__card-body {
  font-size: var(--fs-base);
  line-height: 1.5;
  font-weight: 500;
  padding: 2rem 2.5rem;
}

.c-end-note__card-body a {
  color: var(--base-lightBlue);
  position: relative;
  z-index: 1;
}

.c-end-note__card span {
  color: var(--base-lightBlue);
}

.c-end-note__row {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .c-end-note {
    padding: 6rem 0;
    gap: 2rem;
  }
  .c-end-note__row {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .c-end-note {
    padding: 4rem 2rem;
    gap: 1.5rem;
  }
  .c-end-note__row {
    flex-direction: column;
    gap: 1.25rem;
  }
  .c-end-note__card-header h3 {
    font-size: var(--fs-md);
  }
  .c-end-note__card-icon {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
  }
  .c-end-note__card-body {
    font-size: var(--fs-sm2);
    padding: 1.25rem 1.5rem;
  }
}
.c-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 120px;
  padding-right: 120px;
  background-color: var(--base-black);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.c-cookie-notice.visible {
  transform: translateY(0);
  opacity: 1;
}

.c-cookie-notice.hide {
  transform: translateY(100%);
  opacity: 0;
}

.c-cookie-notice .c-footer-btn {
  cursor: pointer;
  transition: opacity 0.2s ease;
  background-color: var(--base-white);
  color: var(--base-black);
  border-radius: 5px;
  font-weight: 550;
  padding: 5px 10px;
}

.c-cookie-notice .c-footer-btn:hover {
  opacity: 0.75;
}

.c-cookie-notice__text {
  font-weight: 400;
  font-size: var(--fs-sm);
  color: var(--text-white);
}

.c-cookie-notice__sub {
  margin-top: 10px;
  margin-bottom: 5px;
  display: none;
  font-family: var(--font-outfit);
  font-size: var(--fs-xs);
  color: var(--text-white);
}

.c-cookie-notice__buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

@media (max-width: 767px) {
  .c-cookie-notice {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 16px;
    padding-right: 16px;
    gap: 12px;
  }
  .c-cookie-notice p {
    font-size: var(--fs-xs);
  }
  .c-cookie-notice__sub {
    display: inline-flex;
    align-self: flex-end;
  }
}
.c-page-nav {
  display: flex;
  align-items: center;
  padding-top: 3rem;
  gap: 2rem;
  cursor: pointer;
}

.c-page-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: var(--fs-sm2);
  color: var(--text-black1);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.c-page-nav__item:hover {
  color: var(--base-lightBlue);
}

@media (max-width: 1024px) {
  .c-page-nav {
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
  }
}
.c-section-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.c-section-title__label {
  font-size: var(--fs-md);
  font-weight: 500;
}

.c-section-title__text {
  font-size: var(--fs-display);
  line-height: 1.3;
  font-weight: 400;
  font-family: var(--font-outfit);
}

.c-data-table {
  width: 100%;
  border-collapse: collapse;
}

.c-data-table th {
  font-size: var(--fs-base);
  line-height: 2;
  font-weight: 500;
  vertical-align: middle;
  text-align: left;
}

.c-data-table td {
  font-size: var(--fs-base);
  line-height: 2;
  font-weight: 500;
  vertical-align: middle;
  text-align: right;
}

.c-data-table tr {
  border-bottom: 1px solid var(--base-gray);
}

.c-other-details-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 16px;
  background-image: url("../img/admission/bg_admission_otherDetails.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.c-other-details-banner-container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.c-other-details-banner__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.c-other-details-banner-item {
  background-color: var(--base-white);
  padding-right: 30px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.c-other-details-banner-item__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.c-other-details-banner-item__title {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.c-other-details-banner-item__title-text {
  font-weight: 700;
  font-size: var(--fs-xl);
}

.c-other-details-banner-p {
  padding-left: 40px;
  line-height: 2;
}

@media screen and (max-width: 1400px) {
  .c-other-details-banner-item {
    min-height: 260px;
  }
}
@media screen and (max-width: 1050px) {
  .c-other-details-banner-container {
    flex-wrap: wrap;
  }
  .c-other-details-banner-item {
    min-height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .c-other-details-banner {
    padding: 50px 16px;
  }
  .c-other-details-banner-item {
    gap: 15px;
    min-height: auto;
    padding-bottom: 20px;
  }
  .c-other-details-banner-item__title-img {
    width: 75px;
  }
  .c-other-details-banner-item__title {
    gap: 15px;
  }
  .c-other-details-banner-item__title-text {
    font-size: var(--fs-base);
  }
  .c-other-details-banner-p {
    padding-left: 20px;
  }
  .c-other-details-banner__list,
  .c-other-details-banner-container {
    gap: 20px;
  }
}
.c-header-action-btn {
  width: fit-content;
  transition: all 0.3s ease-in-out;
  background-color: var(--base-lightBlue);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 21px;
  padding-right: 25px;
  border-radius: 50px;
}

.c-header-action-btn__icon-wrapper {
  height: 30px;
  width: 30px;
  background-color: var(--base-white);
  border-radius: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.c-header-action-btn--reservation {
  padding-right: 21px;
}

.c-header-action-btn__content {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 5px;
}

.c-header-action-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.c-header-action-btn__text p {
  color: var(--text-white);
  font-weight: 600;
  font-size: var(--fs-3xs);
  text-align: center;
}

.c-header-action-btn__sub-label {
  font-size: var(--fs-sm2);
}

.c-header-action-btn__arrow-img {
  transition: all 0.3s ease-in-out;
  margin-bottom: 6px;
}

@media (max-width: 1024px) {
  .c-header-action-btn {
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media screen and (max-width: 1090px) {
  .c-header-action-btn:not(.l-header__sp-btn) {
    display: none;
  }
}
.c-logo-text {
  font-size: var(--fs-xs);
}

.c-logo-tagline {
  font-family: var(--font-outfit);
  font-size: var(--fs-xs);
}

.c-vertical-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.c-floating-menu {
  background-color: var(--base-black);
  width: 75px;
  height: 75px;
  position: fixed;
  right: 0px;
  top: 0px;
  padding: 25px;
  z-index: 999;
  transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.c-floating-menu__btn {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0;
}

.c-floating-menu__menu-label {
  font-family: var(--font-outfit);
  font-size: var(--fs-xs);
  color: var(--text-white);
}

.c-floating-menu__close-label {
  font-family: var(--font-outfit);
  font-size: var(--fs-xs);
  color: var(--text-white);
}

.c-floating-menu__copyright {
  font-family: var(--font-outfit);
  font-size: var(--fs-xs);
  color: var(--text-white);
}

.c-floating-menu__content {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
  cursor: pointer;
}

.c-floating-menu.active {
  height: 92vh;
  background-color: var(--base-black);
}

.c-floating-menu.active .c-floating-menu__content {
  opacity: 1;
  pointer-events: auto;
}

.c-floating-menu__close {
  display: none;
}

.c-floating-menu.active .c-floating-menu__close {
  display: none;
}

.c-mobile-overlay {
  position: fixed;
  top: 98px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--base-white);
  z-index: 2;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.c-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: var(--base-white);
}

@media screen and (min-width: 1091px) {
  .c-desktop-menu-icon,
  .c-floating-menu__menu-label {
    display: none;
  }
  .c-floating-menu:not(.active) {
    justify-content: center;
  }
}
@media screen and (max-width: 1090px) {
  .c-floating-menu__content {
    display: none;
  }
  .c-floating-menu__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .c-floating-menu__btn p:not(.c-floating-menu__menu-label) {
    display: none;
  }
  .c-floating-menu {
    max-height: 98.77px;
  }
  .c-floating-menu__close {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-mobile-overlay {
    top: 50px;
  }
  .c-floating-menu {
    max-height: 50px;
    width: 50px;
  }
}
.c-hamburger-menu {
  display: none;
}

@media screen and (min-width: 1091px) {
  .c-floating-menu__btn .c-hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 11px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }
  .c-floating-menu__btn .c-hamburger-menu__bar {
    display: block;
    width: 40px;
    height: 2px;
    background-color: white;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform-origin: center;
  }
  .c-floating-menu.active .c-hamburger-menu__bar:nth-child(1) {
    transform: translateY(18px) rotate(45deg);
  }
  .c-floating-menu.active .c-hamburger-menu__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .c-floating-menu.active .c-hamburger-menu__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
@media screen and (max-width: 1090px) {
  .c-desktop-menu-icon {
    display: none;
  }
  .c-hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 11px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }
  .c-hamburger-menu__bar {
    display: block;
    width: 40px;
    height: 2px;
    background-color: white;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform-origin: center;
  }
  .c-hamburger-menu.active {
    background-color: transparent;
  }
  .c-hamburger-menu.active .c-hamburger-menu__bar:nth-child(1) {
    transform: translateY(18px) rotate(45deg);
  }
  .c-hamburger-menu.active .c-hamburger-menu__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .c-hamburger-menu.active .c-hamburger-menu__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
@media screen and (max-width: 767px) {
  .c-hamburger-menu {
    gap: 5px;
  }
  .c-hamburger-menu__bar {
    width: 25px;
    height: 1px;
  }
  .c-hamburger-menu.active .c-hamburger-menu__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .c-hamburger-menu.active .c-hamburger-menu__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .c-hamburger-menu.active .c-hamburger-menu__bar:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }
}
.c-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background-color: var(--base-black);
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}

.c-scroll-indicator p {
  font-family: var(--font-outfit);
  font-size: var(--fs-xs);
  color: var(--text-white);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: all 0.3s ease-in-out;
}

.c-scroll-indicator p:hover {
  color: var(--base-lightBlue);
}

.c-scroll-indicator:hover .c-img-blue {
  filter: brightness(0) saturate(100%) invert(96%) sepia(12%) saturate(1406%) hue-rotate(96deg) brightness(92%) contrast(82%);
}

.c-floating-menu.active .c-scroll-indicator {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

.c-floating-menu.active .c-scroll-indicator.scrolling,
.c-scroll-indicator.scrolling {
  opacity: 0;
  pointer-events: none;
}

.c-scroll-indicator__arrow {
  position: absolute;
  bottom: 20px;
  left: -47px;
}

.c-scroll-indicator__arrow img {
  align-self: flex-end;
}

@media screen and (max-width: 1090px) {
  .c-floating-menu.active .c-scroll-indicator {
    opacity: 0;
    pointer-events: none;
  }
}
.c-scroll-indicator--mobile {
  display: none;
}

.c-scroll-indicator--mobile.hidden-by-menu {
  display: none;
}

@media screen and (max-width: 1090px) {
  .c-scroll-indicator--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: transparent;
    pointer-events: auto;
    cursor: pointer;
    z-index: 998;
    transition: opacity 0.4s ease-in-out;
  }
  .c-scroll-indicator--mobile p {
    font-family: var(--font-outfit);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: white;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  }
  .c-scroll-indicator--mobile img {
    filter: brightness(0) invert(1) drop-shadow(0 0 3px rgba(0, 0, 0, 0.4));
  }
  .c-scroll-indicator--mobile.scrolling {
    opacity: 0;
    pointer-events: none;
  }
}
.c-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--base-borderLightGray);
}

.c-mobile-nav__logo {
  height: 40px;
  width: auto;
}

.c-mobile-nav__close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--base-darkText);
}

.c-mobile-nav__main {
  padding: 0 0 16px;
}

.c-mobile-nav__section {
  border-bottom: 1px solid var(--base-borderLightGray);
}

.c-mobile-nav__head {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-family: "Outfit", sans-serif;
  font-size: var(--fs-sm2);
  font-weight: 600;
  color: var(--lightBlue);
  text-align: left;
}

.c-mobile-nav__plus {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 0;
  flex-shrink: 0;
}

.c-mobile-nav__plus::before,
.c-mobile-nav__plus::after {
  content: "";
  position: absolute;
  background-color: var(--base-lightBlue);
  border-radius: 2px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.c-mobile-nav__plus::before {
  width: 16px;
  height: 2px;
}

.c-mobile-nav__plus::after {
  width: 2px;
  height: 16px;
}

.c-mobile-nav__section.is-open .c-mobile-nav__plus {
  transform: none;
}

.c-mobile-nav__section.is-open .c-mobile-nav__plus::after {
  opacity: 0;
  transform: scaleY(0);
}

.c-mobile-nav__list {
  list-style: none;
  padding: 0 24px 0 24px;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.c-mobile-nav__section.is-open .c-mobile-nav__list {
  max-height: 600px;
  padding: 0 24px 16px 24px;
}

.c-mobile-nav__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--base-lightBg);
}

.c-mobile-nav__list li:last-child {
  border-bottom: none;
}

.c-mobile-nav__link {
  font-size: var(--fs-sm);
  color: var(--base-darkText);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-mobile-nav__link:hover {
  color: var(--lightBlue);
}

.c-mobile-nav__sns-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.c-mobile-nav__sub {
  padding: 24px;
}

.c-mobile-nav__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
}

.c-mobile-nav__btns .l-footer__blue-btn {
  width: 280px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-mobile-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  background: var(--lightBlue);
  color: var(--text-white);
  font-size: var(--fs-sm2);
  font-weight: 600;
  text-decoration: none;
}

.c-mobile-nav__utility {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-mobile-nav__utility a {
  font-size: var(--fs-2xs);
  color: var(--base-mediumText);
  text-decoration: none;
}

.c-mobile-nav__utility a:hover {
  color: var(--lightBlue);
}

@media screen and (max-width: 767px) {
  .c-mobile-nav__main {
    margin-top: 20px;
  }
}
.c-desktop-menu-popup {
  position: fixed;
  right: 75px;
  top: 75px;
  width: auto;
  min-width: 70rem;
  max-width: calc(100vw - 100px);
  height: calc(95vh - 104px);
  background-color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  overflow-y: auto;
  padding: 60px 120px 50px 120px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  z-index: 998;
}

.c-desktop-menu-popup.active {
  opacity: 1;
  pointer-events: auto;
  background-color: white;
}

.c-desktop-menu-popup__columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.c-desktop-menu-popup__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.c-desktop-menu-popup__group {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.c-desktop-menu-popup__section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.c-desktop-menu-popup__links {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  font-size: var(--fs-sm2);
}

.c-desktop-menu-popup__bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}

.c-desktop-menu-popup__bottom-btns {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.c-desktop-menu-popup__bottom-links {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  font-size: var(--fs-sm);
}

.c-desktop-menu-popup a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.c-desktop-menu-popup a:hover {
  opacity: 0.7;
}

.c-desktop-menu-popup__link--highlight {
  color: var(--text-lightBlue);
}

.c-desktop-menu-popup .l-footer__blue-btn {
  width: fit-content;
}

.c-desktop-menu-popup__bottom--gap {
  gap: 20px;
}

@media screen and (max-width: 1090px) {
  .c-desktop-menu-popup {
    display: none;
  }
}
.c-footer-brand-logo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-footer-brand-logo img {
  width: 160px;
  height: auto;
}

.c-footer-brand-logo p {
  font-family: var(--font-outfit);
}

.c-footer-brand-name {
  text-align: right;
}

.c-footer-cta-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-footer-section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--base-gray);
}

.c-footer-section-header__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--base-lightBlue);
  display: none;
}

.c-footer-section-header img {
  width: 30px;
  height: 5px;
}

.c-footer-section-header p {
  color: var(--base-black);
  font-family: var(--font-outfit);
  font-size: var(--fs-md);
  font-weight: 500;
}

.c-footer-section-header__arrow {
  width: 30px;
  height: 5px;
}

.c-footer-section-header__arrow-sign {
  display: none;
}

.c-footer-nav-link--highlight {
  color: var(--text-lightBlue);
}

.c-footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm2);
}

.c-footer-icon-link img {
  width: 14px;
  height: 14px;
}

.c-scroll-up-btn {
  width: 50px;
  height: 50px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-scroll-up-btn img {
  transform: scaleX(-1) rotate(-90deg);
}

.c-footer-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--base-white);
  color: var(--text-white);
  cursor: pointer;
  font-size: var(--fs-2xs);
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .c-footer-section-header img {
    width: 20px;
    height: auto;
  }
  .c-footer-section-header__arrow-icon {
    display: none;
  }
  .c-footer-section-header__arrow-sign {
    display: inline-flex;
  }
  .c-footer-section-header__sign-open {
    display: inline-block;
  }
  .c-footer-section-header__sign-close {
    display: none;
  }
  .l-footer__nav-section.open .c-footer-section-header__sign-open {
    display: none;
  }
  .l-footer__nav-section.open .c-footer-section-header__sign-close {
    display: inline-block;
  }
  .c-footer-section-header {
    cursor: pointer;
    padding: 16px 0;
    user-select: none;
  }
  .c-footer-section-header__arrow {
    transition: transform 0.3s ease;
  }
  .l-footer__nav-section.open .c-footer-section-header__arrow {
    transform: rotate(90deg);
  }
}
.c-service__section {
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.c-service__container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 0px;
  justify-content: center;
  align-items: flex-start;
  line-height: 1.875;
}

.c-service__section-title {
  padding-left: 240px;
}

.c-service__subtitle {
  font-weight: 700;
}

.c-service__title {
  font-size: var(--fs-2xl);
  color: var(--text-lightBlue);
  font-weight: 700;
}

.c-service__desc {
  line-height: 2;
  text-align: center;
}

.c-service__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 16px;
  padding-right: 16px;
}

.c-service__wrapper {
  width: 100%;
  max-width: 640px;
  background-color: var(--base-white);
  z-index: 2;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.c-service__wrapper:hover .c-service__img {
  transform: scale(1.1);
}

a.c-service__wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease-in-out;
}

a.c-service__wrapper:hover {
  opacity: 0.7;
}

.c-service__img-wrapper {
  height: 320px;
  overflow: hidden;
}

.c-service__img {
  height: 320px;
  max-height: 320px;
  object-fit: cover;
  object-position: center center;
  transition: all 0.3s ease-in-out;
}

.c-service__wrapper2 {
  margin-top: -90px;
  background-color: var(--base-gray);
}

.c-service__wrapper3 {
  margin-top: -180px;
}

.c-service__ribbon {
  position: absolute;
  right: 0px;
  top: -170px;
  z-index: 1;
}

.c-service__container-sp {
  display: none;
}

@media screen and (max-width: 1500px) {
  .c-service__section {
    gap: 100px;
  }
}
@media screen and (max-width: 1090px) {
  .c-service__container-sp {
    display: block;
  }
  .c-service__section {
    gap: 40px;
  }
  .c-service__section-title {
    padding-left: 16px;
  }
  .c-service__container {
    display: none;
  }
  .c-service__wrapper {
    max-width: 100%;
    min-height: 539px;
  }
  .c-service__wrapper3 {
    margin-top: 0px;
  }
  .c-service__wrapper2 {
    margin-top: 0px;
  }
  .c-service__img {
    width: 100%;
    height: 500px;
  }
  .c-topic-ribbon {
    display: none;
  }
}
@media screen and (max-width: 1090px) and (max-width: 767px) {
  .c-service__section {
    padding-top: 50px;
  }
  .c-service__img {
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 500px) {
  .c-service__img {
    width: 100%;
    height: 200px;
  }
  .c-service__break {
    display: none;
  }
}
.c-news {
  background-image: url("../img/top/bg_news_section.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% 20%;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  position: relative;
}

.c-news--bgnone {
  background: var(--base-white);
}

.c-news__ribbon {
  position: absolute;
  top: 70px;
  right: 0px;
  width: fit-content;
}

.c-news__tabs-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

[data-widget=tabs] .c-tabs__panel[aria-selected=false] {
  display: none;
}

[data-widget=tabs] .c-tabs__panel[aria-selected=true] {
  display: flex;
}

[data-widget=tabs] [data-type=fancy].c-tabs__controls {
  position: relative;
  display: inline-flex;
  gap: 2px;
  isolation: isolate;
  width: 100%;
}

.c-tabs-fancy .c-tabs__control {
  background-color: var(--base-white);
  border: 1px solid var(--base-lightBlue);
  color: var(--text-lightBlue);
  font-weight: 500;
  padding: 10px;
  height: 40px;
  width: 100%;
  max-width: 298px;
  transition: all 0.3s ease-in-out;
}

.c-tabs-fancy .c-tabs__control:hover,
.c-tabs-fancy .c-tabs__control[aria-selected=true] {
  background-color: var(--base-lightBlue);
  color: var(--text-white);
}

.c-tabs-fancy .c-tabs__control::before {
  content: unset;
}

.c-news .c-tabs__panel {
  padding-top: 40px;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.c-news .c-panel-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
  cursor: pointer;
  border-bottom: 1px solid var(--base-gray);
  padding-bottom: 20px;
  text-decoration: none;
  color: inherit;
}

.c-panel-content:hover .c-news-info__last-text {
  color: var(--text-lightBlue);
  transition: all 0.3s ease-in-out;
}

.c-panel-content__arrow {
  width: 30px;
  height: auto;
  flex-shrink: 0;
}

.c-news-info-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  padding-bottom: 0;
  width: calc(100% - 40px);
}

.c-news .c-news__label {
  background-color: var(--base-gray);
  padding: 10px 0;
  min-width: 140px;
  width: fit-content;
  text-align: center;
  flex-shrink: 0;
  font-size: var(--fs-sm);
}

.c-news-info__date {
  font-family: var(--font-outfit);
  color: var(--text-lightBlue);
}

.c-panel-content-text-desk,
.c-panel-content-text-sp {
  letter-spacing: 0.2em;
  line-height: 2;
}

.c-panel-content-text-sp {
  display: none;
  width: 100%;
  margin-top: 20px;
  line-height: 1.5625;
}

@media screen and (max-width: 1090px) {
  .c-news {
    background-image: url("../img/top/bg_news_section_sp.webp");
    padding-top: 52px;
  }
  [data-widget=tabs] [data-type=fancy].c-tabs__controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    column-gap: 10px;
  }
  .c-tabs-fancy .c-tabs__control {
    max-width: 100%;
  }
  .c-news__ribbon {
    transform: scale(0.4);
    top: 0px;
    right: -190px;
  }
  .c-panel-content-text-desk {
    display: none;
  }
  .c-panel-content-text-sp {
    display: block;
  }
  .c-panel-content .c-news-info-container {
    align-items: flex-start;
  }
  .c-panel-content img {
    margin-bottom: 15px;
  }
  .c-news-info-container {
    padding-bottom: 0px;
  }
  .c-panel-content {
    padding-bottom: 20px;
  }
  .c-news-info-container .fs-16 {
    font-size: var(--fs-sm2);
  }
  .c-news__label {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .c-news .c-tabs__panel {
    padding-top: 30px;
  }
}
.c-shop {
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 120px;
  position: relative;
}

.c-shop.--topShop {
  max-width: 1920px;
  margin: 0 auto;
  margin-bottom: 100px;
  padding-top: 120px;
  position: relative;
}

.c-shop__container {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding-left: 240px;
}

.c-shop__items-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  list-style-type: none;
}

.c-shop__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.c-shop__header--ver02 {
  flex-direction: column-reverse;
  align-items: flex-start;
}

.c-shop__header__text1 {
  order: 0;
  font-weight: 700;
  font-size: var(--fs-md);
}

.c-shop__header__text1.--flex {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 90px;
  margin-bottom: -65px;
}

.c-shop__header__text2 {
  order: 0;
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--text-lightBlue);
}

.c-shop__text {
  max-width: 100%;
  line-height: 2;
}

.c-shop__sub-title {
  font-weight: 700;
  font-size: 1.5625rem;
  color: var(--text-lightBlue);
  line-height: 2;
}

.c-shop__sub-desc {
  line-height: 2;
}

.c-shop__sub-text {
  position: absolute;
  top: 170px;
  left: 760px;
}

.c-shop__no1-icon {
  margin-top: -40px;
}

.c-shop__map-box {
  position: absolute;
  top: 100px;
  right: 150px;
}

.c-shop__map-img {
  margin-top: 100px;
  margin-right: 50px;
}

.c-shop__map-img.--topShop {
  margin-top: 100px;
  margin-right: 0px;
}

.c-shop__map-number {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  position: absolute;
  top: 130px;
  font-size: 20rem;
  font-family: var(--font-outfit);
  font-weight: 600;
  color: var(--text-lightBlue);
}

.c-shop__map-unit {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--text-lightBlue);
}

.c-shop__ribbon {
  margin-top: 40px;
  z-index: 2;
  width: 100vw;
  overflow: hidden;
}

.c-shop__ribbon.--news {
  position: absolute;
  right: 0;
  top: 2%;
  text-align: right;
}

.c-shop__ribbon.--news img {
  width: 600px;
}

.c-shop__ribbon img {
  width: 100vw;
}

.c-shop__sticker {
  margin-top: 100px;
}

.c-shop__sticker__figure1 {
  position: absolute;
  left: 400px;
  bottom: -10px;
  z-index: 2;
}

.c-shop__sticker__figure1.--topShop {
  position: absolute;
  left: 575px;
  bottom: 10px;
  z-index: 2;
}

.c-shop__sticker__figure1 img:first-child {
  height: 410px;
  width: 149px;
}

.c-shop__sticker__bubble1 {
  position: absolute;
  top: -60px;
  left: 120px;
}

.c-shop__sticker__figure2.--topShop {
  position: absolute;
  bottom: -85px;
  right: 300px;
  z-index: 2;
}

.c-shop__sticker__figure2.--topShop img:first-of-type {
  height: auto;
  width: 200px;
}

.c-shop__sticker__figure2 {
  position: absolute;
  bottom: 0;
  right: 300px;
}

.c-shop__sticker__figure2 img:first-child {
  height: 400px;
  width: 241px;
}

.c-shop__sticker__bubble2 {
  position: absolute;
  top: -75px;
  right: -130px;
}

@media screen and (max-width: 1800px) {
  .c-shop__map-box {
    right: 0;
  }
}
@media screen and (max-width: 1615px) {
  .c-shop__map-box {
    right: -50px;
  }
  .c-shop__container {
    padding-left: 100px;
    max-width: 550px;
  }
}
@media screen and (max-width: 1450px) {
  .c-shop__map-number {
    font-size: 13.125rem;
    margin-left: 190px;
  }
  .c-shop__sub-text {
    left: 660px;
  }
}
@media screen and (max-width: 1440px) {
  .c-shop__map-number {
    margin-left: 150px;
  }
}
@media screen and (max-width: 1350px) {
  .c-shop__map-number {
    margin-left: 200px;
  }
}
@media screen and (max-width: 1250px) {
  .c-shop__map-box {
    position: relative;
    top: 0;
    right: auto;
    left: 0;
    align-self: flex-start;
    width: 100%;
  }
  .c-shop__map-box .c-shop__map-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    margin-left: 100px;
  }
  .c-shop__sticker {
    margin-top: 0;
    min-height: 500px;
  }
  .c-shop__container {
    max-width: 100%;
    padding-right: 140px;
    gap: 60px;
  }
  .c-shop__map-number {
    font-size: 19.375rem;
    top: 200px;
    margin-left: 80px;
  }
  .c-shop__sticker__figure1 {
    position: absolute;
    top: 50px;
    left: 30px;
    bottom: auto;
    z-index: 2;
  }
  .c-shop__sticker__figure1 img:first-child {
    height: auto;
    width: 104px;
  }
  .c-shop__sticker__figure2 {
    position: absolute;
    right: 100px;
    top: 140px;
    bottom: auto;
    z-index: 2;
  }
  .c-shop__sticker__figure1.--topShop {
    position: absolute;
    left: 25px;
    bottom: 10px;
    z-index: 2;
  }
  .c-shop__sticker__figure2.--topShop {
    position: absolute;
    bottom: -85px;
    right: 120px;
    z-index: 2;
  }
  .c-shop__sticker__figure2 img:first-child {
    height: auto;
    width: 150px;
  }
  .c-shop__sticker__bubble1 {
    position: absolute;
    top: -30px;
    left: 90px;
    z-index: 2;
    width: 119px;
    height: auto;
  }
  .c-shop__sticker__bubble2 {
    position: absolute;
    top: -50px;
    left: 140px;
    right: auto;
    width: 98px;
    height: auto;
  }
  .c-shop__sub-text {
    position: static;
    top: auto;
    left: auto;
  }
  .c-shop__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .c-shop__header .c-shop__label-icon {
    order: 3;
  }
  .c-shop__header__text1 {
    order: 1;
  }
  .c-shop__header__text1.--flex {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    margin-bottom: -20px;
  }
  .c-shop__header .c-shop__no1-icon {
    order: 2;
  }
  .c-shop__header__text2 {
    order: 4;
  }
  .c-shop__header__text2.--flex {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
  }
  .c-shop__sticker .c-shop__ribbon {
    position: absolute;
    bottom: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .c-shop__map-box {
    left: 60px;
  }
  .c-shop__map-box .c-shop__map-img {
    margin: 0 auto;
    margin-left: 0;
  }
  .c-shop__map-number {
    left: -80px;
    font-size: 15.625rem;
  }
}
@media screen and (max-width: 900px) {
  .c-shop__map-box {
    width: 100%;
    left: 0;
  }
  .c-shop__map-box .c-shop__map-img {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .c-shop__map-number {
    font-size: 11.25rem;
    top: 200px;
    left: 0;
  }
}
@media screen and (max-width: 850px) {
  .c-shop__map-number {
    left: -50px;
  }
}
@media screen and (max-width: 767px) {
  .c-shop {
    margin-top: -120px;
  }
  .c-shop.--topShop {
    margin-top: -120px;
    padding: 0;
  }
  .c-shop__header--ver02 {
    flex-direction: column;
    align-items: flex-start;
  }
  .c-shop__bg {
    background-image: none;
    background-color: var(--base-white);
  }
  .c-shop__container {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0;
    gap: 0;
  }
  .c-shop__items-wrapper {
    gap: 20px;
  }
  .c-shop__label-icon {
    width: 66px;
  }
  .c-shop__no1-icon {
    width: 57.9px;
    height: auto;
    margin-top: 10px;
    margin-left: 5px;
  }
  .c-shop__map-number {
    font-size: 10.25rem;
    top: 200px;
    left: 0;
  }
  .c-shop__map-unit {
    font-size: var(--fs-md);
  }
  .c-shop__sticker-container {
    width: 100vw;
    min-height: 480px;
    margin-top: 20px;
  }
  .c-shop .c-btn--light-blue {
    margin-top: 50px;
  }
  .c-shop__ribbon.--news img {
    width: 50%;
  }
}
@media screen and (max-width: 570px) {
  .c-shop {
    padding-top: 0;
    margin-top: -120px;
  }
  .c-shop__map-box {
    left: -150px;
  }
  .c-shop__map-box .c-shop__map-img {
    margin-left: 190px;
  }
  .c-shop__map-number {
    top: 150px;
    margin-left: 200px;
    text-wrap: nowrap;
  }
  .c-shop__map-number span {
    margin-left: -15px;
  }
  .c-shop__sticker .c-shop__ribbon {
    transform: scale(3);
    margin-left: -180px;
  }
}
@media screen and (max-width: 500px) {
  .c-shop__map-box {
    left: -150px;
  }
  .c-shop__map-box .c-shop__map-img {
    margin-left: 190px;
  }
  .c-shop__map-number {
    top: -75px;
    margin-left: 140px;
    text-wrap: nowrap;
  }
  .c-shop__map-number span {
    margin-left: -15px;
  }
  .c-shop__sticker__figure2.--topShop img:first-of-type {
    height: auto;
    width: 150px;
  }
  .c-shop__sticker__figure2.--topShop {
    position: absolute;
    bottom: -85px;
    right: 90px;
    z-index: 2;
  }
}
@media screen and (max-width: 370px) {
  .c-shop__header__text1 {
    font-size: var(--fs-sm2);
  }
}
.c-price-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 16px 120px 16px;
  background-image: url("../img/top/bg_price.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.c-price-plan .c-section-header__label,
.c-price-plan .c-section-header__text {
  color: var(--text-white);
}

.c-price-plan__container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

.c-price-plan__header {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.c-price-plan__sub-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.c-price-plan__sub-text__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.c-price-plan__sub-title {
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--text-lightBlue);
}

.c-price-plan__sub-desc {
  color: var(--text-white);
  line-height: 2;
}

.c-price-plan__item-title {
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--text-lightBlue);
}

.c-price-plan__item-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.c-price-plan__desc-wrapper {
  background-color: rgba(42, 42, 42, 0.6);
  padding: 10px;
  width: 100%;
}

.c-price-plan__list {
  border: 1px solid var(--base-lightBlue);
  padding: 55px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 160px;
  list-style: none;
  margin: 0;
}

.c-price-plan__item {
  display: flex;
  flex-direction: row;
  gap: 158px;
}

.c-price-plan__item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.c-price-plan__link {
  display: inline-flex;
  gap: 14px;
  align-items: baseline;
  color: var(--text-white);
  font-family: var(--font-outfit);
  font-weight: 400;
}

.c-price-plan__btn {
  height: 80px;
  width: 100%;
  max-width: 540px;
  display: flex;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.c-price-plan__info-container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.c-price-plan__info-card {
  width: 100%;
  background-color: var(--base-white);
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.c-price-plan__info-card__header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.c-price-plan__info-card__title {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  color: var(--text-lightBlue);
  font-weight: 700;
  font-size: var(--fs-xl);
}

.c-price-plan__link-text {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--text-lightBlue);
}

a:has(.c-price-plan__info-card) {
  display: contents;
}

a:has(.c-price-plan__info-card):hover .c-btn--green-wrapper {
  background-color: var(--base-white);
  border: 1px solid var(--base-lightBlue);
}

a:has(.c-price-plan__info-card):hover .c-btn--green-wrapper img {
  filter: brightness(0) saturate(100%) invert(83%) sepia(97%) saturate(209%) hue-rotate(94deg) brightness(91%) contrast(85%);
}

a:has(.c-price-plan__info-card) .c-btn--green-wrapper {
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1300px) {
  .c-price-plan__list {
    gap: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .c-price-plan__list {
    flex-direction: column;
    gap: 20px;
  }
  .c-price-plan__desc-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .c-price-plan__info-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .c-price-plan {
    padding: 50px 16px 60px 16px;
  }
  .c-price-plan__container {
    gap: 30px;
  }
  .c-price-plan__header {
    flex-direction: column;
    gap: 20px;
  }
  .c-price-plan__desc-wrapper {
    max-width: 100%;
  }
  .c-price-plan__sub-text {
    margin-top: 0;
  }
  .c-price-plan__sub-title {
    font-size: var(--fs-lg);
  }
  .c-price-plan__item-content {
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
  .c-price-plan__item-content div {
    align-items: flex-start;
    gap: 0px;
  }
  .c-price-plan__item--2 {
    margin-left: -38px;
  }
  .c-price-plan__item-title {
    margin-top: 0;
  }
  .c-price-plan__item--2 .c-price-plan__item-content {
    gap: 20px;
  }
  .c-price-plan__item--3:not(span img) {
    margin-left: -50px;
  }
  .c-price-plan__info-card__title {
    font-size: var(--fs-md);
  }
  .c-price-plan__blue-line {
    max-width: 100px;
  }
  .c-price-plan__info-card {
    padding: 20px;
  }
  .c-price-plan__btn {
    height: 70px;
    margin-top: 0;
  }
  .c-price-plan__info-card {
    padding: 20px;
  }
}
.c-faq {
  background-image: url("../img/family/bg_family_faq.webp");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-faq__ribbon {
  position: absolute;
  top: -120px;
  z-index: 1;
  right: -190px;
  width: 100%;
}

.c-faq__nav {
  width: 100%;
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0px auto;
  padding-top: 30px;
  padding-bottom: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.c-faq__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px auto;
}

.c-faq__section {
  width: 100%;
}

.c-faq__item {
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-faq__ribbon02 {
  position: absolute;
  right: 0px;
  top: -80px;
}

.c-faq__ribbon010 {
  position: absolute;
  right: 0px;
  top: -140px;
}

.c-faq__content {
  line-height: 1.875;
  width: 100%;
  max-width: 1440px;
}

.c-faq__accordion {
  margin-bottom: 30px;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid var(--base-lightBlue);
  background-color: var(--base-white);
  width: 100%;
}

.c-faq__accordion-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.c-faq__accordion-header:hover {
  opacity: 0.7;
}

.c-faq__icon-box {
  flex-shrink: 0;
}

.c-faq__accordion-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-faq__accordion-toggle::before,
.c-faq__accordion-toggle::after {
  content: "";
  position: absolute;
  background-color: var(--base-lightBlue);
  transition: transform 0.3s ease;
}

.c-faq__accordion-toggle::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-faq__accordion-toggle::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-faq__accordion-toggle.active::after {
  transform: translate(-50%, -50%) scale(0);
}

.c-faq__accordion-inner {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid var(--base-lightBlue);
  opacity: 0;
  box-sizing: border-box;
  transform: translateZ(0);
  transition: none;
}

.c-faq__accordion-inner-open {
  max-height: 1000px;
  opacity: 1;
  padding: 20px 0px;
  border-top: 1px solid var(--base-lightBlue);
}

.c-faq__accordion-inner-opening {
  animation: slideDown 0.4s ease forwards;
}

.c-faq__accordion-inner.closing {
  animation: slideUp 0.4s ease forwards;
}

.c-faq__container {
  width: 100%;
}

.c-faq__accordion-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.c-faq__accordion-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

.c-faq__accordion-box p {
  margin-top: 2px;
  line-height: 2.1;
}

.c-faq__accordion-header p {
  font-weight: 700;
}

.c-faq__accordion-box img {
  flex-shrink: 0;
  height: auto;
}

.c-faq__accordion p {
  line-height: 1.875;
}

/* 以下の .c-faq__container__toggle ルールは下部で定義（重複排除） */
@keyframes slideDown {
  0% {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top-width: 0;
  }
  1% {
    border-top-width: 1px;
  }
  30% {
    opacity: 0.3;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    max-height: 500px;
    opacity: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top-width: 1px;
  }
}
@keyframes slideUp {
  0% {
    max-height: 500px;
    opacity: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top-width: 1px;
  }
  30% {
    opacity: 0.7;
  }
  70% {
    opacity: 0.3;
    border-top-width: 1px;
  }
  99% {
    border-top-width: 1px;
  }
  100% {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top-width: 0;
  }
}
.c-faq__break {
  display: block;
}

.c-faq__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.c-faq__container__toggle {
  display: none;
}

.c-faq__container__toggle + .c-faq__accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  transition: opacity 0.3s ease;
}

.c-faq__container__toggle + .c-faq__accordion-header:hover {
  opacity: 0.7;
}

.c-faq__container__toggle ~ .c-faq__accordion-inner {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  border-top-width: 0;
  border-top: 1px solid var(--base-lightBlue);
  box-sizing: border-box;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.c-faq__container__toggle:checked ~ .c-faq__accordion-inner {
  max-height: 1000px;
  opacity: 1;
  padding: 20px 0;
  border-top-width: 1px;
}

.c-faq__container__toggle:checked ~ .c-faq__accordion-header .c-faq__accordion-toggle::after {
  transform: translate(-50%, -50%) scale(0);
}

@media screen and (max-width: 767px) {
  .c-faq {
    padding: 50px 20px;
  }
  .c-faq__item {
    padding: 50px 20px;
  }
  .c-faq__content {
    gap: 30px;
  }
  .c-faq__icon__q {
    width: 30px;
    height: auto;
  }
  .c-faq__icon__a {
    width: 30px;
    height: auto;
  }
  .c-faq__accordion-box {
    gap: 10px;
  }
  .c-faq__accordion {
    margin-bottom: 20px;
  }
  .c-faq__container__toggle--pc ~ .c-faq__accordion-inner {
    max-height: 0;
    opacity: 0;
    padding: 0;
    border-top-width: 0;
  }
}
.c-faq {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}

.c-faq__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.c-btn__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  gap: 15px;
  width: fit-content;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
}

.c-btn__nav__item {
  border: 1px solid var(--base-darkBlueGray);
  background-color: var(--base-white);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--base-darkBlueGray);
  font-weight: 700;
  font-size: var(--fs-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
  min-width: 130px;
  transition: all 0.3s ease-in-out;
  flex-wrap: wrap;
  cursor: pointer;
  flex: 0 0 auto;
}

.c-btn__nav__item:hover {
  background-color: var(--base-lightBg);
}

.c-btn__nav__item.is-active {
  background-color: var(--base-darkBlueGray);
  color: var(--text-white);
  border: 1px solid var(--base-darkBlueGray);
}

.c-btn__nav__item.is-active img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(30deg) brightness(110%) contrast(101%);
}

@media screen and (max-width: 767px) {
  .c-btn__nav {
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  .c-btn__nav__item {
    padding: 10px 7px;
    font-size: var(--fs-sm);
    min-width: 100px;
  }
}
.c-pager1 {
  display: flex;
  justify-content: center;
  margin: 0px 0 30px;
  align-self: flex-end;
  justify-self: flex-end;
  width: fit-content;
}

.c-pager1__list {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  list-style: none;
}

.c-pager1__link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--base-lightBlue);
  background: white;
  color: var(--base-lightBlue);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-base);
  transition: all 0.3s ease;
}

.c-pager1__link:hover:not(.disabled):not(.active):not(.is-active) {
  background: var(--base-lightBlue);
  color: white;
}

.c-pager1__link.active,
.c-pager1__link.is-active {
  background: var(--base-lightBlue);
  color: white;
  border-color: var(--base-lightBlue);
}

.c-pager1__link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .c-pager1 {
    margin: 20px 0 30px;
  }
}
.c-column {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 16px;
  background-image: url("../img/top/bg_column.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.c-column__container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.c-column__box-header {
  display: flex;
  flex-direction: row;
  gap: 75px;
  align-items: center;
}

.c-column__sub-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.c-column__sub-text__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.c-column__sub-title {
  font-weight: 700;
  font-size: var(--fs-xl);
}

.c-column__sub-desc {
  line-height: 2;
}

.c-column__date {
  font-weight: 700;
  color: var(--text-lightBlue);
}

.c-column__item-title {
  font-size: var(--fs-sm2);
}

.c-column__item-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 24px 30px;
}

.c-column__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 60px;
  column-gap: 40px;
}

.c-column__item {
  width: 100%;
  background-color: var(--base-white);
}

.c-column__item a {
  transition: 0.3s;
}

.c-column__item a:hover {
  opacity: 0.7;
}

.c-column__item img {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .c-column__grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-column {
    padding: 50px 16px;
    background-image: url("../img/top/bg_column_sp.webp");
  }
  .c-column__container {
    gap: 20px;
  }
  .c-column__box-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .c-column__sub-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 0px;
  }
  .c-column__box-header .mt-50 {
    margin-top: 0px;
  }
  .c-column__grid .c-column__item:nth-child(n+5) {
    display: none;
  }
  .c-column__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 15px;
  }
  .c-column__item-title {
    font-size: 0.6875rem;
  }
  .c-column__item-info {
    padding: 15px 15px;
    gap: 10px;
  }
  .c-section__sub-text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .c-column__item-info {
    padding: 15px 10px;
  }
  .c-shop__sub-desc {
    margin-top: 10px;
  }
}
.c-section__sub-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.c-section--light-blue-padded {
  padding-top: 100px;
  padding-bottom: 100px;
}

.c-section__content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.c-section__header-row {
  display: flex;
  align-items: center;
}

.c-section__stack-100 {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.c-section__stack-50 {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.c-section__stack-40 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.c-flex-gap-4 {
  display: flex;
  gap: 1rem;
}

.c-flex-col-gap-4 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-flex-gap-3 {
  display: flex;
  gap: 0.75rem;
}

.c-flex-gap-30 {
  display: flex;
  gap: 30px;
}

.c-flex-gap-50 {
  display: flex;
  gap: 50px;
}

.c-flex-col-centered-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.c-flex-col-centered-22 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.c-flex-col-centered-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.c-flex-col-centered-25 {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.c-flex-col-start-10 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.c-flex-row-centered-10 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.c-flex-col-gap-2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-flex-col-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1 1 0%;
}

.c-flex-col-gap-3 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.c-flex-col-gap-15 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.c-flex-col-start-30 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

.c-flex-col-start-60 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  width: 100%;
}

.c-flex-col-start-62 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 62px;
  width: 100%;
}

.c-flex-col-centered-15 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.c-card-white-centered {
  background-color: var(--base-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 70px 40px;
  gap: 25px;
  flex: 1 1 0%;
}

.c-card-white-flex1 {
  display: flex;
  flex-direction: column;
  background-color: var(--base-white);
  flex: 1 1 0%;
}

.c-card-white-content {
  background-color: var(--base-white);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 70px;
  padding-bottom: 40px;
}

.c-bg-lightBlue-full {
  background-color: var(--base-lightBlue);
  width: 100%;
}

.c-bg-gray-full {
  background-color: var(--base-gray);
  width: 100%;
}

.c-bg-white-full {
  width: 100%;
  background-color: var(--base-white);
}

.c-label-lightBlue {
  background-color: var(--base-lightBlue);
  padding: 10px;
  font-weight: 600;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-badge-white {
  background-color: var(--base-white);
  width: fit-content;
  padding: 20px 30px;
}

.c-badge-white-sm {
  background-color: var(--base-white);
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-bar-gray {
  background-color: var(--base-gray);
  width: 100%;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-row-mb-100 {
  width: 100%;
  display: flex;
  margin-bottom: 100px;
}

.c-section--white-padded {
  padding-top: 100px;
  padding-bottom: 100px;
}

.c-section--light-blue-padded-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.c-tag-grayBlue {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--base-grayBlue);
  width: fit-content;
  padding: 10px 50px;
}

.c-badge-gray {
  background-color: var(--base-gray);
  width: fit-content;
  padding: 30px;
}

.c-recommended__btn {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 10px;
}

.c-recommended__btn-text {
  font-family: var(--font-outfit);
}

.c-nav-divider {
  display: block;
  width: 1px;
  height: 40px;
  background-color: var(--base-lightBlue);
}

@media screen and (max-width: 767px) {
  .c-nav-divider {
    height: 30px;
  }
}
.c-section__sub-text--sm-gap {
  gap: 0.75rem;
}

.c-section__header-row--sm-gap {
  gap: 0.75rem;
}

.c-section__header-row--md-gap {
  gap: 1rem;
}

.c-section__header-row--lg-gap {
  gap: 70px;
}

@media screen and (max-width: 767px) {
  .c-section--light-blue-padded {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .c-section--white-padded {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .c-section__sub-text {
    margin-top: 0;
  }
}
.c-toc {
  width: 100%;
  max-width: 900px;
  border: 1px solid var(--base-lightMintBorder);
  background: var(--base-white);
}

.c-toc__header {
  background: var(--base-lightBlue);
  padding: 12px 20px;
  text-align: center;
  width: fit-content;
  min-width: 240px;
}

.c-toc__title {
  font-size: var(--fs-sm2);
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: 0.1em;
}

.c-toc__body {
  padding: 40px 40px 60px;
}

.c-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-toc__item {
  border-bottom: 1px solid var(--base-mintBg);
}

.c-toc__item:last-child {
  border-bottom: none;
}

.c-toc__link {
  display: flex;
  align-items: baseline;
  padding: 11px 0;
  text-decoration: underline;
  color: var(--base-darkText);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.6;
  transition: color 0.2s;
}

.c-toc__link:hover {
  color: var(--base-lightBlue);
}

.c-toc__num {
  font-size: var(--fs-base);
  color: var(--base-lightBlue);
  font-weight: 500;
  min-width: 18px;
  flex-shrink: 0;
  text-decoration: none;
}

.c-toc__num,
.c-toc__subnum {
  width: 30px;
  text-decoration: none;
}

.c-toc__text {
  flex: 1;
}

.c-toc__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-toc__subitem {
  border-top: 1px solid var(--base-mintBg);
}

.c-toc__sublink {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0 10px 0;
  color: var(--base-darkText);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.6;
  transition: color 0.2s;
}

.c-toc__link,
.c-toc__sublink {
  text-decoration: none;
}

.c-toc__text,
.c-toc__subtext {
  text-decoration: underline;
}

.c-toc__sublink:hover {
  color: var(--base-lightBlue);
}

.c-toc__subnum {
  font-size: var(--fs-base);
  color: var(--base-lightBlue);
  font-weight: 500;
  min-width: 36px;
  flex-shrink: 0;
}

.c-toc__subtext {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .c-toc {
    max-width: 100%;
  }
  .c-toc__header {
    min-width: 100%;
    text-align: center;
  }
  .c-toc__body {
    padding: 20px 16px 30px;
  }
  .c-toc__link,
  .c-toc__sublink {
    font-size: var(--fs-sm);
  }
  .c-toc__num,
  .c-toc__subnum {
    font-size: var(--fs-sm);
  }
  .c-toc__subnum {
    min-width: 28px;
  }
}
@media screen and (max-width: 600px) {
  .c-toc__body {
    padding: 20px 20px 24px;
  }
  .c-toc__link,
  .c-toc__sublink {
    font-size: var(--fs-base);
  }
}
.c-icon-hover--lightblue {
  transition: filter 0.3s ease;
}

.c-icon-hover--lightblue:hover {
  filter: invert(82%) sepia(28%) saturate(512%) hue-rotate(128deg) brightness(102%) contrast(83%);
}

.c-breadcrumb {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-breadcrumb-home {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-breadcrumb-separator {
  font-size: var(--fs-base);
  color: var(--text-lightBlue);
}

.c-breadcrumb-link {
  color: var(--text-white);
  font-size: 0.775rem;
  font-weight: 300;
}

.c-breadcrumb-link:hover {
  color: var(--base-lightBlue);
  transition: all 0.3s ease-in-out;
}

.c-breadcrumb--page {
  top: 140%;
  width: 90%;
}

@media screen and (max-width: 768px) {
  .c-breadcrumb {
    font-size: var(--fs-2xs);
    position: relative;
    margin-top: auto;
    padding-bottom: 1.25rem;
  }
  .c-breadcrumb--page {
    top: auto;
  }
}
.c-dr-amazones__container {
  width: 100%;
  max-width: 1920px;
  margin: 0px auto;
  position: relative;
}

.c-dr-amazones__section {
  z-index: 2;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--base-white);
  padding: 60px 77px;
  width: 100%;
  max-width: 1000px;
}

.c-dr-amazones__triangle {
  position: absolute;
  right: 0px;
  top: 0px;
}

.c-dr-amazones__ribbon-sp {
  display: none;
}

.c-dr-amazones__container h2 {
  line-height: 50px;
  font-family: var(--font-outfit);
  font-size: var(--fs-6xl);
}

@media screen and (max-width: 1700px) {
  .c-dr-amazones__container {
    flex-direction: column;
  }
  .c-dr-amazones__section {
    position: relative;
    align-self: end;
    margin-top: 100px;
  }
  .c-dr-amazones__container {
    max-height: 1000px;
  }
  .c-dr-amazones__pic {
    width: 100vw;
  }
}
@media screen and (max-width: 800px) {
  .c-dr-amazones__container h2 {
    font-size: var(--fs-4xl2);
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .c-dr-amazones__section {
    width: 95%;
  }
  .c-dr-amazones__body,
  .c-dr-amazones__inner {
    gap: 20px;
  }
  .c-dr-amazones__section {
    padding: 30px;
  }
  .c-dr-amazones__label {
    width: 295px;
    height: auto;
  }
  .c-dr-amazones__triangle {
    width: 120px;
    height: auto;
  }
  .c-dr-amazones__btn {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .c-dr-amazones__pic {
    width: 100vw;
    transform: scale(1.4);
    object-position: 0 -20px;
    margin-top: 40px;
  }
}
.c-campaign-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.c-campaign-block__header {
  padding: 2rem 0;
  border-bottom: 1px solid var(--base-lightBlue);
}

.c-campaign-block__header p {
  font-size: var(--fs-xl);
  font-weight: 500;
  line-height: 2;
}

.c-campaign-block__header span {
  font-size: var(--fs-xl);
  color: var(--text-lightBlue);
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .c-campaign-block__header p,
  .c-campaign-block__header span {
    font-size: var(--fs-base);
    line-height: 1.7;
  }
}
.c-onlineshop__text-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: white;
  padding: 3rem;
  box-sizing: border-box;
  position: absolute;
  width: 50dvw;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.c-onlineshop__img-pattern {
  position: absolute;
  top: 0%;
  right: 0%;
  width: 20%;
  height: auto;
  z-index: 1;
}

.c-onlineshop__title {
  font-family: var(--font-outfit);
  font-weight: 400;
  font-size: var(--fs-6xl);
  line-height: 1em;
}

.c-onlineshop__subtitle {
  font-weight: 600;
  line-height: 1.5em;
}

.c-onlineshop__text {
  line-height: 1.5em;
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .c-onlineshop__text-container {
    padding: 2rem;
  }
}
@media (max-width: 1024px) {
  section.u-relative:has(.c-onlineshop__text-container) {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
  }
  section.u-relative:has(.c-onlineshop__text-container) > img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center 40%;
  }
  .c-onlineshop__text-container {
    position: relative;
    width: 100%;
    transform: none;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    top: auto;
    right: auto;
    overflow: hidden;
  }
  .c-onlineshop__title {
    font-size: var(--fs-xl2);
  }
  .c-onlineshop__text-container .c-section__stack-40 {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .c-onlineshop__img-pattern {
    height: 15%;
    width: auto;
  }
}
.c-phone-mockup {
  position: relative;
  z-index: 2;
}

.c-phone-mockup__img {
  position: relative;
  z-index: 2;
  display: block;
  height: 33.333vw;
  width: auto;
}

.c-phone-mockup__video {
  position: absolute;
  top: 2%;
  left: 5.5%;
  width: 89%;
  height: 95.5%;
  object-fit: fill;
  z-index: 1;
  border-radius: 1.5625vw;
  background-color: var(--base-lightBlue);
}

.c-card-label {
  background-color: var(--base-lightBlue);
  color: var(--text-white);
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
  padding: 10px 40px;
  min-width: 240px;
  white-space: nowrap;
}

.c-card-label--red {
  background-color: var(--base-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.c-card-label--block {
  position: static;
  width: 100%;
  min-width: auto;
  padding: 15px 0;
  white-space: normal;
}

.c-card-label--subheader {
  position: static;
  width: 15rem;
  min-width: auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
}

@media screen and (max-width: 767px) {
  .c-card-label {
    min-width: 200px;
    font-size: var(--fs-base);
    padding: 8px 0;
  }
  .c-card-label--block {
    min-width: auto;
  }
}
.c-step-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
}

.c-step-card__icon {
  width: 5.625rem;
  height: 5.625rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: var(--base-lightBlue);
}

.c-step-card__title {
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  gap: 1rem;
}

.c-step-card__heading {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--text-lightBlue);
}

.c-step-card__subtitle {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-black1);
}

.c-step-card__body {
  font-weight: 500;
  padding: 1.5rem 2.5rem;
  box-sizing: border-box;
  line-height: 2;
}

.c-faq-ribbon {
  position: absolute;
  top: -5%;
  right: -10%;
  width: 82vw;
  height: auto;
  pointer-events: none;
  overflow: hidden;
}

.c-speak-person {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.c-speak-person__image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-speak-person__bubble {
  position: absolute;
  width: auto;
  height: auto;
  z-index: 1;
}

.c-speak-person__person {
  width: auto;
  height: 25rem;
  object-fit: contain;
}

.u-bg-gray {
  background-color: var(--base-gray);
}

.u-bg-white {
  background-color: var(--base-white);
}

.u-bg-lightBlue {
  background-color: var(--base-lightBlue);
}

.u-bg-red {
  background-color: var(--base-red);
}

.u-bg-peach {
  background-color: var(--base-peach);
}

.u-bg-brown {
  background-color: var(--base-brown);
}

.u-text-black1 {
  color: var(--text-black1);
}

.u-text-white {
  color: var(--text-white);
}

.u-text-lightBlue {
  color: var(--text-lightBlue);
}

.u-text-red {
  color: var(--text-red);
}

.u-text-peach {
  color: var(--text-peach);
}

.u-text-brown {
  color: var(--text-brown);
}

.u-text-lightPink {
  color: var(--text-lightPink);
}

.u-text-pink {
  color: var(--base-pink);
}

.u-font-outfit {
  font-family: var(--font-outfit);
}

.u-font-zen {
  font-family: var(--font-zen);
}

.u-cursor-pointer {
  cursor: pointer;
}

.u-text-link {
  color: var(--text-lightBlue);
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: 0.3s;
}

.u-text-link:hover {
  opacity: 0.7;
}

.u-text-nowrap {
  white-space: nowrap;
}

.u-block {
  display: block;
}

.u-flex {
  display: flex;
}

.u-grid {
  display: grid;
}

.u-relative {
  position: relative;
}

.u-absolute {
  position: absolute;
}

.u-absolute-top5 {
  position: absolute;
  top: 5%;
}

.u-z-10 {
  z-index: 10;
}

.u-flex-col {
  flex-direction: column;
}

.u-flex-1 {
  flex: 1 1 0%;
}

.u-grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.u-text-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-fs-12 {
  font-size: 0.75rem;
}

.u-fs-14 {
  font-size: 0.875rem;
}

.u-fs-15 {
  font-size: 0.9375rem;
}

.u-fs-18 {
  font-size: 1.125rem;
}

.u-fs-20 {
  font-size: 1.25rem;
}

.u-fs-24 {
  font-size: 1.5rem;
}

.u-fs-25 {
  font-size: 1.5625rem;
}

.u-fs-30 {
  font-size: 1.875rem;
}

.u-fs-36 {
  font-size: 2.25rem;
}

.u-fs-39 {
  font-size: 2.4375rem;
}

.u-fs-46 {
  font-size: 2.875rem;
}

.u-fs-48 {
  font-size: 3rem;
}

.u-fs-60 {
  font-size: 3.75rem;
}

.u-fs-70 {
  font-size: 4.375rem;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-700 {
  font-weight: 700;
}

.u-fw-800 {
  font-weight: 800;
}

.u-lh-100 {
  line-height: 1;
}

.u-lh-150 {
  line-height: 1.5;
}

.u-lh-160 {
  line-height: 1.6;
}

.u-lh-180 {
  line-height: 1.8;
}

.u-lh-200 {
  line-height: 2;
}

.u-lh-210 {
  line-height: 2.1;
}

.u-py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.u-mt-5 {
  margin-top: 5px;
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mt-18 {
  margin-top: 18px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mt-25 {
  margin-top: 25px;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mt-60 {
  margin-top: 60px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-mb-300 {
  margin-bottom: 300px !important;
}

@media screen and (max-width: 767px) {
  .u-mb-sp50 {
    margin-bottom: 50px !important;
  }
}
.u-ml-4 {
  margin-left: 4px;
}

.u-ml-20 {
  margin-left: 20px;
}

.u-ml-40 {
  margin-left: 40px;
}

.u-ml-auto {
  margin-left: auto;
}

.u-mr-5 {
  margin-right: 5px;
}

.u-mr-10 {
  margin-right: 10px;
}

.u-mr-auto {
  margin-right: auto;
}

.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.u-my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.u-w-full {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .u-md-block {
    display: block;
  }
  .u-md-fs-16 {
    font-size: 1rem;
  }
  .u-md-fs-20 {
    font-size: 1.25rem;
  }
  .u-md-fs-50 {
    font-size: 3.125rem;
  }
  .u-md-mt-20 {
    margin-top: 20px;
  }
  .u-md-mt-70 {
    margin-top: 70px;
  }
}
.u-sm-block {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-sm-block {
    display: block;
  }
  .u-sm-py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.u-display-sp {
  display: none;
}

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

.u-display-desk {
  display: block;
}

.u-lg-block {
  display: block;
}

.u-max-width {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}

.u-max-width--content {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 1024px) {
  .u-max-width {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .u-md-block {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-display-sp {
    display: block;
  }
  .u-display-pc {
    display: none;
  }
  .u-display-desk {
    display: none;
  }
  .u-lg-block {
    display: none;
  }
  .u-md-block {
    display: none;
  }
  .u-max-width {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
