@charset "UTF-8";

/* =====================================================
   Project： Studio Tsukuru.lab Official Site
   Author：  * ੈ♡‧₊˚
   Date：    2026.03.03
   Version： 1.0.0
   Description： Programming School Landing Page
   License： (c) 2026 Tsukuru Design Inc. All Rights Reserved.
   ===================================================== */

   
/* =====================================================
   Common / Base
   ===================================================== */
:root {
  --color-txt-main: #3e3a39;
  --color-txt-gray: #b5b5b7;
  --color-txt-white: #ffffff;
  --color-txt-navy: #4b4d8b;
  --color-txt-lavender: #af8fea;
  --color-txt-pink: #ba70aa;
  --color-txt-bright-pink: #d463b2;
  --color-txt-orchid-pink: #b5739d;
  --color-txt-red-brown: #b66061;
  --color-txt-deep-brown: #6b392f;

  --color-bg-dec-main: #3e3a39;
  --color-bg-base-gray: #f5f5f5;
  --color-bg-base-white: #ffffff;
  --color-bg-base-beige: #eeede9;
  --color-bg-base-ivory: #fbf6f0;
  --color-bg-base-light-sand: #f2f0eb;
  --color-bg-base-pale: #fef7f2;
  --color-bg-base-navy: #4b4d8b;
  --color-bg-base-leaf-green: #b5cc33;
  
  --color-bg-dec-purple: #af8fea;
  --color-bg-dec-pale-pink: #ffecf5;
  --color-bg-dec-green: #b3d26b;
  --color-bg-dec-mint: #8ccbb5;
  --color-bg-dec-blue: #81bde5;
  --color-bg-dec-lavender: #b8a1ca;
  --color-bg-dec-deep-green: #499185;
  --color-bg-dec-accent-pink: #ba70aa;
  --color-bg-dec-nuance-gray: #f2f0ed;
  --color-bg-dec-pale-green: #e9f2d3;
  --color-bg-dec-pale-mint: #ddf0e9;
  --color-bg-dec-pale-blue: #daecf8;
  --color-bg-dec-lavender-mist: #fffbff;
  --color-bg-dec-pale-purple: #eae3f0;
  --color-bg-dec-sand: #c3b292;

  --color-border-white: #ffffff;
  --color-border-gray: #b5b5b7;
  --color-border-green: #b3d26b;
  --color-border-mint: #8ccbb5;
  --color-border-blue: #81bde5;
  --color-border-pink: #ba70aa;
  --color-border-gold: #d0a074;
  --color-border-bright-pink: #d463b2;
  --color-border-red-brown: #b46061;
  --color-border-light-gray: #e4e4e4;
  --color-border-light-pink: #ffe3e5;

  --color-cta-grad-start: #ed8d9a;
  --color-cta-grad-end: #8ec7d3;
  --color-cta-yellow: #EBFF00;
  --color-cta-green: #06C755;
  --color-cta-bright-green: #27c543;
  --grad-cta: linear-gradient(135deg, var(--color-cta-grad-start), var(--color-cta-grad-end));
  --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);

  --color-marker-pink: rgba(216, 138, 179, 0.3);
  --color-marker-purple: rgba(175, 154, 203, 0.3);
  --marker-size: 60%;

  --header-height-pc: 5rem;
  --header-height-tab: 5.5rem;
  --header-height-sp: 3.75rem;
  --fixed-nav-height: 4.375rem;
  --content-width: 61.25rem;
  --inner-padding-pc: 2.5rem;
  --inner-padding-sp: 1.25rem;

  --font-base: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-sic: "Sawarabi Mincho", serif;
  --font-inter: "Inter", sans-serif;
  --font-jost: "Jost", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: var(--font-base);
  color: var(--color-txt-main);
  line-height: 1.6;
  background-color: var(--color-bg-base-white);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

button {
  font-family: inherit;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  appearance: none;
  border: none;
  padding: 0;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

[id] {
  scroll-margin-top: var(--header-height-sp);
}

@media (min-width: 768px) {
  [id] {
    scroll-margin-top: var(--header-height-tab);
  }
}

@media (min-width: 1024px) {
  [id] {
    scroll-margin-top: var(--header-height-pc);
  }
}

/* =====================================================
   Common Components： Gradient Shine Button
   ===================================================== */
.c-btn-grad {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-base);
  font-weight: 500;
  color: var(--color-txt-white) !important;
  line-height: 1;
  text-decoration: none;
  background: var(--grad-cta);
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  border-radius: 9999px;
}

.c-btn-grad:hover {
  opacity: 0.8;
}

.c-btn-grad::before {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  content: "";
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  animation: shine 3s infinite;
  transform: skewX(-25deg);
}

.c-btn-grad::after {
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 2rem;
  content: "";
  display: block;
  transition: right 0.3s ease;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.c-btn-grad:hover {
  opacity: 0.9;
  transform: none !important;
}

.c-btn-grad:hover::after {
  right: 15px;
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;

  }

  20% {
    left: 100%;
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

.l-inner {
  width: 100%;
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--inner-padding-sp);
  padding-left: var(--inner-padding-sp);
}

@media (min-width: 768px) {
  padding-right:var(--inner-padding-pc);

  .l-inner {
    padding-left: var(--inner-padding-pc);
  }
}

/* =====================================================
   Utility： Animations
   ===================================================== */
.u-fade-up {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transform: translateY(30px);
}

.u-fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

.u-delay-100 {
  transition-delay: 0.1s;
}

.u-delay-200 {
  transition-delay: 0.2s;
}

.u-delay-300 {
  transition-delay: 0.3s;
}

.u-delay-400 {
  transition-delay: 0.4s;
}

/* =====================================================
   Layout： Header
   ===================================================== */
.l-header {
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(0);
}

.l-header.is-hide {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.l-header {
  width: 100%;
  height: var(--header-height-sp);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--color-bg-base-white);
}

.l-header__logo {
  width: 11.25rem;
  padding-top: 1rem;
}

.l-header__logo a {
  width: 100%;
  display: block;
}

.l-header__logo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.l-header__nav {
  display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .l-header {
    height: 5.5rem !important;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .l-header__logo {
    width: 13.75rem;
    padding-top: 1.688rem !important;
  }

  .l-header__nav {
    display: none;
  }
}

@media (min-width: 1025px) {
  .l-header {
    width: 100% !important;
    height: 5rem !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
  }

  .l-header__inner {
    width: 100%;
    max-width: 1366px;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
  }

  .l-header__logo {
    width: clamp(11.25rem, 1.857rem + 14.66vw, 14.375rem) !important;
    margin: 0 !important;
    padding-top: 0 !important;
    flex-shrink: 0;
  }

  .l-header__nav {
    display: block !important;
    padding-top: 0 !important;
  }

  .l-header__nav-list {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: clamp(0.938rem, -1.88rem + 4.4vw, 1.875rem) !important;
  }

  .l-header__nav-item {
    white-space: nowrap !important;
  }

  .l-header__nav-item a {
    position: relative;
    font-family: var(--font-serif);
    font-size: clamp(0.813rem, 0.249rem + 0.88vw, 1rem) !important;
    font-weight: 500;
    color: var(--color-txt-main);
    transition: color 0.3s ease;
  }

  .l-header__nav-item a:not(.c-btn-grad):hover {
    color: var(--color-border-pink);
    transform: translateY(-2px);
  }

  .l-header__nav-item a:not(.c-btn-grad)::after {
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    background-color: var(--color-bg-dec-lavender);
    transition: width 0.3s ease;
  }

  .l-header__nav-item a:not(.c-btn-grad):hover::after {
    width: 100%;
  }

  .l-header__nav-item .c-btn-grad {
    font-family: var(--font-base) !important;
    font-size: clamp(0.813rem, 0.437rem + 0.59vw, 0.938rem) !important;
    font-weight: 500 !important;
    padding: 0.75rem 2.813rem 0.75rem 2.188rem !important;
  }

  .l-header .c-btn-grad {
    width: auto !important;
    max-width: none !important;
    display: inline-flex !important;
    padding: 0.75rem 2.813rem 0.75rem 2.188rem !important;
  }
}

/* =====================================================
   Layout： Fixed Navigation (Bottom)
   ===================================================== */
.p-fixed-nav {
  width: 100%;
  height: var(--fixed-nav-height);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--color-bg-base-navy);
}

.p-fixed-nav__list {
  height: 100%;
  display: flex;
}

.p-fixed-nav__item {
  flex: 1;
}

.p-fixed-nav__item a,
.p-fixed-nav__btn {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.625rem;
  color: var(--color-txt-white);
  text-align: center;
}

.p-fixed-nav__item img {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.25rem;
  object-fit: contain;
}

.p-drawer-overlay {
  width: 100%;
  height: calc(100% - var(--header-height-sp) - var(--fixed-nav-height));
  position: fixed;
  top: var(--header-height-sp);
  left: 0;
  z-index: 850;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.p-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.p-drawer-menu {
  width: 60%;
  height: calc(100% - var(--header-height-sp) - var(--fixed-nav-height));
  position: fixed;
  top: var(--header-height-sp);
  right: -100%;
  z-index: 900;
  background-color: rgba(255, 255, 255, 0.7);
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-drawer-menu.is-open {
  right: 0;
}

.p-drawer-menu__inner {
  height: 100%;
  overflow-y: auto;
}

.p-drawer-nav__item {
  background-color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.p-drawer-nav__item a {
  height: 3.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  line-height: 1.2;
  padding: 0 0.9375rem;
}

.p-drawer-nav__item a::after {
  width: 0.375rem;
  height: 0.375rem;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  content: '';
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid var(--color-txt-main);
  border-right: 1px solid var(--color-txt-main);
}

.p-drawer-nav__item .en {
  font-family: var(--font-jost);
  font-size: 0.625rem;
  font-weight: 300;
  color: var(--color-txt-gray);
  margin-top: 0.125rem;
  letter-spacing: 0.3em;
}

.c-hamburger {
  width: 1.5rem;
  height: 1rem;
  position: relative;
  margin-top: 0.3125rem !important;
  margin-bottom: 0.1875rem !important;
}

.p-fixed-nav__item:last-child .p-fixed-nav__label {
  margin-top: 0.25rem;
}

.c-hamburger span {
  height: 1px;
  position: absolute;
  left: 0;
  background-color: var(--color-bg-base-white);
  transition: all 0.3s ease;
}

.c-hamburger span:nth-child(1) {
  width: 100%;
  top: 0;
}

.c-hamburger span:nth-child(2) {
  width: 75%;
  top: 0.4375rem;
}

.c-hamburger span:nth-child(3) {
  width: 50%;
  top: 0.875rem;
}

.is-open .c-hamburger span {
  width: 100%;
}

.is-open .c-hamburger span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.is-open .c-hamburger span:nth-child(2) {
  opacity: 0;
}

.is-open .c-hamburger span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-fixed-nav {
    display: block !important;
    width: 90% !important;
    max-width: 37.5rem !important;
    height: var(--fixed-nav-height);
    bottom: 1.25rem !important;
    left: 50% !important;
    background-color: var(--color-bg-base-navy);
    overflow: hidden;
    transform: translateX(-50%);
    border-radius: 62.4375rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .p-fixed-nav__item a,
  .p-fixed-nav__btn {
    font-size: 0.6875rem;
  }

  .p-fixed-nav__item img {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.1875rem;
  }

  .p-fixed-nav__list {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.25rem;
    gap: 0.9375rem;
  }

  .p-fixed-nav__item {
    min-width: 5rem;
    flex: 0 1 auto;
  }

  .p-fixed-nav__item:last-child {
    margin-left: 0.625rem;
  }

  .p-drawer-overlay,
  .p-drawer-menu {
    height: calc(100dvh - (5.5rem + (5 - 5.5) * ((100vw - 48rem) / (64.0625 - 48))) - var(--fixed-nav-height) - 1.875rem) !important;
    top: 5.5rem !important;
    border-bottom-left-radius: 1.25rem;
  }

  .p-drawer-nav__item a {
    height: 4.5rem !important;
    padding: 0 1.875rem !important;
  }

  .p-drawer-nav__item a {
    font-size: 1rem !important;
    letter-spacing: 0.05em;
  }

  .p-drawer-nav__item .en {
    font-size: 0.6875rem !important;
    margin-top: 0.25rem;
  }

  .p-drawer-menu__inner {
    padding-bottom: 1.25rem;
  }
}

@media (min-width: 1025px) {
  .p-fixed-nav {
    display: none !important;
  }
}

/* =====================================================
   Section： Hero
   ===================================================== */
.p-hero {
  width: 100%;
  height: calc(100dvh - var(--fixed-nav-height));
  position: relative;
  background-color: var(--color-bg-dec-pale-blue);
  overflow: hidden;
}

.p-hero__img {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.p-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.p-hero__future-elements {
  width: 110%;
  position: absolute;
  top: 5rem;
  right: -16%;
  z-index: 2;
  pointer-events: none;
}

.p-hero__future-elements img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.p-hero__deco-text {
  position: absolute;
  top: 5rem;
  left: clamp(1.25rem, 0.188rem + 4.53vw, 5.625rem);
  z-index: 5;
  font-family: var(--font-jost);
  font-size: clamp(0.625rem, 0.443rem + 0.78vw, 1.375rem);
  font-weight: 300;
  color: var(--color-txt-white);
  line-height: 1.5;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

.p-hero__content {
  position: absolute;
  bottom: 1.25rem;
  left: clamp(1.25rem, 0.188rem + 4.53vw, 5.625rem);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-hero__deco-text span {
  display: block;
  font-size: inherit;
}

.p-hero__cat {
  width: clamp(2.625rem, 1.775rem + 3.62vw, 6.125rem);
  margin-bottom: 0.313rem;
  margin-left: 0;
}

.p-hero__cat img {
  width: 100%;
  height: auto;
  display: block;
}

.p-hero__main-copy {
  width: 15rem;
  margin-bottom: clamp(0.625rem, 0.17rem + 1.94vw, 2.5rem);
}

.p-hero__main-copy img {
  width: 100%;
  height: auto;
  display: block;
}

.p-hero__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.375rem, 0.163rem + 0.91vw, 1.25rem);
}

.p-hero__lead-item {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(0.688rem, 0.49rem + 0.84vw, 1.5rem);
  color: var(--color-txt-white);
  line-height: 1.4;
  background-color: rgba(175, 143, 234, 0.8);
  margin-bottom: 0;
  padding: clamp(0.375rem, 0.125rem + 0.52vw, 0.75rem) clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  letter-spacing: 0.2em;
}

@media screen and (max-aspect-ratio: 1/1.9) {
  body .p-hero__img img {
    object-position: 47% 18% !important;
  }

  body .p-hero__future-elements {
    width: 113% !important;
    top: 9% !important;
    right: -13% !important;
  }

  .p-hero__content {
    bottom: 3rem;
  }

  .p-hero__main-copy {
    width: 17rem;
  }
}

@media (min-width: 768px) {
  .p-hero {
    margin-top: clamp(5.5rem, 7rem + -3.13vw, 5rem) !important;
    height: clamp(26.688rem, -3.854rem + 63.63vw, 72.5rem) !important;
    min-height: 26.688rem !important;
  }

  .p-hero__img img {
    object-position: 75% 15% !important;
  }

  .p-hero__future-elements {
    width: 60% !important;
    position: absolute;
    top: clamp(-0.625rem, 0.309rem + -1.95vw, -0.938rem) !important;
    right: -2% !important;
    z-index: 2;
    pointer-events: none;
  }

  .p-hero__future-elements img {
    width: 96%;
    opacity: 0.85;
  }

  .p-hero__deco-text {
    top: clamp(2.188rem, -0.614rem + 5.84vw, 3.125rem) !important;
    z-index: 5;
  }

  .p-hero__content {
    bottom: clamp(3.75rem, -4.583rem + 17.36vw, 16.25rem);
  }

  .p-hero__cat {
    margin-bottom: clamp(-0.188rem, -0.748rem + 1.17vw, 0rem) !important;
    margin-left: clamp(3.75rem, 0.575rem + 6.61vw, 4.813rem) !important;
  }

  .p-hero__main-copy {
    width: clamp(18.375rem, -0.208rem + 38.72vw, 46.25rem);
  }

  .p-hero__lead-item {
    padding: clamp(0.313rem, -0.248rem + 1.17vw, 0.5rem) !important;
  }
}

@media (min-width: 1025px) {
  .p-hero {
    margin-top: 5rem !important;
    margin-inline: auto;
    max-width: 120rem;
    position: relative;
    overflow: hidden;
  }

  .p-hero__img img {
    object-position: 65% bottom !important;
  }

  .p-hero__future-elements {
    width: clamp(35rem, -3.652rem + 60.34vw, 68.75rem) !important;
    top: -1.4% !important;
    right: 2% !important;
  }

  .p-hero__deco-text {
    top: clamp(3.125rem, 0.978rem + 3.35vw, 5rem) !important;
  }

  .p-hero__deco-text span {
    display: block;
  }

  .p-hero__cat {
    margin-bottom: 0 !important;
    margin-left: clamp(4.813rem, -3.992rem + 13.74vw, 12.5rem) !important;
  }

  .p-hero__lead-item {
    padding: clamp(0.5rem, 0.214rem + 0.45vw, 0.75rem) 1.125rem !important;
  }
}

.p-hero__img,
.p-hero__future-elements,
.p-hero__deco-text,
.p-hero__cat,
.p-hero__main-copy,
.p-hero__lead-item {
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  transform: translateY(20px);
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);

  }
}

.p-hero__img {
  animation-delay: 0.2s;
}

.p-hero__deco-text {
  animation-delay: 0.5s;
}

.p-hero__future-elements,
.p-hero__cat {
  animation-delay: 0.8s;
}

.p-hero__main-copy {
  animation-delay: 1.1s;
}

.p-hero__lead-item:nth-child(1) {
  animation-delay: 1.4s;
}

.p-hero__lead-item:nth-child(2) {
  animation-delay: 1.6s;
}

/* =====================================================
   Section： Concept
   ===================================================== */
.p-concept {
  overflow: hidden;
  padding-top: clamp(1.875rem, 1.756rem + 0.51vw, 2.188rem);
  padding-bottom: clamp(1.875rem, 1.756rem + 0.51vw, 2.188rem);
}

.p-concept__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-concept__list.-mobile {
  width: clamp(18.75rem, 80vw, 25rem);
  display: block;
  line-height: 0;
  margin: 0 auto;
}

.p-concept__list.-mobile img {
  width: 100%;
  height: auto;
  display: block;
}

.p-concept__list.-desktop {
  display: none;
}

.p-concept__cta {
  width: 100%;
  max-width: 26.875rem;
  margin: clamp(0.938rem, 3vw, 2.5rem) auto 0;
}

.p-concept__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--color-bg-base-white);
  border: 1px solid var(--color-border-light-pink);
  border-radius: 0.25rem;
  padding: 1.25rem clamp(1.25rem, 5vw, 3.75rem) clamp(0.75rem, 2vw, 1.25rem);
  margin-inline: auto;
  box-shadow: 0 0 20px rgba(181, 115, 157, 0.2);
}

.p-concept__cta-head {
  width: 100%;
  max-width: 100%;
}

.p-concept__cta-tag {
  width: 100%;
  max-width: 100%;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.875rem, 0.714rem + 0.33vw, 1rem);
  font-weight: 500;
  color: var(--font-base);
  line-height: 1;
  text-align: center;
  background-color: var(--color-bg-dec-pale-pink);
  margin-bottom: 0.313rem;
  letter-spacing: 0.1em;
}

.p-concept__cta-title {
  font-size: clamp(2.25rem, 1.608rem + 1.34vw, 2.75rem);
  font-weight: 600;
  color: var(--font-base);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.p-concept__cta-title span {
  color: var(--color-txt-orchid-pink);
}

.p-concept__cta-text {
  font-size: clamp(0.75rem, 0.509rem + 0.5vw, 0.938rem);
  font-weight: 500;
  color: var(--font-base);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.p-concept__cta-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.p-concept__cta-btn-wrap .c-btn-grad {
  width: 100%;
  height: clamp(3.125rem, 2.888rem + 1.01vw, 3.75rem);
  display: inline-flex;
  font-size: clamp(1rem, 0.839rem + 0.33vw, 1.125rem);
  font-weight: 500;
  margin: 0 auto;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p-concept__list.-mobile {
    display: none !important;
  }

  .p-concept__list.-desktop {
    max-width: 61.25rem;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: clamp(1.25rem, 0.447rem + 1.67vw, 1.875rem);
  }

  .p-concept__item.-main {
    width: clamp(8.813rem, 5.04rem + 7.86vw, 11.75rem);
    margin: 0;
  }

  .p-concept__item.-sub1,
  .p-concept__item.-sub2,
  .p-concept__item.-sub3 {
    width: clamp(7.063rem, 3.049rem + 8.36vw, 10.188rem);
    margin: 0;
  }

  .p-concept__cta {
    width: 100%;
    max-width: 61.25rem;
  }

  .p-concept__cta-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    gap: clamp(1.25rem, 0.777rem + 2.02vw, 2.5rem);
  }

  .p-concept__cta-head,
  .p-concept__cta-btn-wrap .c-btn-grad {
    width: 100%;
  }

  .p-concept__cta-text {
    margin-bottom: 0;
  }
}

@media (min-width: 1025px) {
  .p-concept__list.-mobile {
    display: none;
  }

  .p-concept__cta {
    width: 100% !important;
  }

  .p-concept__cta-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 1366px) {
  .p-concept {
    width: 100%;
    margin: 0 auto;
  }

  .p-concept__item.-main {
    width: 11.75rem !important;
    flex: 0 0 11.75rem;
  }

  .p-concept__item.-sub1,
  .p-concept__item.-sub2,
  .p-concept__item.-sub3 {
    width: 10.188rem !important;
    flex: 0 0 10.188rem;
  }

  .p-concept__item img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* =====================================================
   Section： Corporate Info
   ===================================================== */
.p-corporate-info {
  background-color: var(--color-bg-base-gray);
  overflow: hidden;
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.p-corporate-info.-with-lead .p-corporate-info__lead {
  font-family: var(--font-sic);
  font-size: clamp(0.813rem, 0.728rem + 0.36vw, 1rem);
  font-weight: 400;
  color: var(--color-txt-main);
  line-height: 1.8;
  text-align: center;
  margin-bottom: clamp(0.938rem, 3vw, 1.563rem);
  letter-spacing: 0.1em;
}

.p-corporate-info__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(0.938rem, 0.639rem + 1.28vw, 1.25rem) clamp(0.938rem, 0.938rem + 0vw, 0.938rem);
}

.p-corporate-info__item {
  width: calc(50% - 0.9375rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-corporate-info__item.-tsukuru {
  order: 1;
}

.p-corporate-info__item.-shes {
  order: 2;
}

.p-corporate-info__and.-and-1 {
  width: 100%;
  height: clamp(1.875rem, 5vw, 3.125rem);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: calc(clamp(0.938rem, 0.041rem + 3.83vw, 1.875rem) * -1);
  order: 3;
}

.p-corporate-info__and.-and-2 {
  display: none;
}

.p-corporate-info__item.-main-logo {
  width: 100%;
  margin-top: calc(clamp(1.563rem, 0.666rem + 3.83vw, 2.5rem) * -1);
  order: 4;
}

.p-corporate-info__logo {
  width: 100%;
  height: clamp(3.75rem, 15vw, 5rem);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 0.625rem;
}

.p-corporate-info__logo img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.p-corporate-info__item.-tsukuru .p-corporate-info__logo img {
  height: clamp(2.813rem, 10.5vw, 3.25rem);
}

.p-corporate-info__item.-shes .p-corporate-info__logo img {
  height: clamp(2.938rem, 11vw, 3.375rem);
  transform: scale(1.1);
}

.p-corporate-info__item.-main-logo .p-corporate-info__logo img {
  height: clamp(1.813rem, 6.7vw, 2.125rem);
}

.p-corporate-info__caption {
  font-family: var(--font-serif);
  font-size: clamp(0.563rem, 0.51rem + 0.22vw, 0.688rem);
  color: var(--color-txt-main);
  letter-spacing: 0.25em;
  white-space: nowrap;
}

.p-corporate-info__and img {
  width: clamp(1.25rem, 0.891rem + 1.53vw, 1.625rem);
}

@media (min-width: 768px) {
  .p-corporate-info__list {
    flex-wrap: nowrap;
    justify-content: center;
    margin-left: clamp(0.938rem, -1.471rem + 5.02vw, 2.813rem);
    gap: 0 1.875rem;
  }

  .p-corporate-info.-with-lead .p-corporate-info__lead {
    margin-bottom: 0 !important;
  }

  .p-corporate-info__item,
  .p-corporate-info__and {
    width: auto !important;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin: 0 !important;
    order: unset !important;
  }

  .p-corporate-info__and.-and-1,
  .p-corporate-info__and.-and-2 {
    height: 3.75rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transform: translateY(-18px) !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .p-corporate-info__and img {
    width: 1.5rem !important;
    height: auto !important;
  }

  .p-corporate-info__item.-shes .p-corporate-info__logo img {
    vertical-align: bottom;
    margin-bottom: 0 !important;
  }

  .p-corporate-info__logo {
    height: clamp(3.75rem, 3.08vw + 3rem, 6.25rem);
    margin-bottom: clamp(0.188rem, 1.08vw + 0.25rem, 0.625rem);
  }

  .p-corporate-info__item.-tsukuru .p-corporate-info__logo img {
    height: clamp(3.25rem, 2.2vw + 1.75rem, 3.875rem) !important;
  }

  .p-corporate-info__item.-shes .p-corporate-info__logo img {
    height: clamp(3.313rem, 2.8vw + 1.5rem, 4.313rem) !important;
  }

  .p-corporate-info__item.-main-logo .p-corporate-info__logo img {
    height: clamp(2.063rem, 1.3vw + 1.2rem, 2.625rem) !important;
  }

  .p-corporate-info__caption {
    margin-top: 0;
  }
}

@media (min-width: 1025px) {
  .p-corporate-info.-with-lead .p-corporate-info__lead {
    margin-bottom: 1.25rem !important;
  }

  .p-corporate-info__list {
    gap: 0 clamp(1.25rem, -2.5rem + 7.81vw, 2.5rem);
  }
}

@media (min-width: 1366px) {
  .p-corporate-info.-with-lead .p-corporate-info__lead {
    margin-bottom: 0.313rem !important;
  }

  .p-corporate-info__list {
    gap: 0 2.5rem;
  }

  .p-corporate-info__caption {
    margin-top: 0.313rem;
  }
}

/* =====================================================
   Section： About
   ===================================================== */
.p-about {
  overflow: hidden;
  padding-top: clamp(1.875rem, 1.756rem + 0.51vw, 2.188rem);
  padding-bottom: clamp(1.875rem, 1.756rem + 0.51vw, 2.188rem);
}

.p-about__intro {
  width: 100%;
  height: clamp(15rem, 13.581rem + 6.05vw, 18.75rem);
  position: relative;
  margin-bottom: clamp(1.563rem, 1.25rem + 1.3vw, 3.125rem);
}

.p-about__intro-catch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 0.983rem + 0.61vw, 1.5rem);
  font-weight: 600;
  color: var(--color-txt-pink);
  line-height: 1.8;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.p-about__intro-person {
  position: absolute;
  overflow: hidden;
  border-radius: 50%;
}

.p-about__intro-person.-boy {
  width: clamp(5rem, 4.385rem + 2.62vw, 6.625rem);
  top: 3.125rem;
  left: calc(50% - 8.75rem);
  z-index: 10;
}

.p-about__intro-person.-girl {
  width: clamp(6.125rem, 5.368rem + 3.23vw, 8.125rem);
  top: 9.5rem;
  left: calc(50% + 3.75rem);
  z-index: 10;
}

.p-about__intro-person.-boy img,
.p-about__intro-person.-girl img {
  width: 100%;
}

.p-about__intro.is-active .p-about__intro-person {
  opacity: 1;
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
  transform: translate(0, 0);
}

.p-about__intro.is-active .p-about__intro-person.-boy {
  transform: translate(-20px, 30px);
  animation: float-about 5s ease-in-out infinite;
}

.p-about__intro.is-active .p-about__intro-person.-girl {
  transform: translate(20px, 30px);
  animation: float-about 3.5s ease-in-out infinite;
}

@keyframes float-about {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.dot-item {
    position: absolute;
    z-index: 1;
    animation: floating-dots 7s ease-in-out infinite;
    opacity: 0.7;
}

.-dot1 { top: 5%; left: 10%; width: 30px; animation-delay: 0s; }
.-dot2 { top: 15%; right: 5%; width: 12px; animation-delay: -1.2s; }
.-dot3 { bottom: 5%; left: 40%; width: 20px; animation-delay: -1.8s; }
.-dot4 { top: 40%; left: -2%; width: 22px; animation-delay: -3.6s; }
.-dot5 { bottom: 10%; right: -3%; width: 28px; animation-delay: -0.5s; }
.-dot6 { bottom: 20%; left: 8%; width: 14px; animation-delay: -2.4s; }
.-dot7 { top: 25%; left: 20%; width: 16px; animation-delay: -2.0s; }
.-dot8 { bottom: 45%; right: 15%; width: 40px; animation-delay: -5.5s; }
.-dot9 { top: 10%; left: 45%; width: 11px; animation-delay: -3.2s; }
.-dot10 { top: 60%; right: 12%; width: 10px; animation-delay: -4.8s; }

@keyframes floating-dots {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(8px, -15px) rotate(10deg); }
    66% { transform: translate(-8px, -8px) rotate(-10deg); }
}

.p-about__head {
  text-align: center;
  margin-bottom: clamp(0.938rem, 0.75rem + 0.8vw, 1.875rem);
}

.p-about__title-en {
  display: block;
  font-family: var(--font-jost);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  font-weight: 400;
  color: var(--color-txt-red-brown);
  margin-bottom: 0.313rem;
  margin-left: 0.625rem;
  letter-spacing: 0.4em;
  text-transform: capitalize;
}

.p-about__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.311rem + 0.81vw, 2rem);
  font-weight: 400;
  color: var(--font-base);
  line-height: 1;
}

.p-about__text {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  font-weight: 400;
  color: var(--font-base);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1.25rem;
}

.p-about__problem-img {
    position: relative;
    overflow: visible;
}

.illust-item {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    animation: float-base 6s ease-in-out infinite;
}

.p-about__problem-img {
    position: relative;
    overflow: visible;
}

.p-about__illust-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.illust-item {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    animation: float-base 6s ease-in-out infinite;
}

.-q-left    { top: 15%; left: 22%; width: 6%; animation-delay: -1s; }
.-q-right   { top: 10%; right: 26%; width: 6%; animation-delay: -4s; }
.-window    { top: 8%;  right: 12%; width: 12%; opacity: 0.7; }
.-planet    { top: 24%; left: 8%;   width: 1t%; animation-duration: 9s; }
.-binary    { top: 18%; right: 10%; width: 8%;  animation: float-fade 5s infinite; }
.-chart     { top: 32%; right: 5%;  width: 12%; animation: float-fade 7s infinite -1s; }
.-cone      { top: 29%; left: 44%;  width: 13%; z-index: 11; animation: float-rotate 8s infinite -2.5s; }

.-pz-y      { top: 5%;  left: 45%; width: 9%; animation-name: float-rotate; animation-duration: 7s; }
.-pz-b      { top: 20%; left: 38%; width: 9%; animation-name: float-rotate; animation-delay: -2s; }
.-pz-g      { top: 31%; left: 33%; width: 8%; animation-delay: -5s; }
.-pz-p      { top: 22%; left: 49%; width: 9%;  animation-delay: -3.5s; }

.-sp-purple { top: 20%; left: 30%; width: 4%; animation: twinkle 3s infinite; }
.-sp-pink   { top: 12%; right: 38%; width: 4%; animation: twinkle 4s infinite -1.5s; }
.-st-blue   { top: 11%; left: 8%;  width: 9%; animation: float-base 5s infinite -0.5s; }
.-st-line   { top: 15%; right: 33%; width: 6%; animation: float-base 6s infinite -2.5s; }

.-sh-star {
    top: 5% !important;
    left: 15% !important;
    width: clamp(100px, 15vw, 180px) !important;
    height: auto !important;
    opacity: 0;
    z-index: 20 !important;
    display: block !important;
    animation: slide-star-final 8s linear infinite !important;
}

@keyframes float-base {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float-rotate {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(5px, -10px) rotate(8deg); }
}

@keyframes float-fade {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-10px); opacity: 0.9; }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes slide-star-final {
    0% { transform: translate(-20px, -20px); opacity: 0; }
    10% { opacity: 0.8; }
    30% { transform: translate(20px, 20px); opacity: 0.8; }
    40%, 100% { opacity: 0; }
}

.p-about__deco.-triangle {
  width: 6.25rem;
  position: absolute;
  bottom: -5%;
  left: -8%;
  z-index: 2;
}

.p-about__deco.-dot-line {
  width: 35%;
  max-width: 10rem;
  min-width: 6.875rem;
  position: absolute;
  right: -6%;
  bottom: -5%;
  z-index: 3;
}

.p-about__deco.-triangle img,
.p-about__deco.-dot-line img {
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .p-about__main {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: clamp(2rem, 5vw, 5rem);
  }

  .p-about__content,
  .p-about__visual {
    width: 50%;
    max-width: 28.75rem;
    flex: 1;
  }

  .p-about__intro-deco.-dots {
    left: calc(50% - 22.813rem);
  }

  .p-about__head {
    text-align: left;
  }

  .p-about__text {
    margin-bottom: 0;
  }

  .p-about__deco.-triangle {
    bottom: -0.625rem;
    left: -0.938rem;
  }

  .p-about__deco.-dot-line {
    right: -0.938rem;
    bottom: -0.625rem;
  }
}

@media screen and (min-width: 1025px) {
  .p-about__intro-person.-boy {
    top: 3.125rem;
    left: calc(50% - 11.25rem);
  }

  .p-about__intro-person.-girl {
    top: 9.563rem;
    left: calc(50% + 5.313rem);
  }

  .p-about__intro-deco.-dots {
    top: 8.75rem;
    left: calc(50% - 30.313rem);
  }

  .p-about__intro-deco.-circle {
    left: calc(50% + 8.125rem);
  }

  .p-about__content {
    width: 100%;
  }

  .p-about__head {
    text-align: left;
  }

  .p-about__deco.-triangle {
    width: 7.125rem;
    bottom: -1.25rem;
    left: -2.813rem;
  }

  .p-about__deco.-dot-line {
    width: 9.5rem;
    right: -2.375rem;
    bottom: -1.25rem;
  }

  .p-about__deco.-triangle img,
  .p-about__deco.-dot-line img {
    border-radius: 0;
  }
}

@media screen and (min-width: 1366px) {
  .p-about__intro-person.-boy {
    top: 3.75rem;
    left: calc(50% - 12.5rem);
  }

  .p-about__intro-person.-girl {
    top: 11.25rem;
    left: calc(50% + 6.875rem);
  }

  .p-about__intro-deco.-dots {
    top: 10rem;
    left: calc(50% - 30rem);
  }

  .p-about__intro-deco.-circle {
    left: calc(50% + 10.625rem);
  }

  .p-about__title {
    margin-bottom: 1.875rem;
  }

  .p-about__deco.-triangle {
    width: 7.813rem;
    bottom: -1.563rem;
    left: -2.813rem;
  }

  .p-about__deco.-dot-line {
    width: 10rem;
    right: -2.5rem;
    bottom: -1.563rem;
  }
}

/* =====================================================
   Section： Problem
   ===================================================== */
.p-problem {
  padding: clamp(1.875rem, 1.45rem + 1.8vw, 3.125rem) 0 0.625rem;
}

.p-problem__head {
  text-align: center;
  padding-top: clamp(0.625rem, 0.41rem + 0.9vw, 1.25rem);
  padding-bottom: 1.875rem;
}

.p-problem__body {
  background-color: var(--color-bg-base-light-sand);
  padding-top: clamp(2.188rem, 1.87rem + 1.35vw, 3.125rem);
  padding-bottom: clamp(2.188rem, 1.87rem + 1.35vw, 3.125rem);
}

.p-problem__title {
  font-family: var(--font-base);
  font-size: clamp(1.125rem, 1.049rem + 0.32vw, 1.438rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: clamp(0.188rem, 0.04rem + 0.63vw, 0.625rem);
  font-feature-settings: "palt";
  letter-spacing: clamp(0.25em, 0.4vw, 0.5em);
}

.p-problem__sub-title {
  font-size: clamp(1.125rem, 1.049rem + 0.32vw, 1.438rem);
  color: var(--color-txt-main);
  line-height: 1.9;
  letter-spacing: clamp(0.25em, 0.4vw, 0.5em);
}

.p-problem__list {
  max-width: clamp(20rem, 13.6rem + 27vw, 38.75rem);
  margin: 0 auto;
  padding-top: 0;
  padding-right: 1.25rem;
  padding-bottom: 0;
  padding-left: clamp(1.875rem, 1.45rem + 1.8vw, 3.125rem);
}

.p-problem__item {
  position: relative;
  font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: clamp(1.25rem, 1.04rem + 0.9vw, 1.875rem);
  padding-left: clamp(2.813rem, 2.5rem + 1.35vw, 3.75rem);
  white-space: nowrap;
  list-style: none;
}

.p-problem__item::before {
  width: clamp(2rem, 1.79rem + 0.9vw, 2.625rem);
  height: clamp(1.875rem, 1.66rem + 0.9vw, 2.5rem);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: url("../images/problem/icn-check-purple.svg") no-repeat center center / contain;
}

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

.p-problem__item:nth-child(3) {
  padding-top: 0.25rem;
}

.u-dot {
  position: relative;
  display: inline-block;
  font-family: var(--font-base);
  font-size: clamp(1.563rem, 1.471rem + 0.39vw, 1.938rem);
  font-weight: 500;
  line-height: 1;
}

.u-dot::before {
  width: 0.438rem;
  height: 0.438rem;
  position: absolute;
  top: -0.75rem;
  left: 45%;
  z-index: 10;
  content: "";
  background-color: var(--color-bg-dec-accent-pink);
  transform: translateX(-50%);
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .p-problem__list {
    transform: translateX(5px);
  }

  .p-problem__item {
    padding-top: 0.313rem;
  }
}

/* =====================================================
   Section： Features
   ===================================================== */
.p-features {
  padding-top: clamp(1.875rem, 1.756rem + 0.51vw, 2.188rem);
  padding-bottom: clamp(1.875rem, 1.756rem + 0.51vw, 2.188rem);
}

.p-features__head {
  text-align: center;
  margin-bottom: clamp(1.25rem, 1.012rem + 1.01vw, 1.875rem);
}

.p-features__main-title {
  font-size: clamp(1.625rem, 1.506rem + 0.51vw, 1.938rem);
  font-weight: 700;
  color: var(--font-base);
  line-height: 1.2;
  margin-bottom: 0.938rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.p-features__sub-title-img {
  width: 100%;
  max-width: clamp(20.938rem, 17.039rem + 16.64vw, 31.25rem);
  display: inline-block;
}

.p-features__sub-title-img img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.p-features__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: clamp(2.5rem, 2.263rem + 1.01vw, 3.125rem);
}

.p-features__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-features__card-img {
  width: 100%;
  max-width: 20.938rem;
  position: relative;
  line-height: 0;
  margin: 0 auto clamp(0.313rem, -0.161rem + 2.02vw, 1.563rem);
}

.p-features__card-img picture,
.p-features__card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-features__img-text {
  position: absolute;
  bottom: 14%;
  left: 1.25rem;
  z-index: 2;
  font-size: clamp(2.375rem, 2.316rem + 0.25vw, 2.5rem);
  font-weight: 800;
  color: var(--color-txt-white);
  line-height: 1;
  text-shadow: 1px 1px 0 #a4a4a4, -1px 1px 0 #a4a4a4, 1px -1px 0 #a4a4a4, -1px -1px 0 #a4a4a4, 0 1px 0 #a4a4a4, 0 -1px 0 #a4a4a4, 1px 0 0 #a4a4a4, -1px 0 0 #a4a4a4;
  pointer-events: none;
  margin: 0;
  font-feature-settings: "palt";
  white-space: nowrap;
}

.p-features__img-text {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1),
    transform 1s cubic-bezier(0.33, 1, 0.68, 1);
  transform: translateX(-20px);
  transition-delay: 0.2s;
}

.p-features__card.is-active .p-features__img-text {
  opacity: 1;
  transform: translateX(0);
}

.p-features__card.u-delay-100 .p-features__img-text {
  transition-delay: calc(0.2s + 0.1s);
}

.p-features__card.u-delay-200 .p-features__img-text {
  transition-delay: calc(0.2s + 0.2s);
}

.p-features__card-body {
  width: 100%;
}

.p-features__card-title {
  width: 100%;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.054rem + 0.3vw, 1.313rem);
  font-weight: 700;
  color: var(--color-bg-dec-accent-pink) !important;
  line-height: 1.5;
  text-align: left;
  margin-right: auto;
  margin-bottom: 0.75rem;
  margin-left: auto;
  font-feature-settings: "palt";
}

.p-features__card-text {
  width: 100%;
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  color: var(--color-txt-main);
  line-height: 1.8;
  text-align: justify;
  margin-right: auto;
  margin-left: auto;
  text-justify: inter-character;
}

.p-features__step {
  width: 100%;
  margin-top: clamp(3.125rem, 2.652rem + 2.02vw, 4.375rem);
  margin-right: 0;
  margin-left: 0;
}

.p-features__step img {
  width: 100%;
  max-width: 61.25rem;
  height: auto;
  display: block;
  margin: 0 auto;
}

.p-features__bracket-l {
  margin-right: -0.01em;
  margin-left: -0.4em;
}

.p-features__bracket-r {
  margin-right: -0.4em;
  margin-left: -0.01em;
}

.p-features__bracket-l+text,
.p-features__bracket-l+span {
  letter-spacing: normal;
}

@media screen and (max-width: 767px) {
  .p-features__card-img {
    width: calc(100% + 2.5rem);
    max-width: none;
    margin-right: -1.25rem;
    margin-left: -1.25rem;
  }

  .p-features__card-img img {
    width: 14.375rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-features__list {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.8rem;
  }

  .p-features__img-text {
    bottom: 10%;
    left: 6%;
  }

  .p-features__card-title {
    max-width: none;
  }

  .p-features__card-text {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }
}

/* =====================================================
   Section： Course List
   ===================================================== */
.p-course {
  padding-top: clamp(1.875rem, 1.756rem + 0.51vw, 2.188rem);
  padding-bottom: clamp(1.875rem, 1.756rem + 0.51vw, 2.188rem);
}

.p-course__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(1.25rem, 0.77rem + 2.05vw, 2.5rem);
}

.p-course__candy {
  width: 17rem;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.938rem;
}

@media screen and (min-width: 768px) {
  .p-course {
    overflow: hidden;
  }

  .p-course__candy {
    width: clamp(15.313rem, 13.302rem + 8.58vw, 20.625rem);
    position: absolute;
    top: 0.938rem;
    right: 0;
    z-index: 10;
    margin-bottom: 0;
  }
}

.p-course__title-en {
  display: block;
  font-family: var(--font-jost);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  font-weight: 400;
  color: var(--color-txt-red-brown);
  margin-bottom: 0.313rem;
  letter-spacing: 0.4em;
  text-transform: capitalize;
}

.p-course__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.311rem + 0.81vw, 2rem);
  font-weight: 400;
  color: var(--font-base);
  line-height: 1;
}

.p-course__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 1.639rem + 1vw, 2.5rem);
}

.p-course__item {
  position: relative;
  background-color: var(--color-bg-base-white) !important;
  border: 1px solid var(--color-border-light-gray);
  border-radius: 0 1.25rem 1.25rem 1.25rem;
  padding: clamp(1.875rem, 0.692rem + 5.05vw, 5rem) 1.875rem;
}

.-beginner::before {
  background-color: var(--color-bg-dec-green);
}

.-beginner .p-course__badge {
  background-color: var(--color-bg-dec-deep-green);
}

.-middle::before {
  background-color: var(--color-bg-dec-mint);
}

.-middle .p-course__badge {
  background-color: var(--color-bg-dec-deep-green);
}

.-exam::before {
  background-color: var(--color-bg-dec-blue);
}

.-exam .p-course__badge {
  background-color: var(--color-bg-dec-deep-green);
}

.-advanced::before {
  background-color: var(--color-bg-dec-accent-pink);
}

.-advanced .p-course__badge {
  background-color: var(--color-bg-dec-accent-pink);
}

.p-course__item::before {
  width: 50%;
  height: 0.5rem;
  position: absolute;
  top: -1px;
  left: -1px;
  content: "";
}

.p-course__item-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.938rem;
  gap: 0.5rem;
}

.p-course__item-title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 1.233rem + 0.61vw, 1.75rem);
  font-weight: 700;
  color: var(--color-txt-deep-brown);
}

.p-course__badge {
  width: clamp(5.625rem, 5.319rem + 1.3vw, 6.438rem);
  height: clamp(1.813rem, 1.695rem + 0.5vw, 2.125rem);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 0.781rem + 0.4vw, 1.125rem);
  color: var(--color-txt-white);
  line-height: 1;
  transform: translateY(1px);
  border-radius: 1.25rem;
  padding: 0 1.25rem 0.188rem;
  font-feature-settings: "palt";
}

.p-course__item-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.054rem + 0.3vw, 1.313rem);
  font-weight: 700;
  color: var(--color-bg-dec-accent-pink);
  line-height: 1.5;
  margin-bottom: 0.938rem;
  font-feature-settings: "palt";
}

.p-course__item-text {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  color: var(--color-txt-main);
  line-height: 1.8;
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .p-course__head-decoration {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 0;
    font-size: 1.25rem;
    color: var(--color-bg-dec-accent-pink);
    opacity: 0.6;
    transform: rotate(15deg);
  }

  .p-course__item {
    padding: clamp(1.875rem, 1.638rem + 1.01vw, 2.5rem) clamp(4.375rem, 3.902rem + 2.02vw, 5.625rem);
  }
}

/* =====================================================
   Section： Price Plan
   ===================================================== */
.p-price {
  padding-top: clamp(1.875rem, 1.756rem + 0.51vw, 2.188rem);
  padding-bottom: clamp(1.875rem, 1.756rem + 0.51vw, 2.188rem);
}

.p-price__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(1.25rem, 1.012rem + 1.01vw, 1.875rem);
}

.p-price__title-en {
  display: block;
  font-family: var(--font-jost);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  font-weight: 400;
  color: var(--color-txt-red-brown);
  margin-bottom: 0.313rem;
  letter-spacing: 0.4em;
  text-transform: capitalize;
}

.p-price__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.311rem + 0.81vw, 2rem);
  font-weight: 400;
  color: var(--font-base);
  line-height: 1;
}

.p-price__table-wrapper {
  position: relative;
}

.p-price__swipe-guide {
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  animation: swipe-action 2.5s ease-in-out 3 forwards;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@keyframes swipe-action {
  0% {
    opacity: 0;
    transform: translate(20%, -50%);

  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-80%, -50%);
  }
}

.p-price__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.p-price__table {
  width: 100%;
  min-width: 40.625rem;
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  border-collapse: collapse;
  table-layout: fixed;
}

.p-price__table th,
.p-price__table td {
  font-family: var(--font-base);
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--color-border-light-gray);
  padding: clamp(0.75rem, 0.559rem + 0.81vw, 1.25rem) 0.313rem;
}

.p-price__table th {
  font-weight: 500;
}

.p-price__table td {
  font-weight: 400;
}

.p-price__table tbody th {
  width: clamp(6.25rem, 5.535rem + 3.05vw, 7.5rem);
  color: var(--color-txt-main);
  line-height: 1.4;
  background-color: var(--color-bg-dec-nuance-gray);
}

.p-price__table thead th span {
  display: block;
  font-size: 0.9em;
  letter-spacing: 0.1em;
}

.p-price__table th.-beginner {
  background-color: var(--color-bg-dec-pale-green);
}

.p-price__table th.-middle {
  background-color: var(--color-bg-dec-pale-mint);
}

.p-price__table th.-exam {
  background-color: var(--color-bg-dec-pale-blue);
}

.p-price__table th.-advanced {
  background-color: var(--color-bg-dec-pale-purple);
}

.p-price__table th.-empty {
  background-color: var(--color-bg-dec-nuance-gray);
}

.p-price__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.p-price__table-scroll::-webkit-scrollbar {
  display: none;
}

.p-price__scrollbar-deco {
  width: 100%;
  height: 0.25rem;
  position: relative;
  background-color: var(--color-bg-dec-nuance-gray);
  border-radius: 0.625rem;
  margin: 1.25rem auto 0;
}

.p-price__scrollbar-deco::before {
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  left: var(--price-scroll-x, 0%);
  content: "";
  background-color: var(--color-bg-base-leaf-green);
  border-radius: 0.625rem;
  will-change: left;
}

@media screen and (min-width: 768px) {
  .p-price__table {
    min-width: auto;
  }

  .p-price__swipe-guide,
  .p-price__scrollbar-deco {
    display: none;
  }
}

@media screen and (min-width: 1025px) {

  .p-price__table th,
  .p-price__table td {
    padding: 1.25rem 0.625rem;
  }
}


/* =====================================================
   Campaign Base Styles (rem unified)
   ===================================================== */

.c-price-old {
  color: var(--color-txt-gray); 
  font-size: 0.9em;
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.c-price-new {
  color: var(--color-txt-red-brown);
  font-weight: 700;
  font-size: 1.2em;
  background: linear-gradient(transparent 60%, rgba(216, 138, 179, 0.4) 60%);
  padding: 0 0.25rem;
  vertical-align: middle;
}

.c-label-campaign {
  color: var(--color-txt-red-brown);
  font-size: 0.9em;
  font-weight: 700;
  border: 0.0625rem solid var(--color-txt-red-brown);
  padding: 0.188rem 0.625rem;
  border-radius: 0.25rem;
  margin-right: 0.375rem;
  vertical-align: middle;
}

.c-text-campaign-period {
  color: var(--color-txt-red-brown);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* --- Layout Utilities (rem unified) --- */

.u-display-block { display: block; }
.u-text-right { text-align: right; }
.u-mt-10 { margin-top: 0.625rem; }
.u-py-10 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.u-fs-small { font-size: 0.8em; }
.u-ml-4 { margin-left: 0.25rem; }


/* =====================================================
   Error Page Styles (rem unified)
   ===================================================== */

.p-error-page {
    padding: calc(5rem + 5rem) 1.25rem 5rem;
    text-align: center;
    background-color: var(--color-bg-base-beige);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-error-page__inner {
    max-width: 37.5rem;
    width: 100%;
    margin: 0 auto;
}

.p-error-page__title {
    font-size: clamp(4rem, 10vw, 6rem);
    font-family: var(--font-jost);
    font-weight: 700;
    color: var(--color-txt-pink);
    margin-bottom: 1.25rem;
    line-height: 1;
}

.p-error-page__lead {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--color-txt-main);
}

.p-error-page__text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--color-txt-main);
    padding: 0 0.625rem;
}

.p-error-page__btn-wrap {
    margin-bottom: 2.5rem;
}

.c-btn-primary {
    display: inline-block;
    background-color: var(--color-bg-dec-accent-pink);
    color: #fff;
    padding: 0.625rem 3rem;
    border-radius: 3.125rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 0.25rem 0.9375rem rgba(182, 96, 97, 0.2);
    transition: all 0.3s ease;
}

.c-btn-primary:hover {
    opacity: 0.8;
    transform: translateY(-0.125rem);
}

@media screen and (max-width: 768px) {
    .p-error-page {
        padding: calc(3.75rem + 3.125rem) 1.25rem 3.75rem;
        min-height: 70vh;
    }

    .p-error-page__title {
        margin-bottom: 0.625rem;
    }

    .p-error-page__text {
        text-align: left;
        display: inline-block;
    }

    .c-btn-primary {
        width: 100%;
        max-width: 18.75rem;
        padding: 0.875rem 1.25rem;
    }
}


/* =====================================================
   Section： Flow
   ===================================================== */
.p-flow {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2rem, 5vw, 2rem);
}

.p-flow__top {
  background-color: var(--color-bg-base-ivory);
  padding-top: clamp(2rem, 5vw, 2rem);
  padding-bottom: clamp(2rem, 5vw, 2rem);
}

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

.p-flow__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.p-flow__macaron {
  width: clamp(2.5rem, 5vw, 3.5rem);
  display: block;
  padding: 0.625rem 0;
  margin-inline: auto;
}

.p-flow__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-flow__title-en {
  display: block;
  font-family: var(--font-jost);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  color: var(--color-txt-red-brown);
  margin-bottom: 0.25rem;
  letter-spacing: 0.4em;
  text-transform: capitalize;
}

.p-flow__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.311rem + 0.81vw, 2rem);
  color: var(--font-base);
  line-height: 1.2;
}

.p-flow__body {
  width: 100%;
  position: relative;
  z-index: 1;
}

.p-flow__frame-img {
  width: 100%;
  height: auto;
  display: block;
}

.p-flow__frame-top {
  width: 100%;
  position: relative;
  margin-bottom: clamp(0.75rem, 0.34vw + 0.5rem, 1rem);
}

.p-flow__frame-bottom {
  width: 100%;
  transform: rotate(180deg);
}

.p-flow__cta-balloon {
  width: 12.25rem;
  position: absolute;
  top: -2.1rem;
  right: 8%;
  z-index: 10;
  pointer-events: none;
}

.p-flow__intro {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-inline: 1rem;
}

.p-flow__intro-title {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.p-flow__intro-title img {
  width: 280px;
  height: auto;
  display: block;
  margin-inline: auto;
}

.p-flow__intro-lead {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--font-base);
  line-height: 1.8;
}

.p-flow__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.p-flow__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-flow__step-head {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.375rem;
}

.p-flow__number {
  width: 2.125rem;
  height: 2.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.313rem;
  font-weight: 600;
  color: var(--color-txt-white);
  background-image: url('../images/flow/bg-trial-tag.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-bottom: 0.125rem;
  margin-right: 0.2rem;
  flex-shrink: 0;
}

.p-flow__step-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--font-base);
  line-height: 1.5;
}

.p-flow__step-desc {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--font-base);
  line-height: 1.8;
  text-align: center;
}

.p-flow__step-img {
  width: 8.75rem;
  height: auto;
  display: block;
  margin-top: auto;
  padding-top: 1.875rem;
}

.p-flow__info-row {
  display: flex;
  font-family: var(--font-base);
  font-size: clamp(0.8125rem, 0.75rem + 0.5vw, 1rem);
  font-weight: 400;
  border-bottom: 1px dashed var(--color-border-gold);
  padding-block: 1.5rem;
}

.p-flow__info-label {
  width: clamp(5rem, 15vw, 8rem);
  font-weight: 600;
  flex-shrink: 0;
}

.p-flow__info-content {
  flex: 1;
}

.p-flow__map {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-top: clamp(2rem, 1.622rem + 1.61vw, 3rem);
  margin-bottom: clamp(2rem, 1.622rem + 1.61vw, 3rem);
}

.p-flow__map iframe {
  width: 100%;
  height: 100%;
}

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

.p-flow__cta-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 1.25rem;
}

.p-flow__cta-btn-wrap .c-btn-grad {
  width: 100%;
  max-width: 370px;
  height: clamp(3.125rem, 2.888rem + 1.01vw, 3.75rem);
  font-size: clamp(1rem, 0.839rem + 0.33vw, 1.125rem);
  font-weight: 500;
}

@media (min-width: 768px) {
  .p-flow__header {
    margin-bottom: 0.625rem;
  }

  .p-flow__cta-balloon {
    width: clamp(10.625rem, 9.206rem + 6.05vw, 14.375rem);
    top: -2rem;
    left: 55%;
  }

  .p-flow__intro {
    margin-bottom: clamp(2.5rem, 2.263rem + 1.01vw, 3.125rem);
  }

  .p-flow__intro-title img {
    width: clamp(16.625rem, 15.472rem + 4.92vw, 21.375rem);
  }

  .p-flow__intro-lead {
    font-size: clamp(1rem, 0.839rem + 0.33vw, 1.125rem);
  }

  .p-flow__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: clamp(1.875rem, 1.638rem + 1.01vw, 2.5rem);
    row-gap: clamp(3rem, 6vw, 5rem);
  }

  .p-flow__item:nth-child(-n+3) {
    grid-column: span 2;
  }

  .p-flow__item:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .p-flow__item:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .p-flow__item {
    width: 100%;
  }

  .p-flow__step-head {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .p-flow__number {
    font-size: clamp(1.125rem, 0.983rem + 0.61vw, 1.5rem);
  }

  .p-flow__step-title {
    font-size: 1rem;
  }

  .p-flow__step-desc {
    font-size: 0.813rem;
    text-align: justify;
  }

  .p-flow__step-img {
    width: clamp(6.75rem, 5.993rem + 3.23vw, 8.75rem);
    padding-top: 0.625rem;
  }

  .p-flow__info-row {
    width: 80%;
    margin: 0 auto;
  }

  .p-flow__map {
    aspect-ratio: 21 / 9;
  }
}

@media (min-width: 1025px) {
  .p-flow__cta-balloon {
    top: -2.2rem;
    width: clamp(10.625rem, 9.206rem + 6.05vw, 14.375rem);
    left: 55%;
  }

  .p-flow__number {
    width: clamp(38px, 1.25rem + 1.76vw, 44px);
    height: clamp(46px, 1.56rem + 2.05vw, 53px);
  }

  .p-flow__step-title {
    font-size: clamp(1rem, 0.882rem + 0.5vw, 1.313rem);
  }

  .p-flow__step-desc {
    font-size: clamp(0.813rem, 0.742rem + 0.3vw, 1rem);
  }
}

/* =====================================================
   Section： LINE Banner
   ===================================================== */
.p-line-banner {
  padding-top: 4rem;
  padding-bottom: 1.875rem;
}

.p-line-banner__link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: var(--color-cta-bright-green);
  overflow: visible;
  transition: opacity 0.3s, transform 0.2s;
  border-radius: 1.25rem;
  padding: 1.688rem 1rem 1.125rem;
}

.p-line-banner__link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.p-line-banner__ribbon {
  width: 7.5rem;
  height: auto;
  position: absolute;
  top: -0.625rem;
  left: calc(50% - 11.563rem);
  z-index: 10;
  pointer-events: none;
}

.p-line-banner__icon {
  width: 3.25rem;
  position: absolute;
  top: 32%;
  left: calc(50% + 4.063rem);
  z-index: 2;
  transform: translateY(-50%);
}

.p-line-banner__contents {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  font-family: var(--font-base);
  font-weight: 500;
  color: var(--color-txt-white);
  text-align: center;
}

.p-line-banner__main {
  font-size: 1.25rem;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 0.5rem;
  padding-left: 1.75rem;
  order: 1;
  font-feature-settings: "palt";
}

.p-line-banner__sub {
  font-size: 0.875rem;
  color: cta var(--color-cta-yellow);
  line-height: 1;
  margin-bottom: 0.938rem;
  order: 2;
}

.p-line-banner__btn {
  width: 8.5rem;
  height: 2.125rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-cta-green);
  line-height: 1;
  background-color: var(--color-bg-base-white);
  border-radius: 6.25rem;
  order: 3;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .p-line-banner__link {
    padding: 1.6rem 2rem 1rem;
  }

  .p-line-banner__main {
    font-size: clamp(1.5rem, 1.406rem + 0.39vw, 1.75rem);
    margin-bottom: 0.6rem;
    margin-left: -3rem;
    order: 2;
  }

  .p-line-banner__sub {
    font-size: clamp(1rem, 0.953rem + 0.2vw, 1.125rem);
    margin-bottom: 0.25rem;
    order: 1;
  }

  .p-line-banner__btn {
    width: clamp(10.313rem, 9.42rem + 3.71vw, 11.25rem);
    font-size: 0.875rem;
  }

  .p-line-banner__ribbon {
    width: 9.375rem;
    top: -1.25rem;
    left: calc(50% - 18.75rem);
  }

  .p-line-banner__icon {
    width: 5rem;
    top: 52%;
    left: calc(50% + 13.125rem);
    transform: translateY(-50%);
  }
}

@media (min-width: 1025px) {
  .p-line-banner__ribbon {
    width: 9.375rem;
    left: calc(50% - 20.625rem);
    top: -1.25rem;
  }

  .p-line-banner__icon {
    width: 5rem;
    top: 52%;
    left: calc(50% + 14.375rem);
    transform: translateY(-50%);
  }
}

/* =====================================================
   Section： FAQ
   ===================================================== */
.p-faq {
  padding-top: clamp(1.875rem, 1.756rem + 0.51vw, 2.188rem);
  padding-bottom: clamp(1.875rem, 1.756rem + 0.51vw, 2.188rem);
}

.p-faq__head {
  text-align: center;
  margin-bottom: clamp(1.25rem, 1.012rem + 1.01vw, 1.875rem);
}

.p-faq__title-en {
  display: block;
  font-family: var(--font-jost);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  font-weight: 400;
  color: var(--color-txt-red-brown);
  margin-bottom: 0.313rem;
  margin-left: 0.625rem;
  letter-spacing: 0.4em;
  text-transform: capitalize;
}

.p-faq__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.311rem + 0.81vw, 2rem);
  font-weight: 400;
  color: var(--font-base);
  line-height: 1;
}

.p-faq__item {
  background-color: var(--color-bg-base-white);
  overflow: hidden;
  border: 1px solid var(--color-border-red-brown);
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
}

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

.p-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
  cursor: pointer;
  padding: 1.563rem 1.875rem;
  list-style: none;
}

.p-faq__question::-webkit-details-marker {
  display: none;
}

.p-faq__question:hover {
  background-color: var(--color-bg-dec-pale-purple);
}

.p-faq__q-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-base);
  font-size: clamp(1rem, 1.125rem + -0.2vw, 1.125rem);
  font-weight: 700;
  color: var(--color-txt-white);
  line-height: 1;
  background-color: var(--color-bg-dec-lavender);
  border-radius: 50%;
  margin-right: 0.5rem;
  padding-bottom: 0.125rem;
  flex-shrink: 0;
}

.p-faq__q-text {
  font-family: var(--font-base);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-txt-main);
  line-height: 1.5;
  padding-right: 0.625rem;
  flex: 1;
}

.p-faq__question::after,
.p-faq__question::before {
  position: absolute;
  right: 1.5rem;
  content: "";
  background-color: var(--color-bg-dec-lavender);
  transition: all 0.3s;
}

.p-faq__question::after {
  width: 0.75rem;
  height: 0.125rem;
  top: calc(50% - 1px);
}

.p-faq__question::before {
  width: 0.125rem;
  height: 0.75rem;
  top: calc(50% - 0.375rem);
  right: calc(1.5rem + 0.313rem);
}

.p-faq__item[open] .p-faq__question::before {
  opacity: 0;
  transform: rotate(90deg);
}

.p-faq__answer {
  position: relative;
  background-color: var(--color-bg-dec-lavender-mist);
  border-top: none;
  padding: 1.563rem 1.875rem;
}

.p-faq__answer::before {
  width: 82%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 9%;
  content: "";
  background-color: var(--color-border-red-brown);
}

.p-faq__a-text {
  width: 100%;
  font-family: var(--font-base);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-txt-main);
  line-height: 1.8;
  text-align: justify;
}

@media (min-width: 768px) {

  .p-faq__question,
  .p-faq__answer {
    padding: 3% 10%;
  }

  .p-faq__q-icon,
  .p-faq__q-text {
    font-size: clamp(1rem, 0.599rem + 0.84vw, 1.313rem);
  }

  .p-faq__answer::before {
    width: 80%;
    left: 10%;
  }

  .p-faq__a-text {
    font-size: clamp(0.875rem, 0.714rem + 0.33vw, 1rem);
  }
}

/* =====================================================
   Section： Contact
   ===================================================== */
.p-contact {
  background-color: var(--color-bg-base-pale);
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

.p-contact__message {
  font-family: var(--font-serif);
  font-size: clamp(1.313rem, 1.147rem + 0.71vw, 1.75rem);
  font-weight: 500;
  color: var(--color-txt-main);
  line-height: clamp(1.166, 2, 2);
  text-align: center;
  margin-bottom: clamp(3.125rem, 2.77rem + 1.51vw, 4.063rem);
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

.p-contact__message p {
  margin-bottom: 0.5em;
}

.u-underline {
  display: inline-block;
  background: linear-gradient(transparent 70%, var(--color-border-light-pink) 70%);
}

.p-contact__body {
  background-color: var(--color-bg-base-white);
  border-radius: 0.75rem;
  padding: 2.5rem 1.25rem;
}

.p-contact__head {
  text-align: center;
  margin-bottom: 1.875rem;
}

.p-contact__logo {
  margin-bottom: 1.5rem;
}

.p-contact__logo img {
  width: clamp(12.5rem, 12.027rem + 2.02vw, 13.75rem);
  height: auto;
}

.p-contact__sub-title {
  font-size: clamp(0.875rem, 0.8125rem + 0.26vw, 1rem);
  font-weight: 400;
  line-height: clamp(1, 1.125, 1.125);
  margin-bottom: 0.5rem;
}

.p-contact__title {
  font-size: clamp(1.625rem, 1.5rem + 0.53vw, 1.875rem);
  font-weight: 500;
  line-height: clamp(1, 1.2, 1.2);
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

.p-contact__field {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-border-gray);
  padding: 1.5rem 0;
}

.p-contact__field:first-of-type {
  border-top: 1px solid var(--color-border-gray);
  margin-top: 0;
  padding-top: 1.5rem;
}

.p-contact__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: clamp(0.938rem, 0.914rem + 0.1vw, 1rem) !important;
  font-weight: 500;
  color: var(--color-txt-main);
  text-align: left !important;
  border: none !important;
  margin-bottom: 0.75rem !important;
  padding: 0 !important;
  float: none !important;
}

.p-contact__tag {
  font-size: 0.75rem;
  color: var(--color-txt-white);
  border-radius: 0.125rem;
  margin-right: 0.75rem;
  padding: 0.2rem 0.6rem;
}

.p-contact__tag--required {
  background-color: var(--color-bg-dec-accent-pink);
}

.p-contact__tag--optional {
  background-color: var(--color-bg-dec-sand);
}

.p-contact__input-wrapper {
  width: 100%;
  position: relative;
  border: none !important;
  padding: 0 !important;
}

.p-contact__input-wrapper input:not([type="radio"]),
.p-contact__input-wrapper textarea {
  width: 100% !important;
  font-size: clamp(0.938rem, 0.914rem + 0.1vw, 1rem) !important;
  vertical-align: middle !important;
  background-color: var(--color-bg-base-gray);
  transition: all 0.3s;
  border: none !important;
  border-radius: 0.25rem;
  margin: 0 !important;
  padding: 0.6rem 1rem;
  box-shadow: none !important;
}

.p-contact__input-wrapper input {
  max-width: 100%;
}

.p-contact__input-wrapper textarea {
  max-width: 100% !important;
  height: 10rem !important;
  line-height: 1.5;
}

.p-contact__input-wrapper select {
  width: 100%;
  max-width: 100% !important;
  font-size: clamp(0.938rem, 0.914rem + 0.1vw, 1rem);
  line-height: 1.5;
  vertical-align: middle !important;
  background-color: var(--color-bg-base-gray);
  cursor: pointer;
  appearance: none;
  border: none !important;
  border-radius: 0.25rem;
  margin: 0 !important;
  padding: 0.6rem 1rem;
  padding-right: 2.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none !important;
}

.p-contact__input-wrapper select::-ms-expand {
  display: none;
}

.p-contact__input-wrapper::after {
  content: none;
}

.p-contact__input-wrapper--select::after {
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  border-right: 1px solid var(--color-txt-main);
  border-bottom: 1px solid var(--color-txt-main);
}

.p-contact__input-wrapper input:focus,
.p-contact__input-wrapper textarea:focus {
  background-color: var(--color-bg-dec-pale-purple);
  outline: none;
  border-color: var(--color-txt-pink);
}

.p-contact__input-wrapper--radio {
  display: flex;
  margin: 0.6rem 0 0 !important;
  padding: 0.5rem 0;
  gap: 1rem;
}

.p-contact__radio-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: transparent !important;
  cursor: pointer;
  border: none !important;
  margin-right: 1.5rem;
  padding: 0 !important;
  box-shadow: none !important;
}

.p-contact__radio-input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  appearance: none;
  margin: 0;
  -webkit-appearance: none;
}

.p-contact__radio-text {
  position: relative;
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding-left: 1.75rem;
}

.p-contact__radio-text::before {
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  background: var(--color-bg-base-white);
  transition: all 0.2s ease;
  transform: translateY(-50%);
  border: 1px solid var(--color-border-gray);
  border-radius: 50%;
}

.p-contact__radio-text::after {
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  top: 50%;
  left: 0.375rem;
  content: "";
  background-color: var(--color-txt-pink);
  transition: transform 0.2s ease;
  transform: translateY(-50%) scale(0);
  border-radius: 50%;
}

.p-contact__radio-input:checked~.p-contact__radio-text::before {
  border-color: var(--color-txt-pink);
}

.p-contact__radio-input:checked~.p-contact__radio-text::after {
  transform: translateY(-50%) scale(1);
}

.p-contact__radio-input:focus-visible+.p-contact__radio-text::before {
  box-shadow: 0 0 0 3px rgba(147, 98, 146, 0.2);
}

.p-contact__input-wrapper--short input {
  max-width: 100px !important;
}

.p-contact__input-wrapper--medium input {
  max-width: 220px !important;
}

.p-contact__unit {
  font-weight: 500;
  margin-left: 0.5rem;
}

.p-contact__note {
  font-size: clamp(0.8125rem, 0.906rem + -0.13vw, 0.875rem);
  color: var(--color-txt-main);
  line-height: 1.5;
  text-align: left;
  margin-top: 0.75rem;
}

.p-contact__note.is-center {
  text-align: center;
}

.p-contact__note span {
  color: var(--color-txt-deep-brown);
}

.p-contact__policy {
  background-color: var(--color-bg-base-white);
  border: 1px solid var(--color-border-gray);
  border-radius: 0.5rem;
  margin-top: 3rem;
  padding: 1.25rem;
}

.p-contact__policy-title {
  font-size: clamp(0.8125rem, 0.875rem, 0.875rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.5rem;
}

.p-contact__policy-box {
  height: 11.25rem;
  font-size: clamp(0.8125rem, 0.78125rem + 0.13vw, 0.875rem);
  color: var(--color-txt-main);
  line-height: 1.8;
  background-color: var(--color-bg-base-white);
  border-radius: 0.25rem;
  padding: 1.5rem;
  overflow-y: scroll;
  white-space: pre-line;
}

.u-policy-heading {
  display: block;
  font-weight: 700;
  margin-top: 1.5em;
}

.p-contact__policy-box p {
  margin-bottom: 1em;
}

.p-contact__policy-footer {
  border-top: 1px solid var(--color-border-gray);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.p-contact__policy-date {
  font-size: 0.8125rem;
  color: var(--color-txt-main);
  line-height: 1.2 !important;
  text-align: right;
  margin-bottom: 0.5rem !important;
}

.p-contact__policy-address {
  font-size: 0.875rem;
  color: var(--color-txt-main);
  line-height: 1.4 !important;
  margin: 0;
  font-style: normal;
}

.p-contact__policy-footer,
.p-contact__policy-footer * {
  white-space: normal;
}

.p-contact__policy-check {
  text-align: center;
  margin-top: 1.5rem;
}

.p-contact__policy-label {
  display: block !important;
  align-items: center;
  font-size: clamp(0.8125rem, 0.875rem, 0.875rem);
  font-weight: 500;
  background: none !important;
  cursor: pointer;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: normal !important;
  box-shadow: none !important;
}

.p-contact__checkbox {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.6rem;
  accent-color: var(--color-txt-pink);
}

.p-contact__submit {
  text-align: center;
  margin-top: 2rem;
}

.p-contact__btn {
  width: 100%;
  max-width: 23.125rem;
  height: clamp(3.125rem, 2.888rem + 1.01vw, 3.75rem);
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1rem, 0.953rem + 0.2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-txt-pink);
  line-height: 1;
  text-shadow: none !important;
  background: var(--color-bg-base-white) !important;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid var(--color-border-pink);
  border-radius: 6.25rem;
  padding: 0;
}

.p-contact__btn:hover {
  color: var(--color-txt-white) !important;
  background-color: var(--color-border-pink) !important;
  box-shadow: none !important;
}

.p-contact__btn::after {
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  right: 2rem;
  content: "";
  transform: rotate(45deg);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

@media (min-width: 768px) {
  .p-contact__body {
    padding: 2.5rem 10%;
  }

  .p-contact__message {
    letter-spacing: 0.4em;
  }

  .p-contact__field {
    flex-direction: row;
    align-items: flex-start;
    padding: 2rem 0;
  }

  .p-contact__field:first-of-type {
    padding-top: 2rem;
  }

  .p-contact__label {
    width: 38% !important;
    margin: 0 !important;
    padding: 0.6em 0 0 !important;
  }

  .p-contact__input-wrapper {
    width: 62% !important;
  }
}

/* =====================================================
   Mailformpro Customize
   ===================================================== */
form#mailformpro {
  padding: 0 !important;
}

div.mfp_err {
  font-size: 0.75rem;
  color: var(--color-txt-pink) !important;
  line-height: 1;
  text-align: left;
  background-image: none !important;
  margin: 0.313rem 0 0 0;
  padding: 0.188rem 0 0.313rem 0;
}

.p-contact__policy-label div.mfp_err {
  text-align: center !important;
}

#mfp_phase_confirm_inner h4 {
  font-family: var(--color-txt-main) !important;
  font-size: clamp(0.875rem, 0.8125rem + 0.26vw, 1rem) !important;
  font-weight: 500 !important;
  color: var(--color-txt-pink);
  padding: 0 0 1.25rem !important;
}

#mfp_confirm_table {
  width: 100%;
  margin-bottom: 1.875rem;
}

#mfp_confirm_table tr {
  border-bottom: 1px solid var(--color-border-gray) !important;
}

#mfp_confirm_table tr:first-of-type {
  border-top: 1px solid var(--color-border-gray) !important;
  margin-top: 0;
  padding-top: 1.5rem;
}

#mfp_confirm_table tr.mfp_colored,
#mfp_confirm_table tr.mfp_achroma {
  background: var(--color-bg-base-white) !important;
}

#mfp_confirm_table th,
#mfp_confirm_table td {
  display: inline-block !important;
  font-family: var(--color-txt-main) !important;
  font-size: clamp(0.938rem, 0.914rem + 0.1vw, 1rem) !important;
  line-height: 1.5 !important;
  border: none !important;
}

#mfp_confirm_table th {
  width: 100% !important;
  margin-bottom: 0.5rem;
  padding: 1rem 0 0 !important;
}

#mfp_confirm_table td {
  width: 100% !important;
  padding: 0 0 1rem !important;
}

.mfp_element_button {
  width: 100%;
  height: clamp(3.125rem, 2.888rem + 1.01vw, 3.75rem);
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1rem, 0.953rem + 0.2vw, 1.125rem) !important;
  font-weight: 500;
  color: var(--color-txt-pink);
  line-height: 1;
  text-shadow: none !important;
  background: var(--color-bg-base-white) !important;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid var(--color-border-pink);
  border-radius: 6.25rem;
  margin: 0 !important;
  padding: 0;
}

.mfp_element_button:hover {
  color: var(--color-txt-white) !important;
  background-color: var(--color-border-pink) !important;
  box-shadow: none !important;
}

.mfp_buttons {
  width: 100% !important;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0 !important;
  flex-flow: column;
}

@media (min-width: 768px) {

  #mfp_confirm_table th,
  #mfp_confirm_table td {
    padding: 2rem 0 !important;
  }

  .mfp_buttons {
    flex-flow: row;
    gap: 0.625rem;
  }

  #mfp_confirm_table th,
  #mfp_confirm_table td {
    margin: 0;
    padding: 1rem 0 !important;
  }

  #mfp_confirm_table th {
    width: 38% !important;
  }

  #mfp_confirm_table td {
    width: 62% !important;
  }

  .mfp_element_button {
    max-width: 18.75rem;
  }
}

/* =====================================================
   Layout： Footer
   ===================================================== */
.l-footer {
  position: relative;
  padding-bottom: 5rem;
}

.p-footer-info {
  background-color: var(--color-bg-base-gray);
  overflow: hidden;
  padding-top: clamp(2.6rem, 1.881rem + 3.07vw, 4.5rem);
  padding-bottom: clamp(2.8rem, 1.211rem + 6.78vw, 7rem);
}

.p-footer-main__inner {
  width: 100%;
  max-width: 85.375rem;
  margin-inline: auto !important;
  padding-inline: 1.25rem;
}

.p-footer-dots {
  width: clamp(5rem, 4.393rem + 2.59vw, 7.5rem);
  position: absolute;
  top: -1.5rem;
  left: 1.25rem;
  z-index: 2;
}

.p-footer-main__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 3.75rem 0;
  gap: 2.5rem;
}

.p-footer-main__cat {
  width: 2.5rem;
  margin-bottom: -0.313rem;
  margin-left: 3.125rem;
}

.p-footer-main__cat img,
.p-footer-main__catch img,
.p-footer-main__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.p-footer-main__catch {
  width: 15.375rem;
  margin-bottom: 0.875rem;
}

.p-footer-main__labels {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.875rem;
  gap: 0.5rem;
}

.p-footer-main__labels span {
  width: fit-content;
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.625rem;
  color: var(--color-txt-white);
  background: var(--color-bg-dec-purple);
  padding: 0.25rem 1.25rem;
  letter-spacing: 0.1em;
}

.p-footer-main__sns {
  position: absolute;
  top: 20.3rem;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  list-style: none;
}

.p-footer-main__sns li {
  width: 1.625rem;
}

.p-footer-main__right {
  text-align: left;
}

.p-footer-main__logo {
  width: 13.75rem;
  margin-bottom: 1.25rem;
  margin-left: 0;
}

.p-footer-main__address {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0.625rem;
  letter-spacing: 0.05em;
}

.p-footer-main__company {
  font-family: var(--color-txt-main);
  font-size: 0.813rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 0.625rem;
}

.p-footer-main__btns {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.938rem;
  gap: 1.125rem;
}

.p-footer-main__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.813rem;
  color: var(--color-txt-bright-pink);
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid var(--color-border-bright-pink);
  border-radius: 3.125rem;
  padding: 0.4rem 1.563rem 0.5rem;
}

.p-footer-main__btn:hover {
  color: var(--color-txt-white);
  background-color: var(--color-txt-bright-pink);
}

.p-footer-copyright {
  font-family: var(--font-inter);
  font-size: 0.625rem;
  text-align: center;
  background-color: var(--color-bg-base-white);
  padding: 2.5rem 1.25rem;
  letter-spacing: 0.5em;
}

@media (min-width: 768px) {
  .l-footer {
    padding-bottom: 5.625rem;
  }

  .p-footer-main__inner {
    padding-inline: 2.5rem;
  }

  .p-footer-dots {
    left: 2.5rem;
  }

  .p-footer-main__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .p-footer-main__cat {
    width: 3.125rem;
    margin-left: 4.375rem;
  }

  .p-footer-main__catch {
    width: clamp(17.25rem, 14.12rem + 6.52vw, 19.688rem);
  }

  .p-footer-main__sns {
    position: static;
    flex-direction: row;
    margin-top: 1rem;
    gap: 0.938rem;
  }

  .p-footer-main__right {
    text-align: right;
  }

  .p-footer-main__logo {
    margin-top: 0;
    margin-left: auto;
  }

  .p-footer-main__btns {
    justify-content: flex-end;
  }
}

@media (min-width: 1025px) {
  .l-footer {
    padding-bottom: 0;
  }

  .p-footer-copyright {
    max-width: 85.375rem;
    text-align: right;
    padding: clamp(2.5rem, -1.257rem + 5.87vw, 3.75rem) 1.25rem;
    margin-inline: auto;
  }
}

@media (min-width: 1366px) {
  .p-footer-dots {
    left: 50% !important;
    transform: translateX(-645px) !important;
  }
}

/* =====================================================
   Lower-level page
   ===================================================== */
.l-page-container {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 1.25rem 8rem;
}

.p-page-head {
  text-align: center;
  padding: 8rem 0 5rem;
}

.p-page-head__title-en {
  display: block;
  font-family: var(--font-jost);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  color: var(--color-txt-red-brown);
  margin-bottom: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: capitalize;
}

.p-page-head__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.311rem + 0.81vw, 2rem);
  font-weight: 400;
  color: var(--color-txt-main);
}

.p-company-table {
  width: 100%;
  border-top: 1px solid var(--color-border-gray);
}

.p-company-table tr,
.p-company-table__row {
  width: 100%;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--color-border-gray);
}

.p-company-table th,
.p-company-table dt {
  width: 35%;
  display: flex;
  align-items: center;
  font-family: var(--font-base);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  font-weight: 500;
  text-align: left;
  background-color: var(--color-bg-base-gray);
  padding: 1.5rem;
}

.p-company-table td,
.p-company-table dd {
  width: 65%;
  font-family: var(--font-base);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
  padding: 1.5rem;
}

@media (max-width: 767px) {

  .p-company-table tr,
  .p-company-table__row {
    flex-direction: column;
  }

  .p-company-table th,
  .p-company-table dt {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .p-company-table td,
  .p-company-table dd {
    width: 100%;
    padding: 1rem;
  }
}

.p-company-map-area {
  padding-top: 2.5rem;
}

.p-company-map-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 0.953rem + 0.2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-txt-navy);
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.p-company-map-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  line-height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
}

.p-company-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (min-width: 768px) {
  .p-company-map-frame {
    aspect-ratio: 21 / 9;
  }
}

.p-company-map-note {
  font-size: clamp(0.75rem, 0.703rem + 0.2vw, 0.875rem);
  color: var(--color-txt-main);
  text-align: center;
  margin-top: 0.938rem;
}

.p-agreement-content {
  color: var(--color-txt-main);
  line-height: 1.8;
}

.p-agreement-lead,
.p-thanks-lead {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  color: var(--color-txt-main);
  line-height: 1.8;
  text-align: left;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .p-agreement-lead {
    text-align: center;
  }
}

.p-agreement-item,
.p-thanks-item {
  margin-bottom: 3rem;
}

.p-agreement-item h2,
.p-thanks-item h2 {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 0.882rem + 0.5vw, 1.313rem);
  font-weight: 700;
  color: var(--color-bg-dec-accent-pink);
  border-bottom: 1px solid var(--color-border-gray);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.p-thanks-item h2 {
  text-align: center;
}

.p-agreement-item p {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 0.828rem + 0.2vw, 1rem);
  color: var(--color-txt-main);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1rem;
  text-justify: inter-character;
}

.p-agreement-footer {
  font-size: clamp(0.75rem, 0.703rem + 0.2vw, 0.875rem);
  text-align: right;
  margin-top: 5rem;
  letter-spacing: 0.05em;
}

/* =====================================================
   Utility Classes
   ===================================================== */
.u-sp-only,
.u-tab-only,
.u-pc-only {
  display: none;
}

@media (max-width: 767px) {
  .u-sp-only {
    display: inline;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .u-tab-only {
    display: inline;
  }
}

@media (min-width: 1025px) {
  .u-pc-only {
    display: inline;
  }
}

.u-is-space {
  margin-left: 0.1em;
  letter-spacing: 0.1em;
}

.u-marker-pink,
.u-marker-purple {
    background: linear-gradient(transparent var(--marker-size), var(--_marker-color) var(--marker-size));
    font-weight: 600;
    padding: 0 2px;
    display: inline;
}

.u-marker-pink {
    --_marker-color: var(--color-marker-pink);
}

.u-marker-purple {
    --_marker-color: var(--color-marker-purple);
}