@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 72px;
  }
}

body {
  font-family: "DM Sans", "M PLUS 1p", sans-serif;
  color: #2a3029;
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

#counselors,
#about,
#features,
#pricing,
#voices,
#faq {
  scroll-margin-top: 112px;
}
@media (max-width: 767px) {
  #counselors,
#about,
#features,
#pricing,
#voices,
#faq {
    scroll-margin-top: 72px;
  }
}

.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

.btn-primary {
  background-color: #00744b;
  color: #ffffff;
  font-weight: 400;
  border-radius: 9999px;
  text-align: center;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.btn-primary:hover {
  background-color: #2fa57b;
  opacity: 0.9;
}

.btn-outline {
  border: 1px solid #00744b;
  color: #00744b;
  border-radius: 9999px;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background-color: #00744b;
  color: #ffffff;
}

.swiper-slide {
  box-sizing: border-box !important;
}

.site-header {
  padding: 16px 0;
  height: 112px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 200;
  color: #2a3029;
}
@media (max-width: 1023px) {
  .site-header {
    height: 80px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .site-header {
    height: 72px;
    padding: 16px 24px;
    margin: 0;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1023px) {
  .header-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding: 0;
  }
}

.desktop-nav {
  display: flex;
  flex-basis: 55%;
}
.desktop-nav ul {
  display: flex;
  gap: 32px;
}
.desktop-nav a {
  font-size: clamp(12px, 0.97vw, 14px);
  font-weight: 400;
  transition: color 0.2s;
  color: #2a3029;
}
.desktop-nav a:hover {
  color: #2fa57b;
}
@media (max-width: 1229px) {
  .desktop-nav {
    display: none;
  }
}

.header-buttons {
  display: flex;
  gap: 12px;
}
.header-buttons .btn-primary {
  padding: 12px 29px;
  font-size: 14px;
}
@media (max-width: 1229px) {
  .header-buttons {
    display: none;
  }
}

.mobile-controls {
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 60;
}
.mobile-controls a,
.mobile-controls button {
  display: flex;
  align-items: center;
  color: #00744b;
}
.mobile-controls svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 1229px) {
  .mobile-controls {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 300;
  padding: 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu svg {
  color: #00744b;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0 24px;
}
.mobile-menu-header a,
.mobile-menu-header button {
  display: flex;
  align-items: center;
  color: #00744b;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-buttons {
  display: flex;
  gap: 12px;
  padding: 24px 24px 0;
  margin-bottom: 32px;
}
.mobile-menu-buttons .btn-primary {
  flex: 1;
  padding: 12px 0;
  font-size: 14px;
}

.mobile-menu-list {
  border-top: 1px solid #e5e7eb;
}
.mobile-menu-list a {
  display: block;
  padding: 20px 24px;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #e5e7eb;
  color: #2a3029;
}

@media (max-width: 767px) {
  .hero {
    margin-top: 0;
  }
}

.hero-inner {
  border-radius: 64px;
  position: relative;
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .hero-inner {
    width: 90%;
    border-radius: 32px;
  }
}

.hero-image-area {
  width: 100%;
}
.hero-image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 64px;
}
@media (max-width: 767px) {
  .hero-image-area img {
    border-radius: 32px;
  }
}

.hero-image-desktop {
  display: block;
  height: 100%;
  -o-object-position: left;
     object-position: left;
}
@media (max-width: 767px) {
  .hero-image-desktop {
    display: none;
  }
}

.hero-image-mobile {
  display: none;
}
@media (max-width: 767px) {
  .hero-image-mobile {
    display: block;
  }
}

.hero-text-area {
  color: #ffffff;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .hero-text-area {
    left: 3%;
  }
}
@media (max-width: 767px) {
  .hero-text-area {
    text-align: center;
    top: 10%;
    left: 50%;
    bottom: auto;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 10px;
  }
}

.hero-title {
  font-size: clamp(32px, calc(3.8520801233vw + 17.5546995378px), 57px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
@media (max-width: 1023px) {
  .hero-title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .hero-title {
    display: inline-block;
    margin-bottom: 0;
  }
  .hero-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
@media (max-width: 360px) {
  .hero-title {
    font-size: 28px;
  }
}

.hero-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .hero-divider {
    display: none;
  }
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media (max-width: 360px) {
  .hero-subtitle {
    font-size: 12px;
  }
}

.stats-section {
  padding-left: 100px;
  padding-right: 100px;
  margin-top: 90px;
  margin-bottom: 80px;
}
@media (max-width: 1023px) {
  .stats-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .stats-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 1023px) {
  .stats-section {
    margin-top: 64px;
    margin-bottom: 32px;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

.stat-item {
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  justify-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
  min-width: 0;
}
@media (max-width: 767px) {
  .stat-item {
    padding: 0 16px;
  }
  .stat-item:nth-child(-n+2) {
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
  }
  .stat-item:nth-child(n+3) {
    padding-top: 20px;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid #e5e7eb;
  }
}

.stat-img-circle,
.stat-img-bar {
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 16px;
}
@media (max-width: 1023px) {
  .stat-img-circle,
.stat-img-bar {
    max-width: 150px;
  }
}
@media (max-width: 767px) {
  .stat-img-circle,
.stat-img-bar {
    max-width: 120px;
    margin-bottom: 12px;
  }
}

.stat-img-circle {
  border-radius: 50%;
}

.stat-label {
  font-size: clamp(14px, calc(0.3081664099vw + 12.844375963px), 16px);
  font-weight: 500;
  color: #00744b;
  line-height: 1.3;
}

.stat-divider {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #e5e7eb;
}
@media (max-width: 767px) {
  .stat-divider {
    display: none;
  }
}

.annotation {
  margin: 37px auto 0;
  text-align: center;
  font-size: 12px;
  color: #707070;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .annotation {
    margin: 27px auto 0;
  }
}

.supervisor-section {
  padding-left: 200px;
  padding-right: 200px;
  margin-bottom: 73px;
}
@media (max-width: 1023px) {
  .supervisor-section {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .supervisor-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 1439px) {
  .supervisor-section {
    width: 90%;
    max-width: 1240px;
    padding: 0;
    margin: 0 auto 73px;
  }
}
@media (max-width: 767px) {
  .supervisor-section {
    margin-bottom: 80px;
  }
}

.supervisor-card {
  position: relative;
  border: 1px solid #2fa57b;
  border-radius: 24px;
  padding: 24px 40px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.0588235294);
}
@media (max-width: 767px) {
  .supervisor-card {
    border-radius: 28px;
    padding: 24px;
  }
}

.ribbon {
  position: absolute;
  top: 0;
  right: 40px;
  color: #2fa57b;
  width: 33px;
  height: 34px;
}
@media (max-width: 767px) {
  .ribbon {
    right: 35px;
  }
}

.supervisor-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 26px;
}
@media (max-width: 767px) {
  .supervisor-content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.supervisor-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.supervisor-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .supervisor-text {
    text-align: center;
    align-items: center;
  }
}

.supervisor-title {
  color: #00744b;
  font-size: clamp(20px, calc(0.6163328197vw + 17.688751926px), 24px);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .supervisor-title {
    margin-bottom: 12px;
    text-align: left;
  }
}

.supervisor-desc {
  font-size: 16px;
  color: #2a3029;
  text-align: left;
  line-height: 1.6;
  width: 100%;
}

.br-mobile-only {
  display: none;
}
@media (max-width: 767px) {
  .br-mobile-only {
    display: block;
  }
}

.counselors-section {
  overflow-x: clip;
  overflow-y: visible;
  margin-bottom: 77px;
}
@media (max-width: 767px) {
  .counselors-section {
    margin-bottom: 80px;
  }
}

.section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  text-align: left;
  padding-left: 100px;
  padding-right: 100px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .section-header {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .section-header {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .section-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    text-align: center;
  }
}

.section-title {
  font-size: clamp(24px, calc(0.6163328197vw + 21.688751926px), 28px);
  font-weight: 500;
  line-height: 1.4;
  flex-basis: 45%;
}

.section-desc {
  font-size: clamp(14px, calc(0.3081664099vw + 12.844375963px), 16px);
  color: #2a3029;
  line-height: 1.6;
  width: 100%;
  flex-basis: 45%;
}

.counselor-swiper {
  overflow: visible !important;
  padding-bottom: 16px !important;
}
.counselor-swiper .swiper-wrapper {
  align-items: stretch;
}
.counselor-swiper .swiper-slide {
  width: 320px;
  height: auto;
}
@media (max-width: 767px) {
  .counselor-swiper .swiper-slide {
    width: 80%;
    max-width: 300px;
  }
}

.counselor-card {
  height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px 20px 20px 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counselor-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 21px;
}

.counselor-name {
  color: #00744b;
  font-weight: 500;
  font-size: clamp(16px, calc(0.6163328197vw + 13.688751926px), 20px);
  margin-bottom: 4px;
}

.counselor-role {
  font-size: 14px;
  color: #707070;
  margin-bottom: 22px;
}

.counselor-text {
  font-size: clamp(12px, calc(0.6163328197vw + 9.688751926px), 16px);
  color: #2a3029;
  line-height: 1.6;
  text-align: left;
  width: 100%;
}

.more-btn-wrapper {
  text-align: center;
  margin-top: 21px;
}
@media (max-width: 767px) {
  .more-btn-wrapper {
    margin-top: 10px;
  }
}

.more-btn {
  padding: 16px 56px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .more-btn {
    padding: 16px 44px;
  }
}

.ai-buddy-section {
  background-image: url("../img/circle-white.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 767px) {
  .ai-buddy-section {
    background-image: url("../img/circle-white-sp.png");
    background-position: center bottom 60px;
  }
}

.ai-buddy-inner {
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  max-width: 1700px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .ai-buddy-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .ai-buddy-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 1023px) {
  .ai-buddy-inner {
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  .ai-buddy-inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
  }
}

.ai-buddy-img-wrapper {
  display: flex;
  justify-content: center;
  max-width: 480px;
  flex-basis: 38.7%;
}
@media (max-width: 767px) {
  .ai-buddy-img-wrapper {
    width: 100%;
  }
}

.ai-buddy-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.ai-buddy-text {
  flex-basis: 53.22%;
  text-align: left;
}
@media (max-width: 1023px) {
  .ai-buddy-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .ai-buddy-text {
    text-align: center;
  }
}

.ai-buddy-title {
  color: #00744b;
  font-size: clamp(24px, calc(0.6163328197vw + 21.688751926px), 28px);
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .ai-buddy-title {
    margin-bottom: 12px;
  }
}

.ai-buddy-desc {
  font-size: 16px;
  color: #2a3029;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 767px) {
  .ai-buddy-desc {
    text-align: center;
  }
}

.ally-section {
  margin-bottom: 120px;
  overflow-x: visible;
}
@media (max-width: 767px) {
  .ally-section {
    margin-bottom: 0;
    overflow-x: hidden;
  }
}

.ally-wrapper {
  background: url("../img/Section.png") center center/cover no-repeat;
  border-radius: 60px;
  min-height: 942px;
  padding: 84px 0 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1023px) {
  .ally-wrapper {
    min-height: auto;
    padding: 84px 24px 48px;
  }
}
@media (max-width: 767px) {
  .ally-wrapper {
    background-image: url("../img/Section-sp.png");
    border-radius: 32px;
    padding: 48px 16px 0;
    overflow: hidden;
    background-position: bottom;
  }
}

.ally-content {
  text-align: center;
  position: relative;
  z-index: 100;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .ally-content {
    margin-bottom: 40px;
  }
}

.ally-title {
  font-size: clamp(28px, calc(1.8489984592vw + 21.0662557781px), 40px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 18px;
  color: #2a3029;
  text-align: center;
}
@media (max-width: 767px) {
  .ally-title {
    margin-bottom: 16px;
  }
}

.ally-desc {
  font-size: clamp(12px, calc(0.6163328197vw + 9.688751926px), 16px);
  color: #2a3029;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .ally-desc {
    margin-bottom: 24px;
  }
}

.ally-btn {
  background-color: #ffffff;
  padding: 14px 55px;
  font-size: 16px;
}
.ally-btn:hover {
  background-color: #2fa57b;
  color: #ffffff;
}

.ally-bubbles-sp {
  display: none;
}
@media (max-width: 767px) {
  .ally-bubbles-sp {
    display: block;
    width: 100%;
    position: relative;
    max-width: 345px;
    bottom: -20px;
  }
}
.ally-bubbles-sp .ally-bubble {
  position: relative;
  width: 64%;
}
.ally-bubbles-sp .ally-bubble:nth-child(2) {
  margin-top: -120px;
}
.ally-bubbles-sp .ally-bubble:nth-child(3) {
  margin-top: -37px;
}
.ally-bubbles-sp .ally-bubble:nth-child(4) {
  margin-top: -70px;
}
.ally-bubbles-sp .ally-bubble:nth-child(5) {
  margin-top: -80px;
}
.ally-bubbles-sp .ally-bubble:nth-child(1) {
  margin-left: auto;
}
.ally-bubbles-sp .ally-bubble:nth-child(2) {
  margin-left: 0;
  transform: translateX(-12%);
}
.ally-bubbles-sp .ally-bubble:nth-child(3) {
  margin-left: auto;
  transform: translateX(5%);
}
.ally-bubbles-sp .ally-bubble:nth-child(4) {
  margin-left: 0;
  transform: translateX(-20%);
}
.ally-bubbles-sp .ally-bubble:nth-child(5) {
  margin-left: auto;
  transform: translateX(12%);
}
.ally-bubbles-sp .ally-bubble img {
  width: 100%;
  height: auto;
  display: block;
}
.ally-bubbles-sp .ally-bubble span {
  position: absolute;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  z-index: 2;
}
.ally-bubbles-sp .ally-bubble:nth-child(1) span {
  top: 53%;
  left: 20%;
  transform: translateY(-50%);
}
.ally-bubbles-sp .ally-bubble:nth-child(2) span {
  top: 55%;
  left: 18%;
}
.ally-bubbles-sp .ally-bubble:nth-child(3) span {
  top: 45%;
  left: 20%;
  transform: translateY(-50%);
}
.ally-bubbles-sp .ally-bubble:nth-child(4) span {
  top: 45%;
  left: 21%;
  transform: translateY(-50%);
}
.ally-bubbles-sp .ally-bubble:nth-child(5) span {
  top: 50%;
  left: 18%;
  transform: translateY(-50%);
}

.ally-bubbles-pc {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  padding: 0;
  max-width: 1700px;
  margin: 0 auto;
  left: 50%;
  transform: translatex(-50%);
}
@media (max-width: 1023px) {
  .ally-bubbles-pc {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 0 8px;
    position: static;
    height: auto;
    margin-top: 50px;
    left: 0;
    transform: translatex(0);
  }
}
@media (max-width: 767px) {
  .ally-bubbles-pc {
    display: none;
  }
}
.ally-bubbles-pc .ally-bubble {
  position: absolute;
}
.ally-bubbles-pc .ally-bubble span {
  letter-spacing: 0.05em;
}
@media (max-width: 1023px) {
  .ally-bubbles-pc .ally-bubble {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    flex: 1;
    max-width: 250px;
  }
}
.ally-bubbles-pc .ally-bubble span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  z-index: 2;
}
@media (max-width: 1023px) {
  .ally-bubbles-pc .ally-bubble span {
    font-size: 14px;
    width: 65%;
  }
}
.ally-bubbles-pc .b-yellow {
  top: 13.6%;
  left: 5%;
}
@media (max-width: 1023px) {
  .ally-bubbles-pc .b-yellow {
    top: auto;
    left: auto;
  }
}
.ally-bubbles-pc .b-yellow span {
  top: 61%;
  left: 20%;
  transform: translateY(-50%);
}
.ally-bubbles-pc .b-green {
  top: 15.2%;
  right: 7%;
}
.ally-bubbles-pc .b-green img {
  margin-left: auto;
}
.ally-bubbles-pc .b-green span {
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .ally-bubbles-pc .b-green {
    top: auto;
    right: auto;
  }
  .ally-bubbles-pc .b-green span {
    top: 50%;
    left: 24%;
  }
}
.ally-bubbles-pc .b-darkorange {
  bottom: 18%;
  left: 9%;
}
.ally-bubbles-pc .b-darkorange span {
  left: 22%;
}
@media (max-width: 1023px) {
  .ally-bubbles-pc .b-darkorange {
    bottom: auto;
    left: auto;
  }
  .ally-bubbles-pc .b-darkorange span {
    top: 50%;
    left: 30%;
  }
}
.ally-bubbles-pc .b-darkgreen {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.ally-bubbles-pc .b-darkgreen img {
  margin: 0 auto;
}
.ally-bubbles-pc .b-darkgreen span {
  top: 50%;
  left: 26%;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .ally-bubbles-pc .b-darkgreen {
    bottom: auto;
    left: auto;
    transform: none;
  }
  .ally-bubbles-pc .b-darkgreen span {
    top: 50%;
    left: 25%;
  }
}
.ally-bubbles-pc .b-orange2 {
  bottom: 16%;
  right: 9%;
}
.ally-bubbles-pc .b-orange2 img {
  margin-left: auto;
}
.ally-bubbles-pc .b-orange2 span {
  top: 54%;
  left: 19%;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .ally-bubbles-pc .b-orange2 {
    bottom: auto;
    right: auto;
  }
  .ally-bubbles-pc .b-orange2 span {
    top: 55%;
    left: 20%;
  }
}

@media (max-width: 1023px) {
  .ally-bubble-row {
    display: flex;
    justify-content: center;
    gap: 16px;
  }
}

.bubble-img {
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

@media screen and (max-width: 480px) {
  .ally-bubbles-sp .ally-bubble:nth-child(5) {
    transform: translateX(10%);
  }
  .ally-bubbles-sp .ally-bubble:nth-child(5) span {
    top: 55%;
    left: 17%;
  }
}
/* =========================================
   Hybrid Care Section (ハイブリッドケア)
========================================= */
.hybrid-section {
  padding-left: 100px;
  padding-right: 100px;
  text-align: center;
  margin-bottom: 90px;
}
@media (max-width: 1023px) {
  .hybrid-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .hybrid-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .hybrid-section {
    padding-top: 64px;
    margin-bottom: 64px;
  }
}
.hybrid-section .hybrid-title {
  font-size: clamp(24px, calc(2.4653312789vw + 14.7550077042px), 40px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 23px;
  color: #2a3029;
}
@media (max-width: 767px) {
  .hybrid-section .hybrid-title {
    margin-bottom: 24px;
  }
}
.hybrid-section .hybrid-desc {
  font-size: clamp(14px, calc(0.3081664099vw + 12.844375963px), 16px);
  color: #2a3029;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}
.hybrid-section .hybrid-btn-wrap {
  margin-top: 25px;
  text-align: center;
}
@media (max-width: 767px) {
  .hybrid-section .hybrid-btn-wrap {
    margin-top: 32px;
  }
}
.hybrid-section .hybrid-btn {
  padding: 16px 55px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .hybrid-section .hybrid-btn {
    padding: 16px 92px;
  }
}
.hybrid-section .hybrid-mockup {
  margin-top: 47px;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .hybrid-section .hybrid-mockup {
    margin-top: 40px;
    padding: 0;
  }
}
.hybrid-section .mockup-img {
  width: 100%;
  max-width: 738px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
}

/* =========================================
   Features Section (豊富な機能)
========================================= */
.features-section {
  padding-left: 100px;
  padding-right: 100px;
  margin-bottom: 120px;
}
@media (max-width: 1023px) {
  .features-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .features-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .features-section {
    margin-bottom: 64px;
  }
}
.features-section .features-header {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .features-section .features-header {
    margin-bottom: 32px;
  }
}
.features-section .features-title {
  font-size: clamp(24px, calc(2.4653312789vw + 14.7550077042px), 40px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #2a3029;
}
@media (max-width: 1023px) {
  .features-section .features-title {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .features-section .features-title {
    margin-bottom: 24px;
    width: 100%;
  }
}
.features-section .features-desc {
  font-size: clamp(14px, calc(0.3081664099vw + 12.844375963px), 16px);
  color: #2a3029;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px 40px;
}
@media (max-width: 767px) {
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
.features-section .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.features-section .feature-card .feat-icon-wrap {
  width: clamp(120px, calc(6.1633281972vw + 96.8875192604px), 160px);
  height: clamp(120px, calc(6.1633281972vw + 96.8875192604px), 160px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .features-section .feature-card .feat-icon-wrap {
    margin-bottom: 20px;
  }
}
.features-section .feature-card .feat-icon-img {
  width: 100%;
}
.features-section .feature-card .feat-title {
  font-size: clamp(16px, calc(0.6163328197vw + 13.688751926px), 20px);
  font-weight: 500;
  margin-bottom: 6px;
  color: #2a3029;
}
@media (max-width: 767px) {
  .features-section .feature-card .feat-title {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 480px) {
  .features-section .feature-card .feat-title {
    font-size: 0.96rem;
  }
}
.features-section .feature-card .feat-desc {
  font-size: clamp(14px, calc(0.3081664099vw + 12.844375963px), 16px);
  color: #2a3029;
  line-height: 1.6;
}

.voices-section {
  margin-bottom: 100px;
  overflow-x: clip;
  overflow-y: visible;
}
@media (max-width: 767px) {
  .voices-section {
    margin-bottom: 80px;
  }
}
.voices-section .container {
  padding: 0;
}
.voices-section .voices-header {
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 45px;
}
@media (max-width: 1023px) {
  .voices-section .voices-header {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .voices-section .voices-header {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.voices-section .voices-header .section-title {
  font-size: clamp(24px, calc(2.4653312789vw + 14.7550077042px), 40px);
}
@media (max-width: 767px) {
  .voices-section .voices-header {
    margin-bottom: 40px;
  }
}

.voice-swiper {
  overflow: visible !important;
  padding-bottom: 100px !important;
  margin-left: 100px;
}
@media (max-width: 767px) {
  .voice-swiper {
    padding-bottom: 0 !important;
    margin-left: 40px;
  }
}
.voice-swiper .swiper-slide {
  width: 80%;
  height: auto;
}
@media (max-width: 1023px) {
  .voice-swiper .swiper-slide {
    width: 88%;
  }
}
@media (max-width: 767px) {
  .voice-swiper .swiper-slide {
    width: 88%;
  }
}

.voice-card {
  height: 100%;
  border-radius: 24px;
  padding: 46px 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.voice-card--green {
  background-color: #2fa57b;
}
.voice-card--orange {
  background-color: #ea9d3a;
}
.voice-card--blue {
  background-color: #3772ce;
}
.voice-card--purple {
  background-color: #b977ef;
}
@media (max-width: 767px) {
  .voice-card {
    padding: 24px 16px;
  }
}

.voice-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}

.voice-name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.voice-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.voice-headline {
  font-size: clamp(14px, calc(0.3081664099vw + 12.844375963px), 16px);
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 16px;
  width: 100%;
}

.voice-body {
  font-size: clamp(12px, calc(0.3081664099vw + 10.844375963px), 14px);
  line-height: 1.6;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  width: 100%;
}

.pricing-section {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .pricing-section {
    margin-bottom: 64px;
  }
}
.pricing-section .pricing-wrapper {
  padding-left: 100px;
  padding-right: 100px;
  background-color: #2fa57b;
  border-radius: 48px;
  padding-top: 102px;
  padding-bottom: 102px;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .pricing-section .pricing-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .pricing-section .pricing-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 1023px) {
  .pricing-section .pricing-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .pricing-section .pricing-wrapper {
    border-radius: 32px;
    padding: 48px 20px 40px;
  }
}
.pricing-section .pricing-header {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .pricing-section .pricing-header {
    margin-bottom: 48px;
  }
}
.pricing-section .pricing-header .pricing-title {
  font-size: clamp(24px, calc(2.4653312789vw + 14.7550077042px), 40px);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .pricing-section .pricing-header .pricing-title {
    margin-bottom: 16px;
    line-height: 1.1;
  }
}
.pricing-section .pricing-header .text-yellow {
  color: #ffe262;
  letter-spacing: 0.03em;
  font-size: clamp(40px, calc(2.4653312789vw + 30.7550077042px), 56px);
}
.pricing-section .pricing-header .pricing-subtitle {
  font-size: clamp(14px, calc(0.3081664099vw + 12.844375963px), 16px);
  line-height: 1.5;
}
.pricing-section .pricing-cards {
  display: flex;
  flex-direction: row;
  gap: 3%;
  margin-bottom: 48px;
  max-width: 1700px;
  margin: 0 auto 48px;
}
@media (max-width: 767px) {
  .pricing-section .pricing-cards {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
  }
}
.pricing-section .plan-card {
  background-color: #ffffff;
  color: #2a3029;
  border-radius: 24px;
  padding: 40px 15px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  flex: 1;
}
@media (max-width: 767px) {
  .pricing-section .plan-card {
    flex: none;
    padding: 40px 24px 32px;
  }
}
.pricing-section .plan-card .plan-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffe262;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .pricing-section .plan-card .plan-badge {
    padding: 8px 20px;
    top: -16px;
  }
}
.pricing-section .plan-card .plan-name {
  font-size: clamp(18px, calc(0.3081664099vw + 16.844375963px), 20px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .pricing-section .plan-card .plan-name {
    margin-bottom: 16px;
  }
}
.pricing-section .plan-card .plan-name.mt-no-badge {
  margin-top: 0;
}
.pricing-section .plan-card .plan-price {
  text-align: center;
  margin-bottom: 20px;
}
.pricing-section .plan-card .plan-price .price-symbol {
  font-size: 24px;
  font-weight: 700;
  color: #00744b;
  margin-right: 6px;
}
.pricing-section .plan-card .plan-price .price-number {
  font-size: 32px;
  font-weight: 700;
  color: #00744b;
  letter-spacing: -0.02em;
}
.pricing-section .plan-card .plan-price .price-unit {
  font-size: 16px;
  font-weight: 500;
  color: #2fa57b;
  margin-left: 6px;
}
.pricing-section .plan-card .plan-price .price-tax {
  font-size: 14px;
  color: #707070;
  margin-top: 4px;
}
.pricing-section .plan-card .plan-desc {
  min-height: 150px;
  font-size: 14px;
  color: #2a3029;
  line-height: 1.6;
  margin-bottom: 23px;
  padding-bottom: 26px;
  border-bottom: solid 1px #eeeeee;
  text-align: center;
}
@media (max-width: 767px) {
  .pricing-section .plan-card .plan-desc {
    margin-bottom: 24px;
    text-align: center;
  }
}
.pricing-section .plan-card .plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .pricing-section .plan-card .plan-features li {
    margin-bottom: 12px;
  }
}
.pricing-section .plan-card .plan-features li:last-child {
  margin-bottom: 0;
}
.pricing-section .plan-card .plan-features .feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.pricing-section .plan-card .plan-features .feature-icon img {
  width: 100%;
}
.pricing-section .plan-card .plan-features .plan-count {
  font-size: 20px;
  margin-right: 2px;
}
.pricing-section .plan-card .plan-features .is-unavailable {
  filter: grayscale(1);
  opacity: 0.5;
}
.pricing-section .plan-card .plan-features .is-unavailable span {
  text-decoration: line-through;
}
.pricing-section .text-green {
  color: #00744b !important;
  font-weight: 500;
}
.pricing-section .extra-price-color {
  color: #00744b;
}
.pricing-section .pricing-extra-box {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 16px 40px;
  color: #2a3029;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .pricing-section .pricing-extra-box {
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .pricing-section .pricing-extra-box {
    flex-direction: column;
    border-radius: 24px;
    padding: 32px 24px;
    gap: 20px;
  }
}
.pricing-section .pricing-extra-box .extra-left {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 20px;
}
@media (max-width: 1023px) {
  .pricing-section .pricing-extra-box .extra-left {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .pricing-section .pricing-extra-box .extra-left {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
.pricing-section .pricing-extra-box .extra-label {
  font-size: clamp(14px, calc(0.3081664099vw + 12.844375963px), 16px);
  font-weight: 500;
}
.pricing-section .pricing-extra-box .extra-price-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media (max-width: 767px) {
  .pricing-section .pricing-extra-box .extra-price-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.pricing-section .pricing-extra-box .extra-price-wrap .price-number {
  font-size: 28px;
  font-weight: 700;
}
.pricing-section .pricing-extra-box .extra-price-wrap .price-symbol {
  font-weight: 700;
  font-size: clamp(20px, calc(0.6163328197vw + 17.688751926px), 24px);
}
.pricing-section .pricing-extra-box .extra-price-wrap .price-unit {
  font-size: 16px;
  font-weight: 500;
}
.pricing-section .pricing-extra-box .extra-tax {
  font-size: 14px;
  color: #707070;
  margin-left: 24px;
}
@media (max-width: 767px) {
  .pricing-section .pricing-extra-box .extra-tax {
    flex-basis: 100%;
    margin-left: 0;
    text-align: center;
  }
}
.pricing-section .pricing-extra-box .extra-divider {
  width: 1px;
  height: 32px;
  background-color: #e5e7eb;
}
@media (max-width: 1023px) {
  .pricing-section .pricing-extra-box .extra-divider {
    width: 100%;
    height: 1px;
  }
}
@media (max-width: 767px) {
  .pricing-section .pricing-extra-box .extra-divider {
    width: 100%;
    height: 1px;
  }
}
.pricing-section .pricing-extra-box .extra-right {
  font-size: 14px;
  color: #2a3029;
  line-height: 1.6;
  text-align: left;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .pricing-section .pricing-extra-box .extra-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .pricing-section .pricing-extra-box .extra-right {
    text-align: center;
    max-width: none;
  }
}
.pricing-section .pricing-notes {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 30px;
}
.pricing-section .pricing-notes li::before {
  content: "・";
}

.faq-section {
  padding-left: 200px;
  padding-right: 200px;
  margin-bottom: 130px;
}
@media (max-width: 1023px) {
  .faq-section {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .faq-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 1439px) {
  .faq-section {
    width: 90%;
    max-width: 1240px;
    padding: 0;
    margin: 0 auto 73px;
  }
}
@media (max-width: 767px) {
  .faq-section {
    margin-bottom: 64px;
  }
}
.faq-section .faq-title {
  text-align: center;
  font-size: clamp(24px, calc(2.4653312789vw + 14.7550077042px), 40px);
  font-weight: 500;
  margin-bottom: 37px;
  color: #2a3029;
}
@media (max-width: 767px) {
  .faq-section .faq-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .faq-section .faq-list {
    gap: 12px;
    margin-bottom: 32px;
  }
}
.faq-section .faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.faq-section .faq-item.is-open .faq-answer {
  max-height: 200px;
}
.faq-section .faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.faq-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 24px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
@media (max-width: 767px) {
  .faq-section .faq-question {
    padding: 20px;
  }
}
.faq-section .faq-icon-q,
.faq-section .faq-icon-a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .faq-section .faq-icon-q,
.faq-section .faq-icon-a {
    width: 36px;
    height: 36px;
    font-size: 15px;
    margin-right: 16px;
  }
}
.faq-section .faq-icon-q {
  background-color: #2fa57b;
  color: #ffffff;
  font-family: "M PLUS 1p", sans-serif;
}
.faq-section .faq-q-text {
  flex-grow: 1;
  font-size: 16px;
  font-weight: 500;
  color: #00744b;
  line-height: 1.5;
  padding-right: 16px;
}
.faq-section .faq-toggle {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq-section .faq-toggle::before, .faq-section .faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #2ea282;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.faq-section .faq-toggle::before {
  width: 100%;
  height: 2px;
}
.faq-section .faq-toggle::after {
  width: 2px;
  height: 100%;
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-section .faq-answer-inner {
  padding: 24px 32px 32px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .faq-section .faq-answer-inner {
    padding: 20px 20px 24px;
  }
}
.faq-section .faq-icon-a {
  background-color: #ffffff;
  color: #2ea282;
  border: 1px solid #2ea282;
}
.faq-section .faq-a-text {
  font-size: 16px;
  color: #2a3029;
  line-height: 1.6;
}
.faq-section .faq-more-wrap {
  text-align: center;
}
.faq-section .faq-more-wrap .faq-more-btn {
  padding: 18px 56px;
  font-size: 16px;
  border-color: #00744b;
  color: #00744b;
  font-weight: 500;
}
.faq-section .faq-more-wrap .faq-more-btn:hover {
  background-color: #00744b;
  color: #ffffff;
}
@media (max-width: 767px) {
  .faq-section .faq-more-wrap .faq-more-btn {
    padding: 16px 56px;
  }
}

/* フッター固定バナー */
.fixed-footer-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 560px;
  z-index: 500;
  background: linear-gradient(90deg, #22ab8d 0%, #2e90af 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 20px 24px;
}

.fixed-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.fixed-banner-text {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  margin: 0;
  letter-spacing: 0.05em;
}

.fixed-banner-text .text-yellow {
  color: #fff000;
  margin: 0 2px;
  font-size: 1.5em;
}

/* はじめるボタン */
.btn-fixed-start {
  background: #fff;
  color: #2e90af;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 40px;
  border-radius: 50px;
  font-size: 20px;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.btn-fixed-start:hover {
  opacity: 0.9;
}

/* タブレット：テキストとボタンを中央寄せ */
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .fixed-banner-inner {
    justify-content: center;
    gap: 24px;
  }
  .fixed-banner-text {
    flex: none;
    white-space: nowrap;
  }
}
/* スマホ用の調整：ここを上書き・追記しました */
@media screen and (max-width: 768px) {
  .fixed-footer-banner {
    width: 100%; /* 画面端まで広げる */
    max-width: 100%; /* 最大幅の制限を解除 */
    bottom: 0; /* 下の隙間をなくす */
    left: 0; /* 左端に合わせる */
    transform: none; /* 中央寄せの解除 */
    border-radius: 20px 20px 0 0; /* 上側だけ角丸、下は直線 */
    padding: 12px 15px;
  }
  .fixed-banner-inner {
    justify-content: center; /* テキストとボタンを左右に */
    gap: 10px;
  }
  .fixed-banner-text {
    text-align: center; /* 2行になった時に中央に寄るように */
    line-height: 1.3; /* 行間を少し詰める */
  }
  .fixed-banner-text .text-yellow {
    font-size: 1.3em; /* スマホでは少しだけサイズを調整 */
  }
  .btn-fixed-start {
    padding: 10px 40px;
    font-size: 16px; /* ボタンの文字を少し小さく */
  }
  /* HTML側に <br class="u-mobile-br"> を入れた場合の制御 */
  .u-mobile-br {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .fixed-footer-banner {
    height: 72px;
  }
  .fixed-banner-text {
    line-height: 1.2;
  }
  .btn-fixed-start {
    padding: 12px 0;
    text-align: center;
    height: 48px;
    width: 9rem;
  }
}
.site-footer {
  margin-top: 40px;
  margin-bottom: 0;
}
.site-footer .footer-inner {
  background-color: #69727e;
  border-radius: 60px 60px 0 0;
  padding: 80px 100px 90px;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .site-footer .footer-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .site-footer .footer-inner {
    border-radius: 32px 32px 0 0;
    padding: 48px 20px;
  }
}
.site-footer .footer-alert {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 46px;
}
@media (max-width: 767px) {
  .site-footer .footer-alert {
    border-radius: 16px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 48px;
    gap: 10px;
  }
}
.site-footer .footer-alert .alert-icon {
  background-color: #f8b642;
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  flex-shrink: 0;
}
.site-footer .footer-alert .alert-text {
  font-size: 12px;
  line-height: 1.6;
  color: #ffffff;
}
.site-footer .footer-alert .alert-text .alert-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer .footer-alert .alert-text .alert-link:hover {
  opacity: 0.8;
}
.site-footer .footer-upper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media (max-width: 767px) {
  .site-footer .footer-upper {
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    padding: 0;
    width: 100%;
  }
}
.site-footer .footer-nav-main ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 32px;
}
@media (max-width: 767px) {
  .site-footer .footer-nav-main ul {
    justify-content: center;
    gap: 16px 5px;
  }
}
.site-footer .footer-nav-main ul a {
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
}
.site-footer .footer-nav-main ul a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .site-footer .footer-nav-main ul a {
    font-size: 13px;
  }
}
.site-footer .footer-badge .badge-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}
.site-footer .footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .site-footer .footer-divider {
    margin-bottom: 32px;
  }
}
.site-footer .footer-lower {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .site-footer .footer-lower {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}
.site-footer .footer-logo .logo-img {
  height: 40px;
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .site-footer .footer-logo .logo-img {
    height: 32px;
  }
}
.site-footer .footer-nav-sub {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .site-footer .footer-nav-sub {
    flex-direction: column;
  }
}
.site-footer .footer-nav-sub ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .site-footer .footer-nav-sub ul {
    gap: 12px 16px;
  }
}
.site-footer .footer-nav-sub ul a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.site-footer .footer-nav-sub ul a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .site-footer .footer-nav-sub ul a {
    font-size: 11px;
  }
}
.site-footer .footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
}
@media (max-width: 767px) {
  .site-footer .footer-copyright {
    font-size: 11px;
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */