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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.45;
}

body {
  background-color: #FFFFFF;
}

.container {
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
    padding: 0 30px;
  }
}

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

.section-header {
  margin-bottom: 32px;
}

.section-header-center {
  margin-bottom: 32px;
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-header-center {
    margin-top: 60px;
  }
}

.section-label {
  font-family: "Jost", sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 500;
  color: #02526A;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}
.section-header-center .section-label::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background-color: #02526A;
}
@media (min-width: 1024px) {
  .section-header-center .section-label::before {
    top: -60px;
    height: 60px;
  }
}
.section-label--small {
  font-size: 1.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #333333;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
}
.section-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #25A7B2;
  margin: 16px auto 32px;
}

.btn {
  display: inline-block;
  padding: 14px 60px;
  background-color: #25A7B2;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 100vh;
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .btn {
    padding: 17px 108px;
    font-size: 1.6rem;
  }
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flex {
  display: flex;
}

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

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

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

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

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

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  height: 60px;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 15px;
}
.header__logo {
  height: 48px;
  width: auto;
}
.header__nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 32px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    flex-direction: row;
    gap: 32px;
    box-shadow: none;
    transform: translateX(0);
    padding: 0;
  }
}
.header__nav.is-open {
  transform: translateX(0);
}
.header__nav-item {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  padding: 16px 0;
  border-bottom: 1px solid #C1C1C1;
}
@media (min-width: 1024px) {
  .header__nav-item {
    padding: 8px 0;
    border-bottom: none;
  }
}
.header__nav-item:hover {
  color: #02526A;
}
.header__contact {
  display: none;
}
@media (min-width: 1024px) {
  .header__contact {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
.header__phone {
  font-family: "Lato", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #02526A;
}
.header__hours {
  font-size: 1.4rem;
  color: #333333;
}
.header__btn-contact {
  display: inline-block;
  padding: 13px 24px;
  background-color: #25A7B2;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  margin-left: 32px;
  transition: background-color 0.3s ease;
}
.header__btn-contact:hover {
  background-color: rgb(28.223255814, 127.3860465116, 135.776744186);
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
@media (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  width: 100%;
  height: 3px;
  background-color: #333333;
  transition: all 0.3s ease;
  position: absolute;
}
.header__hamburger span:nth-child(1) {
  top: 6px;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger span:nth-child(3) {
  bottom: 6px;
}
.header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.hero {
  position: relative;
  height: 400px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .hero {
    height: 600px;
    margin-top: 60px;
  }
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: absolute;
  top: 100px;
  left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .hero__content {
    top: 180px;
    left: 33px;
    padding-right: 0;
  }
}
.hero__subtitle {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #333333;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }
}
.hero__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #02526A;
  line-height: 1.448;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  }
}
.hero__description {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #333333;
  line-height: 1.448;
}
@media (min-width: 768px) {
  .hero__description {
    font-size: clamp(3rem, 6.5vw, 5.8rem);
  }
}

.section-about {
  padding: 64px 0;
  position: relative;
  background-color: transparent;
}
.section-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #EBF1F5;
  z-index: 0;
}
@media (min-width: 1300px) {
  .section-about::before {
    right: calc(50% + 600px + 60px);
    background-color: #FFFFFF;
  }
}
@media (min-width: 1300px) {
  .section-about {
    background-color: #EBF1F5;
  }
}
.section-about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
  align-items: center;
  position: relative;
  z-index: 1;
  background-color: transparent;
}
@media (min-width: 1024px) {
  .section-about__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.section-about__content {
  background-color: transparent;
}
.section-about__subtitle {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #333333;
  margin-bottom: 8px;
}
.section-about__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #333333;
  margin-bottom: 32px;
}
.section-about__brand {
  font-family: "Jost", sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  color: #25A7B2;
  text-decoration: none;
  position: relative;
  margin-bottom: 32px;
  display: block;
}
.section-about__brand::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333333;
}
.section-about__description {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.733;
  margin-bottom: 32px;
}
.section-about__features-box {
  padding: 32px;
  margin: 0;
  background-color: #FFFFFF;
}
.section-about__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-about__feature-item {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.3;
  margin-bottom: 8px;
  padding-left: 1em;
  text-indent: -1em;
}
.section-about__description-txt {
  margin-top: 24px;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.section-about__image {
  width: 100%;
  height: auto;
}
.section-about__components {
  background-color: #FFFFFF;
  padding: 32px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .section-about__components {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.section-about__components-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .section-about__components-list {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 64px;
  }
}
.section-about__component-item {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #333333;
}
.section-about__patent {
  margin-top: 64px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section-about__patent-description {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.2;
  text-align: left;
}
@media (min-width: 1024px) {
  .section-about__patent-description {
    text-align: center;
  }
}
.section-about__text-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-top: 32px;
  background-color: #FFFFFF;
  padding: 32px;
  position: relative;
  z-index: 1;
}
.section-about__text-box-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #333333;
  line-height: 1.448;
}
.section-about__text-box-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.733;
}
.section-about__diagram {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .section-about__diagram {
    grid-template-columns: 1fr 1fr;
  }
}
.section-about__diagram-image, .section-about__microscopic-image {
  position: relative;
}
.section-about__diagram-img, .section-about__microscopic-img {
  width: 100%;
  height: auto;
}
.section-about__microscopic-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 1.4rem;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
}

.section-product {
  padding: 64px 0;
  position: relative;
  background-color: transparent;
}
.section-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #EBF1F5;
  z-index: 0;
}
@media (min-width: 1300px) {
  .section-product::before {
    right: calc(50% + 600px + 60px);
    background-color: #FFFFFF;
  }
}
@media (min-width: 1300px) {
  .section-product {
    background-color: #EBF1F5;
  }
}
.section-product .container {
  position: relative;
  z-index: 1;
}
.section-product__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
  align-items: center;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .section-product__top {
    grid-template-columns: 1fr 1fr;
  }
}
.section-product__image-top {
  width: 100%;
}
.section-product__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
  align-items: center;
}
@media (min-width: 1024px) {
  .section-product__bottom {
    grid-template-columns: 1fr 1fr;
  }
}
.section-product__image-bottom {
  width: 100%;
}
.section-product__subtitle-bottom {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.733;
}
.section-product__title-bottom {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #333333;
  margin-bottom: 32px;
  line-height: 1.448;
}
.section-product__subtitle {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #333333;
}
.section-product__subtitle-large {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #333333;
  margin-bottom: 16px;
}
.section-product__title-large {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #25A7B2;
  margin-bottom: 32px;
}
.section-product__description {
  font-size: 1.5rem;
  color: #333333;
}
.section-product__price-box {
  background-color: #FFFFFF;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.section-product__price {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  line-height: 2;
  margin: 0;
  text-align: left;
}
.section-product__note {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.733;
  margin-bottom: 16px;
  text-align: left;
}
@media (min-width: 1024px) {
  .section-product__note {
    margin-bottom: 64px;
  }
}
.section-product__image {
  width: 100%;
  height: auto;
}
.section-product__btn {
  margin-top: 32px;
  text-align: center;
}

.section-quality {
  background-color: #FFFFFF;
  padding: 64px 0 0;
}
.section-quality__header {
  margin-bottom: 64px;
}
.section-quality__header .container {
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 1024px) {
  .section-quality__header .container {
    max-width: 1200px;
    padding: 0 30px;
  }
}
.section-quality__items {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section-quality__item {
  position: relative;
  width: 100%;
  min-height: 499px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .section-quality__item:nth-child(odd) {
    justify-content: flex-start;
  }
  .section-quality__item:nth-child(even) {
    justify-content: flex-end;
  }
}
.section-quality__item:nth-child(1) {
  background-image: url("../images/quality/quality-01.webp");
}
.section-quality__item:nth-child(2) {
  background-image: url("../images/quality/quality-02.webp");
}
.section-quality__item:nth-child(3) {
  background-image: url("../images/quality/quality-03.webp");
}
.section-quality__item:nth-child(4) {
  background-image: url("../images/quality/quality-04.webp");
}
.section-quality__item:nth-child(5) {
  background-image: url("../images/quality/quality-05.webp");
}
.section-quality__item-content {
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 32px;
  width: 100%;
  max-width: 600px;
  margin: 0;
}
@media (min-width: 1024px) {
  .section-quality__item:nth-child(odd) .container .section-quality__item-content {
    margin-left: 0;
    margin-right: auto;
  }
  .section-quality__item:nth-child(even) .container .section-quality__item-content {
    margin-left: auto;
    margin-right: 0;
  }
}
.section-quality__item .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 1024px) {
  .section-quality__item .container {
    padding: 0 30px;
  }
}
.section-quality__item-number {
  font-family: "Jost", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  color: #02526A;
  line-height: 1.445;
}
@media (min-width: 1024px) {
  .section-quality__item-number {
    font-size: 9.6rem;
  }
}
.section-quality__item-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #25A7B2;
  margin-bottom: 16px;
  line-height: 1.448;
}
.section-quality__item-description {
  font-size: 1.5rem;
  color: #333333;
  line-height: 1.733;
}

.section-flow {
  background-color: #FFFFFF;
  padding: 64px 0;
}
.section-flow__header {
  margin-bottom: 64px;
}
.section-flow__items {
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 1015px;
  margin: 0 auto;
}
.section-flow__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
  background-color: #FFFFFF;
  overflow: visible;
  box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-top: 100px;
  padding: 32px;
}
@media (min-width: 1024px) {
  .section-flow__item {
    grid-template-columns: 400px 1fr;
    padding: 64px;
    margin-top: 130px;
  }
}
.section-flow__item-header {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-flow__item-header {
    top: -100px;
  }
}
.section-flow__item-label {
  font-family: "Jost", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #02526A;
  line-height: 1;
}
.section-flow__item-number {
  font-family: "Jost", sans-serif;
  font-size: 9rem;
  font-weight: 500;
  color: #25A7B2;
  line-height: 1;
}
@media (min-width: 1024px) {
  .section-flow__item-number {
    margin-bottom: 8px;
    font-size: 12.8rem;
  }
}
.section-flow__item-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
.section-flow__item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 0;
}
.section-flow__item-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #02526A;
  margin-bottom: 16px;
}
.section-flow__item-divider {
  width: 50px;
  height: 3px;
  background-color: #02526A;
  margin-bottom: 16px;
}
.section-flow__item-description {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.733;
}

.section-faq {
  background-color: #EBF1F5;
  padding: 64px 0;
}
.section-faq__header {
  margin-bottom: 64px;
}
.section-faq__items {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section-faq__item {
  background-color: #FFFFFF;
  overflow: hidden;
  box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.05);
}
.section-faq__item-header {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (min-width: 1024px) {
  .section-faq__item-header {
    padding: 15px 20px;
  }
}
.section-faq__item-header:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.section-faq__item-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 1024px) {
  .section-faq__item-icon {
    width: 50px;
    height: 50px;
  }
}
.section-faq__item-icon-bg {
  width: 46px;
  height: 46px;
  background-color: #25A7B2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.section-faq__item-icon-bg::before {
  content: "Q";
  font-size: 2.8rem;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1;
  display: block;
  text-align: center;
  transform: translateY(-2px);
}
@media (min-width: 1024px) {
  .section-faq__item-icon-bg {
    width: 50px;
    height: 50px;
  }
  .section-faq__item-icon-bg::before {
    font-size: 3rem;
    transform: translateY(-2px);
  }
}
.section-faq__item-icon-border {
  width: 46px;
  height: 46px;
  border: 2px solid #25A7B2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.section-faq__item-icon-border::before {
  content: "A";
  font-size: 2.8rem;
  font-weight: 400;
  color: #25A7B2;
  line-height: 1;
  display: block;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-faq__item-icon-border {
    width: 50px;
    height: 50px;
  }
  .section-faq__item-icon-border::before {
    font-size: 3rem;
  }
}
.section-faq__item-answer-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .section-faq__item-answer-icon {
    width: 50px;
    height: 50px;
  }
}
.section-faq__item-answer-text {
  flex: 1;
}
.section-faq__item-question {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  flex: 1;
}
.section-faq__item-answer {
  padding: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  display: none;
}
.section-faq__item-answer.is-open {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.section-cta {
  background-color: #FFFFFF;
  padding: 64px 0;
}
.section-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .section-cta__inner {
    flex-direction: row;
    justify-content: center;
    gap: 64px;
  }
}
.section-cta__product {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-cta__product {
    text-align: left;
  }
}
.section-cta__subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  margin-bottom: 8px;
  line-height: 1.733;
}
.section-cta__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #02526A;
  margin-bottom: 8px;
  line-height: 1.448;
}
.section-cta__description {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #333333;
  line-height: 1.733;
}
.section-cta__btn {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .section-cta__btn {
    justify-content: flex-end;
  }
}

.section-clinics {
  background-color: #FFFFFF;
  padding: 64px 0;
  text-align: center;
}
.section-clinics__title {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333333;
  margin-bottom: 32px;
}
.section-clinics__title-en {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #25A7B2;
  line-height: 1.7;
  margin-bottom: 8px;
}
.section-clinics__banner {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.section-clinics__banner-image {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1024px) {
  .section-clinics__banner-image {
    width: 400px;
    max-width: 400px;
  }
}

.section-contact {
  padding: 64px 0;
  padding-top: calc(60px + 64px);
}
.section-contact__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.section-contact__info {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.section-contact__description {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.733;
}
.section-contact__tel {
  text-align: center;
  margin-bottom: 16px;
}
.section-contact__tel-number {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #02526A;
  line-height: 1;
}
@media (min-width: 1024px) {
  .section-contact__tel-number {
    font-size: 4rem;
  }
}
.section-contact__hours {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  text-align: center;
}
.section-contact__form-wrap {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-sizing: border-box;
}
.section-contact__form {
  width: 100%;
  box-sizing: border-box;
}
.section-contact__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  box-sizing: border-box;
  display: block;
}
.section-contact__table tbody {
  display: block;
  width: 100%;
}
@media (min-width: 1024px) {
  .section-contact__table {
    display: table;
  }
  .section-contact__table tbody {
    display: table-row-group;
  }
}
.section-contact__table-row {
  border-bottom: 1px solid #C1C1C1;
  display: block;
  width: 100%;
  margin-bottom: 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .section-contact__table-row {
    display: table-row;
    width: auto;
    margin-bottom: 0;
  }
}
.section-contact__table-header {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  padding: 16px;
  text-align: left;
  background-color: #EBF1F5;
  line-height: 1.5;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .section-contact__table-header {
    display: table-cell;
    width: 30%;
    padding: 16px 32px;
    line-height: 2.8;
    vertical-align: top;
  }
}
.section-contact__table-data {
  padding: 16px 0;
  padding-top: 8px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .section-contact__table-data {
    display: table-cell;
    width: 70%;
    padding: 16px 32px;
    vertical-align: top;
  }
}
.section-contact__required {
  display: inline-block;
  padding: 3px 10px;
  margin-left: 5px;
  font-size: 1.3rem;
  line-height: 1;
  color: #FFFFFF;
  background-color: #02526A;
  border-radius: 2px;
}
.section-contact__input, .section-contact__textarea {
  width: 100%;
  padding: 9px 10px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  box-sizing: border-box;
}
.section-contact__input:focus, .section-contact__textarea:focus {
  outline: none;
  border-color: #02526A;
}
.section-contact__textarea {
  height: 15em;
  resize: vertical;
}
.section-contact__approval {
  text-align: center;
  margin: 64px 0;
}
.section-contact__checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  cursor: pointer;
}
.section-contact__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.section-contact__approval-text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.733;
  margin-top: 16px;
  text-align: center;
}
.section-contact__link {
  color: #02526A;
  text-decoration: underline;
}
.section-contact__link:hover {
  text-decoration: none;
}
.section-contact__approval-note {
  font-size: 1.3rem;
  color: #333333;
}
.section-contact__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
}
.section-contact__submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .section-contact__submit-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}
.section-contact__submit-item {
  width: 100%;
  max-width: 240px;
}
@media (min-width: 1024px) {
  .section-contact__submit-item {
    width: auto;
  }
}
.section-contact__submit-btn, .section-contact__btn-back {
  display: inline-block;
  width: 100%;
  max-width: 240px;
  padding: 13px 24px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #02526A;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}
.section-contact__submit-btn:hover, .section-contact__btn-back:hover {
  background-color: #25A7B2;
}
.section-contact__btn-back {
  background-color: #D9D9D9;
}
.section-contact__btn-back:hover {
  background-color: #C1C1C1;
}
.section-contact__error-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #02526A;
  margin-bottom: 32px;
  text-align: center;
}
.section-contact__error-message {
  font-size: 1.5rem;
  font-weight: 400;
  color: #d32f2f;
  background-color: #ffebee;
  padding: 16px;
  border-left: 4px solid #d32f2f;
  margin-bottom: 16px;
  border-radius: 4px;
}
.section-contact__confirm-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.733;
  margin-bottom: 32px;
  text-align: center;
}

.section-privacy {
  padding: 64px 0;
  padding-top: calc(60px + 64px);
}
.section-privacy__inner {
  max-width: 800px;
  margin: 0 auto;
}
.section-privacy__intro {
  margin-bottom: 64px;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-privacy__intro {
    text-align: left;
  }
}
.section-privacy__intro-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #333333;
  line-height: 1.448;
  margin-bottom: 32px;
}
.section-privacy__intro-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.733;
}
.section-privacy__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.section-privacy__item {
  padding-bottom: 64px;
  border-bottom: 1px solid #C1C1C1;
}
.section-privacy__item:last-child {
  border-bottom: none;
}
.section-privacy__item-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}
.section-privacy__item-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.733;
  margin-bottom: 16px;
}
.section-privacy__list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.section-privacy__list-item {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.733;
  margin-bottom: 8px;
  padding-left: 16px;
}
.section-privacy__contact {
  margin-top: 32px;
}
.section-privacy__contact-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
}
.section-privacy__contact-address {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.733;
  margin-bottom: 16px;
  font-style: normal;
}
.section-privacy__contact-tel {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
}
.section-privacy__tel-number {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #02526A;
}
@media (min-width: 1024px) {
  .section-privacy__br-sp {
    display: none;
  }
}

.section-thanks {
  padding: 64px 0;
  padding-top: calc(60px + 64px);
}
.section-thanks__inner {
  text-align: center;
}
.section-thanks__info {
  max-width: 600px;
  margin: 0 auto;
}
.section-thanks__message {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.733;
  margin-bottom: 32px;
}
.section-thanks__tel {
  text-align: center;
  margin-bottom: 16px;
}
.section-thanks__tel-number {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #02526A;
  line-height: 1;
}
@media (min-width: 1024px) {
  .section-thanks__tel-number {
    font-size: 4rem;
  }
}
.section-thanks__hours {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
}

.footer {
  background-color: #FFFFFF;
  padding: 64px 0;
  border-top: 1px solid #C1C1C1;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
}
.footer__logo-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.footer__logo-icon {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}
.footer__logo-text {
  display: flex;
  flex-direction: column;
}
.footer__logo-name {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #333333;
  line-height: 1.2;
  font-family: sans-serif;
}
.footer__logo-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: #02526A;
  line-height: 1.2;
}
.footer__postal-code {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
}
.footer__address {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.733;
}
.footer__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: right;
}
.footer__nav {
  display: none;
}
@media (min-width: 1024px) {
  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
  }
}
.footer__nav-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer__nav-item {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
}
.footer__nav-item:hover {
  color: #02526A;
}
.footer__copyright {
  font-size: 1.3rem;
  font-weight: 400;
  color: #333333;
}

/*# sourceMappingURL=main.css.map */
