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

:root {
  /* --primary-bule: #3498db; */
  --primary-pink: #e54190;
  --primary-dark-pink: #aa175e;
  --brand-willof: #83a2b2;

  --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: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  color: var(--text-color-darkgray);
  line-height: 1.6;
  background-color: var(--background-color-lightgray);
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  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);
}

.lp-header .header-inner {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1080px, 90%);
  height: 100%;
}

/* Added form-header-inner styles from CSS B */
.lp-header .header-inner.form-header-inner {
  width: 800px;
}

.lp-header .header-inner .header-box {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.5vw, 4px);
  align-items: left;
}

.lp-header .header-inner .header-logo {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--text-color-darkgray);
  width: clamp(140px, 18vw, 170px);
  height: auto;
  display: block;
}

.lp-header .header-inner .header-text {
  color: var(--text-color-darkgray);
  font-size: clamp(0.6rem, 1.5vw, 0.75rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: normal;
}

/* Added form-header-text styles from CSS B */
.lp-header .header-inner .header-text .form-header-text {
  box-sizing: border-box;
  display: inline-block;
  width: fit-content;
  height: 20px;
  padding: 0 5px;
  margin-right: 8px;
  border-radius: 4px;
  background-color: var(--background-color-black);
  color: var(--text-color-white);
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: normal;
}

.cta-button {
  box-sizing: border-box;
  padding: clamp(8px, 1.5vw, 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 {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.all-wrap .bg-point-yellow {
  width: clamp(150px, 20vw, 243px);
  height: auto;
  position: absolute;
  top: 27%;
  left: 0%;
}
.all-wrap .bg-point-green {
  width: clamp(150px, 20vw, 243px);
  height: auto;
  position: absolute;
  top: 34%;
  right: 0%;
}
.all-wrap .bg-point-blue-purple {
  width: clamp(150px, 20vw, 243px);
  height: auto;
  position: absolute;
  top: 65%;
  left: 0%;
}
.all-wrap .bg-point-yellow-orange {
  width: clamp(150px, 20vw, 243px);
  height: auto;
  position: absolute;
  top: 80%;
  right: 0%;
}

/* Hero Section */
.hero {
  padding: 16px 0px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-container {
  width: min(880px, 90%);
  height: clamp(300px, 50vw, 432px);
  margin: 0 auto;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
}

.hero-content {
  position: relative;
  padding: clamp(12px, 3vw, 24px) 0 0 0;
  z-index: 2;
}

.hero-label {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--text-color-darkgray);
  margin-bottom: clamp(4px, 1vw, 8px);
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: clamp(2px, 0.5vw, 4px) clamp(4px, 1vw, 8px);
  width: 100%;
  max-width: 17ch;
}

.hero-title {
  font-size: clamp(1.3rem, 4vw, 2.25rem);
  line-height: 1.5;
  font-weight: 700;
  color: var(--text-color-darkgray);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: clamp(2px, 0.5vw, 4px) clamp(4px, 1vw, 8px);
  width: 100%;
  max-width: 17ch;
}

.hero-title .highlight {
  color: var(--primary-pink);
}

.hero-features {
  display: flex;
  gap: clamp(8px, 2vw, 15px);
  flex-wrap: wrap;
  position: absolute;
  top: clamp(180px, 30vw, 290px);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
}

.feature-badge {
  background: var(--brand-willof);
  color: var(--background-color-white);
  padding: clamp(10px, 2vw, 14px) clamp(16px, 3vw, 24px);
  border-radius: clamp(12px, 2vw, 16px);
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: clamp(0.67rem, 2vw, 1rem);
  line-height: 120%;
  font-weight: 400;
}
.feature-badge img {
  width: clamp(15px, 2vw, 30px);
}

/* スクロール用のCSS */
.scroll-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.scroll-content-photo {
  display: flex;
  -webkit-animation: scroll 80s linear infinite;
  animation: scroll 80s linear infinite;
  gap: 0px;
  margin: 0;
  /* GPU加速を有効化 */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.scroll-content-text {
  display: flex;
  -webkit-animation: scroll-text 20s linear infinite;
  animation: scroll-text 20s linear infinite;
  gap: 0px;
  margin: 0;
  /* GPU加速を有効化 */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.item-photo {
  flex: 0 0 auto;
  width: clamp(2325px, 50vw, 2505px);
  height: clamp(400px, 50vw, 432px);
  margin: 0 10px;
  text-align: center;
  line-height: 200px;
  font-size: 2.5rem;
  background-size: contain;
}

.item-text {
  flex: 0 0 auto;
  height: auto;
  margin: 0 clamp(5px, 1vw, 10px);
  text-align: center;
  line-height: 160%;
  font-family: "gotham", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: clamp(5rem, 10vw, 6.25rem);
  font-weight: bold;
  color: var(--brand-willof);
  opacity: 0.6;
  margin-top: clamp(-20px, -3vw, -40px);
}
/* 写真用アニメーション - 50%移動で無限ループ */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
/* テキスト用アニメーション - 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 Section */
.form-induction {
  padding: clamp(16px, 3vw, 24px) clamp(16px, 2vw, 24px);
  background: white;
  z-index: 3;
  margin: clamp(-60px, -10vw, -100px) auto 0;
  width: min(880px, 90%);
  border-radius: 8px;
}

.form-induction-container {
  max-width: 1000px;
  margin: 0 auto;
}

.form-induction h2 {
  text-align: center;
  margin-bottom: clamp(12px, 2vw, 16px);
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--text-color-darkgray);
}

.form-induction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(12px, 2vw, 16px);
}

.form-induction-item {
  background: var(--form-input-bg);
  border: 1px solid var(--form-input-border);
  border-radius: 8px;
  padding: clamp(12px, 2vw, 16px);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--text-color-darkgray);
  position: relative;
}

.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;
}

/* Added additional form-induction styles from CSS B */
.form-induction .form-induction-heading {
  font-size: 16px;
}

.form-induction .form-induction-choices {
  justify-content: center;
  gap: 10px 10px;
}

.form-induction .form-induction-choices .choice {
  width: 140px;
  height: 40px;
  padding: 11px 7px 11px 11px;
  font-size: 14px;
}

.form-induction .form-induction-choices .choice:has(span) {
  width: 186px;
}

.form-induction .form-induction-choices .choice span {
  margin-left: 8px;
  color: var(--form-input-text);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
}

.form-induction .form-induction-choices .choice::after {
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  width: 1em;
  height: 1em;
  margin: auto 0;
  content: "\f054";
  color: var(--form-input-icon);
  text-align: center;
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.form-induction .form-induction-choices .choice:hover {
  border: 1px solid #cde5ec;
}
/* thanks page */
.thanks {
  text-align: center;
  letter-spacing: normal;
  padding: 24px;
  margin: 0 auto;
  width: 65vw;
  max-width: 800px;
  margin-bottom: 80px;
}

.thanks h2 {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--brand-willof);
}

.thanks p {
  /* 太字　黒字 */
  font-weight: 400;
  color: var(--text-color-lightgray);
  line-height: 1.5;
  padding: 10px 0;
}

.thanks .bold {
  font-weight: bold;
  font-family: Noto Sans JP;
}

.thanks p span {
  color: var(--primary-pink);
  font-size: 0.8rem;
  line-height: 1;
}

.thanks h3 {
  font-size: 3rem;
  background: var(--brand-willof);
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-color-white);
  width: auto;
  border-radius: 8px;
  display: inline-block;
  margin: 8px 0px 8px;
}

.thanks h2 {
  font-weight: bold;
}

.thanks .textbox {
  margin-top: 24px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.botton {
  display: inline-block;
  padding: 10px 0px;
  color: #fff;
  width: 15rem;
  font-weight: bold;
  font-size: 16px;
  font-family: Noto Sans JP;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  transition: 0.1s;
  background-color: var(--background-color);
  box-shadow: 0 5px 0 var(--box-shadow-color);
}
.botton:hover {
  -webkit-transform: translateY(2px);
  transform: translateY(2.5px);
  box-shadow: 0 2.5px 0 var(--box-shadow-color);
}
.line-botton {
  --background-color: #06C755;
  --box-shadow-color: #04953FF2;
}
.ai-botton {
  --background-color: #E54190;
  --box-shadow-color: #AA175EF2;
}
.thanks .box-text {
  font-size: 0.88rem;
  font-family: Noto Sans JP;
}
.thanks .contact-box {
  display: flex;
  font-family: Noto Sans JP;
  font-size: 0.88rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #E54190;
  border-radius: 10px;
  text-align: center;
  margin: 20px auto 30px auto;
  background-color: rgba(229, 65, 144, 0.05);
  line-height: 1.4;
  padding: 10px 0;
}
.thanks-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #26A69A;
  border-radius: 10px;
  text-align: center;
  margin: 20px auto 30px auto;
  max-width: 380px;
  background-color: #26A69A0D;
  line-height: 1.4;
  padding: 10px 0 18px 0;
}
.clock .box-text {
  display: flex;
}
.clock img {
  height: 15px;
  margin: 3px;
  text-align: right;
}
.thanks .pink-text {
  color: #E54190;
  font-size: 0.8rem;
  font-family: Noto Sans JP;
}


/* Copy Section */
.copy-section {
  width: 100%;
  height: auto;
}

.copy-title {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  line-height: 1.8;
  text-align: center;
  margin-bottom: clamp(30px, 6vw, 60px);
  font-weight: 400;
  padding-top: clamp(20px, 4vw, 40px);
  padding-left: clamp(16px, 3vw, 0);
  padding-right: clamp(16px, 3vw, 0);
}

.copy-title .highlight {
  color: var(--primary-pink);
  font-weight: 700;
}

/* Info Section */
.info-section {
  width: 100%;
  padding: clamp(40px, 8vw, 80px) clamp(16px, 3vw, 0);
  background: var(--background-color-white);
  border-radius: clamp(20px, 5vw, 40px) clamp(20px, 5vw, 40px) 0 0;
}

.info-container {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.info-cards-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 4vw, 40px);
  padding: 40px 0 24px;
}

.info-card {
  background: white;
  border-radius: clamp(12px, 2vw, 16px);
  padding: 0 0 clamp(16px, 3vw, 24px) 0;
}

.card-image {
  width: 100%;
  height: clamp(180px, 25vw, 200px);
  border-radius: 16px;
  margin-bottom: clamp(20px, 4vw, 30px);
  position: relative;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
}
.card-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-img-1 {
  background-size: cover;
  overflow: hidden;
}
.card-img-2 {
  background-size: cover;
  overflow: hidden;
}

.card-title {
  font-size: clamp(1.4rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--brand-willof);
}

.card-description {
  font-size: clamp(1rem, 2vw, 1rem);
  line-height: 1.8;
  font-weight: 400;
  color: var(--text-color-darkgray);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: clamp(16px, 3vw, 24px) 0;
}

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

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-readcopy {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 700;
  color: var(--text-color-darkgray);
}

.cta-readcopy span {
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  line-height: 120%;
  color: var(--primary-pink);
  font-family: "gotham", Arial, Helvetica, sans-serif;
}
.cta-readcopy::before {
  content: "＼";
}
.cta-readcopy::after {
  content: "／";
}
.cta-button-large {
  box-sizing: border-box;
  padding: clamp(14px, 2.5vw, 18px) clamp(40px, 6vw, 60px);
  border-radius: 8px;
  background-color: var(--primary-pink);
  color: var(--text-color-white);
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 10px);
  transition: transform 0.2s;
  box-shadow: 0px 4px var(--primary-dark-pink);
}

.cta-button-large:hover {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  box-shadow: 0px 1px var(--primary-dark-pink);
}

.cta-button-large > span {
  font-size: clamp(1.2rem, 2.5vw, 1.2rem);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-button-large > 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;
}

/* Added complete form-section styles from CSS B */
.form-section {
    box-sizing: border-box;
    padding: 24px 0 100px;
}

.form-section .form-content {
  width: 800px;
  margin: 0 auto;
}

.form-section .form-content .gauge {
  box-sizing: border-box;
  padding: 18px 0 12px;
}

.form-section .form-content .gauge .gauge-fill-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 14px;
}

.form-section .form-content .gauge .gauge-fill-group .gauge-fill {
  display: block;
  width: 148px;
  height: 6px;
  border-radius: 4px;
  background-color: #dedede;
}

.form-section .form-content .gauge .gauge-fill-group .gauge-fill.filled {
  background-color: var(--primary-pink);
}

.form-section .form-content .gauge .gauge-text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.form-section .form-content .gauge .gauge-text-wrapper .gauge-text {
  color: var(--form-input-text);
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
}

.form-section .form-content .gauge .gauge-text-wrapper .complete-text {
  display: flex;
  justify-content: center;
  align-items: center;
  color:  var(--);
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
}

.form-section .form-content .gauge .gauge-text-wrapper .complete-text .complete-percent {
  margin-right: 1px;
  color: var(--form-text-black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
}

.form-section .form-content .gauge .gauge-text-wrapper .complete-text .complete-percent.completed {
  color: var(--primary-pink);
}

.form-section .form-content .swiper-wrapper {
  width: 800px;
  margin: 0 auto;
}

.form-section .form-content .swiper-wrapper .swiper-slide {
  display: none;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_contents .question-title {
  box-sizing: border-box;
  position: relative;
  padding: 30px 0 30px 52px;
  color: var(--form-text-black);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: normal;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_contents .question-title span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  width: 40px;
  height: 40px;
  margin: auto 0;
  border-radius: 4px;
  background-color: var(--background-color-black);
  color: var(--text-color-white);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: normal;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_contents .form_list_wrapper {
  box-sizing: border-box;
  width: 800px;
  padding: 60px;
  border-radius: 16px;
  background-color: var(--background-color-white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_list .form_item .swiper-button-next {
  display: none;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_list .form_item label .radio-appearance {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 210px;
  height: 64px;
  padding-left: 18px;
  border-radius: 8px;
  border: 1px solid var(--form-input-border);
  background-color: var(--background-color-lightgray);
  color: var(--form-text-black);
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.8px;
  cursor: pointer;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_list .form_item label .radio-appearance::after {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  width: 1em;
  height: 1em;
  margin: auto 0;
  content: "\f054";
  color: var(--form-input-icon);
  font-family: "Font Awesome 6 Free";
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_list .form_item label .radio-appearance .radio-img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_list .form_item label .radio-appearance:hover {
  border: 3px solid var(--form-input-border);
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_list .form_item label .radio-appearance.experience {
  justify-content: center;
  flex-direction: column;
  width: 328px;
  height: 279px;
  padding: 19px 0 31px;
  padding-left: 0;
}

.form-section
  .form-content
  .swiper-wrapper
  .swiper-slide
  .form_list
  .form_item
  label
  .radio-appearance.experience::after {
  display: none;
}

.form-section
  .form-content
  .swiper-wrapper
  .swiper-slide
  .form_list
  .form_item
  label
  .radio-appearance.experience-year {
  justify-content: center;
  flex-direction: column;
  width: 210px;
  height: 210px;
  padding: 19px 0 31px;
  padding-left: 0;
}

.form-section
  .form-content
  .swiper-wrapper
  .swiper-slide
  .form_list
  .form_item
  label
  .radio-appearance.experience-year::after {
  display: none;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info:nth-of-type(n + 2) {
  margin-top: 24px;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_info_title {
  margin-bottom: 12px;
  color: var(--form-text-black);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: normal;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .select_item_group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .select_item {
  position: relative;
  width: 213px;
  height: 52px;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .select_item::after {
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  width: 1em;
  height: 1em;
  margin: auto 0;
  content: "\f078";
  color: var(--form-input-icon);
  font-family: "Font Awesome 6 Free";
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .select_item .select_detail {
  box-sizing: border-box;
  width: 213px;
  height: 52px;
  padding: 17px 12px 17px 15px;
  border-radius: 8px;
  border: 1px solid var(--form-input-border);
  background-color: var(--background-color-lightgray);
  appearance: none;
  color: var(--form-text-black);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item:nth-of-type(n + 2) {
  margin-top: 12px;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item input {
  box-sizing: border-box;
  width: 330px;
  height: 52px;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--form-input-border);
  background-color: var(--background-color-lightgray);
  color: var(--form-text-black);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item input::placeholder {
  color: var(--form-input-text);
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item input.error_input {
  border: 2px solid var(--form-input-border-yellow);
  background: var(--form-input-bg-yellow);
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item input[type="tel"],
.form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item input[type="email"] {
  width: 680px;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .error {
  box-sizing: border-box;
  position: relative;
  margin-top: 4px;
  padding-left: 18px;
  color: var(--form-input-border-yellow);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: normal;
}

.form-section .form-content .swiper-wrapper .swiper-slide .form_info .error::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1em;
  height: 1em;
  margin: auto 0;
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.form-section .form-content .swiper-wrapper .swiper-slide .info_last {
  margin-top: 24px;
}

.form-section .form-content .swiper-wrapper .swiper-slide .info_last .info_text {
  color: var(--form-text-black);
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: normal;
}

.form-section .form-content .swiper-wrapper .swiper-slide .info_last .info_text .info_link {
  color: #1260e7;
}

.form-section .form-content .swiper-wrapper .swiper-slide .info_last .send_button {
  display: block;
  box-sizing: border-box;
  padding: 12px 12px 8px;
  margin: 24px auto 0;
  width: 320px;
  border-radius: 8px;
  background-color: var(--primary-pink);
  border: none;
  appearance: none;
  color: var(--text-color-white);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.form-section .form-content .swiper-wrapper .swiper-slide .info_last .send_button .agreement-with {
  box-sizing: border-box;
  display: block;
  width: 296px;
  margin: 12px auto 0;
  padding: 4px 7px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.15);
  color: var(--text-color-white);
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.form-section .form-content .swiper-wrapper .swiper-slide .info_last .send_button:disabled {
  background-color: #e6e6e6;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  pointer-events: none;
  color: #c6c6c6;
}

.form-section .form-content .swiper-wrapper .swiper-slide .info_last .send_button.modi-disabled {
  pointer-events: none;
  background-color: #e6e6e6;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  pointer-events: none;
  color: #c6c6c6;
}

.form-section .form-content .swiper-wrapper .swiper-slide .btn_box {
  margin: 24px auto 0;
}

.form-section .form-content .swiper-wrapper .swiper-slide .btn_box .swiper-button-prev {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: fit-content;
  padding-left: 18px;
  margin: 0 auto;
  color: var(--text-color-lightgray);
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-decoration: none;
}

.form-section .form-content .swiper-wrapper .swiper-slide .btn_box .swiper-button-prev::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1em;
  height: 1em;
  margin: auto 0;
  content: "\f3e5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
}

/* Footer */
.lp-footer {
  background-color: var(--brand-willof);
  color: var(--text-color-white);
  border-radius: clamp(20px, 5vw, 40px) clamp(20px, 5vw, 40px) 0 0;
  margin-top: clamp(-20px, -4vw, -40px);
  position: absolute;
  bottom: 0;
  width: 100%;
}

.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(8px, 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-link-group .separator {
  color: var(--background-color-white);
  font-size: 0.625rem;
}

.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;
}

/* Side Panel */
.side-panel-warp {
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 999;
}

.side-panel-warp a {
  text-decoration: none;
  display: block;
}

.side-panel {
  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;
}
.side-panel > span {
  font-size: clamp(1.1rem, 1vw, 1.3rem);
}

.side-panel:hover {
  box-shadow: 0px 2px var(--primary-dark-pink);
}

.side-panel-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;
}

.side-panel-badge-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-color-darkgray);
  line-height: 1;
  font-feature-settings: "palt";
}

.side-panel-badge-time {
  font-size: 1.375rem;
  font-family: "gotham", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  color: #e44899;
  line-height: 1;
}

.side-panel-badge-time span {
  font-size: 1rem;
}

/* ======================================== */
/* Responsive - Tablet 1279以下 */
/* ======================================== */
@media screen and (max-width: 1279px) {
  body {
    width: 100%;
  }
  .page-wrapper {
    width: 100%;
  }
  .br-pc {
    display: none;
  }
  .br-tb {
    display: block;
  }
  .br-sp {
    display: none;
  }

  .lp-header .header-inner {
    padding: 0 5%;
  }

  .lp-header .header-inner,
  .hero-container,
  .form-induction-container,
  .info-container {
    width: 90%;
    max-width: 880px;
  }
  .all-wrap .bg-point-yellow {
    top: 22%;
    left: 0;
  }
  .all-wrap .bg-point-green {
    top: 28%;
    right: 0;
  }
  .all-wrap .bg-point-blue-purple {
    top: 76%;
    left: 0;
  }
  .all-wrap .bg-point-yellow-orange {
    top: 88%;
    right: 0;
  }
  .hero-features {
    top: clamp(240px, 33vw, 290px);
  }
  /* thanks 1279*/
  .thanks{
    width: 100vw;
    }
    .thanks p{
    text-align: center;
    }
    .thanks .textbox{
    text-align: center;
    }
  /* footer */
  .footer-inner{
    max-width: 1000px;
    margin: 0 auto;
  }
}

/* ======================================== */
/* Responsive - Mobile 767以下 */
/* ======================================== */
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    transform: scale(calc(100vw / 767));
    transform-origin: top left;
    min-height: 100vh;
  }
  .br-pc {
    display: none;
  }
  .br-tb {
    display: none;
  }
  .br-sp {
    display: block;
  }
  .lp-header {
    height: 80px;
  }
  .lp-header .header-inner {
    width: 100%;
    height: 80px;
    padding: 0 5%;
  }

  .lp-header .header-inner .header-text {
    font-size: 9px;
    text-align: right;
  }

  .lp-header .header-inner .header-text .form-header-text {
    box-sizing: border-box;
    display: inline-block;
    width: fit-content;
    height: 18px;
    padding: 0 5px;
    margin-right: 8px;
    border-radius: 4px;
    background-color: var(--background-color-black);
    color: var(--text-color-white);
    text-align: center;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: normal;
  }

  .hero {
    padding: 16px 0px;
  }

  .hero-container {
    gap: 30px;
    width: 100%;
    padding: 24px 5%;
  }
  .hero-content {
    padding: 0;
  }

  .hero-features {
    top: clamp(260px, 70vw, 260px);
  }

  .form-induction {
    width: 90%;
  }

  .form-induction-container {
    width: 100%;
  }

  .form-induction h2 {
    margin-bottom: 16px;
  }

  .form-induction-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .form-induction-item {
    padding: 8px;
  }

  .form-induction-item.full-width {
    grid-column: span 1;
  }

  .form-induction-item small {
    display: block;
  }

  .form-induction .form-induction-heading {
    font-size: 16px;
  }

  .form-induction .form-induction-choices {
    justify-content: center;
    gap: 10px 10px;
  }

  .form-induction .form-induction-choices .choice {
    width: 140px;
    height: 40px;
    padding: 11px 7px 11px 11px;
    font-size: 14px;
  }

  .form-induction .form-induction-choices .choice:has(span) {
    width: 186px;
  }

  .form-induction .form-induction-choices .choice span {
    margin-left: 8px;
    color: var(--text-color-darkgray);
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: normal;
  }

  .form-induction .form-induction-choices .choice:hover {
    border: 1px solid var(--form-input-border);
  }

  .info-section {
    padding: 40px 5%;
  }

  .info-container {
    width: 100%;
  }

  .info-cards-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
  }

  .card-image {
    width: 100%;
    height: 60%;
  }

  .cta-section {
    padding: 0px 5% 60px;
  }

  .form-section {
    box-sizing: border-box;
    padding: 0;
  }

  .form-section .form-content {
    width: 375px;
    margin: 0 auto;
  }

  .form-section .form-content .gauge {
    position: fixed;
    bottom: 40px;
    right: 0;
    left: 0;
    z-index: 999;
    width: 311px;
    padding: 8px 16px;
    margin: 0 auto;
    border-radius: 12px;
    background-color: var(--background-color-white);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }

  .form-section .form-content .gauge .gauge-fill-group {
    gap: 0 5px;
    padding: 6px 0;
  }

  .form-section .form-content .gauge .gauge-fill-group .gauge-fill {
    width: 50px;
  }

  .form-section .form-content .gauge .gauge-text-wrapper {
    margin-top: 4px;
  }

  .form-section .form-content .gauge .gauge-text-wrapper .gauge-text {
    font-size: 10px;
  }

  .form-section .form-content .swiper-wrapper {
    width: 375px;
    margin: 0 auto;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide {
    padding-bottom: 120px;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_contents .question-title {
    box-sizing: border-box;
    position: relative;
    padding: 14px 12px 17px 54px;
    background-color: var(--background-color-black);
    color: var(--text-color-white);
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: normal;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_contents .question-title span {
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    display: block;
    width: 30px;
    height: 30px;
    margin: auto 0;
    border-radius: 4px;
    background-color: var(--background-color-white);
    color: #1b1b1b;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: normal;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_contents .form_list_wrapper {
    box-sizing: border-box;
    width: 375px;
    padding: 24px 24px 24px;
    border-radius: 0%;
    background-color: var(--background-color-white);
    box-shadow: none;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_contents .form_list_wrapper.q1-list {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 430px;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_list .form_item .swiper-button-next {
    display: none;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_list .form_item label .radio-appearance {
    justify-content: center;
    width: 153px;
    height: 68px;
    padding-left: 0;
    color: #333;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_list .form_item label .radio-appearance::after {
    display: none;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_list .form_item label .radio-appearance .radio-img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .form-section
    .form-content
    .swiper-wrapper
    .swiper-slide
    .form_list
    .form_item
    label
    .radio-appearance.sp-one-column {
    width: 327px;
    height: 64px;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_list .form_item label .radio-appearance.experience {
    width: 153px;
    height: 150px;
    padding: 19px 0 23px;
    padding-left: 0;
  }

  .form-section
    .form-content
    .swiper-wrapper
    .swiper-slide
    .form_list
    .form_item
    label
    .radio-appearance.experience::after {
    display: none;
  }

  .form-section
    .form-content
    .swiper-wrapper
    .swiper-slide
    .form_list
    .form_item
    label
    .radio-appearance.experience-year {
    width: 153px;
    height: 150px;
    padding: 11px 0 23px;
    padding-left: 0;
    font-size: 14px;
  }

  .form-section
    .form-content
    .swiper-wrapper
    .swiper-slide
    .form_list
    .form_item
    label
    .radio-appearance.experience-year::after {
    display: none;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info:nth-of-type(n + 2) {
    margin-top: 20px;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_info_title {
    margin-bottom: 12px;
    color: #1b1b1b;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: normal;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .select_item_group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .select_item {
    position: relative;
    width: 95px;
    height: 48px;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .select_item::after {
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    width: 1em;
    height: 1em;
    margin: auto 0;
    content: "\f078";
    color: var(--form-input-icon);
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .select_item .select_detail {
    box-sizing: border-box;
    width: 95px;
    height: 48px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddf0f5;
    background-color: #f4fdfd;
    appearance: none;
    color: #1b1b1b;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 20px;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item:nth-of-type(n + 2) {
    margin-top: 12px;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item input {
    box-sizing: border-box;
    width: 153px;
    height: 48px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddf0f5;
    background-color: #f4fdfd;
    color: #1b1b1b;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item input::placeholder {
    color: #b3b3b3;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item input.error_input {
    border: 2px solid var(--form-input-border-yellow);
    background: var(--form-input-bg-yellow);
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item input[type="tel"],
  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .form_item input[type="email"] {
    width: 327px;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .error {
    box-sizing: border-box;
    position: relative;
    margin-top: 4px;
    padding-left: 18px;
    color: var(--form-input-border-yellow);
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: normal;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .form_info .error::before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1em;
    height: 1em;
    margin: auto 0;
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .info_last {
    margin-top: 20px;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .info_last .info_text {
    color: #1b1b1b;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: normal;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .info_last .info_text .info_link {
    color: #1260e7;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .info_last .send_button {
    display: block;
    box-sizing: border-box;
    padding: 12px 12px 8px;
    margin: 20px auto 0;
    width: 327px;
    border-radius: 8px;
    background-color: var(--primary-pink);
    border: none;
    appearance: none;
    color: #fff;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .info_last .send_button .agreement-with {
    box-sizing: border-box;
    display: block;
    width: 303px;
    margin: 12px auto 0;
    padding: 4px 7px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.15);
    color: #fff;
    text-align: center;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .info_last .send_button:disabled {
    background-color: #e6e6e6;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    color: #c6c6c6;
    pointer-events: none;
  }

  .form-section .form-content .swiper-wrapper .swiper-slide .btn_box {
    margin: 8px auto 0;
    position: relative;
  }
  /* Side Panel */
  /* cta-sectionが表示されたときにside-panel-warpを非表示にする */
  .side-panel-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;
  }

  .side-panel-warp {
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  /* thanks 767*/
  .thanks{
    width: 100vw;
    padding: 16px 16px;
  }

  .lp-footer {
    border-radius: 8px 8px 0 0;
  }

  .all-wrap .bg-point-yellow {
    top: 20%;
    left: -10%;
  }
  .all-wrap .bg-point-green {
    top: 35%;
    right: 0%;
    overflow: hidden;
  }
  .all-wrap .bg-point-blue-purple {
    top: 80%;
    left: 0;
  }
  .all-wrap .bg-point-yellow-orange {
    top: 88%;
    right: 0;
  }
  .side-panel-warp {
    width: 100vw;
    position: fixed;
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    transform: none;
    z-index: 1000;
    background: transparent;
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    backdrop-filter: blur(10px);
  }

  .side-panel-warp a {
    display: block;
    max-width: 500px;
    margin: 0 auto;
  }

  .side-panel {
    writing-mode: horizontal-tb;
    background: var(--primary-pink);
    border-radius: 16px !important;
    box-shadow: 0px 4px var(--primary-dark-pink);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 20px;
    letter-spacing: normal;
    transition: all 0.2s ease;
  }

  .side-panel:hover {
    box-shadow: 0px 2px var(--primary-dark-pink);
    transform: translateY(2px);
  }

  .side-panel-badge {
    background: var(--background-color-white);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    order: -1;
    margin: 0;
    flex-shrink: 0;
  }

  .side-panel-badge-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary-pink);
    line-height: 1;
  }

  .side-panel-badge-time {
    font-size: 1.25rem;
    font-family: "gotham", Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    color: var(--primary-pink);
    line-height: 1;
  }

  .side-panel-badge-time span {
    font-size: 0.7rem;
  }

  .side-panel > 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;
    margin-left: 8px;
  }
}
