@charset "UTF-8";

html {
  font-size: 62.5%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: "kinto-sans", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #4F545A;
  background-color: #FFFFFF;
  font-size: 1.5rem;
}

html, body {
  overscroll-behavior-y: none; /* iOS16+ でバウンス抑止 */
}
body {
  overflow-x: hidden;
}

*:focus-visible {
  outline: 2px solid #6C83A4;
}

.sp {
  display: block;
}

.tab {
  display: none;
}

.pc_none {
  display: block;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }

  .sp {
    display: none;
  }

  .tab {
    display: block;
  }
}

@media screen and (min-width: 1080px) {
  .pc {
    display: block;
  }

  .pc_none {
    display: none;
  }
}


/* ----- header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem 0;
  width: 100%;
  z-index: 10001;
  transition: background-color 0.3s ease-in;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  margin: 0 auto;
}

/* ロゴ */
.header__logo {
  display: flex;
  align-items: center;
  z-index: 10002;
  width: 4rem;
  position: relative;
}

.header__logo img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease-in;
}

.header__logo .logo-black {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

/* アクティブ時のロゴ変更 */
.header--active{
  background-color: color-mix(in srgb, #FFFFFF 30%, transparent);
}

.header--active .header__logo .logo-white {
  opacity: 0;
}

.header--active .header__logo .logo-black {
  opacity: 1;
}

.header__nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 3rem;
}

.header__nav-link {
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 500;
  transition: color 0.3s ease-in;
}

@media (any-hover: hover) {
  .header__nav-link:hover {
    color: #28B2CC;
  }
}

.header__nav-link:focus-visible {
  color: #28B2CC;
}

/* アクティブ時のヘッダーナビゲーションリンクの色変更 */
.header--active .header__nav-link {
  color: #3798D3;
}

@media (any-hover: hover) {
  .header--active .header__nav-link:hover {
    color: #6C83A4;
  }
}

.header--active .header__nav-link:focus-visible {
  color: #6C83A4;
}

/* ハンバーガーメニュー（スマホ用） */
.header__hamburger {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid #6C83A4;
  border-radius: 100vmax;
  cursor: pointer;
  z-index: 10000;
}

.header__hamburger-line {
  width: 2.4rem;
  height: 1px;
  background-color: #6C83A4;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* お問い合わせボタン */
.header__contact {
  z-index: 10002;
  font-family: "Noto Serif JP", serif;
}

.header__contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #28B2CC;
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 0.7rem;
  transition: background-color 0.3s ease;
  min-width: 12rem;
  gap: 0.3rem;
}

@media (any-hover: hover) {
  .header__contact-btn:hover {
    background-color: #00BCD4;
  }
}

.header__contact-btn:focus-visible {
  background-color: #00BCD4;
}

.header__contact-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.header__contact-tel {
  font-family: "Tai Heritage Pro", serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
}

@media screen and (min-width: 768px) {
  .header {
    padding: 1.5rem 0;
  }

  .header__inner {
    padding: 0 3rem;
  }

  .header__logo {
    width: 8.3rem;
  }
  
  .header__nav {
    display: block;
  }
  
  .header__hamburger {
    display: none;
  }

  .header__nav-wrapper {
    gap: 3rem;
  }

  .header__contact-btn {
    padding: 1rem 2rem;
  }

  .header__contact-text {
    font-size: 1.3rem;
  }
  .header__contact-tel {
    font-size: 2rem;
  }

  /* PC表示時はモバイルメニューを非表示にする */
  .mobile-menu {
    display: none;
  }
}

/* ----- mobile menu ----- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #CBE6FF 0%, #EFFEFF 100%);
}

.mobile-menu__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100lvh;
}

.mobile-menu__logo {
  width: 33%;
}

.mobile-menu__logo-text {
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-align: center;
}

.mobile-menu__nav {
  margin-top: 7rem;
  width: 100%;
}

.mobile-menu__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-menu__nav-link {
  display: inline-block;
  color: #6C83A4;
  text-decoration: none;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  text-align: center;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .mobile-menu__nav-link:hover {
    color: #28B2CC;
  }
}

.mobile-menu__nav-link:focus-visible {
  color: #28B2CC;
}

.mobile-menu__buttons {
  margin-top: 5.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 22rem;
}

.mobile-menu__contact-btn {
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #28B2CC;
  color: #FFFFFF;
  text-decoration: none;
  padding: 1rem 2.1rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  font-family: "Noto Serif JP", serif;
}

@media (any-hover: hover) {
  .mobile-menu__contact-btn:hover {
    background-color: #00BCD4;
  }
}

.mobile-menu__contact-btn:focus-visible {
  background-color: #00BCD4;
}

.mobile-menu__contact-text {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.mobile-menu__contact-tel {
  font-family: "Tai Heritage Pro", serif;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
}


.mobile-menu__cartridge-btn svg {
  flex-shrink: 0;
}

.mobile-menu__cartridge-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

.mobile-menu__cartridge-btn__secondary {
  font-size: 1.3rem;
  background-color: #6C83A4;
  padding: 1.2rem 0.5rem;
  flex-direction: row;
  font-family: "kinto-sans", sans-serif;
}

@media (any-hover: hover) {
  .mobile-menu__cartridge-btn:hover {
    background-color: #5A6B6F;
  }
}

.mobile-menu__cartridge-btn:focus-visible {
  background-color: #5A6B6F;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(0.6rem) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: translateY(-0.6rem) rotate(-45deg);
}

.header__hamburger.is-active {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ボディのスクロール制御 */
.body-menu-open {
  overflow: hidden;
}

/* モバイルメニュー開閉時のヘッダー要素の表示制御 */
.body-menu-open .header__logo,
.body-menu-open .header__contact {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__cartridge-btn {
  position: fixed;
  bottom: 8rem;
  right: 0;
  z-index: 500;
  width: 4.5rem;
  transition: filter 0.2s ease-in;
}

@media (any-hover: hover) {
  .header__cartridge-btn:hover {
    filter: brightness(1.1);
  }
}

.header__cartridge-btn:focus-visible {
  filter: brightness(1.1);
}

@media screen and (min-width: 768px) {
  .header__cartridge-btn {
    width: 5.5rem;
  }
}

@media screen and (min-width: 1080px) {
  .header__cartridge-btn {
    width: 6.5rem;
  }
}


.scene-changer {
  height: 100lvh;
}

/* ---------- footer ---------- */
.footer {
  background-color: #FFFFFF;
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
}

.footer_logo {
  width: 6rem;
  margin-inline: auto;
}

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

.footer_nav-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
}

.footer_nav-link {
  color: #6C83A4;
}

.footer_nav-link_privacy {
  display: block;
  margin-top: 3rem;
  font-size: 1.2rem;
  color: #5A6B6F;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}

.footer_copyright {
  margin-top: 5rem;
  font-size: 1rem;
  color: #6C83A4;
  text-align: center;
  font-family: "Tai Heritage Pro", serif;
}

@media screen and (min-width: 768px) {
  .footer {
    background-color: #FFFFFF;
    padding: 12rem 8rem;
  }

  .footer_logo {
    width: 12.4rem;
  }

  .footer_nav-list {
    flex-direction: row;
    gap: 5rem;
  }

  .footer_nav-link_privacy {
    margin-top: 6rem;
  }

  .footer_copyright {
    margin-top: 10rem;
  }
}

/* ---------- module ---------- */
/* scene-changer用のオーバーレイ */
.scene-changer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  pointer-events: none;
}

.scene-changer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.section_hgroup {
  position: relative;
  text-align: center;
}

.section-title {
  font-family: "Tai Heritage Pro", serif;
  font-size: clamp(5rem, 15.4vw, 9rem);
  color: #FFFFFF;
  line-height: 1;
  width: 100%;
  text-transform: uppercase;
}

.section-title--blue .section-title{
  color: #EFFCFE;
}

.section_subtitle {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: 1rem;
  font-size: clamp(1.5rem, 4.5vw, 2.7rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .section-title {
    font-size: clamp(9rem, 10.4vw, 18rem);
  }

  .section_subtitle {
    font-size: clamp(2.7rem, 3vw, 5.4rem);
  }
}

.subpage_kv {
  position: relative;
  z-index: 1;
}

.subpage_kv_inner {
  padding-top: 15.2rem;
}

.subpage_kv-title {
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.subpage_kv-title-en {
  font-family: "Tai Heritage Pro", serif;
  font-size: clamp(4rem, 15.3vw, 7rem);
  display: block;
  text-transform: uppercase;
  color: #FFFFFF;
  z-index: -1;
}

.subpage_kv-title-ja {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  display: block;
  font-size: 2rem;
  font-size: clamp(1.8rem, 5.1vw, 4rem);
  color: #4F545A;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .subpage_kv_inner {
    padding-top: 14rem;
  }

  .subpage_kv-title-en {
    font-size: clamp(7rem, 10.4vw, 16rem);
  }

  .subpage_kv-title-ja {
    font-size: clamp(4rem, 3.47vw, 6rem);
  }
}

.subpage_kv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background-image: linear-gradient(to top, rgba(227, 244, 249, 0) 0%, #E8F4FC 34%, #E3F4F9 62%, #CBE6FF 100%);
  z-index: -1;
}

.subpage_kv__sm::before {
  min-height: 60vh;
  height: 100%;
}

.subpage_section-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
  margin-left: 3rem;
}

.subpage_section-title-en {
  font-family: "Tai Heritage Pro", serif;
  font-size: 2rem;
  color: #B2B8BF;
}

.subpage_section-title-ja {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .subpage_section-title {
    margin-left: 5rem;
  }

  .subpage_section-title-en {
    font-size: 2.4rem;
  }

  .subpage_section-title-ja {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1080px) {
  .subpage_section-title {
    margin-left: 12rem;
  }

  .subpage_section-title-en {
    font-size: 3rem;
  }

  .subpage_section-title-ja {
    font-size: 4rem;
  }
}

/* ---------- utility ---------- */

/* ---------- top ---------- */
.top_kv {
  height: 100dvh;
  background-image:
    linear-gradient(to top, color-mix(in srgb, #3798D3 0%, transparent 100%) 60%, color-mix(in srgb, #6E99B2 40%, transparent 60%) 100%),
    url(../img/kv_image.webp);
  background-size: cover;
  background-position: 75% 50%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.top_kv_copy_wrapper {
  position: absolute;
  width: 100%;
  top: 11.6rem;
  left: 50%;
  translate: -50% 0;
}

.top_kv-copy {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1;
  color: #FFFFFF;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.top_kv-logo {
  margin-top: 2rem;
  width: 11rem;
  margin-inline: auto;
}

.top_kv_images {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  width: 72%;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.top_kv svg {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .top_kv {
    background-image:
      linear-gradient(to left, color-mix(in srgb, #3798D3 0%, transparent 100%) 40%, color-mix(in srgb, #6E99B2 50%, transparent 50%) 100%),
      url(../img/kv_image.webp);
  }

  .top_kv_copy_wrapper {
    width: 50rem;
    top: 50%;
    left: 30.8%;
    translate: -50% -50%;
  }

  .top_kv-copy {
    font-size: 3.2rem;
  }

  .top_kv-logo {
    margin-top: 5rem;
    width: 25rem;
  }

  .top_kv_images {
    left: 7.8rem;
    width: 39%;
    max-width: 680px;
  }
}

@media screen and (min-width: 1200px) {
  .top_kv {
    background-size: 105%;
    background-position: 50% 65%;
    background-repeat: no-repeat;
  }
}

/* ---------- top_about ---------- */
.top_about {
  position: relative;
  z-index: 2;
}

.top_about_content-upper {
  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #E8F4FC 19%,
    #DDF2FF 41%,
    #F9F9F9 75%,
    #CBE6FF 100%
  );
  background-size: 400% 400%;
  animation: gradientWave 20s ease-in-out infinite;
  height: 100lvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.top_about_copy {
  font-size: clamp(1.8rem, 51vw, 2.6rem);
  line-height: 2.3;
  letter-spacing: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #C9C9C9;
}

.top_about_copy .char {
  color: #C9C9C9;
  transition: color 0.3s ease;
}

.top_about_water-image {
  width: 62%;
}

.top_about_content-lower {
  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #E8F4FC 19%,
    #DDF2FF 41%,
    #F9F9F9 75%,
    #CBE6FF 100%
  );
  background-size: 400% 400%;
  animation: gradientWave 20s ease-in-out infinite;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.top_about_content-lower_slide {
  display: flex;
  align-items: center;
  width: max-content; /* 中身幅にフィット */
  animation: marquee-left 30s linear infinite; /* 右→左へ */
  height: 18rem;
}

.top_about_content-lower_slide img {
  aspect-ratio: 467 / 350;
  display: inline-block;
  height: 100%;
  width: auto;
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.top_about_content-lower_desc {
  margin-top: 3rem;
  padding: 0 2rem;
  font-weight: 500;
  width: fit-content;
  margin-inline: auto;
}

.gradient-text {
  background: linear-gradient(0deg, #3C79CC 0%, #6DA4EE 25%, #28B2CC 50%, #6CCFE2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text_left {
  background: linear-gradient(-90deg, #3C79CC 0%, #6DA4EE 25%, #28B2CC 50%, #6CCFE2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text_bottom {
  background: linear-gradient(180deg, #3C79CC 0%, #6DA4EE 25%, #28B2CC 50%, #6CCFE2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media screen and (min-width: 768px) {
  .top_about_content-upper {
    flex-direction: row;
    gap: 5rem;
  }

  .top_about_copy {
    font-size: clamp(2.4rem, 2.5vw, 3.8rem);
  }

  .top_about_water-image {
    width: 50%;
    max-width: 50rem;
  }

  .top_about_content-lower_slide {
    animation-duration: 40s;
    height: 35rem;
  }
}

@media screen and (min-width: 1080px) {
  .top_about_content-upper {
    flex-direction: row;
    gap: 10rem;
  }
}


/* ---------- top_recommend ---------- */
.top_recommend {
  position: relative;
  padding: 4rem 0;
  min-height: 100lvh;
  top: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #E8F4FC 19%,
    #DDF2FF 41%,
    #F9F9F9 75%,
    #CBE6FF 100%
  );
  background-size: 400% 400%;
  animation: gradientWave 20s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
}

/* sticky解除時のスタイル */
.top_recommend.is-sticky-disabled {
  position: relative;
  top: auto;
}

.top_recommend::after {
  content: "";
  position: absolute;
  background-image: url(../img/micra_logo-text_white-vertical.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 15.1%;
  aspect-ratio: 139 / 777;
}

.top_recommend_inner {
  width: 100%;
  padding: 0 1.6rem;
}

.top_recommend-head {
  text-align: center;
  font-size: 1.8rem;
  color: #6C83A4;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1;
  margin-top: 2.5rem;
}

.top_recommend-head-block {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.2rem;
  padding: 0.5rem 4rem;
  background: linear-gradient(
    to left,
    #3C79CC 0%,
    #6DA4EE 22%,
    #28B2CC 63%,
    #6CCFE2 100%
  );
  border-radius: 100vmax;
  color: #FFFFFF;
}

.emphasize-dot {
  position: relative;
}

.emphasize-dot::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  translate: -50% 0;
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 100vmax;
  background-color: #6C83A4;
  opacity: 0;
  transform: translate(-50%, 0) scale(0);
}

/* アニメーション用のクラス */
.emphasize-dot.animate::before {
  animation: dotAppear 0.3s ease-out forwards;
}

/* 各ドットに異なる遅延を設定 */
.emphasize-dot.animate:nth-child(1)::before {
  animation-delay: 0s;
}

.emphasize-dot.animate:nth-child(2)::before {
  animation-delay: 0.2s;
}

.emphasize-dot.animate:nth-child(3)::before {
  animation-delay: 0.4s;
}

.emphasize-dot.animate:nth-child(4)::before {
  animation-delay: 0.6s;
}

.emphasize-dot.animate:nth-child(5)::before {
  animation-delay: 0.8s;
}

@keyframes dotAppear {
  from {
    opacity: 0;
    transform: translate(-50%, 0) scale(0);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

.top_recommend-content {
  width: 71%;
  max-width: 26rem;
  margin-top: 6rem;
  margin-inline: auto;
  position: relative;
}

.top_recommend-worries-item {
  width: 12rem;
  aspect-ratio: 1 / 1;
  border-radius: 100vmax;
  background-color: #FFFFFF;
  box-shadow: 0 0 1.2rem color-mix(in srgb, #6C83A4 50%, transparent);
  font-size: 1.1rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6C83A4;
  position: absolute;
}

.top_recommend-worries-item:nth-child(1) {
  top: -10%;
  right: 70%;
  animation: float1 6s ease-in-out infinite;
}
.top_recommend-worries-item:nth-child(2) {
  left: 65%;
  top: -5%;
  animation: float2 8s ease-in-out infinite 1.5s;
}
.top_recommend-worries-item:nth-child(3) {
  bottom: -25%;
  right: 65%;
  animation: float3 7s ease-in-out infinite 3s;
}
.top_recommend-worries-item:nth-child(4) {
  bottom: -35%;
  left: 60%;
  animation: float4 9s ease-in-out infinite 0.5s;
}

@media screen and (min-width: 768px) {
  .top_recommend_inner {
    padding: 0 3.2rem;
  }

  .top_recommend::after {
    width: 10%;
    max-width: 140px;
  }

  .top_recommend-head {
    margin-top: 3.5rem;
    font-size: clamp(3rem, 3.4vw, 5rem);
  }
  .top_recommend-head-block {
    font-size: 1.6rem;
  }

  .top_recommend-content {
    margin-top: 9.5rem;
    max-width: 46.3rem;
  }
  .top_recommend-worries-item {
    width: clamp(11.5rem, 24.8vw, 19.1rem);
    font-size: 1.8rem;
  }

  .top_recommend-worries-item:nth-child(1) {
    top: -10%;
    right: 75%;
    animation: float1 6s ease-in-out infinite;
  }
  .top_recommend-worries-item:nth-child(2) {
    left: 74%;
    top: -5%;
    animation: float2 8s ease-in-out infinite 1.5s;
  }
  .top_recommend-worries-item:nth-child(3) {
    bottom: 0%;
    right: 80%;
    animation: float3 7s ease-in-out infinite 3s;
  }
  .top_recommend-worries-item:nth-child(4) {
    bottom: -10%;
    left: 68%;
    animation: float4 9s ease-in-out infinite 0.5s;
  }

  .emphasize-dot::before {
    width: 8px;
    height: 8px;
  }
}

/* ---------- top_reason ---------- */
.top_reason {
  min-height: 100lvh;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #E8F4FC 19%,
    #DDF2FF 41%,
    #F9F9F9 75%,
    #CBE6FF 100%
  );
  background-size: 400% 400%;
  animation: gradientWave 20s ease-in-out infinite;
  overflow: hidden;
}

.top_reason svg {
  padding-top: 10rem;
  position: relative;
  translate: 0 1px;
}

.top_reason_cotent {
  height: 100%;
  background: linear-gradient(to left, #f1fdff, #CCE3EF);
  padding: 6rem 0 12rem;
  position: relative;
}

.top_reason_cotent::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  background: linear-gradient(to left, #f1fdff, #CCE3EF);
  width: 100%;
  height: 10px;
}

.top_reason_cotent-head {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  font-family: "Noto Serif JP", serif;
  position: relative;
  margin-top: -10rem;
}


.top_reason_cotent-head-text {
  line-height: 1;
  font-size: 1.8rem;
}

.top_reason_cotent-head-text_sm {
  font-size: 1.3rem;
}

.top_reason_cotent-head img {
  width: 13rem;
}

.top_reason_item-num {
  font-size: 1.6rem;
  background: linear-gradient(0deg, #3C79CC 0%, #6DA4EE 25%, #28B2CC 50%, #6CCFE2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* スクロールコンテナ */
.top_reason_scroll-container {
  position: relative;
  margin-top: 5rem;
  padding-bottom: 3rem;
}

.top_reason_list {
  overflow-x: auto;
  display: flex;
  gap: 3rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-top: 4.8rem;
  padding-inline: 6rem;
}

/* Webkit系ブラウザでスクロールバーを完全に非表示 */
.top_reason_list::-webkit-scrollbar {
  display: none;
}

/* カスタムスクロールバー */
.custom-scrollbar {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 152px;
  height: 2px;
  z-index: 10;
}

.custom-scrollbar-track {
  width: 100%;
  height: 100%;
  background: #CFCFCF;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.custom-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #3C79CC 0%, #28B2CC 50%, #6DA4EE 100%);
  border-radius: 1px;
  cursor: pointer;
}

@media (any-hover: hover) {
  .custom-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #3C79CC 0%, #28B2CC 50%, #6DA4EE 100%);
    box-shadow: 0 0 8px rgba(60, 121, 204, 0.3);
  }
}

.custom-scrollbar-thumb:focus-visible {
  background: linear-gradient(90deg, #3C79CC 0%, #28B2CC 50%, #6DA4EE 100%);
  box-shadow: 0 0 8px rgba(60, 121, 204, 0.3);
}

.top_reason_item {
  padding: 3rem 2rem;
  background-color: #FFFFFF;
  border-radius: 1rem;
  width: 27rem;
  position: relative;
  flex-shrink: 0;
}

.top_reason_item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.top_reason_item:nth-child(1)::before {
  width: 10rem;
  aspect-ratio: 100 / 95;
  background-image: url(../img/micra_reason-icon.svg);
  translate: -2rem -3rem;
}
.top_reason_item:nth-child(2)::before {
  width: 8.9rem;
  aspect-ratio: 89 / 110;
  background-image: url(../img/micra_reason-icon02.svg);
  translate: -1.8rem -4.4rem;
}
.top_reason_item:nth-child(3)::before {
  width: 6.8rem;
  aspect-ratio: 68 / 115;
  background-image: url(../img/micra_reason-icon03.svg);
  translate: -2.7rem -4.4rem;
}
.top_reason_item:nth-child(4)::before {
  width: 6.8rem;
  aspect-ratio: 68 / 120;
  background-image: url(../img/micra_reason-icon04.svg);
  translate: -2.8rem -5.3rem;
}

.top_reason_item-num {
  font-size: 2.4rem;
  font-family: "Tai Heritage Pro", serif;
  line-height: 1;
}

.top_reason_item-num_lg {
  font-size: 2.8rem;
  margin-left: -0.4rem;
}

.top_reason_head {
  margin-top: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.top_reason_desc {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.top_reason_desc-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top_reason_mark {
  margin-top: 3rem;
  padding: 0 4rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}

.top_reason_mark_image {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 3.2rem;
  flex-shrink: 0;
}

.top_reason_mark-desc {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0;
  flex-shrink: 1;
  max-width: 68.8rem;
}


@media screen and (min-width: 768px) {
  .top_reason svg {
    padding-top: 4rem;
  }

  .top_reason_cotent-head {
    top: -6rem;
  }

  .top_reason_cotent-head img {
    width: 20rem;
  }
  .top_reason_cotent-head-text {
    font-size: 3.5rem;
  }

  .top_reason_cotent-head-text_sm {
    font-size: 2.5rem;
  }

  .top_reason_cotent-head::after {
    left: calc(50% + 16rem);
    bottom: 100%;
    width: 8.4rem;
  }

  .top_reason_list {
    gap: 5rem;
  }

  .top_reason_item {
    width: 40rem;
  }

  .top_reason_desc {
    font-size: 1.6rem;
  }

  .custom-scrollbar {
    width: 42rem;
    height: 3px;
  }
  
  .top_reason_mark {
    margin-top: 5rem;
  }

  .top_reason_mark_image {
    flex-direction: row;
    gap: 1rem;
    width: 13rem;
  }

  .top_reason_mark_image img{
    width: calc(50% - 0.5rem);
  }

  .top_reason_mark-desc {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1080px) {
  .top_reason svg {
    padding-top: 0rem;
  }

  .top_reason_cotent-head {
    top: -7rem;
  }

  .top_reason_cotent-head img {
    width: 37.4rem;
  }
  .top_reason_cotent-head-text {
    font-size: 5rem;
  }
  
  .top_reason_cotent-head-text_sm {
    font-size: 4rem;
  }

  .top_reason_cotent-head::after {
    left: calc(50% + 28rem);
    bottom: 85%;
    width: 8.4rem;
  }
}

@media screen and (min-width: 1820px) {
  .top_reason_list {
    justify-content: center;
  }
}

/* ---------- quality ---------- */
.top_quality {
  position: relative;
  background: linear-gradient(to left, #f1fdff, #CCE3EF);
  padding: 10rem 3rem;
  z-index: 2;
}

.top_quality_content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 7rem;
}

.top_quality_list {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 40rem;
  margin-inline: auto;
}

.top_quality_content_item {
  grid-column: 1;
  grid-row: 1;
  padding: 2rem 2rem 3rem 2rem;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  box-shadow: 0 0 1rem color-mix(in srgb, #608FCF 40%, transparent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem) scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease;
  pointer-events: none;
}

.top_quality_content_item--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.top_quality_content_num {
  font-size: 3rem;
  font-family: "Tai Heritage Pro", serif;
  line-height: 1;
  background: linear-gradient(to bottom, #3C79CC 0%, #6DA4EE 25%, #28B2CC 50%, #6CCFE2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.top_quality_content_item--active .top_quality_content_num {
  opacity: 1;
}

.top_quality_content_head {
  text-align: center;
  color: #6C83A4;
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.top_quality_content_item--active .top_quality_content_head {
  opacity: 1;
  transform: translateY(0);
}

.top_quality_content_item_image {
  margin-top: 2rem;
  width: 100%;
  height: 15rem;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(1rem) scale(0.95);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.top_quality_content_item--active .top_quality_content_item_image {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.top_quality_content_item_image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.top_quality_content_desc {
  margin-top: 2rem;
  line-height: 1.3;
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
  width: fit-content;
  margin-inline: auto;
}

.top_quality_content_item--active .top_quality_content_desc {
  opacity: 1;
  transform: translateY(0);
}

.top_qualuty_head-list_wrapper {
  max-width: 40rem;
  margin-inline: auto;
}

.top_qualuty_head-list {
  border-radius: 1.5rem;
  padding: 0;
  list-style: none;
}

.top_qualuty_head-item {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  border-bottom: 1px solid #B2B8BF;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease, padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-inline: auto;
}

@media (any-hover: hover) {
  .top_qualuty_head-item:hover {
    background-color: rgba(96, 143, 207, 0.05);
  }
}

.top_qualuty_head-item:focus-visible {
  background-color: rgba(96, 143, 207, 0.05);
}

.top_qualuty_head-item--active {
  padding: 1rem 2rem;
}

.top_qualuty_head-item:first-child {
  border-top: 1px solid #B2B8BF;
}

.top_qualuty_head-item_num {
  font-size: 2rem;
  font-family: "Tai Heritage Pro", serif;
  line-height: 1;
  color: #B2B8BF;
  margin-right: 2rem;
  min-width: 3.1rem;
  text-align: right;
  transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, background 0.3s ease;
}

.top_qualuty_head-item--active .top_qualuty_head-item_num {
  font-size: 3rem;
  background: linear-gradient(to bottom, #3C79CC 0%, #6DA4EE 25%, #28B2CC 50%, #6CCFE2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.top_qualuty_head-item_text {
  flex: 1;
  font-size: 1.4rem;
  color: #4F545A;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.3s ease;
}

.top_qualuty_head-item--active .top_qualuty_head-item_text {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

.top_qualuty_head-item_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  color: #D0D0D0;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.3s ease;
}

.top_qualuty_head-item_arrow svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top_qualuty_head-item_arrow--button {
  transform: scale(1);
}

.top_qualuty_head-item_arrow--button svg {
  transform: scale(1.1);
}

.top_qualuty_head-item_arrow svg {
  width: 20px;
  height: 5px;
}

.top_qualuty_head-item_arrow--button {
  border-radius: 50%;
  background: linear-gradient(to bottom, #3C79CC 0%, #6DA4EE 25%, #28B2CC 50%, #6CCFE2 100%);
  color: #FFFFFF;
}

.top_quality-cartridge-desc {
  padding: 1rem;
  font-size: 1.4rem;
  color: #6C83A4;
  margin-top: 5rem;
  line-height: 1.3;
  border: 1px solid currentColor;
  border-radius: 0.5rem;
}

@media screen and (min-width: 768px) {
  .top_quality_content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
  }

  .top_quality_list {
    width: 50%;
    margin-inline: 0;
  }

  .top_quality_content_num {
    font-size: 4rem;
  }

  .top_quality_content_head {
    font-size: 3.2rem;
  }

  .top_quality_content_item_image {
    height: 25rem;
  }

  .top_quality_content_desc {
    margin-top: 3rem;
    font-size: 1.6rem;
  }

  .top_qualuty_head-list_wrapper {
    max-width: 52rem;
    margin-inline: 0;
  }

  .top_qualuty_head-item_num {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1080px) {
  .top_quality_content {
    gap: 10rem;
  }

  .top_qualuty_head-item {
    padding: 1rem 2rem;
  }

  .top_qualuty_head-item--active {
    padding: 2rem;
  }

  .top_qualuty_head-item--active .top_qualuty_head-item_num {
    font-size: 4rem;
  }

  .top_qualuty_head-item_text {
    font-size: 2rem;
  }

  .top_qualuty_head-item--active .top_qualuty_head-item_text {
    font-size: 2.4rem;
  }
}

/* ---------- top_review ---------- */
.top_review {
  position: relative;
  z-index: 2;
  padding: 10rem 3rem;
  background-color: #FFFFFF;
}

.top_review_inner {
  max-width: 126rem;
  margin: 0 auto;
}

.top_review_list {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 500px;
  margin-inline: auto;
}

.top_review_item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.top_review_item-bubble {
  border-radius: 1.2rem;
  padding: 2.4rem;
  border: 1px solid currentColor;
  border-radius: 2rem;
}

.top_review_item-title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  font-family: "Noto Serif JP", serif;
  color: #6C83A4;
}

.top_review_item-text {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0em;
}

.top_review_item-text_emphasis {
  font-weight: bold;
  color: #6C83A4;
}

.top_review_item-profile {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top_review_item-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}

.top_review_item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top_review_item-demo {
  font-size: 1.4rem;
  color: #6C83A4;
  font-weight: bold;
}

.top_review_disclaimer {
  margin-top: 5rem;
  text-align: right;
  font-size: 1.2rem;
  color: #B2B8BF;
}

.top_review_button-wrapper {
  margin-top: 3rem;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .top_review {
    padding: 10rem 4rem;
  }

  .top_review_item-bubble {
    padding: 3rem;
  }

  .top_review_item-title {
    font-size: 1.8rem;
  }

  .top_review_item-text {
    font-size: 1.6rem;
  }

  .top_review_item-icon {
    width: 6rem;
    height: 7rem;
  }

  .top_review_disclaimer {
    margin-top: 3rem;
  }

  .top_review_button-wrapper {
    margin-top: 7rem;
  }
}

@media screen and (min-width: 1080px) {
  .top_review_list {
    flex-direction: row;
    gap: 3rem;
    max-width: none;
    align-items: stretch;
  }

  .top_review_item {
    flex: 1;
  }

  .top_review_item-bubble {
    flex: 1;
  }
}

/* ---------- column ---------- */
.column {
  position: relative;
  z-index: 2;
  padding: 6rem 0 8rem;
  background: linear-gradient(to top, #DDF2FF 17%, #EEF8FF 71%, #FFFFFF 100%);
  animation: gradientWobble 8s ease-in-out infinite;
  overflow: hidden;
}

.column--subpage {
  padding-bottom: 12rem;
}

.column--subpage::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 3rem;
  right: 6.15%;
  width: 76%;
  max-width: 48rem;
  aspect-ratio: 681 / 104;
  background-image: url(../img/parts_column_bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.parts_column_inner {
  max-width: 100%;
  padding: 0 2rem;
}

.parts_column_scroll-container {
  position: relative;
  margin-top: 7rem;
  padding-bottom: 4rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.parts_column_swiper {
  overflow: visible;
  padding-bottom: 2rem;
}

.parts_column_swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.parts_column_swiper .swiper-slide {
  width: 30rem;
  flex-shrink: 0;
}

.parts_column_article {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
}

.parts_column_article-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.parts_column_article-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #FFFFFF;
}

.parts_column_article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (any-hover: hover) {
  .parts_column_article-link:hover .parts_column_article-image img {
    transform: scale(1.05);
  }
}

.parts_column_article-content {
  margin-top: 1.5rem;
}

.parts_column_article-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #6C83A4;
  line-height: 1.3;
}

.parts_column_article-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #B2B8BF;
}

.parts_column_article-date svg {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}

.parts_column_empty {
  width: 100%;
  padding: 0 2rem;
}

.parts_column_empty-text {
  margin-inline: auto;
  text-align: center;
}

/* スクロールインジケーター */
.parts_column_scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  right: 2rem;
  width: 15.2rem;
  height: 2px;
  z-index: 10;
}

.parts_column_scroll-track {
  width: 100%;
  height: 100%;
  background-color: rgba(108, 131, 164, 0.2);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.parts_column_scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #3C79CC 0%, #28B2CC 50%, #6DA4EE 100%);
  border-radius: 1px;
  width: 30%;
  transition: left 0.1s ease, width 0.1s ease;
}

.parts_column_more-wrapper {
  margin-top: 4rem;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .column {
    padding: 10rem 0 12rem;
  }

  .column--subpage {
    padding-bottom: 16rem;
  }

  .column--subpage::before {
    right: 2.7%;
    width: 46%;
    max-width: 70rem;
  }

  .parts_column_inner {
    padding: 0 4rem;
  }

  .parts_column_scroll-container {
    margin-top: 7rem;
  }

  .parts_column_swiper .swiper-slide {
    width: 32rem;
  }

  .parts_column_more-wrapper {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 1080px) {
  .column {
    padding: 12rem 0 14rem;
  }

  .column--subpage {
    padding-bottom: 27rem;
  }

  .column--subpage::before {
    right: 2.7%;
    width: 46%;
    max-width: 70rem;
    bottom: 10rem;
  }

  .parts_column_inner {
    padding: 0 6rem;
  }

  .parts_column_swiper .swiper-slide {
    width: 36rem;
  }
}

/* ---------- contact ---------- */
.contact {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  background-color: #fff;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, #DDF2FF, #d8effe);
  z-index: -1;
}

.contact--no-bg::before {
  content: none;
}

.contact_inner {
  padding: 4rem 2.4rem;
  background-image: 
  linear-gradient(color-mix(in srgb, #2F7694 60%, transparent), color-mix(in srgb, #2F7694 60%, transparent)),
  url(../img/cta_bg.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 6px;
}

.contact_hgroup {
  text-align: center;
}

.contact_title {
  font-family: "Tai Heritage Pro", serif;
  font-size: clamp(2rem, 7.2vw, 3rem);
  color: #FFFFFF;
  line-height: 1;
}

.contact_subtitle {
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 500;
  line-height: 1;
  color: #FFFFFF;
}

.contact_info {
  display: block;
  margin-top: 1.4rem;
  background-color: #FFFFFF;
  padding: 1.5rem 0.8rem;
  text-align: center;
  box-shadow: 0 0 1rem color-mix(in srgb, #0C3E5B 30%, transparent);
  transition: box-shadow 0.1s ease-in;
}

.contact_info:focus-visible {
  box-shadow: 0 0 3rem color-mix(in srgb, #0C3E5B 50%, transparent);
}

@media (any-hover: hover) {
  .contact_info:hover {
    box-shadow: 0 0 3rem color-mix(in srgb, #0C3E5B 50%, transparent);
  }
}


.contact_tel {
  font-family: "Tai Heritage Pro", serif;
  font-size: 2.8rem;
  color: #6C83A4;
  letter-spacing: 0em;
}

.contact_tel_sm {
  font-size: 1.6rem;
}

.contact_desc {
  font-size: 1.2rem;
  margin-top: 0.7rem;
  color: #6C83A4;
  font-weight: 500;
}


@media screen and (min-width: 768px) {
  .contact {
    padding: 0 4rem;
  }

  .contact_inner {
    max-width: 134rem;
    margin-inline: auto;
    padding: 8.5rem 4rem;
  }

  .contact_title {
    font-size: clamp(9rem, 10.4vw, 10rem);
  }

  .contact_subtitle {
    font-size: clamp(2.7rem, 3vw, 2.4rem);
  }

  .contact_info {
    margin-top: 5rem;
    padding: 5.2rem 1.6rem;
    max-width: 94rem;
    margin-inline: auto;
  }

  .contact_tel {
    font-size: 6rem;
  }

  .contact_tel_sm {
    font-size: 4rem;
    margin-right: 1rem;
  }

  .contact_desc {
    font-size: 1.6rem;
  }
}



/* ---------- SVG Animation ---------- */
@keyframes gradientFlow {
  0% {
    stop-color: #CAE5FF;
    stop-opacity: 1;
  }
  20% {
    stop-color: #D4EAFE;
    stop-opacity: 0.9;
  }
  40% {
    stop-color: #E8F4FF;
    stop-opacity: 0.8;
  }
  60% {
    stop-color: #F0F8FF;
    stop-opacity: 0.85;
  }
  80% {
    stop-color: #D4EAFE;
    stop-opacity: 0.95;
  }
  100% {
    stop-color: #CAE5FF;
    stop-opacity: 1;
  }
}

@keyframes gradientFlow2 {
  0% {
    stop-color: #D4EAFE;
    stop-opacity: 0.8;
  }
  20% {
    stop-color: #E8F4FF;
    stop-opacity: 0.5;
  }
  40% {
    stop-color: #F0F8FF;
    stop-opacity: 0.85;
  }
  60% {
    stop-color: #D4EAFE;
    stop-opacity: 0.95;
  }
  80% {
    stop-color: #CAE5FF;
    stop-opacity: 1;
  }
  100% {
    stop-color: #D4EAFE;
    stop-opacity: 0.8;
  }
}

/* グラデーションの水の流れアニメーション */
@keyframes gradientWave {
  0% {
    background-position: 0% 30%;
  }
  8% {
    background-position: 15% 45%;
  }
  16% {
    background-position: 35% 25%;
  }
  24% {
    background-position: 55% 60%;
  }
  32% {
    background-position: 75% 40%;
  }
  40% {
    background-position: 90% 20%;
  }
  48% {
    background-position: 100% 70%;
  }
  56% {
    background-position: 85% 50%;
  }
  64% {
    background-position: 65% 35%;
  }
  72% {
    background-position: 45% 55%;
  }
  80% {
    background-position: 25% 15%;
  }
  88% {
    background-position: 10% 65%;
  }
  96% {
    background-position: 5% 40%;
  }
  100% {
    background-position: 0% 30%;
  }
}

/* グラデーションのゆらめきアニメーション */
@keyframes gradientWobble {
  0% {
    background: linear-gradient(to top, #DDF2FF 5%, #EEF8FF 40%, #FFFFFF 100%);
  }
  25% {
    background: linear-gradient(to top, #DDF2FF 19%, #EEF8FF 53%, #FFFFFF 100%);
  }
  50% {
    background: linear-gradient(to top, #DDF2FF 17%, #EEF8FF 71%, #FFFFFF 100%);
  }
  75% {
    background: linear-gradient(to top, #DDF2FF 19%, #EEF8FF 50%, #FFFFFF 100%);
  }
  100% {
    background: linear-gradient(to top, #DDF2FF 5%, #EEF8FF 40%, #FFFFFF 100%);
  }
}

/* ---------- product ---------- */
.product_kv {
  height: 100dvh;
  background-image: linear-gradient(to top, #CBE6FF 0%, #E3F4F9 34%, #E8F4FC 62%, #E3F4F9 100%);
  background-size: 200% 200%;
  animation: productGradientWave 8s ease-in-out infinite;
}

@keyframes productGradientWave {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 10% 5%;
  }
  50% {
    background-position: 0% 10%;
  }
  75% {
    background-position: -10% 5%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.product_kv_inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product_kv-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(2rem, 5.1vw, 3rem);
  color: #6C83A4;
  text-align: center;
  line-height: 1;
}

.product_kv-title img,
.product_kv-title__logo {
  width: clamp(16.8rem, 43vw, 28rem);
  height: auto;
  display: block;
}

.product_kv-title__logo-path {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.product_kv-title__logo-path:nth-child(1) {
  animation-delay: 0.1s;
}

.product_kv-title__logo-path:nth-child(2) {
  animation-delay: 0.2s;
}

.product_kv-title__logo-path:nth-child(3) {
  animation-delay: 0.3s;
}

.product_kv-title__logo-path:nth-child(4) {
  animation-delay: 0.4s;
}

.product_kv-title__logo-path:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (min-width: 768px) {
  .product_kv-title {
    flex-direction: row;
    align-items: flex-end;
  }
}

.product-slide {
  width: 100%;
  overflow: hidden;
}

.product-slide__swiper {
  overflow: visible;
}

.product-slide__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.product-slide__swiper .swiper-slide {
  width: 24rem;
  flex-shrink: 0;
}

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

@media screen and (min-width: 768px) {
  .product-slide__swiper .swiper-slide {
    width: 46rem;
  }
}

/* ----- feature ----- */
.product_feature {
  background-color: #E3F4F9;
  padding: 10rem 0;
}

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



.product_feature-lead {
  margin-top: 5rem;
  font-size: 1.4rem;
  text-align: center;
}

.product_feature-copy {
  display: block;
  font-size: 2.8rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-top: 3rem;
  color: #6C83A4;
}

.product_feature_content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 5rem;
}

.pruduct_feature_content {
  flex: 1;
  width: 100%;
  max-width: 72rem;
  position: relative;
  padding: 0 1rem;
}

.pruduct_feature_content-slider {
  position: relative;
  padding: 2rem 0;
  width: 100%;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.pruduct_feature_content-slider {
  display: block;
  width: 100%;
  max-width: 70rem;
}

.pruduct_feature_content-slider-wrapper {
  display: flex;
  align-items: stretch;
}

.pruduct_feature_content-wrapper {
  display: flex;
  width: 100%;
  align-items: stretch;
}

.pruduct_feature_content-wrapper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.pruduct_feature_content-slide {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.pruduct_feature_content-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 1.6rem;
  padding: 3rem 2rem;
  width: 100%;
}

.pruduct_feature_content-item-heading {
  text-align: center;
  font-size: 1.7rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #6C83A4;
}

.pruduct_feature_content-item-heading-line {
  display: block;
  font-size: 1.6rem;
  color: #202020;
  font-weight: 500;
  line-height: 1.5;
}

.pruduct_feature_content-item-body {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.pruduct_feature_content-item-image {
  width: 50%;
  max-width: 100%;
}

.pruduct_feature_content-item-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pruduct_feature_content-item-text {
  font-size: 1.4rem;
  line-height: 1.7;
}

.pruduct_feature_content-item-text p:not(:first-child) {
  margin-top: 1rem;
}

.pruduct_feature_content-pagination {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
}

.pruduct_feature_content-pagination-current {
  font-weight: 500;
}

.pruduct_feature_content-pagination-separator {
  margin: 0 0.2rem;
}

.pruduct_feature_content-pagination-total {
  font-weight: 400;
}

.pruduct_feature_content-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 0;
  z-index: 10;
}

.pruduct_feature_content-nav-button {
  width: 7px;
  height: 15px;
}

.pruduct_feature_content-nav-button svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pruduct_feature_content-nav-button--prev {
  left: 0;
  transform: translate(-1rem, -50%);
}

.pruduct_feature_content-nav-button--next {
  right: 0;
  transform: translate(1rem, -50%);
}


.pruduct_feature_content-nav-button:hover {
  opacity: 0.7;
}

.pruduct_feature_content-nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pruduct_feature_content-nav-button:disabled:hover {
  opacity: 0.3;
}

.product_feature-content-image {
  width: 15rem;
  flex-shrink: 0;
}

.product_feature-content-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .product_feature-lead {
    font-size: 1.8rem;
  }

  .pruduct_feature_content-item {
    padding: 5rem 3rem;
    border-radius: 2rem;
  }

  .pruduct_feature_content-item-heading {
    font-size: 2.4rem;
  }

  .pruduct_feature_content-item-heading-line {
    font-size: 1.8rem;
  }

  .pruduct_feature_content-item-body {
    flex-direction: row;
    gap: 3rem;
  }

  .pruduct_feature_content-item-image {
    width: 40%;
  }

  .pruduct_feature_content-item-text {
    font-size: 1.6rem;
    flex: 1;
  }

  .pruduct_feature_content-pagination {
    font-size: 1.6rem;
  }

  .pruduct_feature_content-nav-button {
    width: 13px;
    height: 30px;
  }
}

@media screen and (min-width: 1080px) {
  .product_feature {
    padding: 20rem 0;
  }

  .product_feature_content-wrapper {
    margin-top: 7rem;
    flex-direction: row;
    gap: 0;
  }

  .pruduct_feature_content {
    padding: 0 2rem;
    max-width: 76rem;
  }

  .product_feature-content-image {
    width: 30rem;
  }
}

@media screen and (min-width: 1200px) {
  .pruduct_feature_content {
    padding: 0 3rem;
  }
}

@media screen and (min-width: 1400px) {
  .product_feature_content-wrapper {
    gap: 10rem;
  }
}

/* ----- detail ----- */
.product_detail {
  padding: 10rem 0;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .product_detail {
    padding: 20rem 0;
  }
}

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

.product_detail::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 12.3%;
  max-width: 8rem;
  aspect-ratio: 104 / 826;
  background-image: url(../img/products_bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product_detail_spec {
  margin-top: 5rem;
}

.product_detail_spec-list {
  width: 100%;
}

.product_detail_spec-item {
  display: flex;
}

.product_detail_spec-label {
  width: 10rem;
  padding: 2rem 0;
  font-size: 1.3rem;
  color: #4F545A;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0em;
  flex-shrink: 0;
  border-bottom: 1px solid color-mix(in srgb, #B2B8BF 50%, transparent);
  display: flex;
  align-items: center;
}

.product_detail_spec-value {
  padding: 2rem 0;
  font-size: 1.3rem;
  color: #4F545A;
  line-height: 1;
  letter-spacing: 0em;
  margin-left: 1rem;
  flex: 1;
  border-bottom: 1px solid color-mix(in srgb, #B2B8BF 50%, transparent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}

.product_detail_spec-note {
  line-height: 1.2;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .product_detail {
    padding: 20rem 0;
  }

  .product_detail_inner {
    padding: 0 4rem;
  }

  .product_detail::before {
    width: 7.22%;
    max-width: 10.4rem;
  }

  .product_detail_spec-list {
    max-width: 88.5rem;
    margin-inline: auto;
  }

  .product_detail_spec-label {
    font-size: 1.6rem;
    width: 14rem;
  }

  .product_detail_spec-value {
    margin-left: 2rem;
    font-size: 1.6rem;
  }

  .product_detail_spec-note {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1080px) {
  .product_detail_spec-label {
    width: 17rem;
  }

  .product_detail_spec-value {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 3rem 0;
  }
}


/* ----- revier ----- */
.product_review {
  padding: 10rem 0;
  background: linear-gradient(to top, #E3F4F9 0%, #E8F4FC 34%, #E3F4F9 62%, #CBE6FF 100%);
  background-size: 100% 200%;
  background-position: center bottom;
  animation: gradientWave 15s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes gradientWave {
  0% {
    background-position: center top;
  }
  25% {
    background-position: center 55%;
  }
  50% {
    background-position: center 80%;
  }
  75% {
    background-position: center 50%;
  }
  100% {
    background-position: center top;
  }
}

.product_review::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 6.15%;
  width: 74.35%;
  max-width: 48rem;
  aspect-ratio: 617 / 101;
  background-image: url(../img/review_bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product_review_inner {
  padding: 0 2rem;
}


.product_review_list {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 500px;
  margin-inline: auto;
}

.product_review_item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.product_review_item-bubble {
  border-radius: 1.2rem;
  padding: 2.4rem;
  color: #4F545A;
  border-radius: 2rem;
  background-color: #FFFFFF;
}

.product_review_item-title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  font-family: "Noto Serif JP", serif;
}

.product_review_item-text {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.5;
}

.product_review_item-title_emphasis {
  color: #6C83A4;
  font-weight: bold;
}

.product_review_item-profile {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.product_review_item-icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}

.product_review_item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product_review_item-demo {
  font-size: 1.4rem;
  color: #6C83A4;
}

.product_review_disclaimer {
  margin-top: 5rem;
  text-align: right;
  font-size: 1.2rem;
  color: #B2B8BF;
  max-width: 126rem;
  margin-inline: auto;
}

.product_review_button-wrapper {
  margin-top: 3rem;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .product_review {
    padding: 10rem 0;
  }

  .product_review_item-bubble {
    padding: 3rem 2.5rem;
  }

  .product_review_item-title {
    font-size: 1.8rem;
  }

  .product_review_item-text {
    font-size: 1.6rem;
  }

  .product_review_item-icon {
    width: 6rem;
    height: 7rem;
  }

  .product_review_disclaimer {
    margin-top: 4rem;
  }

  .product_review_button-wrapper {
    margin-top: 7rem;
  }
}

@media screen and (min-width: 1080px) {
  .product_review {
    padding: 10rem 0 20rem;
  }

  .product_review::before {
    left: 2.7%;
    width: 43.2%;
    max-width: 70rem;
  }

  .product_review_list {
    flex-direction: row;
    gap: 3rem;
    max-width: 126rem;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .product_review_item {
    width: calc((100% - 6rem) / 3);
  }

  .product_review_item-bubble {
    flex: 1;
  }
}

/* ---------- column ---------- */
.column_contents {
  position: relative;
  z-index: 1;
  padding: 7rem 1rem 11rem;
}

.column_contents-description {
  font-size: clamp(1.4rem, 4.6vw, 2.8rem);
  color: #6C83A4;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
}

.column_contents-description_under {
  position: relative;
  padding: 0 1rem;
  display: inline-block;
}

.column_contents-description_under:not(:first-child) {
  margin-top: 1rem;
}

.column_contents-description_under::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #6C83A4;
}

.column_contents-list {
  max-width: 128rem;
  margin-top: 5rem;
  margin-inline: auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.column_contents-item {
  overflow: hidden;
}

.column_contents-item__link {
  display: block;
}

.column_contents-item__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem;
}

.column_contents-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.column_contents-item:hover .column_contents-item__image img {
  transform: scale(1.05);
}

.column_contents-item__content {
  margin-top: 1rem;
}

.column_contents-item__title {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #6C83A4;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.1;
}

.column_contents-item__date-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.column_contents-item__date {
  font-size: 1.2rem;
  color: #B2B8BF;
}

.column_contents-empty {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  color: #6C83A4;
  padding: 4rem 0;
}

.column_contents-pagination {
  grid-column: 1 / -1;
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .column_contents-description {
    font-size: clamp(2.8rem, 2.2vw, 3.2rem);
  }

  .column_contents-description_under {
    padding: 0;
  }

  .column_contents-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 0 4rem;
  }

  .column_contents-item__image {
    border-radius: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .column_contents-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

.column_contents-pagination .page-numbers {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.column_contents-pagination .page-numbers a,
.column_contents-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: "Tai Heritage Pro", serif;
  line-height: 1;
}

.column_contents-pagination .page-numbers a:hover {
  color: #6C83A4;
}

.column_contents-pagination .page-numbers .current {
  text-decoration: underline;
  text-underline-offset: 5px;
}


@media screen and (min-width: 768px) {
  .column_contents-pagination {
    margin-top: 7rem;
  }
  .column_contents-pagination .page-numbers {
    gap: 3rem;
  }
  
  .column_contents-pagination .page-numbers a,
  .column_contents-pagination .page-numbers span {
    font-size: 1.6rem;
  }
}

/* ---------- Single Post ---------- */
.single_post {
  padding: 14rem 0;
  position: relative;
  z-index: 1;
}

.single_post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background-image: linear-gradient(to top, rgba(227, 244, 249, 0) 0%, #E8F4FC 34%, #E3F4F9 62%, #CBE6FF 100%);
  z-index: -1;
}

.single_post_inner {
  max-width: 98rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.single_post-article {
  background: #FFFFFF;
  padding: 4rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 0 20px 0 rgba(60, 121, 204, 0.3);;
}

.single_post-header {
  margin-bottom: 3rem;
}

.single_post-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #6C83A4;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.single_post-meta {
  margin-top: 1rem;
}

.single_post-date {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: #B2B8BF;
}

.single_post-date svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.single_post-thumbnail {
  width: 100%;
  margin-bottom: 4rem;
  border-radius: 1rem;
  overflow: hidden;
}

.single_post-thumbnail__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.single_post-content {
  max-width: 80rem;
  margin-inline: auto;
  font-size: 1.4rem;
  line-height: 1.6;
}

.single_post-content p {
  margin-top: 1rem;
}

.single_post-content p:first-child {
  margin-top: 0;
}

.single_post-content h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #6C83A4;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #E5E8EB;
}

.single_post-content h2:first-child {
  margin-top: 0;
}

.single_post-content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #6C83A4;
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.single_post-content h4 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 600;
  color: #6C83A4;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.single_post-content h5,
.single_post-content h6 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #6C83A4;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.single_post-content ul,
.single_post-content ol {
  margin-top: 1.6rem;
  margin-left: 1rem;
  padding-left: 1rem;
}

.single_post-content ul {
  list-style-type: disc;
}

.single_post-content ol {
  list-style-type: decimal;
}

.single_post-content li {
  margin-top: 0.4rem;
  line-height: 1.8;
}

.single_post-content li:first-child {
  margin-top: 0;
}

.single_post-content a {
  color: #3C79CC;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.single_post-content a:hover {
  color: #28B2CC;
}

.single_post-content img {
  width: 100%;
  height: auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-radius: 1rem;
  display: block;
}

.single_post-content figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.single_post-content figure img {
  margin-top: 0;
  margin-bottom: 0;
}

.single_post-content figcaption {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #6C83A4;
  text-align: center;
  line-height: 1.6;
}

.single_post-content blockquote {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #F5F7FA;
  border-left: 4px solid #6C83A4;
  border-radius: 0.5rem;
  font-style: italic;
  color: #4A5568;
}

.single_post-content blockquote p {
  margin-top: 0;
}

.single_post-content blockquote p:last-child {
  margin-bottom: 0;
}

.single_post-content code {
  background-color: #F5F7FA;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
  font-size: 1.4rem;
  color: #6C83A4;
  font-family: 'Courier New', monospace;
}

.single_post-content pre {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #F5F7FA;
  border-radius: 0.5rem;
  overflow-x: auto;
}

.single_post-content pre code {
  background-color: transparent;
  padding: 0;
}

.single_post-content table {
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-collapse: collapse;
  font-size: 1.5rem;
}

.single_post-content table th,
.single_post-content table td {
  padding: 1rem;
  border: 1px solid #E5E8EB;
  text-align: left;
}

.single_post-content table th {
  background-color: #F5F7FA;
  font-weight: 600;
  color: #6C83A4;
}

.single_post-content hr {
  margin-top: 4rem;
  margin-bottom: 4rem;
  border: none;
  border-top: 1px solid #E5E8EB;
}

/* WordPress Block Editor Styles */
.single_post-content .wp-block-image {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.single_post-content .wp-block-image img {
  margin-top: 0;
  margin-bottom: 0;
}

.single_post-content .wp-block-image figcaption {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #6C83A4;
  text-align: center;
  line-height: 1.6;
}

.single_post-content .wp-block-gallery {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.single_post-content .wp-block-gallery .wp-block-image {
  margin: 0;
}

.single_post-content .wp-block-quote {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #F5F7FA;
  border-left: 4px solid #6C83A4;
  border-radius: 0.5rem;
  font-style: italic;
  color: #4A5568;
}

.single_post-content .wp-block-quote p {
  margin-top: 0;
}

.single_post-content .wp-block-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
  font-style: normal;
  color: #6C83A4;
}

.single_post-content .wp-block-pullquote {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 4px solid #6C83A4;
  border-bottom: 4px solid #6C83A4;
}

.single_post-content .wp-block-pullquote blockquote {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  font-size: 2rem;
  color: #6C83A4;
}

.single_post-content .wp-block-pullquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #6C83A4;
}

.single_post-content .wp-block-columns {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.single_post-content .wp-block-column {
  min-width: 0;
}

.single_post-content .wp-block-column p {
  margin-top: 0;
}

.single_post-content .wp-block-column p:first-child {
  margin-top: 0;
}

.single_post-content .wp-block-group {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.single_post-content .wp-block-separator {
  margin-top: 4rem;
  margin-bottom: 4rem;
  border: none;
  border-top: 1px solid #E5E8EB;
}

.single_post-content .wp-block-button {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.single_post-content .wp-block-button__link {
  display: inline-block;
  padding: 1.5rem 3rem;
  background-color: #6C83A4;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0.4rem 1rem color-mix(in srgb, #6C83A4 30%, transparent);
}

.single_post-content .wp-block-button__link:hover {
  background-color: #5A6B6F;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.5rem color-mix(in srgb, #6C83A4 40%, transparent);
}

.single_post-content .wp-block-cover {
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-radius: 1rem;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .single_post-content .wp-block-cover {
    border-radius: 2rem;
  }
}

.single_post-content .wp-block-cover img {
  margin: 0;
}

.single_post-content .wp-block-media-text {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .single_post-content .wp-block-media-text {
    grid-template-columns: 1fr;
  }
}

.single_post-content .wp-block-media-text__media {
  margin: 0;
}

.single_post-content .wp-block-media-text__media img {
  margin: 0;
}

.single_post-content .wp-block-media-text__content {
  padding: 2rem;
}

.single_post-empty {
  text-align: center;
  font-size: 1.6rem;
  color: #6C83A4;
  padding: 4rem 0;
}

.single_post-nav {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.single_post-nav__back {
  display: flex;
  justify-content: center;
}

.single_post-nav__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  border: 1px solid #6C83A4;
  border-radius: 999px;
  color: #6C83A4;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
}

.single_post-nav__back-icon {
  font-size: 1.4rem;
}

.single_post-nav__pager {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.single_post-nav__item {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.8rem;
  border-radius: 1.2rem;
  background-color: #F5F7FA;
  text-decoration: none;
  color: #4F545A;
}

.single_post-nav__item-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6C83A4;
}

.single_post-nav__item-title {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .single_post-nav {
    margin-top: 5rem;
  }

  .single_post-nav__pager {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }

  .single_post-nav__item {
    width: 50%;
  }

}

@media screen and (min-width: 768px) {
  .single_post {
    padding: 18rem 0;
  }

  .single_post-article {
    padding: 4rem 4rem;
  }

  .single_post-header {
    margin-bottom: 4rem;
  }

  .single_post-thumbnail {
    border-radius: 2rem;
    margin-bottom: 5rem;
  }

  .single_post-content {
    font-size: 1.6rem;
  }

  .single_post-content img {
    border-radius: 2rem;
  }

  .single_post-content h2 {
    margin-top: 5rem;
  }

  .single_post-content h3 {
    margin-top: 4rem;
  }

  .single_post-content h4 {
    margin-top: 3rem;
  }
}

/* ---------- User Guide ---------- */
.user_guide_nav {
  padding: 7rem 0;
  position: relative;
  z-index: 1;
}

.user_guide_nav_tb {
  position: fixed ;
  bottom: 4rem;
  left: 2rem;
  z-index: 10;
}

.user_guide_nav_inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.user_guide_nav_item {
  width: 100%;
  max-width: 23rem;
}

.user_guide_nav_link {
  display: block;
  width: 100%;
  padding: 1.5rem;
  border-radius: 100vmax;
  text-align: center;
  transition: opacity 0.3s ease;
  line-height: 1;
  color: #6C83A4;
  border: 1px solid currentColor;
  background-color: #FFFFFF;
}

.user_guide_nav_link--active {
  background-color: #6C83A4;
  border: 1px solid #6C83A4;
  color: #FFFFFF;
  box-shadow: 0 0 7px #336699;
}

.user_guide_nav_text {
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
}

.user_guide_nav_description {
  margin-top: 3rem;
  font-size: 1.4rem;
  text-align: center;
  padding: 0 2rem;
}

@media (any-hover: hover) {
  .user_guide_nav_link:hover {
    opacity: 0.8;
  }
}

@media screen and (min-width: 768px) {
  .user_guide_nav_inner {
    max-width: 115rem;
  }

  .user_guide_nav_list {
    flex-direction: row;
    gap: 2rem;
  }

  .user_guide_nav_item {
    flex: 1;
    max-width: 35rem;
  }

  .user_guide_nav_text {
    font-size: 1.6rem;
  }

  .user_guide_nav_description {
    font-size: 2rem;
    max-width: 70rem;
    margin-inline: auto;
  }
}

@media screen and (min-width: 1080px) {
  .user_guide_nav_description {
    font-size: 2.4rem;
    max-width: none;
  }
}

.user_guide_flow {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.user_guide_flow_inner {
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 2rem;
  margin-top: 5rem;
}

.user_guide_flow_list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.user_guide_flow_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6rem;
}

.user_guide_flow_item-number {
  font-family: "Tai Heritage Pro", serif;
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  line-height: 1;
  border-bottom: 1px solid #6BCFE2;
  padding: 0 0.5rem;
  width: fit-content;
  margin-inline: auto;
  min-height: 6rem;
  justify-content: flex-end;
}


.user_guide_flow_item-number-text {
  font-size: 1.6rem;
}

.user_guide_flow_item-number-num {
  font-size: 4rem;
}

.user_guide_flow_item-image {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 10rem;
  max-width: 30rem;
}

.user_guide_flow_item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.user_guide_flow_item-content {
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 7rem 2rem 3rem;
  border: 1px solid transparent;
  background-image: linear-gradient(#FFFFFF, #FFFFFF), linear-gradient(45deg, #6DA4EE 0%, #28B2CC 50%, #6CCFE2 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  width: 100%;
  max-width: 50rem;
  position: relative;
  box-shadow: 0 0 10px #336699;
}

.user_guide_flow_item-heading {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  line-height: 1.3;
  color: #6C83A4;
}

.user_guide_flow_item-text {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 2rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .user_guide_flow {
    padding-top: 8rem;
    padding-bottom: 12rem;
  }

  .user_guide_flow_inner {
    margin-top: 7rem;
    padding: 0 4rem;
  }

  .user_guide_flow_list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }

  .user_guide_flow_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .user_guide_flow_item-number {
    min-height: 8rem;
    flex-shrink: 0;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }

  .user_guide_flow_item-image {
    max-width: 16.6rem;
  }

  .user_guide_flow_item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 10rem 2rem 5rem;
    max-width: 60rem;
  }

  .user_guide_flow_item-heading {
    font-size: 2rem;
  }

  .user_guide_flow_item-text {
    font-size: 1.6rem;
    line-height: 2;
    margin-top: 3rem;
    flex: 1;
  }
}

@media screen and (min-width: 1080px) {
  .user_guide_flow {
    padding-top: 10rem;
    padding-bottom: 14rem;
  }

  .user_guide_flow_item-number {
    font-size: 2.8rem;
  }

  .user_guide_flow_item-content {
    padding: 10rem 4rem 5rem;
  }
}

/* ----- cartridge ----- */
.user_guide_cartridge {
  padding: 10rem 0;
  background: linear-gradient(to bottom, #FFFFFF, #DDF2FF);
}

.user_guide_cartridge_inner {
  padding: 0 3rem;
}

.user_guide_cartridge_text {
  margin-top: 7rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0em;
  color: #6C83A4;
}

@media screen and (min-width: 768px) {
  .user_guide_cartridge {
    padding: 20rem 0;
  }

  .user_guide_cartridge_text {
    font-size: 2.4rem;
  }
}

.user_guide_cartridge_step-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.user_guide_cartridge_step-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #FFFFFF;
  border-radius: 2rem;
  gap: 2rem;
  overflow: hidden;
  max-width: 48rem;
  margin-inline: auto;
}

.user_guide_cartridge_step-texts {
  padding: 3rem 2rem 0;
}

.user_guide_cartridge_step-item-num {
  display: inline-block;
  padding: 0.7rem 3rem 0.3rem;
  font-size: 1.4rem;
  line-height: 1;
  color: #FFFFFF;
  background: linear-gradient(to left, #3C79CC 0%, #6DA4EE 25%, #28B2CC 50%, #6CCFE2 100%);
  border-radius: 100vmax;
  font-family: "Tai Heritage Pro", serif;
}

.user_guide_cartridge_step-item-heading {
  margin-top: 2rem;
  font-weight: 700;
  color: #6C83A4;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}

.user_guide_cartridge_step-item-heading::after {
  content: "";
  display: block;
  margin-top: 1.2rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #3C79CC 0%, #6DA4EE 25%, #28B2CC 50%, #6CCFE2 100%);
  border-radius: 100vmax;
  -webkit-mask-image: radial-gradient(circle, #000 70%, transparent 72%);
  -webkit-mask-size: 1.2rem 0.2rem;
  -webkit-mask-repeat: repeat-x;
  mask-image: radial-gradient(circle, #000 70%, transparent 72%);
  mask-size: 1.2rem 0.2rem;
  mask-repeat: repeat-x;
}

.user_guide_cartridge_step-item-text {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #4F545A;
}


.user_guide_cartridge_step-item-image img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}

.user_guide_cartridge_contact {
  margin-top: 5rem;
  border-radius: 2.5rem;
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}

.user_guide_cartridge_contact-label {
  font-size: 1.6rem;
  color: #6C83A4;
  letter-spacing: 0em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.user_guide_cartridge_contact-label::before, .user_guide_cartridge_contact-label::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 2rem;
  background-color: #6C83A4;
}

.user_guide_cartridge_contact-label::before {
  rotate: -30deg;
}

.user_guide_cartridge_contact-label::after {
  rotate: 30deg;
}

.user_guide_cartridge_contact-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 2rem;
  background-color: #6C83A4;
  border-radius: 100vmax;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 0 1rem color-mix(in srgb, #0C3E5B 30%, transparent);
  transition: box-shadow 0.3s ease;
}

@media (any-hover: hover) {
  .user_guide_cartridge_contact-button:hover {
    box-shadow: 0 0 1.5rem color-mix(in srgb, #0C3E5B 50%, transparent);
  }
}

.user_guide_cartridge_contact-button:focus-visible {
  box-shadow: 0 0 1.5rem color-mix(in srgb, #0C3E5B 50%, transparent);
}

.user_guide_cartridge_contact-button_tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.user_guide_cartridge_contact-tel-label {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  margin-top: -4px;
}

.user_guide_cartridge_contact-tel-number {
  font-family: "Tai Heritage Pro", serif;
  font-size: 3rem;
  letter-spacing: 0em;
  line-height: 1;
}

.user_guide_cartridge_contact-desc {
  margin-top: 1rem;
  padding: 0 3rem;
  font-size: 1.2rem;
  letter-spacing: 0em;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .user_guide_cartridge_contact {
    margin-top: 6rem;
    max-width: 60rem;
    padding: 4rem 2rem 4.5rem;
  }

  .user_guide_cartridge_contact-button {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 2.4rem 3.6rem;
  }

  .user_guide_cartridge_contact-tel-label {
    font-size: 1.6rem;
  }

  .user_guide_cartridge_contact-tel-number {
    font-size: 3.2rem;
  }

  .user_guide_cartridge_contact-desc {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  .user_guide_cartridge_step-list {
    margin-top: 7rem;
    gap: 5rem;
  }

  .user_guide_cartridge_step-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 94rem;
    width: 100%;
  }

  .user_guide_cartridge_step-texts {
    padding: 2rem 0 2rem 3rem;
  }

  .user_guide_cartridge_step-item-num {
    font-size: 1.6rem;
  }

  .user_guide_cartridge_step-item-heading {
    font-size: 2rem;
  }

  .user_guide_cartridge_step-item-text {
    font-size: 1.6rem;
  }

  .user_guide_cartridge_step-item-image {
    margin-top: 0;
    max-width: 40rem;
    height: 100%;
  }

  .user_guide_cartridge_step-item-image img {
    clip-path: polygon(70px 0, 100% 0, 100% 100%, 0 100%);
  }

  .user_guide_cartridge_contact {
    width: 100%;
    max-width: 94rem;
  }

  .user_guide_cartridge_contact-button {
    width: 100%;
  }

  .user_guide_cartridge_contact-label {
    font-size: 2.4rem;
    gap: 2rem;
  }

  .user_guide_cartridge_contact-label::before, .user_guide_cartridge_contact-label::after {
    height: 4rem;
  }

  .user_guide_cartridge_contact-tel-label {
    font-size: 4rem;
    margin-top: -10px;
  }

  .user_guide_cartridge_contact-tel-number {
    font-size: 6rem;
  }

  .user_guide_cartridge_contact-desc {
    font-size: 1.4rem;
  }

}

@media screen and (min-width: 1080px) {
  .user_guide_cartridge_step-texts {
    padding: 3.5rem 0 3.5rem 5rem;
  }

  .user_guide_cartridge_contact-desc {
    font-size: 1.6rem;
  }
}

/* ----- faq----- */
.user_guide_faq {
  padding: 6rem 0;
  background-color: #DDF2FF;
}

@media screen and (min-width: 768px) {
  .user_guide_faq {
    padding: 10rem 0 12rem;
  }
}

.user_guide_faq_inner {
  padding: 0 3rem;
  max-width: 110rem;
  margin-inline: auto;
}

.user_guide_faq_list {
  margin-top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.user_guide_faq_item {
  background-color: #FFFFFF;
  border-radius: 1rem;
}

.user_guide_faq_item-title {
  margin-top: 0;
}

.user_guide_faq_item-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  padding: 1.5rem 2rem;
}

.user_guide_faq_item-q {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user_guide_faq_item-q-label {
  font-family: "Tai Heritage Pro", serif;
  font-size: 2.4rem;
  color: #B2B8BF;
  line-height: 1.4;
}

.user_guide_faq_item-q-text {
  margin-top: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  color: #6C83A4;
  text-align: left;
  line-height: 1.3;
}

.user_guide_faq_item-body {
  overflow: hidden;
  height: auto;
}

.user_guide_faq_item-a {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 1.5rem 2rem;
}

.user_guide_faq_item-a-label {
  font-family: "Tai Heritage Pro", serif;
  font-size: 2.4rem;
  color: #B2B8BF;
  line-height: 1.6;
}

.user_guide_faq_item-a-text {
  margin-top: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #4F545A;
  font-weight: 500;
}

.user_guide_faq_item-toggle {
  position: relative;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
}

.user_guide_faq_item-toggle-line {
  position: absolute;
  display: block;
  background-color: #6C83A4;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.user_guide_faq_item-toggle-line--horizontal {
  width: 2rem;
  height: 0.2rem;
}

.user_guide_faq_item-toggle-line--vertical {
  width: 0.2rem;
  height: 2rem;
}

.user_guide_faq_item.is-open .user_guide_faq_item-toggle-line--vertical {
  transform: scaleY(0);
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .user_guide_faq {
    padding-top: 8rem;
  }

  .user_guide_faq_item-header {
    padding: 3rem 5rem;
  }

  .user_guide_faq_item-q-label {
    font-size: 3.2rem;
  }

  .user_guide_faq_item-q-text {
    font-size: 2.4rem;
  }

  .user_guide_faq_item-a {
    padding: 0rem 5rem 3rem;
  }

  .user_guide_faq_item-a-label {
    font-size: 3.2rem;
  }

  .user_guide_faq_item-a-text {
    font-size: 1.8rem;
  }
}

/* ---------- privacy policy ---------- */
.privacy_policy_content {
  padding: 7rem 0 10rem;
  position: relative;
  z-index: 1;
}

.privacy_policy_content_inner {
  margin-top: 5rem;
  padding: 0 3rem;
  max-width: 110rem;
  margin-inline: auto;
}

.privacy_policy_content_text {
  line-height: 2;
  font-size: 1.4rem;
  color: #4F545A;
}

@media screen and (min-width: 768px) {
  .privacy_policy_content {
    padding: 10rem 0 20rem;
  }

  .privacy_policy_content_inner {
    margin-top: 7rem;
  }

  .privacy_policy_content_text {
    line-height: 2.5;
    font-size: 1.6rem;
  }
}

/* ---------- 404 Error Page ---------- */

.container_404 {
  margin-top: 6rem;
  margin: 0 auto;
}

.error-404 {
  text-align: center;
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #F0F8FF 0%, #E8F4FF 50%, #D4EAFE 100%);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-header {
  margin-bottom: 4rem;
}

.page-title {
  font-family: "Tai Heritage Pro", serif;
  font-size: 3.2rem;
  color: #6C83A4;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.2;
}

.page-content {
  max-width: 60rem;
  margin: 0 auto;
}

.page-content p {
  font-size: 1.6rem;
  color: #202020;
  line-height: 1.6;
}

.navigation-links {
  margin-top: 4rem;
}

.btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  background-color: #6C83A4;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0.4rem 1rem color-mix(in srgb, #6C83A4 30%, transparent);
}

@media (any-hover: hover) {
  .btn:hover {
    background-color: #5A6B6F;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.6rem 1.5rem color-mix(in srgb, #6C83A4 40%, transparent);
  }
}

.btn:focus-visible {
  background-color: #5A6B6F;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.5rem color-mix(in srgb, #6C83A4 40%, transparent);
}

.btn-primary {
  background-color: #28B2CC;
  box-shadow: 0 0.4rem 1rem color-mix(in srgb, #28B2CC 30%, transparent);
}

@media (any-hover: hover) {
  .btn-primary:hover {
    background-color: #00BCD4;
    box-shadow: 0 0.6rem 1.5rem color-mix(in srgb, #28B2CC 40%, transparent);
  }
}

.btn-primary:focus-visible {
  background-color: #00BCD4;
  box-shadow: 0 0.6rem 1.5rem color-mix(in srgb, #28B2CC 40%, transparent);
}

.btn-outline {
  position: relative;
  width: 19rem;
  display: inline-block;
  padding: 1.5rem;
  color: #6C83A4;
  border: 1px solid currentColor;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  text-align: center;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-outline::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 5rem;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media screen and (min-width: 768px) {
  .btn-outline {
    width: 34rem;
    padding: 2.5rem;
  }

  .btn-outline::before, .btn-outline::after {
    width: 6rem;
  }
}

@media (any-hover: hover) {
  .btn-outline:hover::before {
    transform: translate(0%, -50%);
    opacity: 0;
  }

  .btn-outline:hover::after {
    transform: translate(50%, -50%);
    opacity: 1;
  }
}

.btn-outline:focus-visible::before {
  transform: translate(0%, -50%);
  opacity: 0;
}

.btn-outline:focus-visible::after {
  transform: translate(50%, -50%);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .btn-outline {
    padding: 1.5rem 4rem;
    font-size: 1.6rem;
  }
}

/* 404ページのレスポンシブデザイン */
@media screen and (min-width: 768px) {
  .error-404 {
    padding: 12rem 4rem;
  }
  
  .page-title {
    font-size: 6rem;
  }
  
  .page-content p {
    font-size: 1.8rem;
  }
  
  .search-form {
    padding: 3rem;
  }
  
  .search-form input[type="search"] {
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
  }
  
  .btn {
    padding: 2rem 4rem;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1080px) {
  .error-404 {
    padding: 16rem 0;
  }
  
  .page-title {
    font-size: 8rem;
  }
  
  .page-content p {
    font-size: 2rem;
  }
}

/* 波のアニメーション */
@keyframes waveAnimation {
  0% {
    d: path("M1440 206.579L1440 472H0L0 86.4095C138.14 18.9595 349.41 -22.1905 695.7 89.2795C714.91 95.4595 961.461 190.08 1218.28 211.96C1320.48 220.67 1381.9 217.55 1440 206.57V206.579Z");
  }
  8.33% {
    d: path("M1440 210.579L1440 472H0L0 90.4095C138.14 22.9595 349.41 -18.1905 695.7 93.2795C714.91 99.4595 961.461 194.08 1218.28 215.96C1320.48 224.67 1381.9 221.55 1440 210.57V210.579Z");
  }
  16.66% {
    d: path("M1440 208.579L1440 472H0L0 88.4095C138.14 20.9595 349.41 -20.1905 695.7 91.2795C714.91 97.4595 961.461 192.08 1218.28 213.96C1320.48 222.67 1381.9 219.55 1440 208.57V208.579Z");
  }
  25% {
    d: path("M1440 214.579L1440 472H0L0 94.4095C138.14 26.9595 349.41 -14.1905 695.7 97.2795C714.91 103.4595 961.461 198.08 1218.28 219.96C1320.48 228.67 1381.9 225.55 1440 214.57V214.579Z");
  }
  33.33% {
    d: path("M1440 212.579L1440 472H0L0 92.4095C138.14 24.9595 349.41 -16.1905 695.7 95.2795C714.91 101.4595 961.461 196.08 1218.28 217.96C1320.48 226.67 1381.9 223.55 1440 212.57V212.579Z");
  }
  41.66% {
    d: path("M1440 208.579L1440 472H0L0 88.4095C138.14 20.9595 349.41 -20.1905 695.7 91.2795C714.91 97.4595 961.461 192.08 1218.28 213.96C1320.48 222.67 1381.9 219.55 1440 208.57V208.579Z");
  }
  50% {
    d: path("M1440 206.579L1440 472H0L0 86.4095C138.14 18.9595 349.41 -22.1905 695.7 89.2795C714.91 95.4595 961.461 190.08 1218.28 211.96C1320.48 220.67 1381.9 217.55 1440 206.57V206.579Z");
  }
  58.33% {
    d: path("M1440 204.579L1440 472H0L0 84.4095C138.14 16.9595 349.41 -24.1905 695.7 87.2795C714.91 93.4595 961.461 188.08 1218.28 209.96C1320.48 218.67 1381.9 215.55 1440 204.57V204.579Z");
  }
  66.66% {
    d: path("M1440 202.579L1440 472H0L0 82.4095C138.14 14.9595 349.41 -26.1905 695.7 85.2795C714.91 91.4595 961.461 186.08 1218.28 207.96C1320.48 216.67 1381.9 213.55 1440 202.57V202.579Z");
  }
  75% {
    d: path("M1440 198.579L1440 472H0L0 78.4095C138.14 10.9595 349.41 -30.1905 695.7 81.2795C714.91 87.4595 961.461 182.08 1218.28 203.96C1320.48 212.67 1381.9 209.55 1440 198.57V198.579Z");
  }
  83.33% {
    d: path("M1440 200.579L1440 472H0L0 80.4095C138.14 12.9595 349.41 -28.1905 695.7 83.2795C714.91 89.4595 961.461 184.08 1218.28 205.96C1320.48 214.67 1381.9 211.55 1440 200.57V200.579Z");
  }
  91.66% {
    d: path("M1440 202.579L1440 472H0L0 82.4095C138.14 14.9595 349.41 -26.1905 695.7 85.2795C714.91 91.4595 961.461 186.08 1218.28 207.96C1320.48 216.67 1381.9 213.55 1440 202.57V202.579Z");
  }
  100% {
    d: path("M1440 206.579L1440 472H0L0 86.4095C138.14 18.9595 349.41 -22.1905 695.7 89.2795C714.91 95.4595 961.461 190.08 1218.28 211.96C1320.48 220.67 1381.9 217.55 1440 206.57V206.579Z");
  }
}

@keyframes waveAnimationTab {
  0% {
    d: path("M1440 146.048V177H0.000531196L0 64.8644C138.14 19.297073 349.41 -8.5027 695.699 66.8033C714.909 70.9784 961.46 134.901 1218.28 149.683C1320.48 155.567 1381.9 153.459 1440 146.041V146.048Z");
  }
  8.33% {
    d: path("M1440 148.048V177H0.000531196L0 66.8644C138.14 21.297073 349.41 -6.5027 695.699 68.8033C714.909 72.9784 961.46 136.901 1218.28 151.683C1320.48 157.567 1381.9 155.459 1440 148.041V148.048Z");
  }
  16.66% {
    d: path("M1440 150.048V177H0.000531196L0 68.8644C138.14 23.297073 349.41 -4.5027 695.699 70.8033C714.909 74.9784 961.46 138.901 1218.28 153.683C1320.48 159.567 1381.9 157.459 1440 150.041V150.048Z");
  }
  25% {
    d: path("M1440 152.048V177H0.000531196L0 70.8644C138.14 25.297073 349.41 -2.5027 695.699 72.8033C714.909 76.9784 961.46 140.901 1218.28 155.683C1320.48 161.567 1381.9 159.459 1440 152.041V152.048Z");
  }
  33.33% {
    d: path("M1440 150.048V177H0.000531196L0 68.8644C138.14 23.297073 349.41 -4.5027 695.699 70.8033C714.909 74.9784 961.46 138.901 1218.28 153.683C1320.48 159.567 1381.9 157.459 1440 150.041V150.048Z");
  }
  41.66% {
    d: path("M1440 148.048V177H0.000531196L0 66.8644C138.14 21.297073 349.41 -6.5027 695.699 68.8033C714.909 72.9784 961.46 136.901 1218.28 151.683C1320.48 157.567 1381.9 155.459 1440 148.041V148.048Z");
  }
  50% {
    d: path("M1440 146.048V177H0.000531196L0 64.8644C138.14 19.297073 349.41 -8.5027 695.699 66.8033C714.909 70.9784 961.46 134.901 1218.28 149.683C1320.48 155.567 1381.9 153.459 1440 146.041V146.048Z");
  }
  58.33% {
    d: path("M1440 144.048V177H0.000531196L0 62.8644C138.14 17.297073 349.41 -10.5027 695.699 64.8033C714.909 68.9784 961.46 132.901 1218.28 147.683C1320.48 153.567 1381.9 151.459 1440 144.041V144.048Z");
  }
  66.66% {
    d: path("M1440 142.048V177H0.000531196L0 60.8644C138.14 15.297073 349.41 -12.5027 695.699 62.8033C714.909 66.9784 961.46 130.901 1218.28 145.683C1320.48 151.567 1381.9 149.459 1440 142.041V142.048Z");
  }
  75% {
    d: path("M1440 138.048V177H0.000531196L0 56.8644C138.14 11.297073 349.41 -16.5027 695.699 58.8033C714.909 62.9784 961.46 126.901 1218.28 141.683C1320.48 147.567 1381.9 145.459 1440 138.041V138.048Z");
  }
  83.33% {
    d: path("M1440 140.048V177H0.000531196L0 58.8644C138.14 13.297073 349.41 -14.5027 695.699 60.8033C714.909 64.9784 961.46 128.901 1218.28 143.683C1320.48 149.567 1381.9 147.459 1440 140.041V140.048Z");
  }
  91.66% {
    d: path("M1440 142.048V177H0.000531196L0 60.8644C138.14 15.297073 349.41 -12.5027 695.699 62.8033C714.909 66.9784 961.46 130.901 1218.28 145.683C1320.48 151.567 1381.9 149.459 1440 142.041V142.048Z");
  }
  100% {
    d: path("M1440 146.048V177H0.000531196L0 64.8644C138.14 19.297073 349.41 -8.5027 695.699 66.8033C714.909 70.9784 961.46 134.901 1218.28 149.683C1320.48 155.567 1381.9 153.459 1440 146.041V146.048Z");
  }
}

/* SVGグラデーションアニメーション */
.top_kv svg stop:first-child {
  animation: gradientFlow 12s ease-in-out infinite;
}

.top_kv svg stop:nth-child(2) {
  animation: gradientFlow2 12s ease-in-out infinite 3s;
}

/* 波のアニメーション適用 - ブラウザ互換性を考慮してtransformベースに変更 */
.top_kv svg.sp {
  animation: waveFloat 8s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
}

.top_kv svg.tab {
  animation: waveFloatTab 12s ease-in-out infinite 2s;
  will-change: transform;
  transform: translateZ(0);
}

/* 新しい波のアニメーション（transformベース - ブラウザ互換性向上） */
@keyframes waveFloat {
  0%, 100% {
    transform: translateY(0px) scaleX(1);
  }
  25% {
    transform: translateY(2px) scaleX(1.02);
  }
  50% {
    transform: translateY(0px) scaleX(1);
  }
  75% {
    transform: translateY(1px) scaleX(1.01);
  }
}

@keyframes waveFloatTab {
  0%, 100% {
    transform: translateY(0px) scaleX(1);
  }
  25% {
    transform: translateY(4px) scaleX(1.03);
  }
  50% {
    transform: translateY(0px) scaleX(1);
  }
  75% {
    transform: translateY(2px) scaleX(1.015);
  }
}

/* ユーザーがモーションを減らす設定の場合、アニメーションを無効化 */
@media (prefers-reduced-motion: reduce) {
  .top_kv svg.sp,
  .top_kv svg.tab {
    animation: none;
  }
}

/* パフォーマンス最適化 */
.top_kv svg {
  will-change: transform;
  transform: translateZ(0);
}



/* ---------- floating animation ---------- */
@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(4px, -6px) rotate(1deg);
  }
  50% {
    transform: translate(-2px, -4px) rotate(-0.5deg);
  }
  75% {
    transform: translate(8px, -3px) rotate(0.8deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  30% {
    transform: translate(-5px, -6px) rotate(-1.2deg);
  }
  60% {
    transform: translate(3px, -6px) rotate(0.7deg);
  }
  90% {
    transform: translate(-4px, -3px) rotate(-0.3deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(3px, -5px) rotate(0.6deg);
  }
  40% {
    transform: translate(-6px, -6px) rotate(-0.9deg);
  }
  70% {
    transform: translate(4px, -3px) rotate(0.4deg);
  }
  85% {
    transform: translate(-3px, -2px) rotate(-0.2deg);
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  15% {
    transform: translate(-4px, -6px) rotate(-0.8deg);
  }
  35% {
    transform: translate(6px, -3px) rotate(1.1deg);
  }
  55% {
    transform: translate(-3px, -6px) rotate(-0.5deg);
  }
  80% {
    transform: translate(2px, -4px) rotate(0.3deg);
  }
}

/* ---------- fade-in animation ---------- */
