@charset "UTF-8";
html {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  html {
    font-size: 0.909vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}
body {
  color: #072334;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

main {
  padding-top: 8.3rem;
}

@media (max-width: 767px) {
  main {
    padding-top: 6rem;
  }
}
.pc_n {
  display: none;
}
@media (max-width: 767px) {
  .pc_n {
    display: block;
  }
}

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

.wrap {
  overflow: hidden;
}

.inner {
  max-width: 114rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 8.3rem;
  position: fixed;
  top: 0;
  left: 0;
  overflow: visible;
  z-index: 100;
  background: #fff;
}

.header__logo {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: 8.3rem;
  padding: 0 4rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 110;
}

.header__logo-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 1rem;
  line-height: 1;
  text-decoration: none;
  color: #072334;
}

.header__logo-main {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.header__logo-sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #f46600;
}

@media (max-width: 1161px) {
  .header__logo {
    height: 8.3rem;
    padding: 0 3rem;
  }
  .header__logo-main {
    font-size: 2.1rem;
  }
  .header__logo-sub {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .header {
    height: 6rem;
  }
  .header__logo {
    width: auto;
    height: 6rem;
    padding: 0 1.5rem;
  }
  .header__logo-text {
    flex-direction: row;
    align-items: baseline;
    gap: 0.6rem;
  }
  .header__logo-main {
    font-size: 1.5rem;
  }
  .header__logo-sub {
    font-size: 1.3rem;
    margin-top: 0;
  }
}
.header__hamburger {
  display: none;
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  z-index: 120;
  width: 3.6rem;
  height: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 0.3rem;
  background: #333;
  border-radius: 0.2rem;
  position: absolute;
  left: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger span:nth-child(1) {
  top: 0;
}

.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__hamburger span:nth-child(3) {
  bottom: 0;
}

.header__hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: #fff;
}

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

.header__hamburger.is-open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  background: #fff;
}

@media (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-left: auto;
  padding-right: 6rem;
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 105;
  }
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

@media (max-width: 767px) {
  .header__nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .header__nav-list li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .header__nav-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}
.header__nav-list a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

@media (max-width: 767px) {
  .header__nav-list a {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    padding: 2rem 0;
  }
}
.header__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f46600;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 2.4rem;
  padding: 1.2rem 3.6rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.header__contact-btn:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .header__contact-btn {
    margin-top: 3rem;
    font-size: 1.5rem;
    padding: 1.5rem 5rem;
    border-radius: 3rem;
  }
}
.footer__company {
  max-width: 92rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
}
.footer__company::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 8.4rem;
  background: rgba(255, 255, 255, 0.18);
}
.footer__company .footer__company-info {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}
.footer__company .footer__contact {
  grid-column: 3;
  grid-row: 1;
}
.footer__company p {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}
.footer__company .footer__company-name {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
}
.footer__company .footer__company-name::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.2rem;
  height: 2px;
  background: #f46600;
}
.footer__company .footer__company-sub {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.footer__company .footer__company-address {
  font-size: 1.2rem;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}
.footer__company .footer__contact-row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  align-items: baseline;
  column-gap: 1.6rem;
  padding: 0.6rem 0;
}
.footer__company .footer__contact-row + .footer__contact-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__company .footer__contact-row dt {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.footer__company .footer__contact-row dd {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}
.footer__company .footer__contact-row dd a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer__company .footer__contact-row dd a:hover {
  color: #f46600;
  border-bottom-color: #f46600;
}
.footer__company .footer__contact-note {
  margin-left: 0.6rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .footer__company {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 36rem;
  }
  .footer__company::before {
    display: none;
  }
  .footer__company .footer__company-info {
    grid-column: 1;
    text-align: left;
  }
  .footer__company .footer__contact {
    grid-column: 1;
  }
  .footer__company .footer__company-name {
    font-size: 1.5rem;
  }
  .footer__company .footer__company-name::after {
    right: auto;
    left: 0;
  }
  .footer__company .footer__company-sub {
    font-size: 1.2rem;
  }
  .footer__company .footer__company-address {
    font-size: 1.1rem;
  }
  .footer__company .footer__contact-row {
    grid-template-columns: 6rem 1fr;
    column-gap: 1.2rem;
  }
  .footer__company .footer__contact-row dt {
    font-size: 1rem;
  }
  .footer__company .footer__contact-row dd {
    font-size: 1.3rem;
  }
}

.fv {
  width: 100%;
  height: 65rem;
  position: relative;
  overflow: hidden;
}

.fv__images {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.fv__img {
  flex: 1;
  overflow: hidden;
}

.fv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.fv__inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fv__company-pc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  padding: 2rem 2.4rem;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.35);
  text-align: left;
  margin-left: 4rem;
}

.fv__company-pc-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  text-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.5);
}

.fv__company-pc-detail {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.5);
}

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

.fv__content {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.fv__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1.37;
  color: #fff;
  margin-bottom: 2.9rem;
}

.fv__subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 2rem;
}

.fv__company {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border-left: 4px solid #E8762B;
  padding: 1rem 1.6rem;
  margin-bottom: 3.7rem;
  display: none;
}
@media (max-width: 767px) {
  .fv__company {
    display: inline-block;
    font-size: 1.4rem;
    padding: 0.8rem 1.2rem;
    margin-bottom: 2rem;
  }
}

.fv__btn {
  display: flex;
  flex-direction: column;
  width: 36.771rem;
}

.fv__btn-sub a,
.cta__btn-sub a,
.price__campaign-btn-sub a {
  color: inherit;
  text-decoration: none;
}
.fv__btn-sub a:hover,
.cta__btn-sub a:hover,
.price__campaign-btn-sub a:hover {
  text-decoration: underline;
}

.fv__btn-sub a {
  color: #f46600;
}

.fv__btn-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28.8rem;
  height: 3.6rem;
  margin: 0 auto;
  background: #fff;
  border: 0.35rem solid #f46600;
  border-radius: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f46600;
  box-shadow: 3.5px 3.5px 7px 0 rgba(125, 80, 47, 0.4);
  position: relative;
  z-index: 1;
}

.fv__btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 8.1rem;
  margin-top: -1.8rem;
  padding-top: 1.8rem;
  background: #f46600;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 0 0 rgb(160, 83, 27);
  text-decoration: none;
  transition: opacity 0.3s;
}

.fv__btn-main:hover {
  opacity: 0.85;
}

.fv__btn-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  top: -0.4rem;
}

.fv__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
  font-size: 3.2rem;
  color: #fff;
  padding-left: 1.5rem;
  height: 2.4rem;
  position: relative;
  top: -0.7rem;
}

@media (max-width: 767px) {
  .fv {
    height: 65rem;
  }
  .fv__images {
    flex-direction: column;
    height: 100%;
  }
  .fv__img {
    flex: 1 1 33.333%;
    min-height: 0;
  }
  .fv__inner {
    top: 0;
    transform: none;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2.5rem 0;
  }
  .fv__content {
    width: 100%;
    text-align: center;
  }
  .fv__title {
    font-size: 3.4rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .fv__subtitle {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  .fv__btn {
    width: 28rem;
    margin: 0 auto;
  }
  .fv__btn-sub {
    width: 22rem;
    height: 3rem;
    font-size: 1.1rem;
  }
  .fv__btn-main {
    height: 6rem;
    margin-top: -1.5rem;
    padding-top: 1.5rem;
  }
  .fv__btn-text {
    font-size: 1.6rem;
    top: -0.3rem;
  }
  .fv__btn-arrow {
    font-size: 2rem;
    margin-left: 0.8rem;
    padding-left: 0.8rem;
    height: 1.6rem;
    top: -0.5rem;
  }
}
/* ========== 変化セクション ========== */
.change {
  padding: 10rem 0;
  background: #fff;
}

.change__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: #11334f;
  text-align: center;
  margin-bottom: 8rem;
  line-height: 1.6;
}

.change__list {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3rem;
}

.change__track {
  display: flex;
  justify-content: center;
  gap: 5rem;
}

.change__dots {
  display: none;
}

.change__item {
  width: 30%;
  flex-shrink: 0;
}

.change__item-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
}

.change__photos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

.change__photo {
  position: relative;
  width: 100%;
  border-radius: 0.4rem;
}

.change__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.change__label {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  z-index: 1;
  width: 9rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.change__label--before {
  color: #11344e;
  background: #fff;
  border: 0.2rem solid #11344e;
  position: relative;
  top: 1.4rem;
}

.change__label--after {
  color: #11344e;
  background: #fff;
  border: 0.2rem solid #11344e;
  position: relative;
  top: 1.4rem;
}

.change__arrow {
  display: block;
  width: 0;
  height: 0;
  border-left: 3.2rem solid transparent;
  border-right: 3.2rem solid transparent;
  border-top: 3rem solid #11334f;
  margin: 1.5rem auto;
  z-index: 1;
}

.change__details {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 2rem;
}

.change__detail {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
}

.change__detail dt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: #000;
  border: 0.2rem solid #11344e;
  padding: 0.6rem 0;
  width: 10rem;
  text-align: center;
  flex-shrink: 0;
}

.change__detail dd {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .change {
    padding: 6.5rem 0;
  }
  .change__title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
  .change__list {
    padding: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .change__track.is-slider {
    display: flex;
    justify-content: flex-start;
    gap: 6vw;
    transition: transform 0.4s ease;
  }
  .change__track.is-slider .change__item {
    width: 89vw;
    min-width: 89vw;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  .change__dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .change__dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
  }
  .change__dot.is-active {
    background: #11334f;
  }
  .change__item-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .change__photo img {
    height: 24rem;
  }
  .change__label {
    font-size: 1.4rem;
    padding: 0.4rem 1.2rem;
  }
  .change__arrow {
    border-left: 2.4rem solid transparent;
    border-right: 2.4rem solid transparent;
    border-top: 2.2rem solid #11334f;
    margin: 1.5rem auto;
  }
  .change__details {
    gap: 0.5rem;
  }
  .change__detail {
    gap: 1rem;
  }
  .change__detail dt {
    font-size: 1.3rem;
    width: 8.5rem;
    padding: 0.5rem 0;
  }
  .change__detail dd {
    font-size: 1.3rem;
  }
}
/* ========== お悩みセクション ========== */
.worry {
  background: #13354e;
  padding: 10rem 0;
}

.worry__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 6rem;
  line-height: 1;
}

.worry__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 110rem;
  margin: 0 auto;
  list-style: none;
}

.worry__item {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: #fff;
  height: 7rem;
  padding: 0 2.8rem;
}

.worry__icon {
  width: 3.7rem;
  height: 3.7rem;
  flex-shrink: 0;
}

.worry__item span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.worry__solution {
  max-width: 72rem;
  margin: 10rem auto 0;
  text-align: center;
}

.worry__solution-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.worry__solution-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
  text-align: center;
}

.worry__message {
  max-width: 60rem;
  margin: 10rem auto 0;
  text-align: center;
}

.worry__message-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.worry__message-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
  text-align: center;
}

.worry__features {
  display: flex;
  justify-content: center;
  gap: 4.2rem;
  max-width: 110rem;
  margin: 8rem auto 0;
}

.worry__feature {
  width: 33.8rem;
  height: 21.3rem;
  background: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.worry__feature-icon {
  width: 6.6rem;
  height: 6.6rem;
}

.worry__feature-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 767px) {
  .worry {
    padding: 6.5rem 0;
  }
  .worry__title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .worry__list {
    gap: 1.2rem;
  }
  .worry__item {
    height: auto;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    border-radius: 0.8rem;
  }
  .worry__icon {
    width: 2.8rem;
    height: 2.8rem;
  }
  .worry__item span {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .worry__solution {
    margin-top: 5rem;
    padding: 0 2rem;
  }
  .worry__solution-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .worry__solution-text {
    font-size: 1.4rem;
  }
  .worry__message {
    margin-top: 5rem;
    padding: 0;
  }
  .worry__message-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .worry__message-text {
    font-size: 1.4rem;
  }
  .worry__features {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 2rem;
  }
  .worry__feature {
    width: 100%;
    max-width: 30rem;
    height: 16rem;
  }
  .worry__feature-icon {
    width: 5rem;
    height: 5rem;
  }
  .worry__feature-text {
    font-size: 2rem;
  }
}
/* ========== サービスセクション ========== */
.service {
  padding: 10rem 0;
  background: #fff;
}

.service__inner {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.service__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 10rem;
}

.service__heading-en {
  font-family: "Poppins", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  color: #13354e;
  line-height: 1;
  letter-spacing: 0.04em;
}

.service__heading-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #333;
  line-height: 1.45;
}

.service__block {
  margin-bottom: 8rem;
}

.service__block:last-child {
  margin-bottom: 0;
}

.service__sub-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 4rem;
}

.service__sub-heading span:not(.service__sub-line) {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #13354e;
  line-height: 1.06;
}

.service__sub-line {
  display: block;
  width: 4rem;
  height: 0.2rem;
  background: #13354e;
}

.service__sub-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 5rem;
}

.service__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
  margin-bottom: 2.8rem;
}

.service__card {
  background: #11344e;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 17.7rem;
}

.service__card--wide {
  grid-column: span 1;
}

.service__card-photo {
  width: 13.4rem;
  height: 13.4rem;
  flex-shrink: 0;
  margin-left: 2.8rem;
  overflow: hidden;
}

.service__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service__card-labels {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 0.8rem;
}

.service__card-labels span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}

.service__other {
  background: #11344e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  margin-top: 2rem;
  position: relative;
}

.service__other-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  text-align: center;
  display: block;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(232, 118, 43, 0.6);
}

.service__other-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
  text-align: center;
  max-width: 72rem;
}

.service__area-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .service {
    padding: 6.5rem 0;
  }
  .service__heading {
    margin-bottom: 4rem;
  }
  .service__heading-en {
    font-size: 4rem;
  }
  .service__heading-ja {
    font-size: 1.8rem;
  }
  .service__block {
    margin-bottom: 5rem;
  }
  .service__sub-heading {
    gap: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .service__sub-heading span:not(.service__sub-line) {
    font-size: 2rem;
  }
  .service__sub-line {
    width: 2.5rem;
  }
  .service__sub-text {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
  .service__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .service__card {
    flex-direction: column;
    height: auto;
    padding-bottom: 0rem;
  }
  .service__card-photo {
    width: 100%;
    height: 12rem;
    margin-left: 0;
    border-radius: 0;
  }
  .service__card-labels {
    padding: 1rem 0;
  }
  .service__card-labels span {
    font-size: 1.3rem;
  }
  .service__other {
    padding: 2.5rem 1.6rem;
    margin-top: 1.5rem;
  }
  .service__other-label {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  .service__other-desc {
    font-size: 1.4rem;
  }
  .service__area-text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
/* ========== CTAセクション ========== */
.cta {
  background: #fff;
  text-align: center;
}

.cta__btn {
  display: inline-flex;
  flex-direction: column;
  width: 36.771rem;
}

.cta__btn-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28.8rem;
  height: 3.6rem;
  margin: 0 auto;
  background: #fff;
  border: 0.35rem solid #f46600;
  border-radius: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f46600;
  box-shadow: 3.5px 3.5px 7px 0 rgba(125, 80, 47, 0.4);
  position: relative;
  z-index: 1;
}

.cta__btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 8.1rem;
  margin-top: -1.8rem;
  padding-top: 1.8rem;
  background: #f46600;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 0 0 rgb(160, 83, 27);
  text-decoration: none;
  transition: opacity 0.3s;
}

.cta__btn-main:hover {
  opacity: 0.85;
}

.cta__btn-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  top: -0.4rem;
}

.cta__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
  font-size: 3.2rem;
  color: #fff;
  padding-left: 1.5rem;
  height: 2.4rem;
  position: relative;
  top: -0.7rem;
}

@media (max-width: 767px) {
  .cta__btn {
    width: 28rem;
  }
  .cta__btn-sub {
    width: 22rem;
    height: 3rem;
    font-size: 1.1rem;
  }
  .cta__btn-main {
    height: 6rem;
    margin-top: -1.5rem;
    padding-top: 1.5rem;
  }
  .cta__btn-text {
    font-size: 1.6rem;
    top: -0.3rem;
  }
  .cta__btn-arrow {
    font-size: 2rem;
    margin-left: 0.8rem;
    padding-left: 0.8rem;
    height: 1.6rem;
    top: -0.5rem;
  }
}
/* ========== 選ばれる3つの理由セクション ========== */
.reason {
  padding: 10rem 0;
  background: #fff;
}

.reason__inner {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.reason__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 10rem;
}

.reason__heading-en {
  font-family: "Poppins", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  color: #13354e;
  line-height: 1;
  letter-spacing: 0.04em;
}

.reason__heading-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #333;
  line-height: 1.45;
}

.reason__item {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 5rem;
}

.reason__item:last-child {
  margin-bottom: 0;
}

.reason__item--reverse {
  flex-direction: row-reverse;
}

.reason__img {
  width: 61.5%;
  flex-shrink: 0;
  overflow: hidden;
}

.reason__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reason__text-box {
  background: #fff;
  box-shadow: 0 0.46rem 1.15rem rgba(91, 163, 115, 0.2);
  padding: 4.6rem 6.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.8rem;
  margin-top: 6.5rem;
  margin-bottom: 6.5rem;
  z-index: 1;
}

.reason__item .reason__text-box {
  margin-left: -13rem;
}

.reason__item--reverse .reason__text-box {
  margin-left: 0;
  margin-right: -13rem;
}

.reason__item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #11344e;
  line-height: 1.2;
}

.reason__item-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #444;
  line-height: 1.875;
}

@media (max-width: 767px) {
  .reason {
    padding: 6.5rem 0;
  }
  .reason__heading {
    margin-bottom: 4rem;
  }
  .reason__heading-en {
    font-size: 4rem;
  }
  .reason__heading-ja {
    font-size: 1.8rem;
  }
  .reason__item {
    flex-direction: column;
    margin-bottom: 4rem;
  }
  .reason__item--reverse {
    flex-direction: column;
  }
  .reason__img {
    width: 100%;
    height: 22rem;
  }
  .reason__text-box {
    padding: 2.5rem 2rem;
    margin-top: -2rem;
    margin-bottom: 0;
    gap: 1.5rem;
    box-shadow: 0 0.3rem 0.8rem rgba(91, 163, 115, 0.2);
  }
  .reason__item .reason__text-box {
    margin-left: 0;
  }
  .reason__item--reverse .reason__text-box {
    margin-right: 0;
  }
  .reason__item-title {
    font-size: 1.8rem;
  }
  .reason__item-desc {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
/* ========== Movieセクション ========== */
.movie {
  padding: 10rem 0;
  background: #13354e;
}

.movie__inner {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.movie__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 4rem;
}

.movie__heading-en {
  font-family: "Poppins", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
}

.movie__heading-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.45;
}

.movie__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 6rem;
}

.movie__row {
  display: flex;
  gap: 2.8rem;
  margin-bottom: 4rem;
}

.movie__row:last-child {
  margin-bottom: 0;
}

.movie__row--narrow {
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
}

.movie__item {
  flex: 1;
  overflow: hidden;
  background: #0a2236;
  aspect-ratio: 253/452;
}

.movie__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .movie {
    padding: 6.5rem 0;
  }
  .movie__heading {
    margin-bottom: 2rem;
  }
  .movie__heading-en {
    font-size: 4rem;
  }
  .movie__heading-ja {
    font-size: 1.8rem;
  }
  .movie__lead {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
  .movie__row {
    display: flex;
    gap: 3vw;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .movie__row::-webkit-scrollbar {
    display: none;
  }
  .movie__row--narrow {
    max-width: 100%;
  }
  .movie__item {
    flex: 0 0 calc((100% - 3vw) / 2);
    scroll-snap-align: start;
  }
}
.price {
  padding: 10rem 0;
  background: #fff;
}

.price__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.price__heading {
  text-align: center;
  margin-bottom: 6rem;
}

.price__heading-en {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 6.4rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #13354E;
}

.price__heading-ja {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.45;
  color: #333;
  margin-top: 0.8rem;
}

.price__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.4rem;
  margin-bottom: 12rem;
}
@media (max-width: 767px) {
  .price__cards {
    margin-bottom: 8rem;
  }
}

.price__card {
  background: #11344E;
  border-radius: 0;
  padding: 4rem 3.6rem;
}

.price__card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

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

.price__card-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.price__card-item:last-child {
  margin-bottom: 0;
}

.price__card-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.45;
  padding: 0.3rem 1rem;
  min-width: 10.3rem;
  text-align: center;
  border-radius: 0;
}

.price__card-value {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.45;
  color: #fff;
  padding-top: 0.3rem;
}
.price__card-value small {
  font-size: 1.3rem;
}

.price__card--full {
  grid-column: 1/-1;
}
.price__card--full .price__card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}
.price__card--full .price__card-item {
  flex: 1;
  min-width: 18rem;
  margin-bottom: 0;
}
.price__card-item--full {
  flex-basis: 100% !important;
  min-width: 100% !important;
}

.price__wide-card {
  background: #11344E;
  padding: 4rem 3.6rem;
  margin-bottom: 16rem;
}

.price__wide-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.45;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.price__wide-list {
  display: flex;
  gap: 5.4rem;
}

.price__wide-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.price__wide-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.45;
  padding: 0.3rem 1rem;
  min-width: 10.3rem;
  text-align: center;
}

.price__wide-value {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.45;
  color: #fff;
  padding-top: 0.3rem;
}
.price__wide-value small {
  font-size: 1.3rem;
}

.price__set-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  margin-bottom: 6.6rem;
}
.price__set-heading span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.06;
  color: #13354E;
}
.price__set-heading img {
  width: 4rem;
}

.price__plan--wide .price__plan-price {
  margin-bottom: 5.2rem;
}

.price__plans {
  display: flex;
  gap: 4.1rem;
  margin-bottom: 5.4rem;
}

.price__plan {
  flex: 1;
  background: #11344E;
  border: 1px solid #11344E;
}

.price__plan-inner {
  padding: 3.4rem 3rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price__plan-badge {
  display: inline-block;
  background: #fff;
  color: #11344E;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.6rem 2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.price__plan-badge--wide {
  padding: 0.6rem 1.5rem;
}

.price__plan-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.48;
  color: #fff;
  margin-bottom: 2rem;
}

.price__plan-price {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 1.42;
  color: #FF9041;
  margin-bottom: 3rem;
}
.price__plan-price span {
  font-size: 5.5rem;
}

.price__plan-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  text-align: left;
}
.price__plan-includes li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 1.7rem;
  line-height: 1.6;
}
.price__plan-includes li:last-child {
  margin-bottom: 0;
}
.price__plan-includes li img {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
}

.price__plan-discount {
  text-align: center;
  margin-bottom: 4.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.price__plan-original {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  text-decoration: line-through;
  margin-bottom: 0.8rem;
}

.price__plan-arrow {
  display: block;
  margin: 0.8rem auto;
  width: 0.8rem;
}

.price__plan-set-price {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
}

.price__plan-time {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-top: auto;
}

.price__campaign {
  background: #11344E;
  border: 3px solid #11344E;
  padding: 5.6rem;
}

.price__campaign-inner {
  max-width: 78.5rem;
  margin: 0 auto;
  text-align: center;
}

.price__campaign-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 4.3rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 4.7rem;
  text-align: center;
}

.price__campaign-badges {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

.price__campaign-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border-radius: 0;
  width: 37.3rem;
  height: 7.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price__campaign-badge img {
  width: 3.8rem;
  height: 3.8rem;
}
.price__campaign-badge span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 1;
  color: #11344E;
}

.price__campaign-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 36.771rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
.price__campaign-btn:hover {
  opacity: 0.85;
}

.price__campaign-btn-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28.8rem;
  height: 3.6rem;
  margin: 0 auto;
  background: #fff;
  border: 0.35rem solid #f46600;
  border-radius: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f46600;
  box-shadow: 3.5px 3.5px 7px 0 rgba(125, 80, 47, 0.4);
  position: relative;
  z-index: 1;
}

.price__campaign-btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 8.1rem;
  margin-top: -1.8rem;
  padding-top: 1.8rem;
  background: #f46600;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 0 0 rgb(160, 83, 27);
  text-decoration: none;
  transition: opacity 0.3s;
}

.price__campaign-btn-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1;
  color: #fff;
  position: relative;
  top: -0.4rem;
}

.price__campaign-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  font-size: 3.2rem;
  color: #fff;
  padding-left: 1.5rem;
  height: 2.4rem;
  position: relative;
  top: -0.7rem;
}

@media (max-width: 767px) {
  .price {
    padding: 6.5rem 0;
  }
  .price__inner {
    padding: 0 5vw;
  }
  .price__heading {
    margin-bottom: 4rem;
  }
  .price__heading-en {
    font-size: 4rem;
  }
  .price__heading-ja {
    font-size: 1.8rem;
  }
  .price__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .price__card {
    padding: 2.5rem 2rem;
  }
  .price__card-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    text-align: left;
  }
  .price__card-item {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .price__card-label {
    font-size: 1.3rem;
    min-width: auto;
    align-self: flex-start;
    padding: 0.2rem 0.8rem;
  }
  .price__card-value {
    font-size: 1.2rem;
  }
  .price__wide-card {
    padding: 2.5rem 2rem;
    margin-bottom: 5rem;
  }
  .price__wide-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
  .price__wide-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .price__wide-item {
    flex-direction: column;
    gap: 0.8rem;
  }
  .price__wide-label {
    font-size: 1.3rem;
    min-width: auto;
    align-self: flex-start;
    padding: 0.2rem 0.8rem;
  }
  .price__wide-value {
    font-size: 1.4rem;
    white-space: normal;
  }
  .price__set-heading {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .price__set-heading span {
    font-size: 2.2rem;
  }
  .price__set-heading img {
    width: 3rem;
  }
  .price__plans {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .price__plan-inner {
    padding: 2.5rem 2rem;
  }
  .price__plan-name {
    font-size: 1.8rem;
  }
  .price__plan-price {
    font-size: 3.2rem;
  }
  .price__plan-includes li {
    font-size: 1.4rem;
  }
  .price__plan-set-price {
    font-size: 1.6rem;
  }
  .price__campaign {
    padding: 3rem 2rem;
  }
  .price__campaign-title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }
  .price__campaign-badges {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .price__campaign-badge {
    padding: 1.2rem 2rem;
    width: 100%;
  }
  .price__campaign-badge span {
    font-size: 1.6rem;
  }
  .price__campaign-badge img {
    width: 2.8rem;
    height: 2.8rem;
  }
  .price__campaign-btn {
    width: 28rem;
  }
  .price__campaign-btn-sub {
    width: 22rem;
    height: 3rem;
    font-size: 1.1rem;
  }
  .price__campaign-btn-main {
    height: 6rem;
    margin-top: -1.5rem;
    padding-top: 1.5rem;
  }
  .price__campaign-btn-text {
    font-size: 1.6rem;
    top: -0.3rem;
  }
  .price__campaign-btn-arrow {
    font-size: 2rem;
    margin-left: 0.8rem;
    padding-left: 0.8rem;
    height: 1.6rem;
    top: -0.5rem;
  }
}
/* ========== Flowセクション ========== */
.flow {
  background: #13354E;
  padding: 10rem 0;
}

.flow__inner {
  max-width: 110rem;
  margin: 0 auto;
}

.flow__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 4rem;
}

.flow__heading-en {
  font-family: "Poppins", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
}

.flow__heading-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.45;
}

.flow__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 6rem;
}

.flow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.4rem;
}

.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  margin-top: 5rem;
}

.flow__step-number {
  position: absolute;
  top: 0rem;
  left: -0.2rem;
  font-family: "Open Sans", sans-serif;
  font-size: 4.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.flow__step-icon {
  width: 18.3rem;
  height: 18.3rem;
  margin-bottom: 4.4rem;
}
.flow__step-icon img {
  width: 100%;
  height: 100%;
}

.flow__step-text {
  text-align: left;
  width: 100%;
}

.flow__step-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.flow__step-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.47rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.flow__step-line {
  width: 0;
  height: 100%;
  border-left: 1px dashed #999;
  flex-shrink: 0;
  align-self: stretch;
}

@media (max-width: 767px) {
  .flow {
    padding: 6.5rem 0;
  }
  .flow__heading {
    margin-bottom: 2rem;
  }
  .flow__heading-en {
    font-size: 4rem;
  }
  .flow__heading-ja {
    font-size: 1.8rem;
  }
  .flow__lead {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
  .flow__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .flow__step {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding-top: 0;
    padding-bottom: 3rem;
  }
  .flow__step-number {
    position: static;
    transform: none;
    font-size: 3rem;
    min-width: 4rem;
  }
  .flow__step-icon {
    width: 10rem;
    height: 10rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .flow__step-text {
    flex: 1;
    padding-top: 0.5rem;
  }
  .flow__step-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  .flow__step-desc {
    font-size: 1.3rem;
  }
  .flow__step-line {
    height: 3rem;
    border-left: 1px dashed #999;
    align-self: auto;
    margin-left: 5rem;
  }
}
/* ========== Voiceセクション ========== */
.voice {
  background: #fff;
  padding: 10rem 0;
}

.voice__inner {
  max-width: 110rem;
  margin: 0 auto;
}

.voice__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 8rem;
}

.voice__heading-en {
  font-family: "Poppins", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  color: #13354E;
  line-height: 1;
  letter-spacing: 0.04em;
}

.voice__heading-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #333;
  line-height: 1.45;
}

.voice__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 5.28rem;
}

.voice__card {
  width: calc((100% - 5.28rem) / 2);
  background: #fff;
  box-shadow: 0 0.44rem 2.2rem rgba(51, 51, 51, 0.1);
  padding: 3.52rem;
  display: flex;
  flex-direction: column;
  gap: 1.76rem;
}

.voice__card--wide {
  width: 100%;
}

.voice__card-meta {
  display: flex;
  align-items: stretch;
  gap: 1.76rem;
}

.voice__card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.44rem;
}

.voice__card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.98rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.voice__card-service {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.54rem;
  font-weight: 700;
  color: #999;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.voice__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.76rem;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

@media (max-width: 767px) {
  .voice {
    padding: 6.5rem 0;
  }
  .voice__heading {
    margin-bottom: 4rem;
  }
  .voice__heading-en {
    font-size: 4rem;
  }
  .voice__heading-ja {
    font-size: 1.8rem;
  }
  .voice__cards {
    flex-direction: column;
    gap: 2.5rem;
  }
  .voice__card {
    width: 100%;
    padding: 2.5rem;
  }
  .voice__card-name {
    font-size: 1.6rem;
  }
  .voice__card-service {
    font-size: 1.3rem;
  }
  .voice__card-text {
    font-size: 1.4rem;
  }
}
/* ========== FAQセクション ========== */
.faq {
  background: #13354E;
  padding: 10rem 0;
}

.faq__inner {
  max-width: 110rem;
  margin: 0 auto;
}

.faq__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 8rem;
}

.faq__heading-en {
  font-family: "Poppins", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
}

.faq__heading-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.45;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.faq__q-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #F46600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq__q-icon span {
  font-family: "Futura", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.faq__q-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
}

.faq__answer {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}

.faq__divider {
  width: 100%;
  height: 1px;
  background: #cacaca;
}

@media (max-width: 767px) {
  .faq {
    padding: 6.5rem 0;
  }
  .faq__heading {
    margin-bottom: 4rem;
  }
  .faq__heading-en {
    font-size: 4rem;
  }
  .faq__heading-ja {
    font-size: 1.8rem;
  }
  .faq__list {
    gap: 2.4rem;
  }
  .faq__item {
    gap: 1.6rem;
  }
  .faq__q-icon {
    width: 3.2rem;
    height: 3.2rem;
  }
  .faq__q-icon span {
    font-size: 1.8rem;
  }
  .faq__q-text {
    font-size: 1.6rem;
  }
  .faq__answer {
    font-size: 1.4rem;
    padding-left: 4.8rem;
  }
}
/* ========== Contactセクション ========== */
.contact {
  background: #fff;
  padding: 10rem 0;
}

.contact__inner {
  max-width: 110rem;
  margin: 0 auto;
}

.contact__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 8rem;
}

.contact__heading-en {
  font-family: "Poppins", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  color: #13354E;
  line-height: 1;
  letter-spacing: 0.04em;
}

.contact__heading-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #333;
  line-height: 1.45;
}

.contact__form {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.6rem;
}

.contact__form-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact__label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact__label-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 1.6rem;
  border: 1px solid #F46600;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #F46600;
  line-height: 1;
}
.contact__label-badge--optional {
  border-color: #999;
  color: #999;
}

.contact__label-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}

.contact__input {
  width: 100%;
  height: 4.6rem;
  background: #F3F3F3;
  border: none;
  border-radius: 8px;
  padding: 0 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #333;
}
.contact__input:focus {
  outline: 2px solid #13354E;
}

.contact__textarea {
  width: 100%;
  height: 24rem;
  background: #F3F3F3;
  border: none;
  border-radius: 8px;
  padding: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #333;
  resize: vertical;
}
.contact__textarea:focus {
  outline: 2px solid #13354E;
}

.contact__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
}

.contact__radio {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.contact__radio input[type=radio] {
  width: 2.3rem;
  height: 2.3rem;
  accent-color: #F46600;
  cursor: pointer;
}
.contact__radio span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 1.2;
}

.contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22rem;
  padding: 1.6rem 0;
  background: #F46600;
  border: none;
  border-radius: 36px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.45;
  cursor: pointer;
  transition: opacity 0.3s;
}
.contact__submit:hover {
  opacity: 0.85;
}

@media (max-width: 767px) {
  .contact {
    padding: 6.5rem 0;
  }
  .contact__heading {
    margin-bottom: 4rem;
  }
  .contact__heading-en {
    font-size: 4rem;
  }
  .contact__heading-ja {
    font-size: 1.8rem;
  }
  .contact__form {
    gap: 4rem;
  }
  .contact__form-body {
    gap: 2.4rem;
  }
  .contact__label-text {
    font-size: 1.4rem;
  }
  .contact__input {
    height: 4.2rem;
    font-size: 1.4rem;
  }
  .contact__textarea {
    height: 18rem;
    font-size: 1.4rem;
  }
  .contact__radio-group {
    gap: 1.2rem 2rem;
  }
  .contact__radio span {
    font-size: 1.4rem;
  }
  .contact__submit {
    width: 20rem;
    font-size: 1.4rem;
  }
}
/* ========== Thanksページ ========== */
.thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #fff;
  padding: 6rem 2rem;
}

.thanks__inner {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.thanks__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #13354E;
  margin-bottom: 3rem;
}

.thanks__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 2;
  margin-bottom: 3rem;
}

.thanks__info {
  background: #F3F3F3;
  border-radius: 8px;
  padding: 2.4rem;
  margin-bottom: 4rem;
}
.thanks__info p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
}
.thanks__info a {
  color: #13354E;
  text-decoration: underline;
}
.thanks__info a:hover {
  opacity: 0.8;
}

.thanks__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
  padding: 1.6rem 0;
  background: #13354E;
  border-radius: 36px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.thanks__btn:hover {
  opacity: 0.85;
}

/* ========== プライバシーポリシーページ ========== */
.privacy {
  background: #fff;
  padding: 8rem 2rem;
}

.privacy__inner {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.privacy__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #13354E;
  margin-bottom: 5rem;
}

.privacy__content {
  text-align: left;
  margin-bottom: 5rem;
}

.privacy__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.privacy__section {
  margin-bottom: 3.2rem;
}

.privacy__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #13354E;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #13354E;
}

.privacy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
}

.privacy__list {
  margin-top: 1rem;
  padding-left: 2.4rem;
}
.privacy__list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
  line-height: 2;
  list-style: disc;
}

.privacy__contact {
  margin-top: 1.6rem;
  background: #F3F3F3;
  border-radius: 8px;
  padding: 2.4rem;
}
.privacy__contact p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
}

.privacy__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
  padding: 1.6rem 0;
  background: #13354E;
  border-radius: 36px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.privacy__btn:hover {
  opacity: 0.85;
}

@media (max-width: 767px) {
  .privacy {
    padding: 5rem 1.6rem;
  }
  .privacy__title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .privacy__lead {
    font-size: 1.4rem;
  }
  .privacy__heading {
    font-size: 1.7rem;
  }
  .privacy__text {
    font-size: 1.4rem;
  }
  .privacy__list li {
    font-size: 1.4rem;
  }
}
/* ========== フッター ========== */
.footer {
  background: #11344E;
  padding: 5.7rem 0;
}

.footer__inner {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__logo {
  flex-shrink: 0;
  padding-top: 4.2rem;
}
.footer__logo img {
  width: 13.07rem;
  height: auto;
}

.footer__nav {
  flex-shrink: 0;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  gap: 3.2rem;
}
.footer__nav-list li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer__nav-list li a:hover {
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__privacy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  line-height: 1.45;
}
.footer__privacy:hover {
  text-decoration: underline;
}

.footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .footer {
    padding: 4rem 2rem 10rem;
  }
  .footer__inner {
    gap: 4rem;
  }
  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .footer__logo {
    padding-top: 0;
  }
  .footer__logo img {
    width: 10rem;
  }
  .footer__nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem 2rem;
  }
  .footer__nav-list li a {
    font-size: 1.3rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.fixed-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1rem 1.6rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fixed-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fixed-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 40rem;
  height: 5.6rem;
  margin: 0 auto;
  background: #f46600;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s;
}
.fixed-banner__btn:hover {
  opacity: 0.85;
}

.fixed-banner__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.fixed-banner__arrow {
  position: absolute;
  right: 2rem;
  top: 42%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: #fff;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .fixed-banner {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .fixed-banner {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */