* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-pink: #e54190;
  --primary-dark-pink: #aa175e;
  --brand-willof: #83a2b2;
  --accent-purple: 169 155 210;

  --text-color-darkgray: #485b66;
  --text-color-white: #fff;
  --text-color-lightgray: #626262;

  --background-color-white: #fff;
  --background-color-lightgray: #FBFBFB;
  --background-color-black: #1b1b1b;

  --form-input-bg: #eff3f5;
  --form-input-bg-hover: #e5f1f9;
  --form-input-border: #c3d2da;
  --form-input-border-yellow: #d3ad60;
  --form-input-bg-yellow: #fffaea;
  --form-input-text: #8a8a8a;
  --form-input-icon: #529db4;
  --form-text-black: #1b1b1b;
}

@font-face {
  font-family: "gotham";
  font-family: "gotham", sans-serif;
  font-weight: 500;
  font-style: normal;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-color-darkgray);
  line-height: 1.6;
  background-color: var(--background-color-lightgray);
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* br管理 */
.br-pc {
  display: block;
}

.br-tb {
  display: block;
  /* pcとtbを同時に指定しても解除させない */
}

.br-sp {
  display: none;
}

.page-wrapper {
  width: min(1280px, 100%);
  margin: 0 auto;
}

/* Header */
.lp-header {
   background-color: var(--background-color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(60px, 10vw, 92px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-inner {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1080px, 90%);
  height: 100%;
}

.header-box {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.5vw, 4px);
}

.header-text {
  color: #485b66;
  font-size: clamp(0.6rem, 1.5vw, 0.75rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: normal;
  font-family: "Noto Sans JP";
}

.cta-button {
  box-sizing: border-box;
  padding: clamp(8px, 1vw, 12px) clamp(8px, 3vw, 30px);
  border-radius: 8px;
  background-color: var(--primary-pink);
  color: var(--text-color-white);
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  transition: transform 0.2s;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  box-shadow: 0px 4px var(--primary-dark-pink);
  align-items: center;
  gap: 4px;
}

.cta-button>span {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-button>span::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.625rem;
  width: 18px;
  height: 18px;
  color: var(--text-color-white);
  border: 1px var(--background-color-white) solid;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-button:hover {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  box-shadow: 0px 2px var(--primary-dark-pink);
}

/* all-wrap */
.all-wrap {
  background: linear-gradient(120.82deg, rgba(230, 248, 144, 0.3) 4.72%, rgba(255, 145, 228, 0.3) 96.18%), #FBFBFB;
  overflow: hidden;
  display: flex;
  min-height: calc(100dvh - 94px);
  flex-direction: column;
}

.emotion-icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}

/* Hero Section */
.hero {
  position: relative;
}

.hero-container {
  position: relative;
  width: min(760px, 90%);
  margin: 5px auto 0;
}

.hero-visual {
  position: absolute;
  object-fit: cover;
  height: 58%;
  right: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  position: relative;
  font-size: 1.375rem;
  color: var(--text-color-darkgray);
  font-weight: 700;
  padding: 30px 10px 0;
  text-shadow:
    2px 0 0 #fff,
    -2px 0 0 #fff,
    0 2px 0 #fff,
    0 -2px 0 #fff,
    2px 2px 0 #fff,
    -2px 2px 0 #fff,
    2px -2px 0 #fff,
    -2px -2px 0 #fff;
}

.hero-title {
  position: relative;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow:
    3px 0 0 #fff,
    -3px 0 0 #fff,
    0 3px 0 #fff,
    0 -3px 0 #fff,
    3px 3px 0 #fff,
    -3px 3px 0 #fff,
    3px -3px 0 #fff,
    -3px -3px 0 #fff;
  font-size: 3.4rem;
  line-height: 1.2;
  font-weight: 700;
  padding: 0 10px;
  width: 100%;
  max-width: 17ch;
}

.hero-title .highlight {
  color: var(--primary-pink);
  font-weight: 700;
}

.hero-features {
  display: grid;
  gap: 0.5rem;
  max-width: 35rem;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  margin: 2.8rem auto 0.5rem;
  justify-content: center;
}

.feature-badge {
  background: #d6ff99;
  color: #000000;
  padding: 0.7rem 0.5rem;
  border: 1px solid #fff;
  border-radius: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.5vw, 10px);
  font-size: clamp(0.67rem, 2vw, 1rem);
  line-height: 120%;
  font-weight: 500;
}

.feature-badge img {
  width: clamp(15px, 2vw, 30px);
}

.deep-green {
  background-color: #99FF00;
}

/* スクロール用のCSS */
.scroll-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.scroll-content-text {
  display: flex;
  -webkit-animation: scroll-text 20s linear infinite;
  animation: scroll-text 20s linear infinite;
  gap: 0px;
  /* GPU加速を有効化 */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.item-text {
  flex: 0 0 auto;
  text-align: center;
  line-height: 100%;
  font-family: "gotham", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 7.4rem;
  font-weight: bold;
  color: rgb(var(--accent-purple) / 50%);
  margin-bottom: 7rem;
}

/* テキスト用アニメーション - 50%移動で無限ループ */
@-webkit-keyframes scroll-text {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes scroll-text {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.form-induction-container {
  position: relative;
  max-width: 1000px;
  margin: 1rem auto;
  padding: 3rem 2.5rem;
  background: rgb(var(--accent-purple));
  width: min(600px, 90%);
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.form-induction-container h2 {
  text-align: center;
  color: #FFFFFF;
  font-size: 1.5rem;
}

.form-induction h2 {
  text-align: center;
  margin-bottom: clamp(12px, 2vw, 16px);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  color: var(--text-color-white);
}

.form-induction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(12px, 2vw, 16px);
}

.form-induction-item {
  display: flex;
  margin-top: 1rem;
  background: var(--form-input-bg);
  border: 1px solid var(--form-input-border);
  border-radius: 8px;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.2rem;
  line-height: 1.6rem;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--form-text-black);
  position: relative;
  align-items: center;
}

.form-induction-item::after {
  position: absolute;
  right: clamp(8px, 2vw, 16px);
  top: 50%;
  transform: translateY(-50%);
  content: "\f054";
  color: var(--text-color-darkgray);
  font-family: "Font Awesome 6 Free";
  font-size: 0.625rem;
  font-weight: 900;
}

.form-induction-item:hover {
  background: var(--form-input-bg-hover);
}

.form-induction-item.full-width {
  grid-column: span 2;
}

.form-induction-item small {
  font-size: clamp(0.5625rem, 1.2vw, 0.625rem);
  font-weight: 400;
  margin-top: 4px;
  display: inline-block;
}

/* Copy Section */
.copy {
  width: 120%;
  height: auto;
  text-align: center;
  margin: 3rem auto;
}

.copy-title {
  display: block;
  position: relative;
  font-size: 1.4rem;
  text-shadow: 1px 0 0 #fff,
    -1px 0 0 #fff,
    0 1px 0 #fff,
    0 -1px 0 #fff,
    1px 1px 0 #fff,
    -1px 1px 0 #fff,
    1px -1px 0 #fff,
    -1px -1px 0 #fff;
  font-weight: 700;
  letter-spacing: 0.15em;
  transform: translateX(-8%);
}

.copy-title .highlight {
  color: var(--primary-pink);
  font-weight: 700;
}

/* Footer */
.lp-footer {
  background-color: #83A2B2;
  color: var(--text-color-white);
  border-radius: clamp(20px, 5vw, 40px) clamp(20px, 5vw, 40px) 0 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.footer-inner {
  box-sizing: border-box;
  padding: clamp(16px, 3vw, 24px) clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.footer-link-group {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1.5rem;
  line-height: 1;
}

.footer-link-group a {
  text-decoration: none;
}

.footer-link {
  color: var(--background-color-white);
  font-size: 0.875rem;
}

.separator {
  font-size: 0.625rem;
}

.footer-text {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
}

/* Side Panel */
.contact-warp {
  display: none;
}

.contact {
  background: var(--primary-pink);
  color: var(--text-color-white);
  padding: 10px 8px;
  border-radius: 24px 0 0 24px;
  writing-mode: vertical-rl;
  font-weight: 700;
  font-size: clamp(1rem, 1vw, 1.25rem);
  letter-spacing: 4px;
  cursor: pointer;
  box-shadow: 0px 4px var(--primary-dark-pink);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
  gap: 4px;
}

.contact>span {
  font-size: clamp(1.1rem, 1vw, 1.3rem);
  display: inline-flex;
  align-items: center;
}

.contact-badge {
  writing-mode: horizontal-tb;
  background: var(--background-color-white);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
}

.contact-badge-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-color-darkgray);
  line-height: 1;
  font-feature-settings: "palt";
}

.contact-badge-time {
  font-size: 1.375rem;
  font-family: "gotham", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  color: #e44899;
  line-height: 1;
}

.contact-badge-time span {
  font-size: 1rem;
}

/* ======================================== */
/* Responsive - Mobile 768以下 */
/* ======================================== */
@media screen and (max-width: 768px) {
  body {
    width: 100%;
    transform-origin: top left;
    min-height: 100vh;
  }

  .br-tb {
    display: none;
  }

  .br-sp {
    display: block;
  }

  .lp-header {
    height: 90px;
  }

  .header-text {
    font-size: 0.6rem;
  }

  .cta-button>span {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  }

  .cta-button>span::after {
    font-size: 1rem;
    width: 24px;
    height: 24px;
  }

  .hero {
    padding: 5px 0px;
  }

  .hero-container {
    width: 100%;
    padding: 0 2rem;
  }

  .hero-content {
    padding-top: 1rem;
    padding-left: 0rem;
  }

  .form-induction {
    width: 90%;
    margin-top: -6rem;
    padding: 1rem 0rem;
  }

  .form-induction-container {
    width: 100%;
    padding: 2rem 0.5rem;
  }

  .form-induction h2 {
    margin: 1rem;
    font-size: 1.8rem;
    line-height: 1.4rem;
    padding: 0rem 0;
    margin-bottom: 0;
  }

  .form-induction-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 0.5rem;
    padding: 0.5rem 1.5rem;
    display: flow;
  }

  .form-induction-grid div {
    font-size: clamp(0.9rem, 3.5vw, 1.8rem);
  }

  .form-induction-item {
    padding: 1.5rem 0.5rem;
    align-items: center;
    border-radius: 1rem;
  }

  .form-induction-item.full-width {
    grid-column: span 1;
  }

  .form-induction-item small {
    display: block;
  }

  .contact-warp.hidden {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .contact-warp {
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .br-pc {
    display: none;
  }

  .lp-footer {
    border-radius: 8px 8px 0 0;
  }

 .lp-footer .footer-inner {
    box-sizing: border-box;
    padding: clamp(16px, 3vw, 24px) clamp(20px, 5vw, 60px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .lp-footer .footer-inner .footer-link-group {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0 clamp(2px, 1.5vw, 12px);
  }

  .lp-footer .footer-inner .footer-link-group .footer-link {
    color: var(--background-color-white);
    text-align: center;
    font-size: clamp(0.625rem, 1.5vw, 0.875rem);
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
  }

  .lp-footer .footer-inner .footer-text {
    text-align: center;
    color: var(--background-color-white);
    font-size: clamp(0.625rem, 1.2vw, 0.75rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: normal;
  }

  .contact-warp {
    display: block;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    background: transparent;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
  }

  .contact-warp a {
    display: block;
    max-width: 550px;
    margin: 0 auto;
    text-decoration: none;
  }

  .contact {
    writing-mode: horizontal-tb;
    background: var(--primary-pink);
    box-shadow: 0px 8px 0px var(--primary-dark-pink);
    border-radius: 32px;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 5px 0px;
    letter-spacing: normal;
    transition: all 0.2s ease;
    font-size: clamp(1rem, 5vw, 1.875rem);
  }

  .contact>span {
    font-size: clamp(1rem, 5vw, 2.27rem);
  }

  .contact:hover {
    transform: translateY(2px);
    box-shadow: 0px 6px var(--primary-dark-pink);
  }

  .contact-badge {
    background: var(--background-color-white);
    border-radius: 50%;
    width: clamp(50px, 14vw, 80px);
    height: clamp(50px, 14vw, 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    order: -1;
    margin: 0;
    flex-shrink: 0;
  }

  .contact-badge-label {
    font-size: clamp(0.6rem, 2vw, 0.875rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
  }

  .contact-badge-time {
    font-size: 2.25rem;
    font-size: clamp(1rem, 4vw, 2.25rem);
    font-family: "gotham", Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    color: var(--primary-pink);
    line-height: 1;
  }

  .contact>span::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.625rem;
    width: 26px;
    height: 26px;
    color: var(--text-color-white);
    border: 1px var(--background-color-white) solid;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .hero-visual {
    height: 50%;
  }

  .hero-title {
    font-size: clamp(2.4rem, 12vw, 4.5rem);
  }

  .hero-label {
    padding-top: clamp(10rem, 30vw, 12rem);
    font-size: clamp(0.5rem, 6vw, 2.5rem);
  }

  .emotion-icon {
    margin-top: -0.2rem;
  }

  .copy-title {
    font-size: clamp(1rem, 4.5vw, 2.5rem);
  }

  .hero-features {
    max-width: none;
    margin: 1rem auto 3rem;
  }

  .form-induction-container h2 {
    font-size: clamp(1.3rem, 6vw, 2.3rem);
  }
}

/* ======================================== */
/* Responsive - Mobile 450以下 */
/* ======================================== */
@media screen and (max-width: 450px) {
  .br-sm-sp {
    display: block;
  }

  .hero-label {
    padding-top: 9rem;
  }

  .hero-features {
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  }

  .form-induction-item {
      padding: 0.4rem 0.5rem;
  }

  .copy-title{
    margin-bottom: 0;
  }
}