@charset "UTF-8";
/* デフォルト */
/* レスポンシブ設定 */
@media screen and (min-width: 321px) {
  .ssp {
    display: none;
  }
}
@media screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nb {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: white;
  color: #3b3978;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

section {
  padding: 120px 0;
}
@media screen and (max-width:1024px) {
  section {
    padding: 80px 0;
  }
}

h2.section-title {
  font-weight: 700;
  font-size: 32px;
  color: #3b3978;
  text-align: center;
  margin-bottom: 60px;
}

a {
  text-decoration: none;
}
a.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: white;
  cursor: pointer;
  transition: opacity 0.2s;
}
@media screen and (max-width:540px) {
  a.btn {
    display: flex;
    font-size: 14px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 7px;
    padding-right: 15px;
  }
}
a.btn:hover {
  opacity: 0.9;
}
a.btn.btn-line {
  background-color: #06C755;
  margin-bottom: 3px;
}
a.btn.btn-orange {
  background-color: #e0693e;
  margin-bottom: 3px;
}
a.btn.btn-purple {
  background-color: #3b3978;
}
a.btn img {
  flex-shrink: 0;
  width: 32px;
}
@media screen and (max-width:540px) {
  a.btn img {
    width: 22px;
  }
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  width: 100%;
  position: fixed;
  z-index: 100;
}
@media screen and (max-width:540px) {
  .header {
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    padding: 10px 0;
    align-items: flex-start;
  }
}
.header img.logo {
  width: 121.47px;
}
@media screen and (max-width:540px) {
  .header img.logo {
    width: 90px;
    margin-top: 18px;
    margin-left: 18px;
  }
}
.header .nav {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width:540px) {
  .header .nav {
    display: block;
  }
}

/* Hero Section */
.hero-section {
  padding: 85px 0 0;
}
@media screen and (max-width:540px) {
  .hero-section {
    padding-top: 0;
  }
}
.hero-section .swiper {
  width: 100%;
  height: 100%;
}
.hero-section .swiper .swiper-slide {
  background-position: center;
  background-size: cover;
}
.hero-section .swiper .swiper-slide img {
  display: block;
  width: 100%;
  background-color: white;
  margin-bottom: 40px;
}
.hero-section .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #E2E1EE;
  opacity: 1;
  margin: 0 10px;
}
.hero-section .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #3B3978;
}

/* Pricing Section */
.pricing-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width:540px) {
  .pricing-section {
    padding-top: 0;
  }
}
.pricing-section img.simulator {
  border-radius: 20px;
  border: 2px solid #F5F4F3;
  margin-bottom: 120px;
  max-width: 1200px;
}
@media screen and (max-width:1024px) {
  .pricing-section img.simulator {
    width: 90%;
  }
}
@media screen and (max-width:540px) {
  .pricing-section img.simulator {
    border-radius: 0;
    border: none;
    width: 100%;
    margin-bottom: 80px;
  }
}
.pricing-section .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
}
@media screen and (max-width:1024px) {
  .pricing-section .products-grid {
    margin: 0 auto;
  }
}
@media screen and (max-width:540px) {
  .pricing-section .products-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 12px;
  }
}
.pricing-section .products-grid a {
  text-decoration: none;
  transition: opacity 0.2s;
  opacity: 1;
}
.pricing-section .products-grid a:hover {
  opacity: 0.8;
}
.pricing-section .products-grid .product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 324px;
}
@media screen and (max-width:1024px) {
  .pricing-section .products-grid .product-card {
    width: 250px;
  }
}
@media screen and (max-width:768px) {
  .pricing-section .products-grid .product-card {
    width: 180px;
  }
}
@media screen and (max-width:540px) {
  .pricing-section .products-grid .product-card {
    width: 170px;
  }
}
.pricing-section .products-grid .product-card img.product-image {
  width: 100%;
}
.pricing-section .products-grid .product-card p.product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricing-section .products-grid .product-card p.product-info span.product-name {
  font-size: 15px;
  color: #3b3978;
}
.pricing-section .products-grid .product-card p.product-info span.product-quantity {
  font-weight: 500;
  font-size: 1rem;
  color: #3b3978;
}
.pricing-section .products-grid .product-card p.product-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pricing-section .products-grid .product-card p.product-pricing span.current-price {
  font-weight: 500;
  font-size: 1.25rem;
  color: #e06a3f;
}
.pricing-section .products-grid .product-card p.product-pricing span.original-price {
  font-weight: 500;
  font-size: 1rem;
  color: #908ea4;
  text-decoration: line-through;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #f5f4f2;
}
.testimonials-section h2.section-title {
  font-weight: 700;
  font-size: 18px;
  color: #3b3978;
  text-align: center;
  margin-bottom: 24px;
}
.testimonials-section .medication-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.5rem;
  width: 712px;
  margin: 0 auto 60px;
}
@media screen and (max-width:540px) {
  .testimonials-section .medication-badges {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 90%;
  }
}
.testimonials-section .medication-badges a.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid #3b3978;
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
}
@media screen and (max-width:540px) {
  .testimonials-section .medication-badges a.badge {
    padding: 10px 20px;
    font-size: 0.75rem;
  }
}
.testimonials-section .medication-badges a.badge.active {
  background-color: #3b3978;
  color: white;
}
.testimonials-section .medication-badges a.badge:not(.active) {
  background-color: white;
  color: #3b3978;
}
.testimonials-section h3.medication-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #3b3978;
  margin-bottom: 24px;
}
.testimonials-section .pricing-table {
  width: 1084px;
  border-collapse: collapse;
}
@media screen and (max-width:1024px) {
  .testimonials-section .pricing-table {
    max-width: 800px;
    width: 100%;
  }
}
.testimonials-section .pricing-table .table-header {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 1fr;
  height: 43px;
  gap: 2px;
  margin-bottom: 2px;
}
@media screen and (max-width:540px) {
  .testimonials-section .pricing-table .table-header {
    grid-template-columns: 52px 1fr 1fr 1fr;
  }
}
.testimonials-section .pricing-table .table-header .header-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e2e1ed;
  font-weight: 500;
  color: #3b3978;
}
.testimonials-section .pricing-table .table-header .header-cell.period {
  background-color: #3b3978;
  color: white;
}
@media screen and (max-width:540px) {
  .testimonials-section .pricing-table .table-header .header-cell.period {
    width: 52px;
    font-size: 12px;
  }
}
.testimonials-section .pricing-table .row-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3b3978;
  color: white;
  font-weight: 500;
}
@media screen and (max-width:540px) {
  .testimonials-section .pricing-table .row-header {
    width: 52px;
    font-size: 12px;
    padding: 0;
    text-align: center;
  }
}
.testimonials-section .pricing-table .price-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: white;
}
@media screen and (max-width:540px) {
  .testimonials-section .pricing-table .price-cell {
    padding: 26px 8px;
  }
}
.testimonials-section .pricing-table .price-cell .price {
  font-weight: 500;
  font-size: 1.25rem;
  color: #3b3978;
}
@media screen and (max-width:540px) {
  .testimonials-section .pricing-table .price-cell .price {
    font-size: 14px;
  }
}
.testimonials-section .pricing-table .price-cell .original-price {
  font-weight: 500;
  font-size: 1rem;
  color: #918fa4;
  text-decoration: line-through;
}
@media screen and (max-width:540px) {
  .testimonials-section .pricing-table .price-cell .original-price {
    font-size: 13px;
  }
}
.testimonials-section .pricing-table .table-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
@media screen and (max-width:540px) {
  .testimonials-section .pricing-table .table-row {
    grid-template-columns: 52px 1fr 1fr 1fr;
  }
}
.testimonials-section .pricing-table .discount-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  height: -moz-fit-content;
  height: fit-content;
  gap: 2px;
}
@media screen and (max-width:540px) {
  .testimonials-section .pricing-table .discount-row {
    grid-template-columns: 52px 1fr;
  }
}
.testimonials-section .pricing-table .discount-row .discount-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: white;
  border: 3px solid #e06a3f;
  font-weight: 700;
  font-size: 1.125rem;
  color: #3b3978;
}
@media screen and (max-width:540px) {
  .testimonials-section .pricing-table .discount-row .discount-cell {
    display: block;
    text-align: center;
    line-height: 1.2;
  }
}
.testimonials-section .pricing-table .discount-row .discount-percent {
  color: #e06a3f;
  font-size: 1.5rem;
}
.testimonials-section .pagination {
  display: flex;
  gap: 0.75rem;
}
.testimonials-section .pagination .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e2e1ed;
  cursor: pointer;
}
.testimonials-section .pagination .dot.active {
  background-color: #3b3978;
}
.testimonials-section .line-swiper {
  margin: 0 auto;
  margin-top: 50px;
  max-width: 1200px;
}
.testimonials-section .line-swiper .swiper {
  width: 100%;
  height: auto;
}
.testimonials-section .line-swiper .swiper .swiper-wrapper {
  padding-bottom: 50px;
}
.testimonials-section .line-swiper .swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto !important;
}
.testimonials-section .line-swiper .swiper .swiper-wrapper .swiper-slide-active {
  height: auto;
}
.testimonials-section .line-swiper .swiper .swiper-button-next {
  top: 50%;
  transform: translateY(50%);
}
@media screen and (max-width:1024px) {
  .testimonials-section .line-swiper .swiper .swiper-button-next {
    right: 100px;
  }
}
@media screen and (max-width:768px) {
  .testimonials-section .line-swiper .swiper .swiper-button-next {
    right: 10px;
  }
}
@media screen and (max-width:540px) {
  .testimonials-section .line-swiper .swiper .swiper-button-next {
    right: 5px;
  }
}
.testimonials-section .line-swiper .swiper .swiper-button-next::after {
  content: "";
  width: 26px;
  height: 45px;
  background: url(../img/swiper-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotateY(180deg);
}
@media screen and (max-width:540px) {
  .testimonials-section .line-swiper .swiper .swiper-button-next::after {
    width: 10px;
    height: 17px;
  }
}
.testimonials-section .line-swiper .swiper .swiper-button-prev {
  top: 50%;
  transform: translateY(50%);
}
@media screen and (max-width:1024px) {
  .testimonials-section .line-swiper .swiper .swiper-button-prev {
    left: 100px;
  }
}
@media screen and (max-width:768px) {
  .testimonials-section .line-swiper .swiper .swiper-button-prev {
    left: 10px;
  }
}
@media screen and (max-width:540px) {
  .testimonials-section .line-swiper .swiper .swiper-button-prev {
    left: 5px;
  }
}
.testimonials-section .line-swiper .swiper .swiper-button-prev::after {
  content: "";
  width: 26px;
  height: 45px;
  background: url(../img/swiper-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width:540px) {
  .testimonials-section .line-swiper .swiper .swiper-button-prev::after {
    width: 10px;
    height: 17px;
  }
}
.testimonials-section .line-swiper .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #E2E1EE;
  opacity: 1;
  margin: 0 10px;
}
.testimonials-section .line-swiper .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #3B3978;
}

.regular-delivery {
  padding-bottom: 0px;
}
.regular-delivery .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
.regular-delivery .main-section {
  background-color: #f5f4f3;
  border-radius: 20px;
  padding: 80px;
  position: relative;
  /* Benefits Section */
  /* Subscription Table */
}
@media screen and (max-width:1024px) {
  .regular-delivery .main-section {
    padding: 80px 50px;
  }
}
@media screen and (max-width:768px) {
  .regular-delivery .main-section {
    padding: 80px 30px;
  }
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section {
    padding: 80px 10px;
  }
}
.regular-delivery .main-section h2.title {
  font-size: 32px;
  font-weight: bold;
  color: #3b3978;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section h2.title {
    line-height: 1.3;
    margin-bottom: 40px;
  }
}
.regular-delivery .main-section h2.title span {
  position: relative;
}
.regular-delivery .main-section h2.title span::before {
  position: absolute;
  content: "おススメ";
  top: 30%;
  left: -115px;
  width: 111px;
  height: 68px;
  transform: translateY(-50%);
  background: url(../img/Vector.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: white;
  font-size: 15px;
  font-weight: bold;
  padding-top: 45px;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section h2.title span::before {
    top: 10%;
  }
}
.regular-delivery .main-section .benefits-section {
  display: flex;
  gap: 24px;
  margin-bottom: 80px;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .regular-delivery .main-section .benefits-section {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .benefits-section {
    margin-bottom: 50px;
  }
}
.regular-delivery .main-section .benefits-section .benefit-card {
  background: white;
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: 0px 4px 4px #d9d9d9;
  position: relative;
  text-align: center;
}
.regular-delivery .main-section .benefits-section .benefit-card .benefit-badge {
  position: absolute;
  top: 22px;
  left: -7px;
  background: #3b3978;
  color: #fff6b4;
  padding: 14px 32px;
  border-radius: 0px 40px 40px 0px;
  font-size: 20px;
  font-weight: bold;
  line-height: 26px;
  width: 214px;
  text-align: center;
}
.regular-delivery .main-section .benefits-section .benefit-card img {
  width: 100%;
  max-width: 270px;
  height: auto;
  aspect-ratio: 270/190;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 16px;
}
.regular-delivery .main-section .benefits-section .benefit-card p.benefit-text {
  font-size: 15px;
  line-height: 26px;
}
.regular-delivery .main-section .benefits-section .benefit-card p.benefit-text span.normal {
  color: #3b3978;
}
.regular-delivery .main-section .benefits-section .benefit-card p.benefit-text span.highlight {
  color: #e06a3f;
}
.regular-delivery .main-section .subscription-table {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 1px;
  border-radius: 8px;
  overflow: hidden;
  table-layout: fixed;
}
.regular-delivery .main-section .subscription-table .table-header {
  background: white;
  padding: 10px 0;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #63abd7;
  border-radius: 10px 10px 0px 0px;
}
.regular-delivery .main-section .subscription-table .table-header.empty {
  border: none;
  background: transparent;
  width: 120px;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .table-header.empty {
    width: 56px;
  }
}
.regular-delivery .main-section .subscription-table .table-header .month-header {
  color: #63abd7;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .table-header .month-header {
    font-size: 12px;
    line-height: 1;
  }
  .regular-delivery .main-section .subscription-table .table-header .month-header span {
    font-size: 9px;
  }
}
.regular-delivery .main-section .subscription-table .course-header {
  background: #63abd7;
  color: white;
  text-align: center;
  vertical-align: middle;
  border-radius: 10px 0px 0px 10px;
  padding: 16px 0px;
  width: 120px;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .course-header {
    width: 56px;
  }
}
.regular-delivery .main-section .subscription-table .course-header .course-title {
  color: #fff6b4;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width:768px) {
  .regular-delivery .main-section .subscription-table .course-header .course-title {
    font-size: 15px;
  }
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .course-header .course-title span {
    font-size: 10px;
  }
}
.regular-delivery .main-section .subscription-table .course-header .course-subtitle {
  color: white;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width:768px) {
  .regular-delivery .main-section .subscription-table .course-header .course-subtitle {
    font-size: 12px;
  }
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .course-header .course-subtitle {
    font-size: 10px;
  }
}
.regular-delivery .main-section .subscription-table .delivery-cell {
  background: white;
  text-align: center;
  vertical-align: middle;
  padding: 16px 24px;
  width: calc((100% - 120px) / 7);
  border: 2px solid #F5F4F3;
}
@media screen and (max-width:1024px) {
  .regular-delivery .main-section .subscription-table .delivery-cell {
    padding: 16px 5px;
  }
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .delivery-cell {
    width: calc((100% - 56px) / 7);
    padding: 16px 0;
    border: 1px solid #F5F4F3;
    vertical-align: baseline;
  }
}
.regular-delivery .main-section .subscription-table .delivery-cell img {
  width: 31px;
  margin: 0 auto;
  margin-bottom: 6px;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .delivery-cell img {
    width: 23px;
  }
}
.regular-delivery .main-section .subscription-table .delivery-cell.small img {
  width: 25px;
}
@media screen and (max-width:768px) {
  .regular-delivery .main-section .subscription-table .delivery-cell.small img {
    width: 20px;
  }
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .delivery-cell.small img {
    width: 14px;
  }
}
.regular-delivery .main-section .subscription-table .delivery-cell.extra-small img {
  width: 21px;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .delivery-cell.extra-small img {
    width: 10px;
  }
}
.regular-delivery .main-section .subscription-table .delivery-cell .delivery-text {
  color: #3b3978;
  font-size: 13px;
  line-height: 26px;
}
@media screen and (max-width:768px) {
  .regular-delivery .main-section .subscription-table .delivery-cell .delivery-text {
    font-size: 12px;
  }
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .delivery-cell .delivery-text {
    font-size: 10px;
    line-height: 1.2;
  }
}
.regular-delivery .main-section .subscription-table .delivery-cell .delivery-text.hidden {
  opacity: 0;
}
.regular-delivery .main-section .subscription-table .pill-group {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .pill-group {
    flex-wrap: wrap;
    gap: 0px;
  }
  .regular-delivery .main-section .subscription-table .pill-group img {
    margin-bottom: 0;
    margin: 0 auto;
  }
}
.regular-delivery .main-section .subscription-table .pill-group.double {
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .pill-group.double {
    gap: 0;
  }
}
.regular-delivery .main-section .subscription-table .pill-group.double img {
  margin-bottom: 0;
}
.regular-delivery .main-section .subscription-table .arrow-cell {
  background: #F5F4F3;
  text-align: center;
  vertical-align: middle;
  border-bottom: 2px solid white;
}
.regular-delivery .main-section .subscription-table .arrow-cell img {
  width: 95%;
  margin: 0 auto;
}
.regular-delivery .main-section .subscription-table .row-1month .delivery-cell {
  height: 80px;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .row-1month .delivery-cell {
    height: auto;
  }
}
.regular-delivery .main-section .subscription-table .row-3month .delivery-cell {
  height: 80px;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .row-3month .delivery-cell {
    height: auto;
  }
}
.regular-delivery .main-section .subscription-table .row-6month .delivery-cell {
  height: 102px;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .row-6month .delivery-cell {
    height: auto;
  }
}
.regular-delivery .main-section .subscription-table .row-6month .course-header {
  height: 102px;
}
@media screen and (max-width:540px) {
  .regular-delivery .main-section .subscription-table .row-6month .course-header {
    height: auto;
  }
}

/* Service Section */
.service-section {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width:1024px) {
  .service-section {
    width: 90%;
  }
}
.service-section p.subtitle {
  color: #3B3978;
  border: 1px solid #3B3978;
  padding: 5px 20px;
  text-align: center;
  border-radius: 100px;
  font-weight: bold;
  margin-bottom: 10px;
}
.service-section .steps-grid {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width:768px) {
  .service-section .steps-grid {
    display: table-column;
  }
}
.service-section .steps-grid .step-card {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 250px;
}
@media screen and (max-width:768px) {
  .service-section .steps-grid .step-card {
    margin-bottom: 70px;
  }
  .service-section .steps-grid .step-card:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width:540px) {
  .service-section .steps-grid .step-card {
    min-height: auto;
  }
}
.service-section .steps-grid .step-card .step-number {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-color: #3b3978;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0rem;
}
.service-section .steps-grid .step-card .step-number .step-label {
  font-weight: 500;
  font-size: 1rem;
  color: white;
  border-bottom: 1px dotted white;
  line-height: 1.2;
}
.service-section .steps-grid .step-card .step-number .step-num {
  font-weight: 700;
  font-size: 1.375rem;
  color: white;
  line-height: 1.3;
}
.service-section .steps-grid .step-content {
  margin-top: 1rem;
}
.service-section .steps-grid .step-content img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.service-section .steps-grid .step-content h3.step-title {
  font-size: 15px;
  color: #3b3978;
  margin-bottom: 1rem;
}
.service-section .steps-grid .step-content p.step-description {
  font-size: 15px;
  color: #3b3978;
  line-height: 1.7;
}

/* Q&A Section */
.qa-section {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  margin-top: 120px;
}
@media screen and (max-width:1024px) {
  .qa-section {
    margin-top: 80px;
  }
}
.qa-section .qa-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.qa-section .qa-list .qa-item {
  background-color: #f5f4f3;
  padding: 2rem;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
}
@media screen and (max-width:540px) {
  .qa-section .qa-list .qa-item {
    padding: 30px 15px;
    padding-right: 60px;
  }
}
.qa-section .qa-list .qa-item::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/qa-gz.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 32px;
  right: 20px;
  transition: 0.5s;
}
@media screen and (max-width:540px) {
  .qa-section .qa-list .qa-item::after {
    top: 36px;
  }
}
.qa-section .qa-list .qa-item:hover {
  background-color: #f0efec;
}
.qa-section .qa-list .qa-item p.question {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 15px;
  color: #3b3978;
}
@media screen and (max-width:540px) {
  .qa-section .qa-list .qa-item p.question {
    gap: 1rem;
  }
}
.qa-section .qa-list .qa-item p.question span.q-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #3b3978;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (max-width:540px) {
  .qa-section .qa-list .qa-item p.question span.q-label {
    width: 45px;
  }
}
.qa-section .qa-list .qa-item p.answer {
  margin-top: 0rem;
  font-size: 15px;
  color: #3b3978;
  line-height: 0;
  opacity: 0;
  height: 0;
  transition: 0.3s;
}
.qa-section .qa-list .qa-item.active::after {
  transform: rotate(45deg);
}
.qa-section .qa-list .qa-item.active .answer {
  margin-top: 1rem;
  opacity: 1;
  height: auto;
  line-height: 1.7;
}

/* Notice Section */
.notice-section {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  margin-top: 120px;
}
@media screen and (max-width:1024px) {
  .notice-section {
    margin-top: 80px;
  }
}
.notice-section .notice-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media screen and (max-width:540px) {
  .notice-section .notice-list {
    gap: 12px;
  }
}
.notice-section .notice-list .notice-item {
  display: flex;
}
@media screen and (max-width:540px) {
  .notice-section .notice-list .notice-item {
    display: block;
  }
}
.notice-section .notice-list .notice-item p.notice-category {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background-color: #e2e1ed;
  border-radius: 30px 0 0 0;
  font-size: 15px;
  color: #3b3978;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width:540px) {
  .notice-section .notice-list .notice-item p.notice-category {
    width: 100%;
  }
}
.notice-section .notice-list .notice-item p.notice-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 2rem;
  background-color: white;
  border-radius: 0 0 30px 0;
  border-bottom: 2px solid #e2e1ed;
  border-right: 2px solid #e2e1ed;
  font-size: 15px;
  color: #3b3978;
  line-height: 1.7;
}
@media screen and (max-width:540px) {
  .notice-section .notice-list .notice-item p.notice-content {
    padding: 30px 15px;
  }
}

/* Footer */
.footer {
  background-color: #3b3978;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width:540px) {
  .footer {
    padding-bottom: 120px;
  }
}
.footer .footer-nav {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width:540px) {
  .footer .footer-nav {
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }
}
.footer .footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}
@media screen and (max-width:540px) {
  .footer .footer-nav a {
    text-align: center;
  }
}
.footer .footer-nav a:hover {
  opacity: 0.8;
}
.footer .copyright {
  color: white;
  font-size: 0.875rem;
}
@media screen and (max-width:540px) {
  .footer .copyright {
    font-size: 12px;
  }
}

/* Calculator Sidebar */
.calculator-sidebar {
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 1000;
  background-color: #63abd7;
  border-radius: 24px 0 0 24px;
  transition: background-color 0.2s;
}
.calculator-sidebar:hover {
  background-color: rgba(99, 171, 215, 0.7);
}
.calculator-sidebar.active:hover {
  background-color: #63abd7;
}
@media screen and (max-width:540px) {
  .calculator-sidebar {
    border-radius: 24px;
    right: 50%;
    transform: translateX(50%);
    width: 90%;
  }
}
.calculator-sidebar .calculator-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 2rem;
  cursor: pointer;
  color: white;
  font-weight: 500;
  font-size: 1.125rem;
}
.calculator-sidebar .calculator-trigger .calculator-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 1rem;
  padding: 0.375rem;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
.calculator-sidebar .calculator-trigger .calculator-icon .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 8px solid #63abd7;
  border-top: 0;
  transition: all 0.5s;
}
.calculator-sidebar .calculator-trigger .calculator-icon .triangle.active {
  transform: rotate(180deg);
}
.calculator-sidebar .calculator-panel {
  position: static;
  top: 0;
  right: 100%;
  width: 420px;
  background-color: white;
  border: 2px solid #63abd7;
  border-radius: 20px;
  display: none;
  max-height: 80vh;
  overflow-y: auto;
  transition: all 0.5s;
}
@media screen and (max-width:540px) {
  .calculator-sidebar .calculator-panel {
    width: 100%;
  }
}
.calculator-sidebar .calculator-panel.active {
  display: block;
}
.calculator-sidebar .calculator-panel .calculator-content {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.calculator-sidebar .calculator-panel .calculator-content p.calculator-description {
  font-size: 15px;
  color: #4494C5;
  line-height: 1.7;
  padding: 1rem 1.5rem;
}
.calculator-sidebar .calculator-panel .calculator-content .period-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.calculator-sidebar .calculator-panel .calculator-content .period-section .period-header {
  background-color: #d8ecf8;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #3b3978;
}
.calculator-sidebar .calculator-panel .calculator-content .period-section .period-header small {
  font-size: 0.75rem;
}
.calculator-sidebar .calculator-panel .calculator-content .period-section .period-options {
  display: flex;
  gap: 0.75rem;
  padding: 0 1rem;
}
.calculator-sidebar .calculator-panel .calculator-content .period-section .period-options .radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: #3b3978;
  cursor: pointer;
}
.calculator-sidebar .calculator-panel .calculator-content .period-section .period-options .radio-option input[type=radio] {
  width: 14px;
  height: 14px;
  accent-color: #63abd7;
}
.calculator-sidebar .calculator-panel .calculator-content .product-table {
  display: flex;
  flex-direction: column;
}
.calculator-sidebar .calculator-panel .calculator-content .product-table .table-header {
  display: grid;
  grid-template-columns: 50px 174px 54px 64px;
  padding: 0.5rem 1rem;
  background-color: #d8ecf8;
  font-weight: 500;
  font-size: 1rem;
  color: #3b3978;
  gap: 0.6rem;
}
@media screen and (max-width:540px) {
  .calculator-sidebar .calculator-panel .calculator-content .product-table .table-header {
    grid-template-columns: 50px 108px 54px 64px;
    justify-content: space-around;
  }
}
@media screen and (max-width:320px) {
  .calculator-sidebar .calculator-panel .calculator-content .product-table .table-header {
    grid-template-columns: 38px 74px 60px 45px;
    font-size: 0.8rem;
  }
}
.calculator-sidebar .calculator-panel .calculator-content .product-table .product-row {
  display: grid;
  grid-template-columns: 50px 174px 54px 64px;
  gap: 0.6rem;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #3b3978;
  /* スイッチ型トグルボタン */
}
@media screen and (max-width:540px) {
  .calculator-sidebar .calculator-panel .calculator-content .product-table .product-row {
    grid-template-columns: 50px 128px 54px 64px;
    gap: 0.2rem;
    font-size: 0.9rem;
    justify-content: space-around;
  }
}
@media screen and (max-width:320px) {
  .calculator-sidebar .calculator-panel .calculator-content .product-table .product-row {
    font-size: 0.7rem;
    grid-template-columns: 38px 89px 69px 45px;
  }
}
.calculator-sidebar .calculator-panel .calculator-content .product-table .product-row label.toggle-switch {
  position: relative;
  width: 28px;
  height: 14px;
}
.calculator-sidebar .calculator-panel .calculator-content .product-table .product-row label.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.calculator-sidebar .calculator-panel .calculator-content .product-table .product-row label.toggle-switch input:checked + .slider {
  background: #64ABD8;
}
.calculator-sidebar .calculator-panel .calculator-content .product-table .product-row label.toggle-switch input:checked + .slider::before {
  transform: translateX(13.5px);
}
.calculator-sidebar .calculator-panel .calculator-content .product-table .product-row label.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #918FA4;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}
.calculator-sidebar .calculator-panel .calculator-content .product-table .product-row label.toggle-switch .slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 1.5px;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.calculator-sidebar .calculator-panel .calculator-content .product-table .product-row img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width:320px) {
  .calculator-sidebar .calculator-panel .calculator-content .product-table .product-row img {
    width: 20px;
  }
}
.calculator-sidebar .calculator-panel .calculator-content .product-table .product-row .product-name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.calculator-sidebar .calculator-panel .calculator-content .total-bg {
  background-color: #D9ECF9;
  padding: 8px 24px;
}
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 1rem;
  background-color: white;
  border-radius: 10px;
}
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .result-label, .calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .result-value {
  display: none;
}
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .total-labels,
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .total-values {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .total-values {
  gap: 0.1rem;
}
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .discount-label,
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .set-discount-label,
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .discount-value,
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .set-discount-value {
  color: #e06a3f;
  font-weight: 500;
}
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .discount-label,
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .set-discount-label {
  font-size: 0.75rem;
}
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .discount-value,
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .set-discount-value {
  font-size: 1rem;
}
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .payment-label {
  font-weight: 500;
  font-size: 1rem;
  color: #3b3978;
}
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .payment-label small {
  font-size: 0.75rem;
}
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .payment-value {
  font-weight: 500;
  font-size: 1.25rem;
  color: #3b3978;
}
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .monthly-label,
.calculator-sidebar .calculator-panel .calculator-content .total-bg .total-section .monthly-value {
  font-weight: 500;
  font-size: 0.625rem;
  color: #3b3978;
}
.calculator-sidebar .calculator-panel .calculator-content .calculator-cta {
  align-self: center;
  margin-top: 1rem;
}
.calculator-sidebar .calculator-panel .calculator-content .calculator-cta.btn-line {
  border-radius: 100px;
}

main.under-page {
  padding: 208px 0 120px;
  min-height: calc(100vh - 80px);
}
@media screen and (max-width:540px) {
  main.under-page {
    padding: 166px 0 80px;
  }
}
main.under-page h1 {
  font-size: 32px;
  font-weight: bold;
  color: #3b3978;
  text-align: center;
  margin-bottom: 64px;
}
main.product {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  /* 使用方法セクション */
}
main.product .pricing-section {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  flex-direction: row;
  padding: 0 0 120px;
}
@media screen and (max-width:540px) {
  main.product .pricing-section {
    flex-wrap: wrap;
    padding-bottom: 80px;
  }
}
main.product .pricing-section img.product-image {
  width: 400px;
}
@media screen and (max-width:768px) {
  main.product .pricing-section img.product-image {
    width: 250px;
  }
}
@media screen and (max-width:540px) {
  main.product .pricing-section img.product-image {
    width: 100%;
  }
}
main.product .pricing-section .product-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
main.product .pricing-section .product-info h2.product-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #3b3978;
  font-size: 24px;
  line-height: normal;
}
main.product .pricing-section .product-info p.product-description {
  font-family: "Noto Sans JP", sans-serif;
  color: #3b3978;
  font-size: 16px;
}
@media screen and (max-width:540px) {
  main.product .pricing-section .product-info p.product-description {
    font-size: 15px;
  }
}
main.product .pricing-section .product-info .price-info {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
main.product .pricing-section .product-info .price-info span.price-badge {
  border: 1px solid #3b3978;
  color: #3b3978;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 4px 12px;
  border-radius: 4px;
  background: transparent;
}
main.product .pricing-section .product-info .price-info span.current-price {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #3b3978;
  font-size: 20px;
  white-space: nowrap;
}
main.product .pricing-section .product-info .price-info span.original-price {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #e06a3f;
  font-size: 16px;
  text-decoration: line-through;
  white-space: nowrap;
}
main.product .usage-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0;
  width: 100%;
}
main.product .usage-section .instruction-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: transparent;
}
@media screen and (max-width:540px) {
  main.product .usage-section .instruction-card {
    display: block;
    margin-bottom: 12px;
  }
}
main.product .usage-section .instruction-card .instruction-label {
  display: flex;
  width: 160px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 32px;
  background-color: #e2e1ee;
  border-radius: 30px 0px 0px 0px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #3b3978;
  font-size: 16px;
  line-height: 26px;
  white-space: nowrap;
}
@media screen and (max-width:540px) {
  main.product .usage-section .instruction-card .instruction-label {
    width: 100%;
  }
}
main.product .usage-section .instruction-card .instruction-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 40px 32px;
  flex: 1;
  background-color: white;
  border-radius: 0px 0px 30px 0px;
  border-right: 2px solid #e2e1ee;
  border-bottom: 2px solid #e2e1ee;
  font-family: "Noto Sans JP", sans-serif;
  color: #3b3978;
  font-size: 16px;
  line-height: 26px;
}
@media screen and (max-width:540px) {
  main.product .usage-section .instruction-card .instruction-content {
    padding: 32px 20px;
    font-size: 15px;
  }
}
main.privacy-policy .content {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
main.privacy-policy ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
main.privacy-policy ol.policy-text {
  font-size: 15px;
  line-height: 1.5;
  color: #3b3978;
  margin-bottom: 32px;
}
main.privacy-policy ol.policy-text li {
  margin-bottom: 16px;
}
main.privacy-policy ol.policy-text li strong {
  font-weight: bold;
  color: #3b3978;
  font-size: 16px;
}
main.privacy-policy ol > li > ol {
  padding-top: 16px;
  list-style-type: lower-alpha;
}
main.privacy-policy ol > li > ol > li > ol {
  padding-top: 16px;
  list-style-type: lower-roman;
}
main table.contact-table {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 2px solid #f5f4f3;
}
main table.contact-table td {
  border: 2px solid #f5f4f3;
  vertical-align: center;
}
main table.contact-table td.contact-label {
  width: 280px;
  padding: 1.5rem 2rem;
  background-color: #f5f4f3;
  font-weight: 500;
  color: #3b3978;
  font-size: 15px;
  text-align: center;
}
main table.contact-table td.contact-content {
  padding: 2.5rem 2rem;
  background-color: white;
  color: #3b3978;
  font-size: 15px;
  line-height: 1.73;
  white-space: pre-line;
}
@media screen and (max-width:540px) {
  main table.contact-table {
    display: block;
    border: none;
  }
  main table.contact-table td {
    display: block;
    width: 100%;
  }
  main table.contact-table td.contact-label {
    width: 100%;
    padding: 20px;
  }
  main table.contact-table td.contact-content {
    font-size: 14px;
    margin-bottom: 10px;
    padding: 24px 20px;
  }
}
main.contact {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 128px 0;
  /* Contact Form */
  /* Form Footer */
}
main.contact .contact-form {
  width: 100%;
  background-color: #f5f4f3;
  padding: 8px 0;
}
main.contact .contact-form .form-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 4px 8px;
  min-height: 60px;
}
@media screen and (max-width:540px) {
  main.contact .contact-form .form-row {
    flex-wrap: wrap;
    gap: 0px 24px;
    justify-content: space-between;
    padding: 4px 12px;
  }
}
main.contact .contact-form .form-row .form-label {
  width: 240px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media screen and (max-width:540px) {
  main.contact .contact-form .form-row .form-label {
    text-align: left;
    justify-content: flex-start;
    padding-left: 15px;
    align-items: center;
  }
}
@media screen and (max-width:320px) {
  main.contact .contact-form .form-row .form-label {
    width: 180px;
    padding-left: 0;
  }
}
main.contact .contact-form .form-row .form-label label {
  font-size: 15px;
  color: #3b3978;
  text-align: center;
  white-space: nowrap;
}
main.contact .contact-form .form-row .required-badge {
  background-color: #e06a3f;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  min-width: 40px;
  text-align: center;
}
main.contact .contact-form .form-row .required-badge.optional {
  opacity: 0;
}
main.contact .contact-form .form-row .form-input {
  flex: 1;
  background-color: white;
  padding: 16px 32px;
}
@media screen and (max-width:540px) {
  main.contact .contact-form .form-row .form-input {
    width: 100%;
    padding: 16px;
    padding-bottom: 12px;
  }
}
main.contact .contact-form .form-row .form-input input, main.contact .contact-form .form-row .form-input textarea {
  width: 100%;
  border: none;
  background: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #181c20;
  outline: none;
  resize: none;
}
main.contact .contact-form .form-row .form-input input::-moz-placeholder, main.contact .contact-form .form-row .form-input textarea::-moz-placeholder {
  color: #918fa4;
}
main.contact .contact-form .form-row .form-input input::placeholder, main.contact .contact-form .form-row .form-input textarea::placeholder {
  color: #918fa4;
}
main.contact .error {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
}
main.contact .error input, main.contact .error textarea {
  border: 2px solid #e74c3c;
}
main.contact .error-messages {
  background-color: #fff5f5;
  border: 1px solid #fed7d7;
  color: #e53e3e;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}
main.contact .error-messages p {
  margin: 5px 0;
}
main.contact .form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 120px;
  margin-top: 64px;
  /* Checkbox */
}
@media screen and (max-width:540px) {
  main.contact .form-footer {
    padding: 0;
  }
}
main.contact .form-footer .checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width:540px) {
  main.contact .form-footer .checkbox-container {
    flex-wrap: wrap;
  }
}
main.contact .form-footer .checkbox-container input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #3b3978;
}
main.contact .form-footer .checkbox-container label {
  font-size: 16px;
  font-weight: 500;
  color: #3b3978;
  white-space: nowrap;
}
main.contact .form-footer button.submit-btn {
  background-color: #3b3978;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 8px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
main.contact .form-footer button.submit-btn:hover {
  background-color: rgba(59, 57, 120, 0.9);
}
main.contact .form-footer button.submit-btn:disabled {
  background-color: #bdc3c7;
  cursor: not-allowed;
}
main.contact .thanks-container {
  max-width: 630px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width:540px) {
  main.contact .thanks-container {
    width: 100%;
  }
}
main.contact .thanks-container .thanks-message {
  line-height: 1.8;
  margin-bottom: 50px;
}
main.contact .thanks-container .thanks-message p {
  font-size: 15px;
}
main.contact .thanks-container .btn-home {
  display: block;
  padding: 12px 30px;
  background-color: #3B3978;
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 16px;
  transition: background-color 0.3s;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width:540px) {
  main.contact .thanks-container .btn-home {
    width: 80%;
  }
}
main.contact .thanks-container .btn-home:hover {
  background-color: #4d4a9e;
  color: white;
  text-decoration: none;
}
main.contact .confirm-container p {
  text-align: center;
  margin-bottom: 50px;
}
main.contact .confirm-container .confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
main.contact .confirm-container .confirm-table th, main.contact .confirm-container .confirm-table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
main.contact .confirm-container .confirm-table th {
  background-color: #f8f9fa;
  width: 30%;
  font-weight: bold;
}
main.contact .confirm-container .confirm-table td {
  width: 70%;
}
main.contact .confirm-container .button-group {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
main.contact .confirm-container .button-group .btn {
  display: inline-block;
  padding: 12px 30px;
  margin: 0 10px;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width:540px) {
  main.contact .confirm-container .button-group .btn {
    display: block;
    margin: 0;
  }
}
@media screen and (max-width:320px) {
  main.contact .confirm-container .button-group .btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}
main.contact .confirm-container .button-group .btn:disabled {
  background-color: #bdc3c7;
  cursor: not-allowed;
}
main.contact .confirm-container .button-group .btn.btn-primary {
  background-color: #3B3978;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
main.contact .confirm-container .button-group .btn.btn-primary:hover {
  background-color: #4d4a9e;
}
main.contact .confirm-container .button-group .btn.btn-secondary {
  background-color: #6c757d;
  color: white;
}
main.contact .confirm-container .button-group .btn.btn-secondary:hover {
  background-color: #545b62;
}
main.contact .error-container {
  text-align: center;
  max-width: 600px;
  margin: 50px auto;
  padding: 40px 20px;
  background-color: #fff5f5;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #fed7d7;
}
main.contact .error-container .error-title {
  color: #e53e3e;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
main.contact .error-container .error-message {
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}
main.contact .error-container .btn-group {
  margin-top: 30px;
}
main.contact .error-container .btn-group .btn {
  display: inline-block;
  padding: 12px 30px;
  margin: 0 10px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s;
}
@media screen and (max-width:540px) {
  main.contact .error-container .btn-group .btn {
    display: block;
  }
}
main.contact .error-container .btn-group .btn.btn-retry {
  background-color: #3B3978;
  color: white;
}
main.contact .error-container .btn-group .btn.btn-retry:hover {
  background-color: #0056b3;
  color: white;
  text-decoration: none;
}
@media screen and (max-width:540px) {
  main.contact .error-container .btn-group .btn.btn-retry {
    margin-bottom: 10px;
  }
}
main.contact .error-container .btn-group .btn.btn-home {
  background-color: #6c757d;
  color: white;
}
main.contact .error-container .btn-group .btn.btn-home:hover {
  background-color: #545b62;
  color: white;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */