@charset "UTF-8";

@font-face {
  font-family: "MorningDew";
  src: url("../fonts/MorningDew.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 24px 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.4;
  font-weight: 600;
}

p {
  margin: 0 0 24px 0;
}

ul,
ol {
  margin: 0 0 24px 0;
  padding-left: 32px;
}

li {
  margin-bottom: 8px;
}

a {
  color: #007cba;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #005a87;
}

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

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

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

h1 {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

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

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

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

.text-sm {
  font-size: 14px;
}

.text-lg {
  font-size: 18px;
}

.text-xl {
  font-size: 20px;
}

.font-bold {
  font-weight: 600;
}

.font-normal {
  font-weight: 400;
}

.container {
  margin: auto;
  padding-left: clamp(16px, 5vw, 40px);
  padding-right: clamp(16px, 5vw, 40px);
}

@media (max-width: 576px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.section {
  padding: 64px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.col {
  flex: 1;
  padding: 0 8px;
}

.col-1 {
  flex: 0 0 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
}

@media (max-width: 768px) {
  .col-sm-12 {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .col-sm-6 {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .col-sm-4 {
    flex: 0 0 33.333333%;
  }
}

@media (max-width: 768px) {
  .col-sm-3 {
    flex: 0 0 25%;
  }
}

.hidden-md {
  display: block;
}

@media (max-width: 768px) {
  .hidden-md {
    display: none;
  }
}

.show-md {
  display: none;
}

@media (max-width: 768px) {
  .show-md {
    display: block;
  }
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

@media (max-width: 768px) {
  .site-header {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (max-width: 768px) {
  .site-header .container {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.site-logo {
  font-size: 20px;
  font-weight: 600;
  color: #007cba;
}

.site-logo img {
  max-height: 38px;
}

@media (max-width: 768px) {
  .site-logo img {
    max-height: 20px;
    padding-left: 8px;
  }
}

.main-nav {
  display: none !important;
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #4a4a4a;
}

.mobile-menu-toggle .hamburger {
  display: inline-block;
  width: 32px;
  height: 22px;
  position: relative;
}

.mobile-menu-toggle .hamburger i {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: #4a4a4a;
  border-radius: 100px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.mobile-menu-toggle .hamburger i:nth-child(1) {
  top: 0;
}

.mobile-menu-toggle .hamburger i:nth-child(2) {
  top: 9px;
}

.mobile-menu-toggle .hamburger i:nth-child(3) {
  top: 18px;
}

.overlay-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #f9f7f3 0%, #fee7da 100%);
  background-attachment: fixed;
  display: none;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(0px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.overlay-menu.is-open {
  display: block;
  opacity: 1;
  backdrop-filter: blur(10px);
}

.overlay-menu.is-open::before {
  opacity: 1;
}

.overlay-menu__inner {
  position: relative;
}

.overlay-menu__container {
  padding: 48px clamp(16px, 5vw, 40px);
  padding-top: 32px;
  padding-bottom: calc(48px + env(safe-area-inset-bottom));
}

@media (max-width: 576px) {
  .overlay-menu__container {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 3px;
  }
}

.overlay-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  position: relative;
  min-height: 70px;
}

.overlay-header-logo img {
  height: 38px;
  width: auto;
}

@media (max-width: 768px) {
  .overlay-header-logo img {
    max-height: 20px;
    padding-left: 8px;
  }
}

.overlay-header-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #4a4a4a;
}

.overlay-header-toggle .hamburger {
  display: inline-block;
  width: 32px;
  height: 22px;
  position: relative;
}

.overlay-header-toggle .hamburger i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #4a4a4a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.overlay-header-toggle .hamburger i:nth-child(1) {
  top: 0;
}

.overlay-header-toggle .hamburger i:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.overlay-header-toggle .hamburger i:nth-child(3) {
  bottom: 0;
}

.overlay-menu.is-open .overlay-header-toggle .hamburger i:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.overlay-menu.is-open .overlay-header-toggle .hamburger i:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.overlay-menu.is-open .overlay-header-toggle .hamburger i:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.overlay-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 32px;
  row-gap: 48px;
}

@media (max-width: 768px) {
  .overlay-menu__grid {
    row-gap: 0;
  }
}

@media (min-width: 769px) {
  .overlay-menu__col:last-child {
    padding-left: 64px;
  }
}

.overlay-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.overlay-menu__list li {
  margin-bottom: 32px;
}

.overlay-menu__list a,
.overlay-menu__list span {
  color: #4a4a4a;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

@media (max-width: 768px) {

  .overlay-menu__list a,
  .overlay-menu__list span {
    font-size: 18px;
  }
}

.overlay-menu__list a.with-arrow,
.overlay-menu__list span.with-arrow {
  position: relative;
  padding-left: 32px;
}

.overlay-menu__list a.with-arrow::before,
.overlay-menu__list span.with-arrow::before {
  content: "\23F5";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 16px;
  color: #D9533B;
}

.overlay-menu__sub {
  list-style: none;
  padding-left: 32px;
  margin-top: 16px;
}

.overlay-menu__sub li {
  margin-bottom: 0;
}

.overlay-menu__sub a {
  font-size: 17px;
  color: #666;
  padding-left: 0;
  position: relative;
}

@media (max-width: 768px) {
  .overlay-menu__sub a {
    font-size: 14px;
  }
}

.overlay-menu__sub a::before {
  content: "-";
  display: inline-block;
  margin-right: 16px;
  color: #666;
}

.overlay-menu__cta {
  display: grid;
  gap: 32px;
  max-width: 420px;
}

.overlay-menu__cta.side-cta {
  position: static;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 16px;
}

.overlay-menu__cta.side-cta .side-cta__item {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  padding: 16px 36px;
  border-radius: 200px;
  background: #fff;
  box-shadow: 4px 4px 0 #fff;
  border: 2px solid #4a4a4a;
  color: #4a4a4a;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

@media (max-width: 768px) {
  .overlay-menu__cta.side-cta .side-cta__item {
    font-size: 18px;
    padding: 10px 36px;
  }
}

.overlay-menu__cta.side-cta .side-cta__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.overlay-menu__cta.side-cta .side-cta__item--primary {
  background: #d9533b;
  color: #fff;
  border-color: #d9533b;
}

.overlay-menu__cta.side-cta .side-cta__item--line {
  color: #00b900;
  border-color: #00b900;
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .overlay-menu {
    transition: none !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .overlay-menu__header {
    transition: none !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .overlay-menu__grid {
    transition: none !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .overlay-menu__list li {
    transition: none !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .side-cta__item {
    transition: none !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .overlay-header-toggle .hamburger i {
    transition: none !important;
    transform: none !important;
  }
}

.overlay-menu {
  will-change: opacity, backdrop-filter;
}

.overlay-menu.is-open .overlay-menu__header,
.overlay-menu.is-open .overlay-menu__grid,
.overlay-menu.is-open .overlay-menu__list li,
.overlay-menu.is-open .side-cta__item {
  will-change: transform, opacity;
}

.overlay-menu:not(.is-open) .overlay-menu__header,
.overlay-menu:not(.is-open) .overlay-menu__grid,
.overlay-menu:not(.is-open) .overlay-menu__list li,
.overlay-menu:not(.is-open) .side-cta__item {
  will-change: auto;
}

@media (max-width: 768px) {
  .overlay-menu__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .overlay-menu__list {
    text-align: center;
  }
}

@media (max-width: 768px) {

  .overlay-menu__list a,
  .overlay-menu__list span {
    display: inline-grid;
    justify-items: center;
  }
}

@media (max-width: 768px) {

  .overlay-menu__list a.with-arrow,
  .overlay-menu__list span.with-arrow {
    padding-left: 0;
  }
}

@media (max-width: 768px) {

  .overlay-menu__list a.with-arrow::before,
  .overlay-menu__list span.with-arrow::before {
    display: none;
    content: none;
  }
}

@media (max-width: 768px) {
  .overlay-menu__sub {
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .overlay-menu__sub a::before {
    display: none;
    content: none;
  }
}

.site-footer {
  background: #fff;
  color: #4a4a4a;
  position: relative;
}

.site-footer .section-divider--top {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  bottom: 99.8%;
  pointer-events: none;
}

.site-footer .section-divider--top img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .site-footer .section-divider--top img {
    transform: scaleX(-1);
  }
}

.site-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  padding: 64px 0;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 64px;
  padding-right: 64px;
}

@media (max-width: 1200px) {
  .site-footer .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding-left: 32px;
    padding-right: 32px;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-footer .footer-content {
    gap: 32px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.site-footer .footer-block--left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 1200px) {
  .site-footer .footer-block--left {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-footer .footer-block--left {
    gap: 24px;
  }
}

.site-footer .footer-block--center {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1200px) {
  .site-footer .footer-block--center {
    order: 3;
  }
}

.site-footer .footer-block--right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 1200px) {
  .site-footer .footer-block--right {
    align-items: center;
    order: 2;
    display: none;
  }
}

@media (max-width: 768px) {
  .site-footer .footer-block--right {
    order: 3;
    display: none;
  }
}

.site-footer .footer-logo img {
  width: 300px;
  height: auto;
}

@media (max-width: 768px) {
  .site-footer .footer-logo img {
    width: 240px;
  }
}

.site-footer \.footer-address {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
}

.site-footer \.footer-address p {
  margin: 0 0 16px 0;
}

.site-footer \.footer-address p:last-child {
  margin-bottom: 24px;
}

.site-footer \.footer-address .footer-sns {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .site-footer \.footer-address .footer-sns {
    justify-content: center;
    margin-top: 16px;
  }
}

.site-footer \.footer-address .footer-sns .sns-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.site-footer \.footer-address .footer-sns .sns-link:hover {
  opacity: 0.7;
}

.site-footer \.footer-address .footer-sns .sns-link img {
  width: 24px;
  height: 24px;
}

.site-footer .footer-nav-section {
  display: flex;
  gap: 64px;
  justify-content: center;
}

@media (max-width: 1200px) {
  .site-footer .footer-nav-section {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .site-footer .footer-nav-section {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }
}

.site-footer .footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .footer-nav ul li {
  margin-bottom: 24px;
}

.site-footer .footer-nav ul li:last-child {
  margin-bottom: 0;
}

.site-footer .footer-nav ul li a {
  color: #4a4a4a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.site-footer .footer-nav ul li a:hover {
  color: #D9533B;
}

.site-footer .footer-nav ul li a::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid #D9533B;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  flex-shrink: 0;
  margin-right: 4px;
  top: -2px;
  position: relative;
}

.site-footer .footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .site-footer .footer-buttons {
    align-items: center;
  }
}

.site-footer .footer-btn {
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  border: 2px solid;
  box-shadow: 4px 4px 0 0 #fff;
  transition: all 0.3s ease;
  min-width: 295px;
}

@media (max-width: 768px) {
  .site-footer .footer-btn {
    min-width: 250px;
    font-size: 18px;
  }
}

.site-footer .footer-btn span {
  letter-spacing: 0.13em;
  line-height: 1.8;
}

.site-footer .footer-btn--line {
  color: #00b900;
  border-color: #00b900;
  background: transparent;
}

.site-footer .footer-btn--line:hover {
  background: #00b900;
  color: #fff;
}

.site-footer .footer-btn--primary {
  background: #D9533B;
  border-color: #D9533B;
  color: #fff;
}

.site-footer .footer-btn--primary:hover {
  background: #fff4ed;
  border-color: rgb(188.4615384615, 59.6153846154, 36.5384615385);
  color: #D9533B;
}

.site-footer .footer-btn--secondary {
  background: #fff;
  border-color: #4a4a4a;
  color: #4a4a4a;
}

.site-footer .footer-btn--secondary:hover {
  background: #4a4a4a;
  color: #fff;
}

.site-footer .footer-bottom {
  background: #f9f7f3;
  padding: 24px 0;
}

@media (max-width: 768px) {
  .site-footer .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

.site-footer .footer-bottom .footer-links {
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .site-footer .footer-bottom .footer-links {
    display: flex;
    gap: 16px;
  }
}

.site-footer .footer-bottom .footer-links a {
  color: #4a4a4a;
  text-decoration: none;
  font-size: 16px;
  margin: 0 24px;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .site-footer .footer-bottom .footer-links a {
    display: block;
    margin: 8px 0;
  }
}

.site-footer .footer-bottom .footer-links a:hover {
  color: #D9533B;
}

.site-footer .footer-bottom .footer-copyright {
  text-align: center;
}

.site-footer .footer-bottom .footer-copyright p {
  margin: 0;
  font-size: 14px;
  color: #4a4a4a;
  letter-spacing: 0.02em;
}

.site-footer a:hover {
  color: #D9533B;
}

.site-footer .footer-copyright {
  text-align: center;
  font-size: 14px;
  padding-top: 16px;
  padding-bottom: 16px;
}

@media (max-width: 768px) {
  .site-footer .footer-copyright {
    font-size: 10px;
    padding-bottom: 72px;
  }
}

.site-footer .footer-copyright p {
  margin-bottom: 0;
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50%,
  100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: auto;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: #fff;
  text-align: center;
  padding: 20px 10px 10px 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #D9533B;
  margin-top: 5px;
  font-weight: 600;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../images/scroll-hint-bef.svg");
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url("../images/scroll-hint-aft.svg");
  background-size: contain;
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.scroll-hint-shadow-wrap {
  position: relative;
}

.scroll-hint-shadow-wrap::after {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap::before {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after {
  opacity: 1;
  visibility: visible;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before {
  opacity: 1;
  visibility: visible;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: #007cba;
  color: #fff;
}

.btn-primary:hover {
  background: #005a87;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #007cba;
  border-color: #007cba;
}

.btn-secondary:hover {
  background: #007cba;
  color: #fff;
}

.btn-accent {
  background: #ff6b35;
  color: #fff;
}

.btn-accent:hover {
  background: rgb(255, 69.6336633663, 2);
  color: #fff;
}

.btn-large {
  padding: 24px 48px;
  font-size: 18px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
  display: block;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #4a4a4a;
}

.form-control {
  width: 100%;
  padding: 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #007cba;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23666' d='m2 0-2 2h4zm0 5 2-2h-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 8px 10px;
  padding-right: 32px;
}

.form-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
}

.form-row {
  display: flex;
  gap: 24px;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.form-row .form-group {
  flex: 1;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 24px;
}

.card-title {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
}

.card-text {
  margin: 0 0 24px 0;
  color: #666;
}

.card-link {
  color: #007cba;
  font-weight: 600;
}

.card-link:hover {
  color: #005a87;
}

.breadcrumb {
  padding: 24px 0;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.breadcrumb li {
  margin-bottom: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #666;
}

.breadcrumb a {
  color: #666;
}

.breadcrumb a:hover {
  color: #007cba;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 48px 0;
}

.pagination a,
.pagination span {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #4a4a4a;
  text-decoration: none;
  min-width: 40px;
  text-align: center;
}

.pagination a:hover {
  background: #007cba;
  color: #fff;
  border-color: #007cba;
}

.pagination .current {
  background: #007cba;
  color: #fff;
  border-color: #007cba;
}

.home-hero {
  position: relative;
  background-image: url("../images/bg_fv_pc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 210px;
}

@media (max-width: 992px) {
  .home-hero {
    background-image: url("../images/bg_fv_tab.png");
    padding-top: 140px;
    background-position: bottom;
  }
}

@media (max-width: 575px) {
  .home-hero {
    background-image: url("../images/bg_fv_sp.png");
    padding-top: 90px;
  }
}

.home-hero .container {
  padding-left: 80px;
  padding-right: 80px;
}

@media (max-width: 992px) {
  .home-hero .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
}

.home-hero::before {
  top: -60px;
  left: -30px;
  width: 324px;
  height: 339px;
  background-image: url("../images/bef_fv.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

@media (max-width: 992px) {
  .home-hero::before {
    width: 154px;
    height: 161px;
    top: 58%;
    left: -60px;
  }
}

.home-hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -60px;
  background-image: url("../images/aft_fv.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 345px;
  height: 377px;
  z-index: 1;
}

@media (max-width: 992px) {
  .home-hero::after {
    width: 170px;
    height: 186px;
    bottom: inherit;
    top: 20px;
    right: -50px;
  }
}

@media (max-width: 992px) {
  .home-hero .banners {
    display: none;
  }
}

.home-hero .home-hero__content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .home-hero .home-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
}

.home-hero .home-hero__title-wrapper {
  display: flex;
  position: relative;
  flex-direction: column;
}

.home-hero .home-hero__script {
  position: absolute;
  font-family: "MorningDew", cursive;
  font-size: 90px;
  line-height: 1;
  color: #ffbba5;
  opacity: 0.4;
  margin: 0 0 16px 0;
  z-index: 0;
}

@media (max-width: 992px) {
  .home-hero .home-hero__script {
    font-size: 53px;
    top: -18px;
  }
}

.home-hero .home-hero__title {
  color: #4a4a4a;
  font-size: 60px;
  letter-spacing: -0.015em;
  line-height: 1.4;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .home-hero .home-hero__title {
    font-size: 36px;
  }
}

.home-hero .home-hero__lead {
  color: #4a4a4a;
  font-size: 26px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .home-hero .home-hero__lead {
    font-size: 18px;
  }
}

.home-hero .home-hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .home-hero .home-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.home-hero .btn-cta {
  background-color: #D9533B;
  color: #fff;
  border: 2px solid #D9533B;
  border-radius: 200px;
  padding: 12px 32px;
  font-weight: 600;
  box-shadow: 4px 4px 0 #FFBBA5;
  font-size: 26px;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  letter-spacing: 0.2em;
}

@media (max-width: 992px) {
  .home-hero .btn-cta {
    font-size: 24px;
    padding: 12px 24px;
  }
}

.home-hero .btn-cta:hover {
  background-color: #fff;
  color: #D9533B;
  transform: translateY(-2px);
}

.home-hero .home-hero__lead-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 992px) {
  .home-hero .home-hero__lead-wrapper {
    gap: 8px;
    margin-bottom: 50vw;
  }
}

@media (max-width: 575px) {
  .home-hero .home-hero__lead-wrapper {
    margin-bottom: 70vw;
  }
}

.home-hero .home-hero__badge {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe6d8, #f9f7f3);
  border: 1px solid #d9533b;
  color: #d9533b;
  display: grid;
  place-items: center;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  font-size: 20px;
}

@media (max-width: 992px) {
  .home-hero .home-hero__badge {
    width: 72px;
    height: 72px;
    font-size: 14px;
  }
}

.home-hero .home-hero__badge small {
  font-size: 20px;
}

@media (max-width: 992px) {
  .home-hero .home-hero__badge small {
    font-size: 12px;
  }
}

.home-hero .home-hero__badge strong {
  font-size: 25px;
}

@media (max-width: 992px) {
  .home-hero .home-hero__badge strong {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .home-hero .home-hero__script {
    font-size: 51px;
  }

  .home-hero .home-hero__title {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .home-hero .home-hero__lead {
    font-size: 13px;
  }

  .home-hero .home-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: calc(768px + 1px)) {
  .reason-expansion .choose-expansion__question {
    display: none;
  }

  .reason-expansion .choose-expansion__answer {
    max-height: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
}

.reason-expansion .choose-expansion__question {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  border: 1px solid #fff;
  border-radius: 200px;
  background: #fff;
  width: 100%;
  max-width: 410px;
  margin: 16px auto 0;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #D9533B;
}

.reason-expansion .choose-expansion__question:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reason-expansion .choose-expansion__text {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-right: 16px;
}

.reason-expansion .choose-expansion__icon {
  color: #d9533b;
  font-size: 24px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.reason-expansion .choose-expansion__question[aria-expanded=true] .choose-expansion__icon {
  transform: rotate(90deg);
}

.reason-expansion .choose-expansion__answer {
  display: flex;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.reason-expansion .choose-expansion__answer.show {
  max-height: 600px;
  padding: 24px 0 32px 0;
  opacity: 1;
  visibility: visible;
}

.reason-expansion .choose-expansion__content {
  flex: 1;
}

.banners .section-divider--top {
  display: none;
}

@media (max-width: 992px) {
  .banners {
    background-color: #F9F7F3;
    position: relative;
  }

  .banners .section-divider--top {
    display: block;
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    bottom: 99.8%;
    pointer-events: none;
  }

  .banners .section-divider--top img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.banners .home-hero__banners {
  position: relative;
  z-index: 3;
  margin: 64px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 0 16px;
}

.banners .home-hero__banners>* {
  padding: 0;
  max-width: 40vw;
}

.banners .home-hero__banners>*:only-child {
  flex: 1;
  max-width: 100%;
}

.banners .home-hero__banners> :nth-last-child(3):first-child,
.banners .home-hero__banners> :nth-last-child(3):first-child~* {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

@media (max-width: 992px) {
  .banners .home-hero__banners {
    gap: 16px;
    padding-bottom: 32px;
  }

  .banners .home-hero__banners>* {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .banners .banners {
    display: none;
  }
}

.banners .banner-box {
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #000;
}

@media (max-width: 992px) {
  .banners .banner-box {
    min-width: inherit;
    min-height: inherit;
  }
}

section.banners {
  display: none;
}

@media (max-width: 992px) {
  section.banners {
    display: block;
    padding-top: 1px;
  }
}

section.banners .home-hero__banners {
  position: relative;
  z-index: 3;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 0 16px;
}

section.banners .home-hero__banners>* {
  padding: 0;
}

section.banners .home-hero__banners>*:only-child {
  flex: 1;
  max-width: 100%;

}

section.banners .home-hero__banners> :nth-last-child(3):first-child,
section.banners .home-hero__banners> :nth-last-child(3):first-child~* {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

@media (max-width: 992px) {
  section.banners .home-hero__banners {
    gap: 16px;
    padding-bottom: 32px;
    max-width: 500px;
    margin: 0 auto;
  }

  section.banners .home-hero__banners>* {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.home-voice {
  position: relative;
  background: #fff;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .home-voice {
    padding-bottom: 40px;
    padding-top: 64px;
  }
}

.home-voice .section-divider--top {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 99.8%;
  pointer-events: none;
}

.home-voice .section-divider--top img {
  display: block;
  width: 100%;
  height: auto;
}

.home-voice .home-voice__content {
  padding-left: clamp(16px, 5vw, 40px);
  padding-right: clamp(16px, 5vw, 40px);
}

@media (max-width: 768px) {
  .home-voice .home-voice__content {
    padding-left: 0;
    padding-right: 0;
  }
}

.home-voice .home-voice__watermark {
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 130px;
  color: #ffdbcf;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .home-voice .home-voice__watermark {
    font-size: 60px;
    top: 17px;
  }
}

.home-voice .home-voice__title {
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .home-voice .home-voice__title {
    margin-bottom: 0;
  }
}

.home-voice .voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

@media (max-width: 768px) {
  .home-voice .voice-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 32px;
    padding: 24px 0 48px 0;
    margin: 0;
    max-width: none;
    scroll-padding-left: 32px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .home-voice .voice-grid .voice-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    margin: 16px 0;
  }

  .home-voice .voice-grid .voice-card:first-child {
    margin-left: 32px;
  }

  .home-voice .voice-grid::-webkit-scrollbar {
    display: none;
  }

  .home-voice .voice-grid::after {
    content: "";
    flex: 0 0 16px;
  }
}

.home-voice .voice-card {
  background: #f9f7f3;
  border-radius: 43px;
  box-shadow: 0 0 28px #dcdcdc;
  padding: 32px 16px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .home-voice .voice-card {
    gap: 8px;
  }
}

@media (min-width: calc(768px + 1px)) {
  .home-voice .voice-card {
    margin: 20px;
  }
}

.home-voice .voice-card__title {
  color: #4a4a4a;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .home-voice .voice-card__title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .home-voice .voice-card__title {
    font-size: 10px;
  }
}

.home-voice .voice-card__avatar {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .home-voice .voice-card__avatar {
    width: 70px;
    height: 70px;
  }
}

.home-voice .voice-card__tags {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.home-voice .voice-card__text {
  color: #4a4a4a;
  text-align: left;
  max-width: 435px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .home-voice .voice-card__text {
    font-size: 10px;
  }
}

.home-voice .tag {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #c3c3c3;
  background: #fff;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .home-voice .tag {
    font-size: 9px;
  }
}

.features-section .row {
  align-items: stretch;
}

.features-section .feature-card {
  text-align: center;
  padding: 32px;
}

.features-section .feature-card .feature-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  color: #007cba;
}

.features-section .feature-card h3 {
  margin-bottom: 16px;
}

.home-choose {
  position: relative;
  background: linear-gradient(180deg, #f9f7f3 0%, #ffe6d8 100%);
  padding-top: 110px;
  padding-bottom: 160px;
}

@media (max-width: 768px) {
  .home-choose {
    padding-bottom: 20px;
  }
}

.home-choose .section-divider--top {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 99.8%;
  pointer-events: none;
}

.home-choose .section-divider--top img {
  display: block;
  width: 100%;
  height: auto;
}

.home-choose .home-choose__watermark {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 130px;
  color: #ffdbcf;
  opacity: 0.6;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .home-choose .home-choose__watermark {
    font-size: 60px;
    top: 68px;
  }
}

.home-choose .home-choose__title {
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.home-choose .choose-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto 64px;
}

@media (max-width: 768px) {
  .home-choose .choose-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .home-choose .choose-features {
    gap: 0;
  }
}

.home-choose .choose-feature {
  text-align: center;
}

@media (max-width: 768px) {
  .home-choose .choose-feature {
    border-bottom: 1px solid #fff;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .home-choose .choose-feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

.home-choose .choose-feature h3 {
  color: #4a4a4a;
  font-size: 20px;
  margin-bottom: 24px;
}

.home-choose .choose-feature__image img {
  width: 300px;
  height: auto;
  border-radius: 30px;
}

@media (max-width: 576px) {
  .home-choose .choose-feature__image img {
    width: inherit;
  }
}

.home-choose .choose-feature p {
  color: #4a4a4a;
  text-align: left;
  margin: 24px auto 0;
}

.home-choose .choose-subtitle {
  color: #d9533b;
  text-align: center;
  font-size: 28px;
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  .home-choose .choose-subtitle {
    font-size: 18px;
  }
}

.home-choose .choose-lead {
  text-align: center;
  color: #4a4a4a;
  max-width: 1000px;
  margin: 0 auto 48px;
  font-size: 20px;
}

@media (max-width: 576px) {
  .home-choose .choose-lead {
    font-size: 14px;
    text-align-last: left;
  }
}

.home-choose .choose-bottom {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 768px) {
  .home-choose .choose-bottom {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 50px;
  }
}

.home-choose .afterburn-block {
  margin-bottom: 48px;
}

.home-choose .afterburn-title {
  font-weight: 600;
  color: #4a4a4a;
  margin-bottom: 16px;
  text-align: center;
}

.home-choose .choose-bottom__left img {
  width: 100%;
  height: auto;
}

.home-choose .choose-bottom__right p {
  color: #4a4a4a;
}

.home-choose .choose-expansion .choose-expansion__question {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #fff;
  border-radius: 200px;
  background: #fff;
  width: 100%;
}

@media (max-width: 768px) {
  .home-choose .choose-expansion .choose-expansion__question {
    max-width: 335px;
    margin: 0 auto;
  }
}

.home-choose .choose-expansion .choose-expansion__question:hover {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.home-choose .choose-expansion .choose-expansion__question .choose-expansion__text {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-right: 16px;
}

.home-choose .choose-expansion .choose-expansion__question .choose-expansion__icon {
  color: #d9533b;
  font-size: 24px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .home-choose .choose-expansion .choose-expansion__question .choose-expansion__icon {
    font-size: 16px;
  }
}

.home-choose .choose-expansion .choose-expansion__question[aria-expanded=true] .choose-expansion__icon {
  transform: rotate(90deg);
}

@media (min-width: calc(768px + 1px)) {
  .home-choose .choose-expansion .choose-expansion__question {
    display: none;
  }
}

.home-choose .choose-expansion .choose-expansion__answer {
  display: flex;
  align-items: flex-start;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.home-choose .choose-expansion .choose-expansion__answer.show {
  max-height: 600px;
  padding: 24px 0 32px 0;
  opacity: 1;
  visibility: visible;
}

.home-choose .choose-expansion .choose-expansion__answer .choose-expansion__label {
  color: #d9533b;
  font-size: 24px;
  font-weight: 600;
  margin-right: 24px;
  min-width: 30px;
}

.home-choose .choose-expansion .choose-expansion__answer .choose-expansion__content {
  flex: 1;
}

.home-choose .choose-expansion .choose-expansion__answer .choose-expansion__content p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 576px) {
  .home-choose .choose-expansion .choose-expansion__answer .choose-expansion__content p {
    font-size: 14px;
  }
}

@media (min-width: calc(768px + 1px)) {
  .home-choose .choose-expansion .choose-expansion__answer {
    max-height: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
}

.home-reason {
  position: relative;
  background: #fff;
  padding-left: 0;
  padding-right: 0;
}

.home-reason .section-divider--top {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 99.8%;
  pointer-events: none;
}

.home-reason .section-divider--top img {
  display: block;
  width: 100%;
  height: auto;
}

.home-reason .home-reason__watermark {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 130px;
  color: #ffdbcf;
  opacity: 0.6;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .home-reason .home-reason__watermark {
    font-size: 60px;
    top: 4px;
  }
}

.home-reason .home-reason__content {
  padding-left: 0;
  padding-right: 0;
}

.home-reason .home-reason__title {
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.home-reason .home-reason__title span {
  color: #ff8c66;
  font-size: 140%;
}

.home-reason .reason-row {
  display: grid;
  grid-template-columns: calc(50% - 50px) calc(50% - 50px);
  gap: 100px;
  margin: 64px 0;
  align-items: center;
  position: relative;
  padding: 40px 0;
}

.home-reason .reason-row::before,
.home-reason .reason-row::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.home-reason .reason-row .reason-text {
  padding-left: 10vw;
  padding-right: 24px;
}

@media (max-width: 768px) {
  .home-reason .reason-row .reason-text {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .home-reason .reason-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin: 0;
    padding: 0;
  }

  .home-reason .reason-row:nth-of-type(odd) .reason-image {
    padding-right: 32px;
    padding-left: 0;
  }

  .home-reason .reason-row:nth-of-type(even) .reason-image {
    padding-left: 32px;
    padding-right: 0;
  }
}

.home-reason .reason-row--reverse {
  grid-template-columns: calc(50% - 50px) calc(50% - 50px);
}

.home-reason .reason-row--reverse .reason-text {
  grid-column: 2;
  padding-left: 0;
  padding-right: 10vw;
}

@media (max-width: 768px) {
  .home-reason .reason-row--reverse .reason-text {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .home-reason .reason-row--reverse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin: 0;
    padding: 0;
  }
}

.home-reason .reason-01::before {
  background-image: url("../images/bef_reason01.png");
  width: 130px;
  height: 134px;
  left: 50px;
  top: -160px;
}

@media (max-width: 768px) {
  .home-reason .reason-01::before {
    width: 79px;
    height: 81px;
    left: 20px;
    top: 0;
  }
}

.home-reason .reason-01::after {
  background-image: url("../images/aft_reason01.png");
  width: 130px;
  height: 93px;
  right: 50px;
  bottom: -80px;
}

@media (max-width: 768px) {
  .home-reason .reason-01::after {
    width: 79px;
    height: 56px;
    right: 20px;
    bottom: inherit;
    top: -40px;
  }
}

.home-reason .reason-02::after {
  background-image: url("../images/aft_reason02.png");
  width: 130px;
  height: 134px;
  right: 200px;
  bottom: -60px;
}

@media (max-width: 768px) {
  .home-reason .reason-02::after {
    width: 58px;
    height: 53px;
    right: 30px;
    bottom: inherit;
    top: -20px;
  }
}

.home-reason .reason-03::before {
  background-image: url("../images/bef_reason03.png");
  width: 222px;
  height: 138px;
  left: 20vw;
  bottom: -60px;
}

@media (max-width: 768px) {
  .home-reason .reason-03::before {
    background-image: url("../images/bef_reason03_sp.png");
    width: 110px;
    height: 70px;
    left: 0px;
    bottom: inherit;
    top: -20px;
  }
}

.home-reason .reason-04::after {
  background-image: url("../images/aft_reason04.png");
  width: 101px;
  height: 101px;
  right: 80px;
  bottom: -20px;
}

@media (max-width: 768px) {
  .home-reason .reason-04::after {
    background-image: url("../images/aft_reason04_sp.png");
    width: 58px;
    height: 55px;
    right: -10px;
    bottom: inherit;
    top: -20px;
  }
}

.home-reason .reason-05::before {
  background-image: url("../images/bef_reason05.png");
  width: 168px;
  height: 173px;
  left: 20px;
  top: -50px;
}

@media (max-width: 768px) {
  .home-reason .reason-05::before {
    background-image: url("../images/bef_reason05_sp.png");
    width: 51px;
    height: 111px;
    left: 20px;
    top: 0;
  }
}

.home-reason .reason-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.home-reason .reason-text.has-image-right {
  padding-left: 5vw;
}

.home-reason .reason-text.has-image-left {
  padding-right: 5vw;
}

@media (max-width: 768px) {
  .home-reason .reason-text {
    order: 1;
  }

  .home-reason .reason-text.has-image-right,
  .home-reason .reason-text.has-image-left {
    padding-left: 0;
    padding-right: 0;
  }
}

.home-reason .reason-text h3 {
  color: #4a4a4a;
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 768px) {
  .home-reason .reason-text h3 {
    text-align: center;
  }
}

@media (max-width: 1200px) {
  .home-reason .reason-text h3 {
    font-size: 18px;
  }
}

.home-reason .reason-text .reason-text__description {
  color: #4a4a4a;
  font-size: 20px;
  line-height: 1.6;
  max-width: 410px;
  margin-right: auto;
  text-align: left;
}

@media (max-width: 768px) {
  .home-reason .reason-text .reason-text__description {
    font-size: 14px;
    text-align: left;
    margin-bottom: 8px;
    margin-left: auto;
  }
}

@media (max-width: 1200px) {
  .home-reason .reason-text .reason-text__description {
    font-size: 14px;
  }
}

.home-reason .reason-num {
  font-family: "MorningDew", cursive;
  font-size: 80px;
  color: #ff8c66;
  margin-bottom: 16px;
  text-align: left;
}

@media (max-width: 768px) {
  .home-reason .reason-num {
    text-align: center;
  }
}

@media (max-width: 1200px) {
  .home-reason .reason-num {
    font-size: 40px !important;
  }
}

.home-reason .reason-image {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50% - 50px);
  z-index: 0;
}

.home-reason .reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-reason .reason-image--right {
  right: 0;
}

.home-reason .reason-image--right img {
  border-radius: 30px 0 0 30px;
}

.home-reason .reason-image--left {
  left: 0;
}

.home-reason .reason-image--left img {
  border-radius: 0 30px 30px 0;
}

@media (max-width: 768px) {
  .home-reason .reason-image {
    order: 2;
    position: static;
    width: 100%;
    height: auto;
    margin: 0 0 48px;
  }

  .home-reason .reason-image--right,
  .home-reason .reason-image--left {
    right: auto;
    left: auto;
  }

  .home-reason .reason-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.home-reason .reason-expansion .choose-expansion__question {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  border: 1px solid #fff;
  border-radius: 200px;
  background: #fff;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 16px auto 0;
  max-width: 410px;
  border: 1px solid #D9533B;
}

@media (max-width: 768px) {
  .home-reason .reason-expansion .choose-expansion__question {
    max-width: 335px;
    margin: 0 auto;
  }
}

.home-reason .reason-expansion .choose-expansion__question:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.home-reason .reason-expansion .choose-expansion__question .choose-expansion__text {
  font-size: 16px;
  color: #D9533B;
  font-weight: 600;
  margin-right: 16px;
}

.home-reason .reason-expansion .choose-expansion__question .choose-expansion__icon {
  color: #d9533b;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.home-reason .reason-expansion .choose-expansion__question[aria-expanded=true] .choose-expansion__icon {
  transform: rotate(90deg);
}

@media (min-width: calc(768px + 1px)) {
  .home-reason .reason-expansion .choose-expansion__question {
    display: none;
  }
}

.home-reason .reason-expansion .choose-expansion__answer {
  display: flex;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.home-reason .reason-expansion .choose-expansion__answer.show {
  max-height: 600px;
  padding: 24px 0 8px 0;
  opacity: 1;
  visibility: visible;
}

@media (min-width: calc(768px + 1px)) {
  .home-reason .reason-expansion .choose-expansion__answer {
    max-height: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
}

.home-reason .reason-expansion .choose-expansion__content {
  flex: 1;
}

.home-price {
  position: relative;
  background: linear-gradient(180deg, #f9f7f3 0%, #ffe6d8 100%);
  padding-top: 140px;
}

@media (max-width: 768px) {
  .home-price {
    padding-bottom: 80px;
    padding-top: 50px;
  }
}

.home-price .section-divider--top {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 99.8%;
  pointer-events: none;
}

.home-price .section-divider--top img {
  display: block;
  width: 100%;
  height: auto;
}

.home-price .home-price__watermark {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 130px;
  color: #ffdbcf;
  opacity: 0.5;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .home-price .home-price__watermark {
    font-size: 60px;
    top: 0;
  }
}

.home-price .home-price__title {
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.home-price .price-head {
  display: flex;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto 48px;
}

@media (max-width: 768px) {
  .home-price .price-head {
    gap: 8px;
    margin-bottom: 24px;
  }
}

.home-price .price-badge {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #d9533b;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .home-price .price-badge {
    width: 64px;
    height: 64px;
  }
}

.home-price .price-badge__label {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.045em;
  font-size: 19px;
}

@media (max-width: 768px) {
  .home-price .price-badge__label {
    font-size: 14px;
  }
}

.home-price .price-major {
  color: #d9533b;
  font-weight: 600;
  font-size: 32px;
  text-align: left;
}

.home-price .price-major__amount {
  font-size: 42px;
  margin-right: 16px;
}

@media (max-width: 768px) {
  .home-price .price-major__amount {
    font-size: 32px;
    margin-right: 0;
  }
}

.home-price .price-major__amount span,
.home-price .price-major__amount small {
  font-size: 26px;
}

@media (max-width: 768px) {

  .home-price .price-major__amount span,
  .home-price .price-major__amount small {
    font-size: 18px;
  }
}

.home-price .price-major__tax {
  font-weight: 400;
  font-size: 26px;
}

@media (max-width: 768px) {
  .home-price .price-major__tax {
    font-size: 18px;
  }
}

.home-price .price-breakdown {
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .home-price .price-breakdown {
    flex-direction: column;
  }
}

.home-price .price-item {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.home-price .price-item__badge {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1px solid #d9533b;
  color: #d9533b;
  font-weight: 600;
  letter-spacing: 0.045em;
  font-size: 22px;
}

@media (max-width: 768px) {
  .home-price .price-item__badge {
    width: 64px;
    height: 64px;
    font-size: 14px;
  }
}

.home-price .price-item__value {
  color: #4a4a4a;
  font-weight: 600;
  font-size: 40px;
}

@media (max-width: 768px) {
  .home-price .price-item__value {
    font-size: 24px;
  }
}

.home-price .price-item__value small {
  font-size: 24px;
}

@media (max-width: 768px) {
  .home-price .price-item__value small {
    font-size: 16px;
  }
}

.home-price .price-offer {
  max-width: 1000px;
  margin: 0 auto 64px;
  background: linear-gradient(30deg, #ffb58b, #d9533b);
  border-radius: 30px;
  padding: 32px 48px;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.home-price .price-offer__content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-price .price-offer__lead {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
}

.home-price .price-offer__chips {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}

.home-price .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
}

.home-price .price-offer__major {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 0;
}

.home-price .price-offer__old {
  color: #fff;
  opacity: 0.9;
  margin-right: 16px;
  font-size: 48px;
}

@media (max-width: 768px) {
  .home-price .price-offer__old {
    font-size: 40px;
    margin-right: 0;
  }
}

.home-price .price-offer__old small {
  font-size: 24px;
}

@media (max-width: 768px) {
  .home-price .price-offer__old small {
    font-size: 22px;
  }
}

.home-price .price-offer__arrow {
  margin: 0 16px;
  font-size: 16px;
  transform: translateY(-12px);
  display: inline-block;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .home-price .price-offer__arrow {
    display: none;
  }
}

.home-price .price-offer__major .new {
  font-size: 54px;
}

.home-price .price-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .home-price .price-cta {
    margin-top: 24px;
  }
}

.home-price .price-cta .btn {
  background-color: #fff;
  color: #D9533B;
  border: 2px solid #D9533B;
  border-radius: 200px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 #d9533b;
  font-size: 30px;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .home-price .price-cta .btn {
    font-size: 18px;
  }
}

.home-price .price-cta .btn:hover {
  background-color: #D9533B;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .home-price .price-offer {
    margin: 0 auto 0;
    padding: 40px 16px;
    border-radius: 40px;
  }

  .home-price .price-offer__lead {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .home-price .price-offer__content {
    display: grid;
    justify-items: center;
    gap: 0;
  }

  .home-price .price-offer__chips {
    gap: 4px;
    margin-bottom: 0;
  }

  .home-price .price-offer__note {
    padding-top: 16px;
  }

  .home-price .chip {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 12px;
  }

  .home-price .price-offer__major {
    display: grid;
    grid-template-areas: "old""tri""new";
    row-gap: 8px;
    justify-items: center;
    text-align: center;
    font-size: 28px;
    line-height: 1.2;
  }

  .home-price .price-offer__major small {
    font-size: 48px;
  }
}

@media (max-width: 768px) and (max-width: 768px) {
  .home-price .price-offer__major small {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .home-price .price-offer__major .old {
    grid-area: old;
  }

  .home-price .price-offer__major .new {
    grid-area: new;
  }

  .home-price .price-offer__major .arrow {
    display: none;
  }

  .home-price .price-offer__major::after {
    content: "▼\a▼\a▼";
    white-space: pre;
    display: block;
    grid-area: tri;
    font-size: 14px;
    line-height: 1.1;
    text-align: center;
    margin: 4px 0;
  }

  .home-price .price-offer__major .old {
    font-size: 20px;
    margin-right: 8px;
  }

  .home-price .price-offer__major .arrow,
  .home-price .price-offer__major .price-offer__arrow {
    font-size: 12px;
    margin: 0 8px;
    transform: translateY(-6px);
  }

  .home-price .price-offer__major .new {
    font-size: 40px;
  }

  .home-price .price-head {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) and (max-width: 768px) {
  .home-price .price-head {
    align-items: baseline;
  }
}

@media (max-width: 768px) {
  .home-price .price-major {
    text-align: center;
  }

  .home-price .price-breakdown {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 44px;
  }
}

.home-cta {
  position: relative;
  background: linear-gradient(90deg, #fd7528, #d9533b);
  overflow: hidden;
}

@media (max-width: 768px) {
  .home-cta {
    padding-top: 64px;
  }
}

.home-cta::before,
.home-cta::after {
  content: "";
  position: absolute;
  width: 334px;
  height: 247px;
  background-image: url("../images/bef_cta.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

@media (max-width: 768px) {

  .home-cta::before,
  .home-cta::after {
    content: none;
  }
}

.home-cta::before {
  top: 40px;
  left: -80px;
}

.home-cta::after {
  bottom: 100px;
  right: 20px;
}

.home-cta .section-divider--top,
.home-cta .section-divider--bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {

  .home-cta .section-divider--top img,
  .home-cta .section-divider--bottom img {
    transform: scaleX(-1);
  }
}

.home-cta .section-divider--top img,
.home-cta .section-divider--bottom img {
  display: block;
  width: 100%;
  height: auto;
}

.home-cta .section-divider--top {
  top: 0;
}

.home-cta .section-divider--bottom {
  bottom: -2px;
}

.home-cta .home-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 128px 0 64px;
}

@media (max-width: 768px) {
  .home-cta .home-cta__inner {
    padding: 16px 0 32px;
  }
}

.home-cta .home-cta__script {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-family: "MorningDew", cursive;
  font-size: 100px;
  line-height: 1;
  color: rgba(255, 219, 207, 0.3);
  letter-spacing: 0.045em;
}

@media (max-width: 768px) {
  .home-cta .home-cta__script {
    font-size: 44px;
    top: 0;
    z-index: 0;
  }
}

.home-cta .home-cta__title {
  color: #fff;
  font-size: 36px;
  margin-bottom: 12px;
  text-shadow: 4px 4px 0 #d9533b;
}

@media (max-width: 768px) {
  .home-cta .home-cta__title {
    font-size: 20px;
    margin-bottom: 28px;
  }
}

.home-cta .cta-highlights {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto 48px;
}

@media (max-width: 768px) {
  .home-cta .cta-highlights {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 80%;
    margin-bottom: 16px;
    max-width: 420px;
  }
}

.home-cta .cta-chip {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #d9533b;
  color: #fff;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
}

.home-cta .cta-price {
  color: #fff;
}

.home-cta .cta-price__value {
  font-size: 48px;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
  padding-bottom: 8px;
}

.home-cta .cta-price__note {
  margin-top: 8px;
}

.home-cta .home-cta__lead {
  color: #fff;
  margin: 32px 0 8px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .home-cta .home-cta__lead {
    font-size: 12px;
    margin-top: 8px;
  }
}

.home-cta .home-cta__lead::before,
.home-cta .home-cta__lead::after {
  width: 2px;
  height: 24px;
  content: "";
  background-color: #fff;
}

@media (max-width: 768px) {

  .home-cta .home-cta__lead::before,
  .home-cta .home-cta__lead::after {
    height: 19px;
  }
}

.home-cta .home-cta__lead::before {
  margin-right: 0.5em;
  transform: rotate(-30deg);
}

@media (max-width: 768px) {
  .home-cta .home-cta__lead::before {
    margin-right: 0.8em;
  }
}

.home-cta .home-cta__lead::after {
  margin-left: 0.5em;
  transform: rotate(30deg);
}

@media (max-width: 768px) {
  .home-cta .home-cta__lead::after {
    margin-left: 0.8em;
  }
}

.home-cta .btn-cta-primary {
  background-color: #fff;
  color: #D9533B;
  border: 2px solid #D9533B;
  border-radius: 200px;
  padding: 12px 32px;
  font-weight: 600;
  box-shadow: 4px 4px 0 #d9533b;
  font-size: 30px;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  min-width: 442px;
  margin: 0 auto;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .home-cta .btn-cta-primary {
    font-size: 20px;
    min-width: inherit;
  }
}

.home-cta .btn-cta-primary:hover {
  background-color: #D9533B;
  color: #fff;
  transform: translateY(-2px);
}

.home-faq {
  position: relative;
  background: #fff;
  padding: 80px 0;
  isolation: isolate;
}

.home-faq .home-faq__watermark {
  position: absolute;
  top: -102px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 120px;
  color: rgba(217, 83, 59, 0.1);
  font-weight: normal;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .home-faq .home-faq__watermark {
    font-size: 60px;
    top: -40px;
  }
}

.home-faq .home-faq__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.home-faq .home-faq__title {
  text-align: center;
  color: #333;
  margin-bottom: 80px;
  font-size: 36px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .home-faq .home-faq__title {
    font-size: 28px;
    margin-bottom: 48px;
  }
}

.home-faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.home-faq .faq-item {
  border-bottom: 1px solid #eee;
}

.home-faq .faq-item:last-child {
  border-bottom: none;
}

.home-faq .faq-question {
  display: flex;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-faq .faq-question:hover {
  background-color: rgba(217, 83, 59, 0.05);
}

.home-faq .faq-question .faq-question__label {
  color: #d9533b;
  font-size: 24px;
  font-weight: 600;
  margin-right: 24px;
  min-width: 30px;
}

.home-faq .faq-question .faq-question__text {
  flex: 1;
  font-size: 20px;
  color: #333;
  font-weight: 400;
}

.home-faq .faq-question .faq-question__icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 24px;
  transition: all 0.3s ease;
}

.home-faq .faq-question .faq-question__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  background-color: #d9533b;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.home-faq .faq-question .faq-question__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  background-color: #d9533b;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s ease;
}

.home-faq .faq-question[aria-expanded=true] .faq-question__icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 768px) {
  .home-faq .faq-question {
    padding: 12px 0;
  }

  .home-faq .faq-question .faq-question__text {
    font-size: 16px;
  }
}

.home-faq .faq-answer {
  display: flex;
  align-items: flex-start;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.home-faq .faq-answer.show {
  max-height: 200px;
  padding: 24px 0 32px 0;
  opacity: 1;
  visibility: visible;
}

.home-faq .faq-answer .faq-answer__label {
  font-size: 24px;
  font-weight: 600;
  margin-right: 24px;
  min-width: 30px;
}

.home-faq .faq-answer .faq-answer__text {
  flex: 1;
}

.home-faq .faq-answer .faq-answer__text p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .home-faq .faq-answer.show {
    max-height: 300px;
  }
}

.home-access {
  position: relative;
  background: linear-gradient(180deg, #f9f7f3 0%, #fee7da 100%);
  padding: 80px 0 120px;
  isolation: isolate;
}

.home-access .section-divider--top {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 99.8%;
  pointer-events: none;
}

.home-access .section-divider--top img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
}

.home-access .home-access__watermark {
  position: absolute;
  top: -97px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 120px;
  color: rgba(255, 219, 207, 0.8);
  font-weight: normal;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.home-access .home-access__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.home-access .home-access__title {
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .home-access .home-access__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

.home-access .home-access__subtitle {
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .home-access .home-access__subtitle {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.home-access .home-access__logo {
  max-width: 277px;
  margin: 0 auto 40px;
}

@media (max-width: 768px) {
  .home-access .home-access__logo {
    max-width: 210px;
    margin-bottom: 24px;
  }
}

.home-access .access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .home-access .access-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.home-access .access-left .access-logo {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin-bottom: 32px;
}

.home-access .access-left .access-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  border-radius: 8px;
  border: 0;
}

.home-access .access-left .access-map img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.home-access .access-right {
  display: grid;
  gap: 48px;
}

@media (max-width: 768px) {
  .home-access .access-right {
    gap: 24px;
  }
}

.home-access .access-hours-sp {
  display: none;
}

@media (max-width: 768px) {
  .home-access .access-hours-sp {
    display: block;
    margin-top: 32px;
    text-align: center;
  }

  .home-access .access-hours-sp img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

.home-access .access-info .access-address {
  margin-bottom: 32px;
}

.home-access .access-info .access-address p {
  color: #4a4a4a;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.home-access .access-info .access-address p:last-child {
  margin-bottom: 0;
}

.home-access .access-info .access-phone {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  gap: 8px;
}

.home-access .access-info .access-phone .phone-icon {
  color: #d9533b;
  font-size: 20px;
  margin-right: 8px;
}

.home-access .access-info .access-phone .phone-number {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.home-access .access-info .access-payment {
  margin-bottom: 32px;
}

.home-access .access-info .access-payment h3 {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.home-access .access-info .access-payment p {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.home-access .access-info .access-payment p:last-child {
  margin-bottom: 0;
}

.home-access .access-info .access-social {
  display: flex;
  gap: 24px;
}

.home-access .access-info .access-social .social-link {
  color: #d9533b;
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.home-access .access-info .access-social .social-link:hover {
  opacity: 0.8;
}

.home-access .access-hours {
  margin-top: 48px;
  text-align: center;
}

.home-access .access-hours img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .home-access .access-hours {
    display: none;
  }
}

.side-cta {
  position: fixed;
  top: 160px;
  right: 0;
  transform: translateX(11px);
  display: grid;
  gap: 14px;
  z-index: 50;
}

@media (max-width: 768px) {
  .side-cta {
    left: 0;
    right: 0;
    bottom: -1px;
    top: auto;
    z-index: 150;
    transform: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    padding: 8px 2vw 0;
  }
}

.side-cta .side-cta__item {
  text-align: center;
  text-orientation: mixed;
  padding: 20px 21px;
  border-radius: 30px 0 0 30px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
  color: #4a4a4a;
  font-weight: 600;
  letter-spacing: 0.24em;
  transition: all 0.3s ease;
}

.side-cta .side-cta__item:hover {
  background: #4a4a4a;
  color: #fff;
}

.side-cta .side-cta__item--line:hover {
  background: #00b900;
  color: #fff;
}

.side-cta .side-cta__item--primary:hover {
  background: #fff4ed;
  border-color: rgb(188.4615384615, 59.6153846154, 36.5384615385);
  color: #D9533B;
}

@media (max-width: 768px) {
  .side-cta .side-cta__item {
    writing-mode: horizontal-tb;
    padding: 12px 8px;
    box-shadow: none;
    letter-spacing: 0.02em;
    border: 1px solid #4A4A4A;
    border-radius: 30px 30px 0 0;
  }
}

.side-cta .side-cta__item--primary {
  background: #d9533b;
  color: #fff;
}

@media (max-width: 768px) {
  .side-cta .side-cta__item--primary {
    border: 1px solid #D9533B;
  }
}

.side-cta .side-cta__item--line {
  color: #00b900;
  border-color: #00b900;
}

.home-concept {
  position: relative;
  background: linear-gradient(180deg, #f9f7f3 0%, #fee7da 100%);
  padding-bottom: 200px;
  overflow-x: clip;
}

@media (max-width: 768px) {
  .home-concept {
    padding-bottom: 250px;
  }
}

.home-concept::before {
  content: "";
  position: absolute;
  top: 200px;
  left: -130px;
  width: 442px;
  height: 559px;
  background-image: url("../images/bef_underfv.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

@media (max-width: 1200px) {
  .home-concept::before {
    width: 248px;
    height: 328px;
    left: -65px;
  }
}

@media (max-width: 768px) {
  .home-concept::before {
    content: none;
  }
}

.home-concept::after {
  content: "";
  position: absolute;
  top: 200px;
  right: -130px;
  width: 438px;
  height: 429px;
  background-image: url("../images/aft_underfv_pc.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

@media (max-width: 1200px) {
  .home-concept::after {
    width: 267px;
    height: 262px;
    right: -65px;
    top: inherit;
    bottom: 30px;
  }
}

@media (max-width: 768px) {
  .home-concept::after {
    background-image: url("../images/aft_underfv_sp.png");
    bottom: 50px;
    width: 448px;
    height: 250px;
    right: -50px;
  }
}

.home-concept .section-divider--top {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 99.8%;
  pointer-events: none;
}

.home-concept .section-divider--top img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
}

.home-concept .home-concept__content {
  position: relative;
  z-index: 1;
  padding-top: 150px;
}

@media (max-width: 768px) {
  .home-concept .home-concept__content {
    padding-top: 80px;
  }
}

.home-concept .home-concept__watermark {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 130px;
  color: #ffdbcf;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.4;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .home-concept .home-concept__watermark {
    font-size: 60px;
    top: 40px;
  }
}

@media (max-width: 576px) {
  .home-concept .home-concept__watermark {
    font-size: 50px;
  }
}

.home-concept .home-concept__title {
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .home-concept .home-concept__title {
    font-size: 18px;
  }
}

.home-concept .home-concept__text {
  max-width: 640px;
  margin: 0 auto 48px;
  color: #4a4a4a;
  font-size: 20px;
}

@media (max-width: 768px) {
  .home-concept .home-concept__text {
    font-size: 16px;
  }
}

.home-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: start;
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
  max-width: 910px;
  margin: 0 auto;
}

.home-links li {
  position: relative;
  text-align: center;
  padding: 0 24px;
}

.home-links li+li {
  border-left: 1px solid #d9533b;
}

.home-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #d9533b;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  min-height: 120px;
  padding: 20px 0;
}

.home-links .home-links__icon {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width: 768px) {
  .home-links .home-links__icon {
    width: 30px;
    height: 30px;
  }
}

.home-links .home-links__icon--voice {
  background-image: url("../images/ico_underfv_voice.svg");
}

.home-links .home-links__icon--reason {
  background-image: url("../images/ico_underfv_reason.svg");
}

.home-links .home-links__icon--price {
  background-image: url("../images/ico_underfv_tuition.svg");
}

.home-links .home-links__icon--faq {
  background-image: url("../images/ico_underfv_faq.svg");
}

.home-links .home-links__icon--access {
  background-image: url("../images/ico_underfv_access.svg");
}

.home-links .home-links__icon--flow {
  background-image: url("../images/ico_underfv_flow.svg");
}

.home-links .home-links__icon--necessity {
  background-image: url("../images/ico_underfv_necessity.svg");
}

.home-links .home-links__icon--payment {
  background-image: url("../images/ico_underfv_payment.svg");
}

.home-links .home-links__icon--option {
  background-image: url("../images/ico_underfv_option.svg");
}

.home-links .home-links__icon--compare {
  background-image: url("../images/ico_underfv_compare.svg");
}

.home-links .home-links__label {
  font-size: 18px;
  letter-spacing: -0.015em;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .home-links .home-links__label {
    font-size: 11px;
    min-height: 0;
  }
}

.home-links a::after {
  content: "";
  display: block;
  color: currentColor;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.12em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(135deg);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .home-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 0;
  }

  .home-links li {
    padding: 8px;
    border-left: 0;
  }

  .home-links a {
    gap: 6px;
    padding: 0;
    min-height: 0;
  }

  .home-links li:nth-child(-n+3) {
    flex: 0 0 33%;
    max-width: 33%;
  }

  .home-links li:nth-child(n+4) {
    flex: 0 0 33%;
    max-width: 33%;
  }

  .home-links li:nth-child(2),
  .home-links li:nth-child(3) {
    border-left: 1px solid #d9533b;
  }

  .home-links li:nth-child(4) {
    border-left: none;
  }

  .home-links li:nth-child(5) {
    border-left: 1px solid #d9533b;
  }
}

.course-list .row {
  margin-bottom: 48px;
}

.course-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .course-item {
    flex-direction: column;
  }
}

.course-item .course-image {
  flex: 0 0 300px;
}

.course-item .course-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .course-item .course-image {
    flex: none;
  }
}

.course-item .course-content {
  flex: 1;
}

.course-item .course-content h3 {
  color: #007cba;
  margin-bottom: 16px;
}

.course-item .course-content .course-price {
  font-size: 18px;
  font-weight: 600;
  color: #ff6b35;
  margin: 24px 0;
}

.course-item .course-content .course-features {
  list-style: none;
  padding: 0;
}

.course-item .course-content .course-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.course-item .course-content .course-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007cba;
  font-weight: bold;
}

.trainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}

.trainer-card {
  text-align: center;
}

.trainer-card .trainer-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
}

.trainer-card .trainer-name {
  font-size: 20px;
  margin-bottom: 8px;
  color: #007cba;
}

.trainer-card .trainer-title {
  color: #666;
  margin-bottom: 24px;
  font-style: italic;
}

.trainer-card .trainer-bio {
  text-align: left;
}

.trainer-card .trainer-bio .specialties {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.trainer-card .trainer-bio .specialties li {
  background: rgb(160.5, 223.5, 255);
  color: #007cba;
  padding: 8px 16px;
  border-radius: 4px;
  display: inline-block;
  margin: 4px;
  font-size: 14px;
}

.admission-flow .flow-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .admission-flow .flow-step {
    flex-direction: column;
    text-align: center;
  }
}

.admission-flow .flow-step .step-number {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background: #007cba;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  margin-right: 32px;
}

@media (max-width: 768px) {
  .admission-flow .flow-step .step-number {
    margin: 0 auto 24px;
  }
}

.admission-flow .flow-step .step-content {
  flex: 1;
}

.admission-flow .flow-step .step-content h3 {
  margin-bottom: 16px;
  color: #007cba;
}

.pricing-table {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  margin: 48px 0;
}

.pricing-table h3 {
  text-align: center;
  margin-bottom: 32px;
  color: #007cba;
}

.pricing-table .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}

.pricing-table .price-item:last-child {
  border-bottom: none;
  font-weight: 600;
  font-size: 18px;
}

.pricing-table .price-item .price {
  color: #ff6b35;
  font-weight: 600;
}

.briefing-schedule .schedule-item {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  transition: border-color 0.3s ease;
}

.briefing-schedule .schedule-item:hover {
  border-color: #007cba;
}

.briefing-schedule .schedule-item .schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .briefing-schedule .schedule-item .schedule-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.briefing-schedule .schedule-item .schedule-header .schedule-date {
  font-size: 18px;
  font-weight: 600;
  color: #007cba;
}

.briefing-schedule .schedule-item .schedule-header .schedule-status {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.briefing-schedule .schedule-item .schedule-header .schedule-status.available {
  background: rgb(175.1304347826, 235.8695652174, 189);
  color: #28a745;
}

.briefing-schedule .schedule-item .schedule-header .schedule-status.full {
  background: rgb(250.1265822785, 226.8734177215, 229.1012658228);
  color: #dc3545;
}

.briefing-schedule .schedule-item .schedule-details .detail-row {
  display: flex;
  margin-bottom: 8px;
}

.briefing-schedule .schedule-item .schedule-details .detail-row .label {
  flex: 0 0 100px;
  font-weight: 600;
  color: #666;
}

.briefing-schedule .schedule-item .schedule-details .detail-row .value {
  flex: 1;
}

.reservation-form {
  background: rgb(160.5, 223.5, 255);
  padding: 48px;
  border-radius: 8px;
  margin-top: 48px;
}

.reservation-form h3 {
  color: #007cba;
  margin-bottom: 32px;
  text-align: center;
}

.complete-message {
  text-align: center;
  max-width: 600px;
  margin: 64px auto;
}

.complete-message .complete-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 32px;
}

.complete-message h1 {
  color: #007cba;
  margin-bottom: 32px;
}

.complete-message .message-content {
  background: #f8f9fa;
  padding: 48px;
  border-radius: 8px;
  margin-bottom: 48px;
}

.complete-message .message-content p {
  margin-bottom: 24px;
}

.complete-message .message-content p:last-child {
  margin-bottom: 0;
}

.complete-message .next-actions .action-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .complete-message .next-actions .action-list {
    flex-direction: column;
    align-items: center;
  }
}

.terms-page {
  background: #fff;
}

.terms-hero {
  position: relative;
  background: linear-gradient(180deg, #f9f7f3 0%, #fee7da 100%);
  padding: 200px 0 120px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .terms-hero {
    padding: 150px 0 80px;
  }
}

.terms-hero .terms-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg_fv_pc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .terms-hero .terms-hero__background {
    background-image: url("../images/bg_fv_sp.png");
    background-position: bottom;
  }
}

.terms-hero .section-divider--bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  bottom: -9px;
}

.terms-hero .terms-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.terms-hero .terms-hero__watermark {
  position: absolute;
  top: -102px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 130px;
  color: #fff;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .terms-hero .terms-hero__watermark {
    font-size: 60px;
    top: -47px;
    z-index: 0;
  }
}

.terms-hero .terms-hero__title {
  font-size: 32px;
  font-weight: 600;
  color: #d9533b;
  margin: 0 0 32px 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .terms-hero .terms-hero__title {
    font-size: 24px;
    margin-bottom: 0;
  }
}

.terms-hero .terms-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.terms-hero .terms-hero__breadcrumb .terms-hero__breadcrumb-icon {
  display: flex;
  align-items: center;
}

.terms-hero .terms-hero__breadcrumb .terms-hero__breadcrumb-text {
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
  letter-spacing: -0.015em;
}

.terms-content {
  padding: 80px 0 120px;
  background: #fff;
}

@media (max-width: 768px) {
  .terms-content {
    padding: 60px 0 80px;
  }
}

.terms-content .terms-content__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.terms-content .terms-content__intro {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  letter-spacing: -0.015em;
  margin-bottom: 40px;
  text-align: left;
}

@media (max-width: 768px) {
  .terms-content .terms-content__intro {
    font-size: 14px;
  }
}

.terms-content .terms-content__section {
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .terms-content .terms-content__section {
    margin-bottom: 32px;
  }
}

.terms-content .terms-content__section-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.015em;
  line-height: 1.6;
  margin-bottom: 16px;
}

.terms-content .terms-content__section-text {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .terms-content .terms-content__section-text {
    font-size: 14px;
  }
}

.terms-content .terms-content__section-text p {
  margin-bottom: 16px;
}

.terms-content .terms-content__section-text p:last-child {
  margin-bottom: 0;
}

.terms-content .terms-content__section-text ul {
  margin: 16px 0;
  padding-left: 20px;
}

.terms-content .terms-content__section-text ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.terms-content .terms-content__section-text strong {
  font-weight: 600;
}

.terms-content .terms-content__footer {
  margin-top: 60px;
  text-align: right;
  font-size: 16px;
  color: #000;
}

@media (max-width: 768px) {
  .terms-content .terms-content__footer {
    font-size: 14px;
    margin-top: 40px;
  }
}

.terms-content .terms-content__footer p {
  margin-bottom: 8px;
}

.terms-content .terms-content__footer p:last-child {
  margin-bottom: 0;
}

.privacy-page {
  background: #fff;
}

.privacy-hero {
  position: relative;
  background: linear-gradient(180deg, #f9f7f3 0%, #fee7da 100%);
  padding: 200px 0 120px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .privacy-hero {
    padding: 150px 0 80px;
  }
}

.privacy-hero .privacy-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg_fv_pc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .privacy-hero .privacy-hero__background {
    background-image: url("../images/bg_fv_sp.png");
    background-position: bottom;
  }
}

.privacy-hero .section-divider--bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  bottom: -9px;
}

.privacy-hero .privacy-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-hero .privacy-hero__watermark {
  position: absolute;
  top: -102px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 130px;
  color: #fff;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .privacy-hero .privacy-hero__watermark {
    font-size: 60px;
    top: -47px;
    z-index: 0;
  }
}

.privacy-hero .privacy-hero__title {
  font-size: 32px;
  font-weight: 600;
  color: #d9533b;
  margin: 0 0 32px 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .privacy-hero .privacy-hero__title {
    font-size: 24px;
    margin-bottom: 0;
  }
}

.privacy-hero .privacy-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.privacy-hero .privacy-hero__breadcrumb .privacy-hero__breadcrumb-icon {
  display: flex;
  align-items: center;
}

.privacy-hero .privacy-hero__breadcrumb .privacy-hero__breadcrumb-text {
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
  letter-spacing: -0.015em;
}

.privacy-content {
  padding: 80px 0 120px;
  background: #fff;
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 60px 0 80px;
  }
}

.privacy-content .privacy-content__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-content .privacy-content__intro {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  letter-spacing: -0.015em;
  margin-bottom: 40px;
  text-align: left;
}

@media (max-width: 768px) {
  .privacy-content .privacy-content__intro {
    font-size: 14px;
  }
}

.privacy-content .privacy-content__section {
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .privacy-content .privacy-content__section {
    margin-bottom: 32px;
  }
}

.privacy-content .privacy-content__section-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.015em;
  line-height: 1.6;
  margin-bottom: 16px;
}

.privacy-content .privacy-content__section-text {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .privacy-content .privacy-content__section-text {
    font-size: 14px;
  }
}

.privacy-content .privacy-content__section-text p {
  margin-bottom: 16px;
}

.privacy-content .privacy-content__section-text p:last-child {
  margin-bottom: 0;
}

.privacy-content .privacy-content__section-text ul {
  margin: 16px 0;
  padding-left: 20px;
}

.privacy-content .privacy-content__section-text ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.privacy-content .privacy-content__section-text strong {
  font-weight: 600;
}

.privacy-content .privacy-content__footer {
  margin-top: 60px;
  text-align: right;
  font-size: 16px;
  color: #000;
}

@media (max-width: 768px) {
  .privacy-content .privacy-content__footer {
    font-size: 14px;
    margin-top: 40px;
  }
}

.privacy-content .privacy-content__footer p {
  margin-bottom: 8px;
}

.privacy-content .privacy-content__footer p:last-child {
  margin-bottom: 0;
}

#complete .complete-hero {
  position: relative;
  background: linear-gradient(180deg, #f9f7f3 0%, #fee7da 100%);
  padding: 250px 0 60px;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 992px) {
  #complete .complete-hero {
    padding: 200px 0 50px;
  }
}

@media (max-width: 768px) {
  #complete .complete-hero {
    padding: 150px 0 40px;
  }
}

@media (max-width: 576px) {
  #complete .complete-hero {
    padding: 120px 0 30px;
  }
}

#complete .complete-hero__content {
  position: relative;
  z-index: 3;
}

@media (max-width: 576px) {
  #complete .complete-hero__content p {
    font-size: 12px;
  }
}

#complete .complete-hero__watermark {
  position: absolute;
  top: -107px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 130px;
  color: #fff;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

@media (max-width: 576px) {
  #complete .complete-hero__watermark {
    font-size: 60px;
    top: -47px;
    z-index: 0;
  }
}

#complete .complete-hero__title {
  font-size: 32px;
  font-weight: 600;
  color: #d9533b;
  margin: 0 0 32px 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  #complete .complete-hero__title {
    font-size: 24px;
    margin-bottom: 0;
  }
}

.trainer-hero {
  position: relative;
  background: linear-gradient(180deg, #f9f7f3 0%, #fee7da 100%);
  padding: 260px 0 160px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .trainer-hero {
    padding: 150px 0 80px;
  }
}

.trainer-hero .section-divider--bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  bottom: -9px;
  transform: scaleX(-1);
}

.trainer-hero__content {
  position: relative;
  z-index: 3;
}

.trainer-hero__watermark {
  position: absolute;
  top: -107px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 130px;
  color: #fff;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .trainer-hero__watermark {
    font-size: 60px;
    top: -47px;
    z-index: 0;
  }
}

.trainer-hero__title {
  font-size: 32px;
  font-weight: 600;
  color: #d9533b;
  margin: 0 0 32px 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (max-width: 768px) {
  .trainer-hero__title {
    font-size: 24px;
    margin-bottom: 0;
  }
}

.trainer-detail {
  padding: 80px 0;
  position: relative;
}

@media (max-width: 768px) {
  .trainer-detail {
    padding: 60px 0;
  }
}

.trainer-detail__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.trainer-profile {
  display: flex;
  gap: 90px;
  margin-bottom: 80px;
  align-items: center;
  margin-top: 72px;
  max-width: 930px;
  margin: 72px auto 80px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .trainer-profile {
    gap: 40px;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .trainer-profile {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 24px;
    text-align: center;
  }
}

.trainer-profile__image {
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .trainer-profile__image {
    order: -1;
  }
}

.trainer-profile__image-circle {
  width: 311px;
  height: 311px;
  border-radius: 50%;
  overflow: hidden;
  background: #d9d9d9;
}

@media (max-width: 992px) {
  .trainer-profile__image-circle {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .trainer-profile__image-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
}

.trainer-profile__image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trainer-profile__content {
  flex: 1;
}

@media (max-width: 768px) {
  .trainer-profile__content {
    text-align: center;
  }
}

.trainer-profile__name-en {
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 67px;
  color: #ffd0c1;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .trainer-profile__name-en {
    font-size: 60px;
    top: 13px;
    z-index: 0;
  }
}

.trainer-profile__name {
  font-size: 32px;
  font-weight: 600;
  color: #4a4a4a;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: -1.5%;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .trainer-profile__name {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .trainer-profile__name {
    font-size: 24px;
  }
}

.trainer-profile__description p {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  margin: 0;
  letter-spacing: -1.5%;
}

@media (max-width: 768px) {
  .trainer-profile__description p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .trainer-profile__description {
    display: none;
  }
}

.trainer-stats {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .trainer-stats {
    margin-bottom: 0;
  }
}

.trainer-stats__title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
  line-height: 1.4;
  letter-spacing: -1.5%;
}

@media (max-width: 768px) {
  .trainer-stats__title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.trainer-stats__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .trainer-stats__list {
    gap: 4px;
  }
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stat-item__bullet {
  width: 0;
  height: 0;
  border-left: 9px solid #d9533b;
  border-top: 6.5px solid transparent;
  border-bottom: 6.5px solid transparent;
  margin-top: 6px;
  flex-shrink: 0;
}

.stat-item__text {
  font-size: 16px;
  color: #000;
  line-height: 2;
  letter-spacing: -1.5%;
  margin: 0;
}

@media (max-width: 768px) {
  .stat-item__text {
    font-size: 14px;
  }
}

.trainer-message {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .trainer-message {
    margin-bottom: 60px;
  }
}

.trainer-message__title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 32px;
  line-height: 1.4;
  letter-spacing: -1.5%;
}

@media (max-width: 768px) {
  .trainer-message__title {
    display: none;
  }
}

.trainer-message__content {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  letter-spacing: -1.5%;
}

.trainer-message__content p {
  margin: 0;
}

.trainer-message__content br {
  line-height: 1;
}

@media (max-width: 768px) {
  .trainer-message__content {
    font-size: 14px;
  }
}

.trainer-message__mobile {
  display: none;
}

@media (max-width: 768px) {
  .trainer-message__mobile {
    display: block;
  }
}

.trainer-message-expansion .choose-expansion__question {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #D9533B;
  border-radius: 200px;
  background: #fff;
  width: 100%;
}

@media (max-width: 768px) {
  .trainer-message-expansion .choose-expansion__question {
    max-width: 335px;
    margin: 0 auto;
  }
}

.trainer-message-expansion .choose-expansion__question:hover {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trainer-message-expansion .choose-expansion__question .choose-expansion__text {
  font-size: 16px;
  color: #D9533B;
  font-weight: 600;
  margin-right: 16px;
}

.trainer-message-expansion .choose-expansion__question .choose-expansion__icon {
  color: #d9533b;
  font-size: 24px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .trainer-message-expansion .choose-expansion__question .choose-expansion__icon {
    font-size: 16px;
  }
}

.trainer-message-expansion .choose-expansion__question[aria-expanded=true] .choose-expansion__icon {
  transform: rotate(90deg);
}

@media (min-width: calc(768px + 1px)) {
  .trainer-message-expansion .choose-expansion__question {
    display: none;
  }
}

.trainer-message-expansion .choose-expansion__answer {
  display: flex;
  align-items: flex-start;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.trainer-message-expansion .choose-expansion__answer.show {
  max-height: 600px;
  padding: 24px 0 32px 0;
  opacity: 1;
  visibility: visible;
}

@media (min-width: calc(768px + 1px)) {
  .trainer-message-expansion .choose-expansion__answer {
    max-height: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
}

.trainer-message-expansion .choose-expansion__content {
  flex: 1;
}

.trainer-message-expansion .choose-expansion__content p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 576px) {
  .trainer-message-expansion .choose-expansion__content p {
    font-size: 14px;
  }
}

.trainer-gallery {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .trainer-gallery {
    margin-bottom: 60px;
  }
}

.trainer-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

@media (max-width: 992px) {
  .trainer-gallery__grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .trainer-gallery__grid {
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .trainer-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: #d9d9d9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.flow-hero {
  position: relative;
  background: linear-gradient(180deg, #f9f7f3 0%, #fee7da 100%);
  padding: 260px 0 240px;
  overflow: hidden;
  background-image: url("../images/bg_flow_top_pc.jpg");
  background-position: top right;
  background-size: cover;
}

@media (max-width: 768px) {
  .flow-hero {
    background-image: url("../images/bg_flow_top_sp.png");
    background-size: cover;
    background-position: bottom;
    padding: 150px 0 140px;
  }
}

.flow-hero .section-divider--bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  bottom: -9px;
  transform: scaleX(-1);
}

.flow-hero__content {
  position: relative;
  z-index: 3;
}

.flow-hero__watermark {
  position: absolute;
  top: -107px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 130px;
  color: #fff;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .flow-hero__watermark {
    font-size: 60px;
    top: -47px;
    z-index: 0;
  }
}

.flow-hero__title {
  font-size: 32px;
  font-weight: 600;
  color: #d9533b;
  margin: 0 0 32px 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (max-width: 768px) {
  .flow-hero__title {
    font-size: 24px;
    margin-bottom: 0;
  }
}

.flow-trial {
  position: relative;
  background: #fff;
  padding: 80px 0;
}

@media (max-width: 768px) {
  .flow-trial {
    padding: 60px 0;
  }
}

.flow-trial .flow-trial__watermark {
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 120px;
  color: #FFDBCF;
  opacity: 0.6;
  font-weight: normal;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .flow-trial .flow-trial__watermark {
    font-size: 60px;
    top: 260px;
  }
}

.flow-trial .flow-trial__title {
  text-align: center;
  color: #333;
  margin-bottom: 80px;
  font-size: 36px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin-top: 120px;
}

@media (max-width: 768px) {
  .flow-trial .flow-trial__title {
    font-size: 28px;
    margin-bottom: 48px;
  }
}

.flow-trial .home-links {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .flow-trial .home-links {
    width: 110%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    transform: translateX(-5%);
  }
}

@media (max-width: 768px) {
  .flow-trial .home-links li {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}

@media (max-width: 768px) {
  .flow-trial .home-links li:nth-child(4) {
    border-left: 1px solid #d9533b;
  }
}

.flow-trial .flow-trial__info {
  max-width: 600px;
  margin: 0 auto;
}

.flow-trial .flow-trial__info__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.flow-trial .flow-trial__info__item:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .flow-trial .flow-trial__info__item {
    padding: 16px 0;
  }
}

.flow-trial .flow-trial__info__label {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  width: 50%;
  text-align: center;
}

@media (max-width: 768px) {
  .flow-trial .flow-trial__info__label {
    font-size: 14px;
    width: 40%;
  }
}

.flow-trial .flow-trial__info__value {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  width: 50%;
  text-align: left;
}

@media (max-width: 768px) {
  .flow-trial .flow-trial__info__value {
    font-size: 14px;
    width: 60%;
  }
}

.flow-steps {
  position: relative;
  background: linear-gradient(180deg, #f9f7f3 0%, #ffe6d8 100%);
  padding: 80px 0 200px;
}

@media (max-width: 768px) {
  .flow-steps {
    padding: 60px 0;
  }
}

.flow-steps .section-divider--top {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 99.8%;
  pointer-events: none;
}

.flow-steps .section-divider--top img {
  display: block;
  width: 100%;
  height: auto;
}

.flow-steps .flow-steps__watermark {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 120px;
  color: #FFDBCF;
  opacity: 0.6;
  font-weight: normal;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .flow-steps .flow-steps__watermark {
    font-size: 60px;
    top: 20px;
  }
}

.flow-steps .flow-steps__title {
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 80px;
  font-size: 32px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .flow-steps .flow-steps__title {
    font-size: 28px;
    margin-bottom: 48px;
  }
}

.flow-steps .flow-steps__content {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-steps .flow-step {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .flow-steps .flow-step {
    margin-bottom: 0;
  }
}

.flow-steps .flow-step:last-child {
  margin-bottom: 0;
}

.flow-steps .flow-step__card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

@media (max-width: 768px) {
  .flow-steps .flow-step__card {
    flex-direction: column;
  }
}

.flow-steps .flow-step__text {
  flex: 1;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .flow-steps .flow-step__text {
    padding: 24px;
    gap: 16px;
    min-height: auto;
  }
}

.flow-steps .flow-step__number {
  font-family: "MorningDew", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 82.5px;
  font-weight: 400;
  color: #d9533b;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .flow-steps .flow-step__number {
    font-size: 60px;
  }
}

.flow-steps .flow-step__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .flow-steps .flow-step__content {
    gap: 12px;
  }
}

.flow-steps .flow-step__title {
  font-size: 26px;
  font-weight: 600;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .flow-steps .flow-step__title {
    font-size: 20px;
  }
}

.flow-steps .flow-step__description {
  font-size: 18px;
  font-weight: 500;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .flow-steps .flow-step__description {
    font-size: 16px;
  }
}

.flow-steps .flow-step__image {
  flex: 0 0 410px;
  display: flex;
  align-items: stretch;
}

@media (max-width: 768px) {
  .flow-steps .flow-step__image {
    flex: none;
    width: 100%;
    height: 200px;
  }
}

.flow-steps .flow-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 30px 30px 0;
  display: block;
}

@media (max-width: 768px) {
  .flow-steps .flow-step__image img {
    border-radius: 0 0 30px 30px;
  }
}

.flow-steps .flow-step-expansion {
  display: block;
}

@media (min-width: calc(768px + 1px)) {
  .flow-steps .flow-step-expansion {
    display: none;
  }
}

.flow-steps .flow-step-expansion .choose-expansion__question {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 150px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .flow-steps .flow-step-expansion .choose-expansion__question {
    margin-bottom: 4px;
  }
}

.flow-steps .flow-step-expansion .choose-expansion__question:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.flow-steps .flow-step-expansion .choose-expansion__question[aria-expanded=true] {
  border-radius: 40px 40px 0 0;
  margin-bottom: 0;
}

.flow-steps .flow-step-expansion .choose-expansion__question[aria-expanded=true] .choose-expansion__icon {
  transform: rotate(90deg);
}

.flow-steps .flow-step-expansion .flow-step__button-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  text-align: left;
}

.flow-steps .flow-step-expansion .flow-step__number {
  font-family: "MorningDew", sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #d9533b;
  line-height: 1;
  flex-shrink: 0;
  transform: translateY(5px);
}

.flow-steps .flow-step-expansion .flow-step__title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  text-align: left;
}

.flow-steps .flow-step-expansion .choose-expansion__icon {
  font-size: 16px;
  color: #d9533b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.flow-steps .flow-step-expansion .choose-expansion__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
  background: #fff;
  border-radius: 0 0 15px 15px;
  margin-bottom: 16px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .flow-steps .flow-step-expansion .choose-expansion__answer {
    padding: 0;
    border-radius: 0 0 40px 40px;
  }
}

.flow-steps .flow-step-expansion .choose-expansion__answer.show {
  max-height: 600px;
  opacity: 1;
  visibility: visible;
  padding: 20px 0 0;
}

.flow-steps .flow-step-expansion .choose-expansion__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}

.flow-steps .flow-step-expansion .flow-step__description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .flow-steps .flow-step-expansion .flow-step__description {
    padding: 0 20px;
  }
}

.flow-steps .flow-step-expansion .flow-step__image {
  width: 100%;
  height: 200px;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  flex: none;
}

.flow-steps .flow-step-expansion .flow-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 15px 15px;
  display: block;
}

@media (max-width: 768px) {
  .flow-steps .flow-step__card--desktop {
    display: none;
  }
}

.flow-necessity {
  position: relative;
  background: #fff;
  padding: 150px 0;
}

@media (max-width: 768px) {
  .flow-necessity {
    padding: 60px 0;
  }
}

.flow-necessity .section-divider--top {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 99.8%;
  pointer-events: none;
}

.flow-necessity .section-divider--top img {
  display: block;
  width: 100%;
  height: auto;
}

.flow-necessity .flow-necessity__watermark {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 120px;
  color: #FFDBCF;
  opacity: 0.6;
  font-weight: normal;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .flow-necessity .flow-necessity__watermark {
    font-size: 60px;
    top: 10px;
  }
}

.flow-necessity .flow-necessity__title {
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 80px;
  font-size: 32px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .flow-necessity .flow-necessity__title {
    font-size: 20px;
    margin-bottom: 48px;
  }
}

.flow-necessity .flow-necessity__content {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-necessity .flow-necessity__items {
  display: flex;
  justify-content: center;
  gap: 68px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .flow-necessity .flow-necessity__items {
    gap: 18px;
  }
}

.flow-necessity .flow-necessity__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 260px;
}

@media (max-width: 768px) {
  .flow-necessity .flow-necessity__item {
    max-width: 100%;
  }
}

.flow-necessity .flow-necessity__item__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .flow-necessity .flow-necessity__item__circle {
    width: 160px;
    height: 160px;
    margin-bottom: 16px;
  }
}

.flow-necessity .flow-necessity__item__icon {
  height: auto;
  object-fit: contain;
}

.flow-necessity .flow-necessity__item__title {
  font-size: 18px;
  font-weight: 600;
  color: #4a4a4a;
  margin-bottom: 16px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .flow-necessity .flow-necessity__item__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.flow-necessity .flow-necessity__item__description {
  font-size: 18px;
  font-weight: 500;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  max-width: 180px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .flow-necessity .flow-necessity__item__description {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .flow-page .home-faq {
    padding-top: 0;
  }
}

.flow-payment {
  position: relative;
  background: #fff;
  padding: 120px 0;
}

@media (max-width: 768px) {
  .flow-payment {
    padding: 60px 0;
  }
}

.flow-payment .flow-payment__watermark {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 120px;
  color: #FFDBCF;
  opacity: 0.6;
  font-weight: normal;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__watermark {
    font-size: 60px;
    top: 20px;
  }
}

.flow-payment .flow-payment__title {
  text-align: center;
  color: #333;
  margin-bottom: 48px;
  font-size: 36px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__title {
    font-size: 20px;
    margin-bottom: 48px;
  }
}

.flow-payment .flow-payment__content {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-payment .flow-payment__methods {
  margin-bottom: 48px;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__methods {
    margin-bottom: 24px;
  }
}

.flow-payment .flow-payment__subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 32px;
  text-align: center;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__subtitle {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.flow-payment .flow-payment__description {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__description {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

.flow-payment .flow-payment__card-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  text-align: center;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__card-title {
    font-size: 14px;
  }
}

.flow-payment .flow-payment__cards {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__cards {
    font-size: 14px;
  }
}

.flow-payment .flow-payment__monthly {
  margin-bottom: 60px;
  max-width: 600px;
  margin: 0 auto 88px;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__monthly {
    margin-bottom: 40px;
  }
}

.flow-payment .flow-payment__monthly-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__monthly-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.flow-payment .flow-payment__monthly-description {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__monthly-description {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.flow-payment .flow-payment__divider {
  width: 100%;
  height: 1px;
  background-color: #cdcdcd;
  margin: 0 0 48px;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__divider {
    margin-bottom: 24px;
  }
}

.flow-payment .flow-payment__notes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-payment .flow-payment__notes li {
  font-size: 12px;
  color: #5f5f5f;
  line-height: 1.6;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__notes li {
    font-size: 10px;
    margin-bottom: 6px;
  }
}

.flow-payment .flow-payment__offer {
  max-width: 1000px;
  margin: 0 auto 64px;
  background: linear-gradient(30deg, #ffb58b, #d9533b);
  border-radius: 30px;
  padding: 32px 48px;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer {
    margin: 0 auto 40px;
    padding: 40px 16px;
    border-radius: 40px;
  }
}

.flow-payment .flow-payment__offer .flow-payment__offer__lead {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__lead {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}

.flow-payment .flow-payment__offer .flow-payment__offer__content {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__content {
    display: grid;
    justify-items: center;
    gap: 0;
  }
}

.flow-payment .flow-payment__offer .flow-payment__offer__chips {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__chips {
    gap: 4px;
    margin-bottom: 0;
  }
}

.flow-payment .flow-payment__offer .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .chip {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 12px;
  }
}

.flow-payment .flow-payment__offer .flow-payment__offer__major {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__major {
    display: grid;
    grid-template-areas: "old""tri""new";
    row-gap: 8px;
    justify-items: center;
    text-align: center;
    font-size: 28px;
    line-height: 1.2;
  }
}

.flow-payment .flow-payment__offer .flow-payment__offer__major small {
  font-size: 48px;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__major small {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__major .old {
    grid-area: old;
  }
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__major .new {
    grid-area: new;
  }
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__major .arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__major::after {
    content: "▼\a▼\a▼";
    white-space: pre;
    display: block;
    grid-area: tri;
    font-size: 14px;
    line-height: 1.1;
    text-align: center;
    margin: 4px 0;
  }
}

.flow-payment .flow-payment__offer .flow-payment__offer__old {
  color: #fff;
  opacity: 0.9;
  margin-right: 16px;
  font-size: 48px;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__old {
    font-size: 40px;
    margin-right: 0;
  }
}

.flow-payment .flow-payment__offer .flow-payment__offer__old small {
  font-size: 24px;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__old small {
    font-size: 22px;
  }
}

.flow-payment .flow-payment__offer .flow-payment__offer__arrow {
  margin: 0 16px;
  font-size: 16px;
  transform: translateY(-12px);
  display: inline-block;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__arrow {
    display: none;
  }
}

.flow-payment .flow-payment__offer .flow-payment__offer__major .new {
  font-size: 54px;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__major .new {
    font-size: 40px;
  }
}

.flow-payment .flow-payment__offer .flow-payment__offer__note {
  padding-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
  text-align: center;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__offer .flow-payment__offer__note {
    font-size: 13px;
    padding-top: 16px;
    margin-bottom: 0;
  }
}

.flow-payment .flow-payment__cta {
  text-align: center;
}

.flow-payment .flow-payment__cta .btn {
  background-color: #fff;
  color: #D9533B;
  border: 2px solid #D9533B;
  border-radius: 100px;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  box-shadow: 4px 4px 0 #d9533b;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .flow-payment .flow-payment__cta .btn {
    font-size: 20px;
    padding: 8px 24px;
  }
}

.flow-payment .flow-payment__cta .btn:hover {
  background-color: #D9533B;
  color: #fff;
  transform: translateY(-2px);
}

.briefings-hero {
  position: relative;
  background: linear-gradient(180deg, #f9f7f3 0%, #fee7da 100%);
  padding: 260px 0 160px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .briefings-hero {
    padding: 150px 0 80px;
  }
}

.briefings-hero .section-divider--bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  bottom: -9px;
  transform: scaleX(-1);
}

.briefings-hero__content {
  position: relative;
  z-index: 3;
}

.briefings-hero__watermark {
  position: absolute;
  top: -107px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 130px;
  color: #fff;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .briefings-hero__watermark {
    font-size: 60px;
    top: -47px;
    z-index: 0;
  }
}

.briefings-hero__title {
  font-size: 32px;
  font-weight: 600;
  color: #d9533b;
  margin: 0 0 32px 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (max-width: 768px) {
  .briefings-hero__title {
    font-size: 24px;
    margin-bottom: 0;
  }
}


#course-page #course-fv {
  background-image: url("../images/bg_course_top_pc.jpg");
  background-position: top right;
  background-size: cover;
}

@media (max-width: 768px) {
  #course-page #course-fv {
    background-image: url("../images/bg_course_top_sp.png");
    background-size: cover;
    background-position: bottom;
    padding-top: 120px;
  }
}

#course-page #course-fv .home-cta__title {
  text-shadow: none;
  color: #4a4a4a;
  z-index: 1;
  position: relative;
}

#course-page #course-fv .home-cta__lead {
  color: #4a4a4a;
}

@media (max-width: 768px) {
  #course-page #course-fv .home-cta__lead {
    color: #D9533B;
  }
}

#course-page #course-fv .home-cta__lead::before,
#course-page #course-fv .home-cta__lead::after {
  background-color: #4a4a4a;
}

@media (max-width: 768px) {

  #course-page #course-fv .home-cta__lead::before,
  #course-page #course-fv .home-cta__lead::after {
    background-color: #D9533B;
  }
}

#course-page #course-fv .home-cta__script {
  color: #fff;
  opacity: 0.7;
  z-index: -1;
}

#course-page #course-fv .btn-cta-primary {
  background-color: #D9533B;
  color: #fff;
  box-shadow: 4px 4px 0 #ffffff;
}

#course-page #course-fv .section-divider--top {
  display: none;
}

#course-page #course-fv .section-divider--bottom {
  transform: scaleX(-1);
}

#course-page #course-fv .home-cta__title {
  margin-bottom: 40px;
}

#course-page #course-fv .cta-highlights {
  max-width: 550px;
  margin: 0 auto;
}

#course-page .home-links {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  #course-page .home-links {
    width: 110%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    transform: translateX(-5%);
  }
}

@media (max-width: 768px) {
  #course-page .home-links li {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}

@media (max-width: 768px) {
  #course-page .home-links li:nth-child(4) {
    border-left: 1px solid #d9533b;
  }
}

#course-page .home-price__title {
  margin-top: 170px;
}

@media (max-width: 768px) {
  #course-page .home-price__title {
    margin-top: 80px;
  }
}

#course-page .home-price__watermark {
  top: 369px;
}

@media (max-width: 768px) {
  #course-page .home-price__watermark {
    top: 190px;
  }
}

#course-page .course-price__lead {
  text-align: center;
  font-size: 26px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  #course-page .course-price__lead {
    font-size: 16px;
  }
}

#course-page .course-price {
  background: #fff;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  #course-page .course-price {
    padding-bottom: 20px;
  }
}

#course-page .course-price .priceplan-example {
  max-width: 1000px;
  margin: 32px auto 64px;
  text-align: center;
}

#course-page .course-price .priceplan-example picture,
#course-page .course-price .priceplan-example img {
  display: inline-block;
}

#course-page .course-price .priceplan-example img {
  width: 100%;
  height: auto;
}

#course-page .course-price .course-plans {
  max-width: 1000px;
  margin: 0 auto 64px;
}

#course-page .course-price .course-plans__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 0 0 32px;
}

@media (max-width: 768px) {
  #course-page .course-price .course-plans__tabs {
    padding: 0 0 16px;
  }
}

@media (max-width: 576px) {
  #course-page .course-price .course-plans__tabs {
    gap: 6px;
    margin: 0 auto;
    padding-bottom: 0;
  }
}

#course-page .course-price .plan-tab-wrapper {
  position: relative;
}

@media (max-width: 768px) {
  #course-page .course-price .plan-tab-wrapper {
    flex-shrink: 0;
  }
}

#course-page .course-price .plan-tab-wrapper--recommended .plan-tab__badge {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: #d9533b;
  font-size: 22px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 15px;
  white-space: nowrap;
  z-index: 1;
  line-height: 1;
}

@media (max-width: 576px) {
  #course-page .course-price .plan-tab-wrapper--recommended .plan-tab__badge {
    font-size: 10px;
    padding: 3px 6px;
    top: -20px;
  }
}

#course-page .course-price .plan-tab {
  appearance: none;
  border: 1px solid #d9533b;
  background: #fff;
  color: #d9533b;
  border-radius: 30px;
  padding: 10px 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 320px;
  height: 113px;
  display: grid;
  place-items: center;
  font-size: 26px;
}

@media (max-width: 768px) {
  #course-page .course-price .plan-tab {
    width: 100%;
    height: 96px;
    padding: 10px 6px;
    font-size: clamp(10px, 2.8vw, 23px);
    min-width: 29vw;
    border-radius: 10px;
  }
}

@media (max-width: 576px) {
  #course-page .course-price .plan-tab {
    height: inherit;
  }
}

#course-page .course-price .plan-tab.is-active,
#course-page .course-price .plan-tab:focus {
  background: #d9533b;
  color: #fff;
  box-shadow: 0 8px 24px rgba(217, 83, 59, 0.25);
}

#course-page .course-price .course-plans__panels {
  margin-top: 32px;
}

@media (max-width: 576px) {
  #course-page .course-price .course-plans__panels {
    margin-top: 16px;
  }
}

#course-page .course-price .plan-panel {
  display: none;
}

#course-page .course-price .plan-panel.is-active {
  display: block;
}

#course-page .course-price .plan-card {
  background: #f9f7f3;
  border: 2px solid #d9533b;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 40px;
  text-align: center;
}

@media (max-width: 576px) {
  #course-page .course-price .plan-card {
    padding: 24px 12px;
    box-shadow: none;
  }
}

#course-page .course-price .plan-card__catch {
  font-size: 26px;
  color: #4a4a4a;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  #course-page .course-price .plan-card__catch {
    font-size: 18px;
  }
}

#course-page .course-price .plan-card__pricing {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 8px;
}

#course-page .course-price .plan-card__badge {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: #d9533b;
  color: #fff;
  display: grid;
  place-items: center;
  line-height: 1.2;
  font-weight: 600;
}

#course-page .course-price .plan-card__perprice {
  color: #d9533b;
  font-size: 34px;
}

@media (max-width: 576px) {
  #course-page .course-price .plan-card__perprice {
    font-size: 26px;
  }
}

#course-page .course-price .plan-card__perprice strong {
  font-size: 61px;
}

@media (max-width: 576px) {
  #course-page .course-price .plan-card__perprice strong {
    font-size: 40px;
  }
}

#course-page .course-price .plan-card__perprice small {
  font-size: 26px;
  margin-left: 4px;
  color: #d9533b;
}

@media (max-width: 576px) {
  #course-page .course-price .plan-card__perprice small {
    font-size: 18px;
  }
}

#course-page .course-price .plan-card__total {
  color: #4a4a4a;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 8px 0 24px;
}

@media (max-width: 576px) {
  #course-page .course-price .plan-card__total {
    font-size: 12px;
  }
}

#course-page .course-price .services-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
}

@media (max-width: 576px) {
  #course-page .course-price .services-card {
    padding: 24px 8px;
  }
}

#course-page .course-price .services-card__title {
  font-size: 20px;
  color: #4a4a4a;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

@media (max-width: 576px) {
  #course-page .course-price .services-card__title {
    font-size: 18px;
    margin-bottom: 0;
  }
}

#course-page .course-price .services-card__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-items: center;
  align-items: start;
}

#course-page .course-price .service-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 576px) {
  #course-page .course-price .service-item {
    width: 33%;
  }
}

#course-page .course-price .service-icon {
  width: 138px;
  height: 120px;
  display: inline-block;
}

@media (max-width: 576px) {
  #course-page .course-price .service-icon {
    width: 100%;
    height: auto;
  }
}

#course-page .course-price .service-label {
  display: block;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 576px) {
  #course-page .course-price .service-label {
    font-size: 12px;
  }
}

#course-page .course-options,
#course-page .course-compare {
  position: relative;
}

#course-page .course-options .home-choose__title,
#course-page .course-compare .home-choose__title {
  text-align: center;
}

#course-page .course-options {
  padding-bottom: 110px;
}

@media (max-width: 768px) {
  #course-page .course-options {
    padding-bottom: 80px;
  }
}

#course-page .options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #course-page .options-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

#course-page .option-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  min-height: 342px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  #course-page .option-card {
    padding: 32px 16px;
    min-height: auto;
  }
}

#course-page .option-card__title {
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}

#course-page .option-card__divider {
  width: 36px;
  height: 1px;
  background-color: #d9533b;
  margin: 0 auto 20px;
}

#course-page .option-card__pricing {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}

#course-page .option-card__per {
  text-align: center;
}

#course-page .option-card__duration {
  color: #d9533b;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: -0.015em;
}

#course-page .option-card__price {
  color: #d9533b;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}

#course-page .option-card__price small {
  font-size: 18px;
}

#course-page .option-card__total {
  text-align: center;
}

#course-page .option-card__total-label {
  color: #d9533b;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: -0.015em;
}

#course-page .option-card__total-price {
  color: #d9533b;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}

#course-page .option-card__total-price small {
  font-size: 18px;
}

#course-page .option-card__validity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

#course-page .validity-badge {
  border: 1px solid #4a4a4a;
  padding: 4px 10px;
  font-size: 16px;
  color: #4a4a4a;
  font-weight: 400;
}

#course-page .validity-period {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.015em;
}

#course-page .option-card__description {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#course-page .option-card__description p {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.015em;
}

#course-page #compare {
  position: relative;
  background: #fff;
  padding-top: 110px;
  padding-bottom: 160px;
}

@media (max-width: 768px) {
  #course-page #compare {
    padding-bottom: 0;
  }
}

#course-page #compare .section-divider--top {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 98%;
}

#course-page #compare .section-divider--top img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  #course-page #compare .section-divider--top {
    transform: scaleX(-1);
  }
}

#course-page #compare .compare__watermark {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "MorningDew", cursive;
  font-size: 130px;
  color: #ffdbcf;
  opacity: 0.6;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

@media (max-width: 768px) {
  #course-page #compare .compare__watermark {
    font-size: 60px;
    top: 68px;
  }
}

#course-page #compare .compare__title {
  text-align: center;
  color: #4a4a4a;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

#course-page #compare .compare-price {
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  #course-page #compare .compare-price .scroll-hint-icon-wrap {
    display: none;
  }
}

@media (max-width: 992px) {
  #course-page #compare .compare-price .compare-price__inner {
    width: 1000px;
  }
}

@media (max-width: 576px) {
  #course-page #compare .compare-price .compare-price__inner {
    width: 570px;
  }
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 8px !important;
}

.mt-2 {
  margin-top: 16px !important;
}

.mt-3 {
  margin-top: 24px !important;
}

.mt-4 {
  margin-top: 32px !important;
}

.mt-5 {
  margin-top: 48px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}

.mb-2 {
  margin-bottom: 16px !important;
}

.mb-3 {
  margin-bottom: 24px !important;
}

.mb-4 {
  margin-bottom: 32px !important;
}

.mb-5 {
  margin-bottom: 48px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 8px !important;
}

.pt-2 {
  padding-top: 16px !important;
}

.pt-3 {
  padding-top: 24px !important;
}

.pt-4 {
  padding-top: 32px !important;
}

.pt-5 {
  padding-top: 48px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 8px !important;
}

.pb-2 {
  padding-bottom: 16px !important;
}

.pb-3 {
  padding-bottom: 24px !important;
}

.pb-4 {
  padding-bottom: 32px !important;
}

.pb-5 {
  padding-bottom: 48px !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.text-primary {
  color: #007cba !important;
}

.text-secondary {
  color: #666 !important;
}

.text-muted {
  color: #666 !important;
}

.bg-primary {
  background-color: #007cba !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

/* ============================================================
   Contact Form 7 Custom Styles (c-form)
   ============================================================ */

/* フォームラッパー */

.contact-form__intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-form__lead{
  @media (max-width: 768px) {
    text-align: left;
    font-size: 12px;
  }
}

.contact-form__note{
  color: #929292;
  font-size: 12px;

  @media (max-width: 768px) {
    font-size: 10px;
    text-align: left;

  }
}

.contact-form__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

/* スコープ用メインコンテナ */
.c-form {
  background: #f9f7f3;
  border-radius: 43px;
  padding: 40px 3vw;
  box-shadow: none;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .c-form {
    padding: 12px 3%;
    border-radius: 24px;
  }
}

/* フィールド行（縦積み） */
.c-form__row {
  margin-bottom: 0;
}

/* 2カラム行 */
.c-form__row--2 {
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  margin-bottom: 0;

  p{
    display: flex;
    gap: 20px

  }
}

@media (max-width: 768px) {
  .c-form__row--2 {
    grid-template-columns: 1fr;
    column-gap: 0;

    p{
      flex-direction: column;
      gap: 0;
    }
  }
}

/* 個別フィールド */
.c-form__field {
  display: block;
  margin-bottom: -40px;
}

.c-form__field label {
  display: block;
}

/* ラベルテキスト */
.c-form__label {
  font-family: 'YuGothic', '游ゴシック体', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #4a4a4a;
  line-height: 1.6;
  letter-spacing: 0;
  display: block;
}

/* 必須マーク */
.c-form__req {
  color: #d9533b;
  font-weight: 700;
}

/* インプット共通スタイル */
.c-form__input,
.c-form__textarea {
  width: 100%;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid #929292;
  border-radius: 0;
  font-family: 'YuGothic', '游ゴシック体', sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.c-form__input:focus,
.c-form__textarea:focus {
  outline: none;
  border-color: #007cba;
}

.c-form__input::placeholder,
.c-form__textarea::placeholder {
  color: #999;
}

/* テキストエリア */
.c-form__textarea {
  min-height: 169px;
  resize: vertical;
}

/* プライバシーポリシー同意 */
.c-form__accept {
  font-family: 'YuGothic', '游ゴシック体', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #4a4a4a;
  line-height: 1.5;
  margin: 20px 0;
  text-align: center;

  @media (max-width: 768px) {
    text-align: left;
  }
}

.c-form__accept a {
  color: #d9533b;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

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

/* チェックボックス（acceptance） */
.c-form__accept .wpcf7-list-item {
  display: inline;
  margin: 0;
}

.c-form__accept input[type="checkbox"] {
  margin-right: 8px;
  vertical-align: middle;
}

/* 送信ボタンエリア */
.c-form__actions {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;

  p{
    display: flex;
    justify-content: center;
    flex-direction: column;
  
  }
}

/* 送信ボタン */
.c-form__submit {
  display: inline-block;
  min-width: 295px;
  padding: 10px 30px;
  background: #d9533b;
  color: #ffffff;
  font-family: 'YuGothic', '游ゴシック体', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.8;
  text-align: center;
  border: 1px solid #d9533b;
  border-radius: 100px;
  box-shadow: 4px 4px 0 #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.c-form__submit:hover {
  background: #c24533;
  border-color: #c24533;
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 #ffffff;
}

.c-form__submit:active {
  transform: translateY(0);
  box-shadow: 2px 2px 0 #ffffff;
}

@media (max-width: 768px) {
  .c-form__submit {
    min-width: 240px;
    font-size: 18px;
    padding: 12px 24px;
  }
}

/* Contact Form 7 デフォルトスタイル上書き */
.c-form .wpcf7-form-control-wrap {
  display: block;
}

.c-form .wpcf7-not-valid-tip {
  font-size: 14px;
  color: #d9533b;
  margin-top: 8px;
}

.c-form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
}

.c-form .wpcf7-validation-errors {
  background: #ffe7e7;
  border: 1px solid #d9533b;
  color: #d9533b;
}

.c-form .wpcf7-mail-sent-ok {
  background: #e7ffe7;
  border: 1px solid #4caf50;
  color: #2e7d32;
}

.c-form .wpcf7-spinner {
  margin-left: 10px;
}

/* AIOSEO パンくずナビゲーション */
.c-breadcrumbs {
  position: absolute;
  top: 134px;
  left: 48px;
  font-size: 14px;
  color: #666;
  z-index: 10;
}

.c-breadcrumbs .aioseo-breadcrumb{
  display: flex;
  align-items: center;
  gap: 6px;
}

.c-breadcrumbs .aioseo-breadcrumb{
  display: inline-block;
}

.c-breadcrumbs a {
  color: #333;
  text-decoration: none;
}

.c-breadcrumbs a:hover {
  text-decoration: underline;
}

/* Homeテキストをアイコンに変更 */
.c-breadcrumbs a[title="Home"],
.c-breadcrumbs a:first-child {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/ico_home.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

/* セパレーター（矢印）をオレンジ色に変更 */
.c-breadcrumbs .aioseo-breadcrumb-separator,
.c-breadcrumbs span[class*="separator"] {
  margin: 0 6px;
  color: #fd7528 !important;
  font-weight: bold;
  font-size: 0 !important;
}

.c-breadcrumbs .aioseo-breadcrumb-separator::before,
.c-breadcrumbs span[class*="separator"]::before {
  content: ">" !important;
  color: #fd7528 !important;
  font-size: 14px !important;
  font-weight: bold !important;
}

.c-breadcrumbs .aioseo-breadcrumb-separator::after,
.c-breadcrumbs span[class*="separator"]::after {
  content: "" !important;
}

/* AIOSEOのデフォルトスタイルを完全に上書き */
.c-breadcrumbs .aioseo-breadcrumb a[title="Home"],
.c-breadcrumbs .aioseo-breadcrumb:first-child a {
  display: flex !important;
  height: 100% !important;
  width: 16px !important;
  align-items: center !important;
  background-image: url("../images/ico_home.svg") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  color: transparent !important;
}

/* AIOSEOのセパレーターを完全に上書き */
.c-breadcrumbs .aioseo-breadcrumb-separator,
.c-breadcrumbs span[class*="separator"] {
  margin: 0 6px !important;
  color: #fd7528 !important;
  font-weight: bold !important;
  font-size: 0 !important;
}

.c-breadcrumbs .aioseo-breadcrumb-separator::before,
.c-breadcrumbs span[class*="separator"]::before {
  content: ">" !important;
  color: #fd7528 !important;
  font-size: 14px !important;
  font-weight: bold !important;
}

.c-breadcrumbs .aioseo-breadcrumb-separator::after,
.c-breadcrumbs span[class*="separator"]::after {
  content: "" !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .c-breadcrumbs {
    top: 82px;
    left: 29px;
  }
}

/*# sourceMappingURL=main.css.map */


