@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: #e9e9e9;
  --color_primary: #2AA4B9;
  --color_secondary: #2B77BA;
  --color_tertiary: #EC681F;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
  --color_blue_light: #DCF5F8;
  --color_blue_dark: #158EAA;
  --color_yellow: #FBEB76;
  --color_orange: #FC762B;
}

/* ====================================================
【アニメーション】
==================================================== */
:root {
  --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* ====================================================
【サイト全体の設定】
==================================================== */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}

:root {
  --font_base:
    "FOT-筑紫A丸ゴシック Std M",
    sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B", sans-serif;
  --font_en: "Great Vibes", cursive;
  --font_weight: normal;
  --font_size: 1.25rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

@media (max-width: 800px) {
  :root {
    --font_size: 0.9375rem;
    --line_height: 1.8;
  }
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  color: inherit;
  text-decoration: none;
}

:where(button) {
  all: unset;
  box-sizing: border-box;
}

:where(a, input, button, textarea, select) {
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

textarea {
  resize: block;
}

:where(button, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(ul, ol, li) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(em, dfn) {
  font-style: inherit;
}

sup {
  vertical-align: text-top;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  line-height: 1;
}

hr {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

mark {
  background: transparent;
  font-style: normal;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
body {
  background-color: var(--color_base);
  color: var(--color_text);
  font-family: var(--font_base);
  font-size: var(--font_size);
  font-weight: var(--font_weight);
  letter-spacing: var(--letter_spacing);
  line-height: var(--line_height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_jp);
  letter-spacing: 0.05em;
}

[lang=en] {
  font-family: var(--font_en);
}

.link {
  display: inline-block;
  text-decoration: underline;
  word-break: break-all;
  position: relative;
  text-wrap: pretty;
  color: var(--color_link);
}

.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 50px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 50px;
  }
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.container.wide {
  max-width: 1200px;
}

.container.ultra-wide {
  max-width: 1540px;
}

.container.narrow {
  max-width: 900px;
}

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  font-size: 1.125rem;
}

.time-table tbody tr {
  border-bottom: 1px solid var(--color_black);
}

.time-table th,
.time-table td {
  font-weight: normal;
  text-align: center;
  padding: 18px 10px;
  line-height: 1.2;
}

.time-table thead th {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  padding: 12px 0;
}

.time-table th:first-child {
  width: 30%;
}

.time-table img {
  margin-inline: auto;
}

@media (max-width: 800px) {
  .time-table {
    font-size: 0.8125rem;
  }

  .time-table th,
  .time-table td {
    padding: 12px 2px;
  }

  .time-table thead th {
    padding: 10px 2px;
  }

  .time-table th:first-child {
    width: 78px;
  }

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

.time-table-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 10px;
}

.time-table-note img {
  margin-top: 4px;
}

@media (max-width: 800px) {
  .time-table-note {
    font-size: 0.8125rem;
  }
}

/*ボタン*/
.btn-more {
  display: inline-block;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.9375rem;
  line-height: 1;
  padding: 10px 25px;
}

@media (any-hover: hover) {
  .btn-more:hover {
    background-color: var(--color_secondary);
  }
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  justify-content: center;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  background-color: var(--color_white);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  transition: box-shadow 0.3s;
}

.header.is-fixed {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.h-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 90px 10px 1.56%;
}

@media (max-width: 800px) {
  .h-wrapper {
    justify-content: center;
    gap: 10px;
    padding: 12px 2.5%;
  }
}

.h-logo {
  line-height: 1;
}

.h-logo a {
  display: block;
  transition: opacity 0.5s;
}

@media (any-hover: hover) {
  .h-logo a:hover {
    opacity: 0.7;
  }
}

.h-logo img {
  width: min(280px, 100%);
  height: auto;
}

@media (max-width: 800px) {
  .h-logo img {
    width: 230px;
  }
}

.h-utility {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 800px) {
  .h-utility {
    display: none;
  }
}

.h-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--color_white);
  border: 5px solid var(--color_blue_dark);
  box-shadow: 0px 3px 6px oklch(from #000 l c h/0.16);
  border-radius: 10px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0 25px;
  height: 52px;
}

.h-tel::before {
  content: "";
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  background-color: currentColor;
  width: 17px;
  height: 21px;
  display: inline-block;
}

.h-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: var(--color_tertiary);
  border: 5px solid #B03A00;
  border-radius: 10px;
  box-shadow: 0px 3px 6px oklch(from #000 l c h/0.16);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  line-height: 1;
  padding: 0 28px;
  height: 52px;
  transition: opacity 0.5s;
}

.h-reserve .icon {
  fill: currentColor;
  width: 24px;
  height: 17px;
}

@media (any-hover: hover) {
  .h-reserve:hover {
    opacity: 0.7;
  }
}

.gnavi-menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: var(--color_white);
  border: 5px solid var(--color_blue_dark);
  box-shadow: 0px 3px 6px oklch(from #000 l c h/0.16);
  border-radius: 10px;
  cursor: pointer;
  width: 52px;
  height: 52px;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 1100;
}

.gnavi-menu-btn .gnavi-menu-btn-line {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.gnavi-menu-btn .gnavi-menu-btn-line span {
  background-color: var(--color_primary);
  border-radius: 2px;
  height: 2px;
  width: 100%;
  transition: transform 0.3s, opacity 0.3s;
}

.gnavi-menu-btn .gnavi-menu-btn-txt {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 800px) {
  .gnavi-menu-btn {
    display: none;
  }
}

.gnavi-drawer {
  background-color: var(--color_white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.08);
  height: 100dvh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  width: min(400px, 85%);
  z-index: 1001;
}

.gnavi-drawer.is-open {
  transform: translateX(0);
}

.gnavi-drawer-container {
  padding: 90px 40px 40px;
}

.drawer-links {
  display: grid;
}

.drawer-links li {
  border-bottom: 1px solid var(--color_border);
}

.drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color_text);
  font-family: var(--font_jp);
  padding: 16px 5px;
  transition: color 0.3s;
}

.drawer-links a::after {
  content: "";
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}

@media (any-hover: hover) {
  .drawer-links a:hover {
    color: var(--color_primary);
  }
}

html.is-open {
  overflow: hidden;
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  margin-top: auto;
  position: relative;
}

.f-clinic {
  background-color: var(--color_white);
  padding-bottom: 60px;
  position: relative;
}

.clinic-info {
  display: grid;
  grid-template-columns: 615px 1fr;
  gap: 50px;
}

.clinic-info .clinic-logo {
  margin-bottom: 30px;
}

.clinic-info .clinic-logo img {
  width: min(360px, 100%);
  height: auto;
}

.clinic-info .clinic-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.9;
  margin-bottom: 25px;
  font-size: 1.125rem;
}

.clinic-info .clinic-address .icon {
  display: grid;
  place-content: center;
  background-color: var(--color_blue_light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  width: 37px;
  height: auto;
  aspect-ratio: 1;
}

.clinic-info .clinic-address .icon::before {
  content: "";
  -webkit-mask: url(../images/share/icon_access.svg) no-repeat center/contain;
  mask: url(../images/share/icon_access.svg) no-repeat center/contain;
  background-color: var(--color_primary);
  width: 11px;
  height: 15px;
}

.clinic-info .clinic-access li {
  font-size: 1.125rem;
}

.clinic-info .time-table {
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .clinic-info {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .clinic-info .clinic-logo {
    text-align: center;
  }

  .clinic-info .clinic-logo img {
    width: 260px;
  }

  .clinic-info .clinic-address {
    font-size: 0.9375rem;
  }

  .clinic-info .clinic-address .icon {
    width: 32px;
  }

  .clinic-info .clinic-access li {
    font-size: 0.9375rem;
  }

  .clinic-info .hours-note {
    font-size: 0.8125rem;
  }
}

.copyright {
  background-color: var(--color_primary);
  color: var(--color_white);
  text-align: center;
  padding: 10px 5%;
  line-height: 1;
  font-size: 0.75rem;
}

@media (max-width: 800px) {
  .f-clinic {
    padding-bottom: 50px;
  }

  .copyright {
    padding-bottom: 12px;
  }

  .footer {
    padding-bottom: 50px;
  }
}

.pagetop {
  display: block;
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s, visibility 0.5s;
  z-index: 10;
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pagetop img {
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .pagetop:hover {
    opacity: 0.7;
  }
}

@media (max-width: 800px) {
  .pagetop {
    display: none;
  }
}

/*-----------------------------------------------------------
SP固定フッターナビ
-----------------------------------------------------------*/
.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .sp-navi {
    display: block;
  }

  .sp-navi-btns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background-color: var(--color_primary);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
  }

  .sp-navi-btns .item+.item {
    border-left: 1px solid var(--color_white);
  }

  .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--color_white);
    padding: 5px 2px;
    height: 50px;
  }

  .sp-navi-btns .item .img {
    display: block;
    width: 22px;
    height: 22px;
  }

  .sp-navi-btns .item .img svg {
    stroke: var(--color_white);
    stroke-width: 1.5;
    width: 100%;
    height: 100%;
  }

  .sp-navi-btns .item .ttl {
    font-size: 0.625rem;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    font-family: var(--font_jp);
  }

  .sp-navi-btns .item.reserve {
    background-color: var(--color_tertiary);
  }

  .sp-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    background-color: transparent;
    border: none;
    color: var(--color_white);
    cursor: pointer;
    padding: 7px 2px;
    border-left: 1px solid var(--color_white);
  }

  .sp-menu-btn span:not(.ttl) {
    background-color: var(--color_white);
    border-radius: 2px;
    display: block;
    width: 20px;
    height: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .sp-menu-btn .ttl {
    font-size: 0.625rem;
    letter-spacing: 0;
    line-height: 1;
    margin-top: 3px;
    white-space: nowrap;
    font-family: var(--font_jp);
  }

  .sp-menu-btn.is-open span:not(.ttl):nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .sp-menu-btn.is-open span:not(.ttl):nth-child(2) {
    opacity: 0;
  }

  .sp-menu-btn.is-open span:not(.ttl):nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .sp-navi-drawer {
    background-color: var(--color_white);
    height: calc(100dvh - 50px);
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    width: 100%;
    z-index: 999;
  }

  .sp-navi-drawer.is-open {
    transform: translateX(0);
  }

  .sp-navi-drawer .sp-logo {
    padding: 20px 5% 10px;
  }

  .sp-navi-drawer .sp-logo img {
    width: 230px;
    height: auto;
    margin-inline: auto;
  }

  .sp-navi-list {
    display: grid;
    padding: 10px 8% 40px;
  }

  .sp-navi-list li {
    border-bottom: 1px solid var(--color_border);
  }

  .sp-navi-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color_text);
    font-family: var(--font_jp);
    padding: 15px 5px;
  }

  .sp-navi-list a::after {
    content: "";
    border-top: 2px solid var(--color_primary);
    border-right: 2px solid var(--color_primary);
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
  }
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas: "sidebar body";
  gap: 5rem;
  align-items: flex-start;
  margin-inline: auto;
  width: min(90%, 1024px);
}

.layout-sidebar .l-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 50px;
}

.layout-sidebar .l-label {
  border-bottom: 1px solid var(--color_border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.layout-sidebar .l-label [lang=en] {
  font-size: 1.0625rem;
}

.layout-sidebar .l-label .jp {
  font-size: 0.625rem;
}

.layout-sidebar .l-body {
  grid-area: body;
}

@media (max-width: 800px) {
  .layout-sidebar {
    grid-template-columns: 1fr;
    grid-template-areas: "body" "sidebar";
    gap: 5rem;
  }

  .layout-sidebar .l-sidebar {
    position: static;
  }
}

/*-----------------------------------------------------------
TOP（LP）共通
-----------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

:root {
  --color_peach: #FFEDE3;
  --color_teal_band: #ACE3EA;
  --color_bg_gray: #F2F6F7;
  --color_marker: #FFF48C;
  --color_blue_ttl: #2B77BA;
}

.c-primary {
  color: var(--color_primary);
}

.c-orange {
  color: var(--color_tertiary);
}

.marker {
  background: linear-gradient(transparent 62%, var(--color_marker) 62%);
}

.radius {
  border-radius: 15px;
}

.t-h2 {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}

.t-h2 [lang=en] {
  color: var(--color_primary);
  display: inline-block;
  border-bottom: 1px solid currentColor;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1;
  padding-bottom: 5px;
}

.t-h2 .jp {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.21em;
}

.t-h2.white [lang=en],
.t-h2.white .jp {
  color: var(--color_white);
}

@media (max-width: 800px) {
  .t-h2 {
    margin-bottom: 30px;
  }

  .t-h2 [lang=en] {
    font-size: 0.9375rem;
  }

  .t-h2 .jp {
    font-size: 1.375rem;
  }
}

.sec02,
.sec08,
.sec05,
.t-band01 {
  position: relative;
}

.sec02::before,
.sec08::before,
.sec05::before,
.t-band01::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-mask: url(../images/sec_bg_arrow.svg) no-repeat center/contain;
  mask: url(../images/sec_bg_arrow.svg) no-repeat center/contain;
  width: 193px;
  height: 65px;
  background-color: var(--notch, #fff);
  z-index: 1;
}

@media (max-width: 800px) {

  .sec02::before,
  .sec08::before,
  .sec05::before,
  .t-band01::before {
    width: 130px;
    height: 44px;
  }
}

.list-dot {
  display: grid;
  gap: 5px;
}

.list-dot li {
  position: relative;
  padding-left: 18px;
  line-height: 1.7;
}

.list-dot li::before {
  content: "";
  background-color: var(--color_tertiary);
  border-radius: 50%;
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.btn-cta-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: var(--color_white);
  border-radius: 60px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  min-width: 380px;
  height: 80px;
}

.btn-cta-tel .icon {
  fill: currentColor;
  width: 20px;
  height: 25px;
}

.btn-cta-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: var(--color_tertiary);
  border-radius: 60px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.8125rem;
  line-height: 1;
  letter-spacing: 0.1em;
  min-width: 400px;
  height: 80px;
  transition: opacity 0.5s;
}

.btn-cta-reserve .icon {
  fill: currentColor;
  width: 41px;
  height: 28px;
}

@media (any-hover: hover) {
  .btn-cta-reserve:hover {
    opacity: 0.7;
  }
}

.cta-time {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 1.5em;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .cta-btns {
    gap: 15px;
  }

  .btn-cta-tel {
    font-size: 1.75rem;
    min-width: min(340px, 100%);
    height: 60px;
  }

  .btn-cta-tel .icon {
    width: 16px;
    height: 20px;
  }

  .btn-cta-reserve {
    font-size: 1.25rem;
    min-width: min(340px, 100%);
    height: 60px;
  }

  .btn-cta-reserve .icon {
    width: 30px;
    height: 21px;
  }

  .cta-time {
    font-size: 0.938rem;
    margin-top: 20px;
  }
}

.t-cta-box {
  background-color: var(--color_white);
  border-radius: 30px;
  padding: 70px 5%;
  text-align: center;
}

.t-cta-box .cta-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 2.25rem;
  line-height: 1.38;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .t-cta-box {
    padding: 105px 6% 30px;
    position: relative;
  }

  .t-cta-box::before {
    content: '';
    background: url(../images/cta_img_sp.svg) no-repeat center/contain;
    width: 90px;
    height: 115px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .t-cta-box .cta-ttl {
    font-size: 1.438rem;
    margin-bottom: 25px;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
}

.hero .splide__slide img {
  width: 100%;
  height: calc(100svh - 80px);
  min-height: 740px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .hero .splide__slide img {
    min-height: 0;
    height: 740px;
  }
}

.hero .splide__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  position: absolute;
  right: 0;
  bottom: 12px;
  z-index: 5;
}

.hero .splide__pagination {
  position: static;
  padding: 0;
}

.hero .splide__pagination li {
  line-height: 1;
}

.hero .splide__pagination .splide__pagination__page {
  background: var(--color_white);
  opacity: 1;
}

.hero .splide__pagination .splide__pagination__page.is-active {
  background: var(--color_primary);
  transform: scale(1.2);
}

.hero .hero-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero .hero-inner {
  margin-inline: auto;
  width: min(90%, 1400px);
}

.hero .hero-badge {
  display: inline-block;
  background: linear-gradient(97deg, #2AA4B9 0%, #018AA7 100%);
  border-radius: 100px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 14px 40px;
  position: relative;
  margin-bottom: 30px;
}

.hero .hero-badge::after {
  content: "";
  width: 16px;
  height: 14px;
  background: var(--color_primary);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}

.hero .hero-ttl {
  color: var(--color_blue_ttl);
  font-size: 3.4375rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  letter-spacing: 0.15em;
  margin-bottom: 35px;
}

.hero .hero-ttl em {
  font-size: 3.75rem;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: var(--color_yellow);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  letter-spacing: 0;
}

.hero .hero-ttl .small {
  font-size: 3rem;
  letter-spacing: 0.1em;
}

.hero .hero-box {
  background-color: oklch(from var(--color_white) l c h/0.5);
  border: 2px solid var(--color_white);
  border-radius: 10px;
  padding: 25px 30px;
  width: -moz-fit-content;
  width: fit-content;
  pointer-events: auto;
}

.hero .hero-box .txt {
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  line-height: 1.5;
  letter-spacing: 0.21em;
  margin-bottom: 15px;
}

.hero .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background-color: var(--color_white);
  box-shadow: 0px 3px 6px oklch(from #000 l c h/0.16);
  border-radius: 10px;
  color: var(--color_tertiary);
  font-family: var(--font_jp);
  font-size: 1.3125rem;
  line-height: 1;
  letter-spacing: 0.15em;
  padding: 20px 20px 20px 30px;
  min-height: 55px;
  transition: opacity 0.5s;
}

.hero .btn-hero::after {
  content: "";
  -webkit-mask: url(../images/share/icon_btn_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/icon_btn_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  width: 17px;
  height: 14px;
  display: inline-block;
}

@media (any-hover: hover) {
  .hero .btn-hero:hover {
    opacity: 0.7;
  }
}

.hero .hero-features {
  display: flex;
  gap: 40px;
  position: absolute;
  right: 5.56%;
  bottom: 40px;
  z-index: 2;
}

.hero .hero-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/hero_feature.png) no-repeat center/contain;
  border-radius: 50%;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.75rem;
  line-height: 1.3;
  text-align: center;
  width: 240px;
  height: auto;
  aspect-ratio: 1;
}

@media (max-width: 800px) {
  .hero .splide__slide img {
    height: auto;
  }

  .hero .hero-body {
    position: static;
    pointer-events: auto;
    padding: 25px 5% 40px;
  }

  .hero .hero-inner {
    max-width: none;
    width: 100%;
    padding-top: 0;
    text-align: center;
  }

  .hero .hero-badge {
    font-size: 1.25rem;
    padding: 12px 18px;
    margin-bottom: 20px;
  }

  .hero .hero-badge::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero .hero-ttl {
    font-size: 1.5625rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .hero .hero-ttl em {
    font-size: 1.75rem;
  }

  .hero .hero-ttl .small {
    font-size: 1.4375rem;
  }

  .hero .hero-box {
    background-color: transparent;
    border: none;
    border-radius: 0;
    margin-inline: auto;
    padding: 0;
    width: 100%;
  }

  .hero .hero-box .txt {
    font-size: 1.0625rem;
  }

  .hero .btn-hero {
    justify-content: space-between;
    border-width: 2px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-inline: auto;
    width: 100%;
    font-size: 0.9375rem;
  }

  .hero .hero-features {
    position: static;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  .hero .hero-features li {
    font-size: 0.8125rem;
    width: 120px;
  }

  .hero .splide__controls {
    bottom: 8px;
  }
}

/*-----------------------------------------------------------
Sec01 SYMPTOMS
-----------------------------------------------------------*/
.sec01 {
  background-color: var(--color_bg_gray);
  padding: 100px 0 50px;
}

@media (max-width: 800px) {
  .sec01 {
    padding-top: 50px;
  }
}

.symptom-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-inline: auto;
  max-width: 940px;
  font-family: var(--font_jp);
}

.symptom-cards li {
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 25px 15px 30px;
  text-align: center;
}

.symptom-cards li .num {
  color: var(--color_primary);
  display: inline-block;
  border-bottom: 1px solid currentColor;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.symptom-cards li p {
  font-size: 1.625rem;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .symptom-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .symptom-cards li {
    padding: 22px 15px;
  }

  .symptom-cards li .num {
    font-size: 1.2rem;
  }

  .symptom-cards li p {
    font-size: 1.3rem;
  }

  .symptom-cards li p br {
    display: none;
  }
}

.symptom-img {
  margin-inline: auto;
  max-width: 540px;
  width: 70%;
}

.symptom-img img {
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  .symptom-img {
    width: 85%;
  }
}

/*-----------------------------------------------------------
Sec02 入院不要
-----------------------------------------------------------*/
.sec02 {
  --notch: var(--color_bg_gray);
  background: url(../images/sec02_bg_pc.jpg) no-repeat center/cover;
  color: var(--color_white);
  padding: 130px 0 110px;
  text-align: center;
}

.sec02 .lead-txt {
  font-family: var(--font_jp);
  font-size: 1.625rem;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.sec02 .catch {
  font-family: var(--font_jp);
  font-size: 2.5rem;
  line-height: 1.7;
  letter-spacing: 0.16em;
  margin-bottom: 40px;
}

.sec02 .catch .em span {
  background-image: radial-gradient(circle, #F5E14B 3px, transparent 3px);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0.45em;
  padding-top: 0.65em;
}

.sec02 .cta-time {
  color: var(--color_white);
}

@media (max-width: 800px) {
  .sec02 {
    background-image: url(../images/sec02_bg_sp.jpg);
    padding: 70px 0;
  }

  .sec02 .lead-txt {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }

  .sec02 .catch {
    font-size: 1.875rem;
    margin-bottom: 35px;
  }
}

.point-box {
  background-color: oklch(from var(--color_white) l c h/0.16);
  border: 1px solid var(--color_white);
  color: var(--color_text);
  margin-inline: auto;
  margin-bottom: 40px;
  max-width: 850px;
  padding: 40px 190px 40px 50px;
  position: relative;
}

.point-box .point-label {
  color: var(--color_yellow);
  font-family: var(--font_en);
  font-size: 2.625rem;
  line-height: 1;
  position: absolute;
  top: -18px;
  left: 40px;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  transform: rotate(-5deg);
}

.point-box .txt {
  flex: 1;
  font-family: var(--font_jp);
  font-size: 1.875rem;
  line-height: 1.5;
  color: var(--color_white);
  text-align: left;
}

.point-box .img {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 2;
  width: 190px;
}

@media (max-width: 800px) {
  .point-box {
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 85px 20px 25px;
  }

  .point-box .point-label {
    font-size: 2.625rem;
    top: -13px;
    left: 54px;
  }

  .point-box .txt {
    font-size: 1.5rem;
    text-align: left;
  }

  .point-box .img {
    top: -50px;
    right: 65px;
    bottom: auto;
    width: 110px;
  }

  .point-box .img img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/*-----------------------------------------------------------
Sec03 REASON
-----------------------------------------------------------*/
.sec03 {
  background-color: var(--color_white);
  padding: 100px 0 70px;
}

.sec03,
.sec05 {
  background-image: url(../images/bg01_deco01.png), url(../images/bg01_deco02.png), url(../images/bg01_deco03.png);
  background-repeat: no-repeat;
  background-position: top 135px right 60px, bottom 35.4% left -400px, bottom 175px right 0;
  background-size: 18.72% auto, 30.83% auto, 15.44% auto;
}

@media (max-width: 800px) {
  .sec03 {
    background-image: url(../images/bg01_deco03.png);
    background-position: bottom 175px right 0;
    padding: 60px 0;
  }
}

.reason-item {
  display: grid;
  grid-template-columns: 1fr 40%;
  align-items: flex-start;
  gap: 45px;
}

.reason-item+.reason-item {
  margin-top: 70px;
}

.reason-item.reverse {
  grid-template-columns: 40% 1fr;
}

.reason-item.reverse .desc {
  order: 2;
}

.reason-item.reverse .img {
  order: 1;
}

.reason-item .img img {
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  .reason-item {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .reason-item+.reason-item {
    margin-top: 50px;
  }

  .reason-item.reverse {
    grid-template-columns: 1fr;
  }

  .reason-item.reverse .desc {
    order: 1;
  }

  .reason-item.reverse .img {
    order: 2;
  }
}

.reason-label {
  display: inline-block;
  border: 2px solid var(--color_tertiary);
  border-radius: 10px;
  color: var(--color_tertiary);
  font-size: 1.5rem;
  font-family: var(--font_jp);
  line-height: 1;
  padding: 15px 30px;
  position: relative;
  margin-bottom: 30px;
}

.reason-label::before,
.reason-label::after {
  content: "";
  height: 2px;
  position: absolute;
  transform: translateX(-50%);
  bottom: -2px;
}

.reason-label::before {
  width: 15px;
  left: 50%;
  background-color: var(--color_white);
}

.reason-label::after {
  width: 20px;
  background-color: currentColor;
  left: 45%;
  transform: rotate(40deg);
  transform-origin: left center;
}

.reason-ttl {
  font-size: 2.25rem;
  line-height: 1.38;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
}

@media (max-width: 800px) {
  .reason-label {
    font-size: 1.125rem;
    padding: 12px 20px;
    margin-bottom: 18px;
  }

  .reason-ttl {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }

  .reason-ttl br {
    display: none;
  }
}

/*-----------------------------------------------------------
Band01 お悩み解決
-----------------------------------------------------------*/
.t-band01 {
  background: url(../images/cta_bg.jpg) no-repeat right bottom/cover;
  padding: 130px 0 120px;
}

.t-band01 .band-catch {
  font-family: var(--font_jp);
  font-size: 2.8125rem;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 800px) {
  .t-band01 {
    padding: 60px 0;
  }

  .t-band01 .band-catch {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
}

/*-----------------------------------------------------------
Sec04 SASとは
-----------------------------------------------------------*/
.sec04 {
  background-color: var(--color_peach);
  padding: 100px 0 70px;
}

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

@media (max-width: 800px) {
  .sec04 {
    padding: 60px 0;
  }

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

  .sec04 .tac br {
    display: none;
  }
}

.check-box {
  background-color: var(--color_white);
  border-radius: 30px;
  padding: 15px;
  margin-bottom: 60px;
}

.check-box-inner {
  border: 1px solid var(--color_primary);
  border-radius: 20px;
  padding: 60px 6% 60px;
}

@media (max-width: 800px) {
  .check-box {
    margin-bottom: 40px;
    padding: 8px;
  }

  .check-box-inner {
    padding: 35px 6%;
  }
}

.check-items {
  display: grid;
}

.check-items li {
  font-family: var(--font_jp);
  padding-left: 32px;
  position: relative;
}

.check-items li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 21px;
  height: 20px;
}

.check-items.large {
  font-size: 1.5rem;
  gap: 10px 0;
}

.check-items.large li {
  line-height: 1.6;
  padding-left: 30px;
}

.check-items.large li::before {
  top: 0.35em;
}

.check-items.center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 2em;
  max-width: 620px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .check-items.center {
    display: grid;
    gap: 10px;
  }

  .check-items li {
    font-size: 0.9375rem !important;
  }

  .check-items li::before {
    top: 0.1em !important;
  }
}

.hand-ttl {
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.15em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  position: relative;
}

.hand-ttl::before,
.hand-ttl::after {
  content: "";
  height: 2px;
  position: absolute;
  transform: translateX(-50%);
  bottom: -2px;
}

.hand-ttl::before {
  width: 30px;
  left: 50%;
  background-color: var(--color_white);
}

.hand-ttl::after {
  width: 24px;
  background-color: currentColor;
  left: calc(50% - 15px);
  transform: rotate(40deg);
  transform-origin: left center;
}

@media (max-width: 800px) {
  .hand-ttl {
    font-size: 1.25rem;
    margin-bottom: 25px;
  }
}

.check-note {
  font-family: var(--font_jp);
  font-size: 1.625rem;
  text-align: center;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .check-note {
    font-size: 0.9375rem;
    margin-bottom: 30px;
  }
}

.about-sas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.about-sas .txt {
  font-family: var(--font_jp);
  font-size: 2.5rem;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-thickness: 0.35em;
  text-decoration-color: var(--color_yellow);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  letter-spacing: 0.1em;
}

.about-sas .img {
  width: 190px;
}

@media (max-width: 800px) {
  .about-sas {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .about-sas .txt {
    font-size: 1.125rem;
  }

  .about-sas .img {
    width: 120px;
  }
}

.sas-box {
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 70px 0;
  margin-bottom: 60px;
}

.sas-box .box-ttl {
  font-size: 2.5rem;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .sas-box {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .sas-box .box-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}

.why-figures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 30px;
}

.why-figures figure {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color_primary);
}

.why-figures figure figcaption {
  font-size: 1.625rem;
  color: var(--color_white);
  font-family: var(--font_jp);
  text-align: center;
  padding: 17px 10px;
  line-height: 1.4;
}

.why-figures figure img {
  width: 87%;
  margin: 25px auto;
  height: auto;
}

.why-figures figure.normal figcaption {
  background-color: var(--color_primary);
}

.why-figures figure.apnea {
  border-color: #757A80;
}

.why-figures figure.apnea figcaption {
  background-color: #757A80;
}

@media (max-width: 800px) {
  .why-figures {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .why-figures figure figcaption {
    font-size: 1.125rem;
  }
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.feature-cards .card {
  background-color: #FFEDE3;
  border-radius: 20px;
  overflow: hidden;
}

.feature-cards .card .card-ttl {
  background: var(--color_orange);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.625rem;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding: 14px 10px;
}

.feature-cards .card .card-desc {
  line-height: 1.8;
  padding: 25px 15px 30px;
}

.feature-cards .card .card-txt {
  font-family: var(--font_jp);
}

@media (max-width: 800px) {
  .feature-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-cards .card .card-ttl {
    font-size: 1.125rem;
  }
}

.risk-box {
  background-color: var(--color_white);
  border: 2px solid #757A80;
  border-radius: 30px;
  padding: 80px 6% 65px;
  position: relative;
  text-align: center;
  margin-bottom: 125px;
}

.risk-box .risk-ttl {
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  white-space: nowrap;
  padding: 0 40px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.risk-box .risk-ttl::before {
  content: "";
  background: var(--color_white);
  width: 100%;
  height: 4px;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  z-index: -1;
}

.risk-box .risk-deco {
  width: 120px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -75px;
  z-index: 2;
}

.risk-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.risk-chips li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #F3F3F3;
  border: 1px solid var(--color_primary);
  border-radius: 20px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 23px 45px;
  position: relative;
}

.risk-chips li::before {
  content: "";
  background: url(../images/share/icon_check_blue.svg) no-repeat center/contain;
  width: 21px;
  height: 20px;
}

@media (max-width: 800px) {
  .risk-box {
    padding: 50px 6% 35px;
    margin-bottom: 90px;
  }

  .risk-box .risk-deco {
    width: 80px;
    bottom: -55px;
    left: 54%;
  }

  .risk-box .risk-ttl {
    font-size: 1.125rem;
    white-space: normal;
    width: 80%;
    padding: 0 10px;
  }

  .risk-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .risk-chips li {
    width: 100%;
    font-size: 0.9375rem;
    padding: 14px 18px;
    border-radius: 10px;
  }

  .risk-chips li::before {
    left: 16px;
  }
}

.dakara-box {
  background-color: var(--color_white);
  border-radius: 30px;
  padding: 15px;
  margin-bottom: 70px;
  box-shadow: 0 4px 15px oklch(from #44506B l c h/0.11);
}

.dakara-box-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  border: 1px solid var(--color_primary);
  border-radius: 20px;
  padding: 30px 6% 25px;
}

.dakara-box-inner .txt {
  font-family: var(--font_jp);
  font-size: 2.5rem;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-thickness: 0.35em;
  text-decoration-color: var(--color_yellow);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  letter-spacing: 0.2em;
}

.dakara-box-inner .txt em {
  color: var(--color_primary);
}

.dakara-box-inner .img {
  width: 230px;
}

@media (max-width: 800px) {
  .dakara-box {
    padding: 8px;
    margin-bottom: 50px;
  }

  .dakara-box-inner {
    flex-direction: column;
    gap: 20px;
    padding: 35px 6%;
  }

  .dakara-box-inner .txt {
    font-size: 1.25rem;
  }

  .dakara-box-inner .img {
    width: 120px;
  }
}

.sec04-closing {
  font-family: var(--font_jp);
  font-size: 2.8125rem;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-align: center;
}

@media (max-width: 800px) {
  .sec04-closing {
    font-size: 1.25rem;
  }
}

/*-----------------------------------------------------------
Sec05 FLOW・PRICE
-----------------------------------------------------------*/
.sec05 {
  --notch: var(--color_peach);
  background-color: var(--color_white);
  padding: 100px 0;
}

@media (max-width: 800px) {
  .sec05 {
    background: transparent;
    padding: 60px 0;
  }
}

.flow-layout {
  display: grid;
  gap: 90px 0;
}

.flow-layout .flow-container {
  width: min(90%, 1024px);
  margin-inline: auto;
}

.flow-layout .flow-card {
  border: 1px solid var(--color_primary);
  border-radius: 30px;
  padding: 70px 0;
  background-color: var(--color_white);
}

.flow-layout .flow-card+.flow-card {
  position: relative;
}

.flow-layout .flow-card+.flow-card::before {
  content: "";
  background: var(--color_primary);
  width: 64px;
  height: 29px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  left: 50%;
  top: -59px;
  transform: translateX(-50%);
}

.flow-layout .flow-ttl {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.16em;
  padding: 12px 20px;
  margin-bottom: 20px;
}

.flow-layout .flow-ttl .num {
  color: var(--color_tertiary);
  font-family: var(--font_jp);
  font-size: 1.875rem;
}

.flow-layout .flow-subttl {
  font-size: 1.5rem;
  letter-spacing: 0.13em;
}

.flow-layout .flow-wrapper {
  display: grid;
  grid-template-columns: 1fr 305px;
  align-items: center;
  gap: 25px;
}

@media (max-width: 800px) {
  .flow-layout {
    gap: 60px 0;
  }

  .flow-layout .flow-card {
    padding: 35px 0 40px;
  }

  .flow-layout .flow-card+.flow-card::before {
    width: 44px;
    height: 20px;
    top: -40px;
  }

  .flow-layout .flow-ttl {
    font-size: 1.125rem;
    gap: 1rem;
    padding: 10px 15px;
    margin-bottom: 15px;
  }

  .flow-layout .flow-ttl .num {
    font-size: 1.125rem;
  }

  .flow-layout .flow-subttl {
    font-size: 1rem;
  }

  .flow-layout .flow-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .flow-layout .flow-wrapper .img {
    width: 100%;
  }
}

.flow-voice {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.flow-voice .img {
  flex-shrink: 0;
  width: 175px;
}

.flow-voice .balloon {
  background-color: var(--color_blue_light);
  border-radius: 12px;
  flex: 1;
  padding: 25px 30px;
  position: relative;
}

.flow-voice .balloon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--color_blue_light);
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

@media (max-width: 800px) {
  .flow-voice {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 25px;
  }

  .flow-voice .img {
    width: 150px;
  }

  .flow-voice .balloon {
    padding: 20px;
  }

  .flow-voice .balloon::before {
    top: auto;
    bottom: -14px;
    left: 40px;
    transform: none;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}

.flow-arrow {
  margin: 25px auto;
  width: -moz-fit-content;
  width: fit-content;
}

.flow-arrow::before {
  content: "";
  display: block;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 22px solid var(--color_primary);
}

.price-box {
  background-color: var(--color_bg_gray);
  border-radius: 20px;
  margin-top: 90px;
  padding: 70px 0;
}

.price-box .table-style01 .small {
  font-size: 1.0625rem;
}

.price-box .notice {
  margin-top: 20px;
  font-size: 0.875rem;
}

@media (max-width: 800px) {
  .price-box {
    margin-top: 60px;
    padding: 40px 0;
  }

  .price-box .table-style01 .small {
    font-size: 0.813rem;
  }
}

/*-----------------------------------------------------------
CTA
-----------------------------------------------------------*/
.t-cta {
  background: url(../images/cta_bg.jpg) no-repeat right bottom/cover;
  padding: 80px 0;
}

.t-cta.light {
  background-color: var(--color_teal_band);
}

@media (max-width: 800px) {
  .t-cta {
    padding: 50px 0;
  }
}

/*-----------------------------------------------------------
Sec06 CPAP療法
-----------------------------------------------------------*/
.sec06 {
  background-color: var(--color_bg_gray);
  padding: 100px 0;
}

@media (max-width: 800px) {
  .sec06 {
    padding: 60px 0;
  }
}

.method-catch {
  font-size: 2.5rem;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 65px;
}

@media (max-width: 800px) {
  .method-catch {
    font-size: 1.25rem;
    margin-bottom: 35px;
  }
}

.method-box {
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 70px 0;
}

.method-box .method-ttl {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 5px;
}

.method-box .method-subttl {
  font-family: var(--font_jp);
  font-size: 2rem;
  text-align: center;
}

@media (max-width: 800px) {
  .method-box {
    padding: 40px 0;
  }

  .method-box .method-ttl {
    font-size: 1.3125rem;
    margin-bottom: 20px;
  }

  .method-box .method-subttl {
    font-size: 1.0625rem;
    margin-bottom: 15px;
  }
}

.method-figures {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.method-figures figure {
  max-width: 415px;
  flex: 1;
}

.method-figures figure img {
  width: 100%;
  height: auto;
}

.method-figures .arrow {
  flex-shrink: 0;
}

.method-figures .arrow::before {
  content: "";
  background: url(../images/arrow_right.svg) no-repeat center/contain;
  width: 68px;
  height: 58px;
  display: block;
}

@media (max-width: 800px) {
  .method-figures {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .method-figures .arrow::before {
    transform: rotate(90deg);
    width: 45px;
    height: 38px;
  }
}

/*-----------------------------------------------------------
Sec07 CPAPのお悩み
-----------------------------------------------------------*/
.sec07 {
  padding: 125px 0 80px;
  background: url(../images/bg02_deco01.png) no-repeat top 65px right 5.5%/337px auto, url(../images/bg02_deco02.png) no-repeat bottom 140px left -280px/450px auto;
}

@media (max-width: 800px) {
  .sec07 {
    background: url(../images/bg02_sp_top.png) no-repeat top 40px center / 483px auto, url(../images/bg02_sp_bottom.png) no-repeat bottom 50px center / 483px auto;
    padding: 60px 0;
  }
}

.worry-catch {
  font-size: 2.5rem;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .worry-catch {
    font-size: 1.625rem;
    margin-bottom: 25px;
  }
}

.worry-note {
  text-align: center;
  margin-bottom: 40px;
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 2rem;
  font-size: clamp(1.25rem, 1.78vw, 2rem);
  line-height: 1.7;
  letter-spacing: 0.2em;
  padding: 10px 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background: var(--color_white);
}

@media (max-width: 800px) {
  .worry-note {
    font-size: 1.063rem;
    padding: 10px 15px;
    margin-bottom: 30px;
  }
}

.worry-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: flex-start;
  margin-bottom: 55px;
}

.worry-layout .img {
  position: relative;
  z-index: 2;
  margin: 60px 0 0 -20px;
}

.worry-layout .img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 800px) {
  .worry-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .worry-layout .img {
    display: none;
  }
}

.worry-box {
  border: 5px solid var(--color_primary);
  border-radius: 30px;
  padding: 55px 9.5% 70px;
  background: var(--color_white);
}

.worry-box .worry-ttl {
  font-size: 2rem;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 35px;
}

@media (max-width: 800px) {
  .worry-box {
    padding: 30px 25px;
  }

  .worry-box .worry-ttl {
    font-size: 1.375rem;
  }
}

.worry-closing {
  font-family: var(--font_jp);
  font-size: 2.8125rem;
  line-height: 1.35;
  letter-spacing: 0.2em;
  text-align: center;
}

@media (max-width: 800px) {
  .worry-closing {
    font-size: 1.438rem;
  }
}

/*-----------------------------------------------------------
Sec08 POINT
-----------------------------------------------------------*/
.sec08 {
  --notch: #fff;
  background-color: var(--color_primary);
  padding: 120px 0 100px;
}

.sec08 .t-h2 .jp {
  letter-spacing: 0.08em;
}

@media (max-width: 800px) {
  .sec08 {
    padding: 60px 0;
  }
}

.point-card {
  background-color: var(--color_white);
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1fr 32.23%;
  align-items: center;
  gap: 25px;
  padding: 60px 7.5%;
}

.point-card+.point-card {
  margin-top: 70px;
}

.point-card .point-label {
  color: var(--color_tertiary);
  font-size: 1.5rem;
  font-family: var(--font_jp);
  line-height: 1;
  margin-bottom: 20px;
}

.point-card .point-ttl {
  font-size: 2.25rem;
  line-height: 1.38;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}

.point-card .img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .point-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 35px 6%;
  }

  .point-card+.point-card {
    margin-top: 30px;
  }

  .point-card .point-label {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .point-card .point-ttl {
    font-size: 1.25rem;
  }

  .point-card .point-ttl br {
    display: none;
  }
}

/*-----------------------------------------------------------
Sec09 FAQ
-----------------------------------------------------------*/
.sec09 {
  background-color: var(--color_bg_gray);
  padding: 100px 0;
}

@media (max-width: 800px) {
  .sec09 {
    padding: 60px 0;
  }
}

.faq-box {
  background-color: var(--color_white);
  border-radius: 30px;
  padding: 75px 6.5% 60px;
}

@media (max-width: 800px) {
  .faq-box {
    padding: 15px 6% 35px;
  }
}

.faq-style+.faq-style {
  margin-top: 30px;
}

.faq-style .faq-summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0 45px 17px 5px;
  border-bottom: 1px solid #707070;
  position: relative;
}

.faq-style .faq-summary::-webkit-details-marker {
  display: none;
}

.faq-style .faq-summary .faq-ttl {
  flex: 1;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.09em;
}

.faq-style .faq-summary .faq-open-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
}

.faq-style .faq-summary .faq-open-icon::before,
.faq-style .faq-summary .faq-open-icon::after {
  content: "";
  background-color: var(--color_text);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}

.faq-style .faq-summary .faq-open-icon::before {
  width: 100%;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-style .faq-summary .faq-open-icon::after {
  width: 2px;
  height: 100%;
  transform: translate(-50%, -50%);
}

.faq-style[open] .faq-summary .faq-open-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-style .faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color_primary);
  border-radius: 50%;
  color: var(--color_white);
  flex-shrink: 0;
  font-family: var(--font_jp);
  font-size: 1.625rem;
  width: 54px;
  height: 54px;
}

.faq-style .faq-content {
  overflow: hidden;
}

.faq-style .faq-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 10px 45px 0 5px;
}

.faq-style .faq-inner .faq-icon {
  background-color: transparent;
  color: var(--color_tertiary);
  font-size: 1.875rem;
}

.faq-style .faq-inner .faq-desc {
  flex: 1;
}

@media (max-width: 800px) {
  .faq-style+.faq-style {
    margin-top: 20px;
  }

  .faq-style .faq-summary {
    gap: 1rem;
    padding: 0 30px 12px 0;
  }

  .faq-style .faq-summary .faq-ttl {
    font-size: 1rem;
  }

  .faq-style .faq-summary .faq-open-icon {
    right: 0;
    width: 18px;
    height: 18px;
  }

  .faq-style .faq-icon {
    font-size: 0.9375rem;
    width: 32px;
    height: 32px;
  }

  .faq-style .faq-inner {
    gap: 1rem;
    padding: 10px 0 0;
  }

  .faq-style .faq-inner .faq-icon {
    width: 32px;
  }
}

/*-----------------------------------------------------------
Sec10 SASバナー
-----------------------------------------------------------*/
.sec10 {
  background: url(../images/sec10_bg.jpg) no-repeat center/cover;
  padding: 100px 0 80px;
}

@media (max-width: 800px) {
  .sec10 {
    padding: 60px 0;
  }
}

.sas-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.19);
  backdrop-filter: blur(2px);
  border: 1px solid var(--color_white);
  border-radius: 20px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 2.5rem;
  line-height: 1.7;
  min-height: 280px;
  padding: 30px 5%;
  position: relative;
  text-align: center;
  transition: opacity 0.5s;
}

.sas-banner::after {
  content: "";
  background: var(--color_white);
  width: 31px;
  height: 31px;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  position: absolute;
  right: 13px;
  bottom: 13px;
}

@media (any-hover: hover) {
  .sas-banner:hover {
    opacity: 0.7;
  }
}

@media (max-width: 800px) {
  .sas-banner {
    font-size: 1.125rem;
    min-height: 140px;
  }

  .sas-banner::after {
    width: 20px;
    height: 20px;
  }
}

/*-----------------------------------------------------------
Sec11 TREATMENT
-----------------------------------------------------------*/
.sec11 {
  background: url(../images/sec11_bg.jpg) no-repeat center/cover;
  padding: 100px 0 120px;
}

@media (max-width: 800px) {
  .sec11 {
    padding: 60px 0;
  }
}

.treatment-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.treatment-cards a {
  border-radius: 10px;
  background-color: var(--color_white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--color_text);
  padding: 30px 8px;
  aspect-ratio: 224/255;
  width: 100%;
  height: auto;
  position: relative;
  transition: opacity 0.5s;
}

.treatment-cards a::after {
  content: "";
  background-color: var(--color_primary);
  width: 17px;
  height: auto;
  aspect-ratio: 1;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  right: 9px;
  bottom: 10px;
}

@media (any-hover: hover) {
  .treatment-cards a:hover {
    opacity: 0.7;
  }
}

.treatment-cards figure {
  width: 110px;
  height: auto;
  aspect-ratio: 1;
  background: url(../images/sec11_icon_bg.svg) no-repeat center/contain;
  display: grid;
  place-content: center;
}

.treatment-cards .ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 800px) {
  .treatment-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .treatment-cards figure {
    width: 70px;
  }

  .treatment-cards figure img {
    width: 100%;
    height: 35px;
    object-fit: contain;
  }

  .treatment-cards a {
    gap: 12px;
    padding: 25px 8px 22px;
  }

  .treatment-cards .ttl {
    font-size: 0.875rem;
  }
}

/*-----------------------------------------------------------
Sec12 CLINIC
-----------------------------------------------------------*/
.sec12 {
  background-color: var(--color_white);
  padding: 100px 0 0;
}

@media (max-width: 800px) {
  .sec12 {
    padding: 60px 0 0;
  }
}

.clinic-slider {
  margin-bottom: 70px;
}

.clinic-slider .splide-wrapper {
  position: relative;
}

.clinic-slider .splide__slide img {
  aspect-ratio: 400/219;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.clinic-slider .splide__slide {
  opacity: 0.4;
  transition: opacity 0.5s;
}

.clinic-slider .splide__slide.is-active {
  opacity: 1;
}

.clinic-slider .splide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  z-index: 2;
}

.clinic-slider .splide__arrow--prev,
.clinic-slider .splide__arrow--next {
  background-size: 20px auto;
}

.clinic-slider .splide__arrow--prev {
  left: max(15px, 50% - 440px);
}

.clinic-slider .splide__arrow--prev::before {
  transform: rotate(-135deg);
}

.clinic-slider .splide__arrow--next {
  right: max(15px, 50% - 440px);
}

.clinic-slider .splide__arrow--next::before {
  transform: rotate(45deg);
}

.clinic-slider .splide__pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.clinic-slider .splide__pagination .splide__pagination__page {
  background-color: var(--color_white);
  opacity: 1;
}

.clinic-slider .splide__pagination .splide__pagination__page.is-active {
  background-color: var(--color_primary);
  transform: scale(1.1);
}

@media (max-width: 800px) {
  .clinic-slider {
    margin-bottom: 50px;
  }

  .clinic-slider .splide__arrow {
    display: none;
  }

  .clinic-slider .splide__pagination {
    bottom: 8px;
  }
}

.clinic-map {
  margin-bottom: 70px;
}

.clinic-map iframe {
  display: block;
  width: 100%;
  height: 480px;
}

@media (max-width: 800px) {
  .clinic-map {
    margin-bottom: 45px;
  }

  .clinic-map iframe {
    height: 320px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.hidden {
  overflow: hidden;
}

.list-disc {
  display: grid;
  grid-gap: 5px !important;
}

.list-disc li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
}

.list-disc li::marker {
  color: var(--color_tertiary);
  font-size: 0.9375rem;
}

.list-disc.center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.list-check {
  display: grid;
  grid-gap: 5px !important;
}

.list-check li {
  position: relative;
  padding-left: 30px;
}

.list-check li::before {
  content: "";
  -webkit-mask: url(../images/share/icon_check.svg) no-repeat center/contain;
  mask: url(../images/share/icon_check.svg) no-repeat center/contain;
  background-color: var(--color_tertiary);
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
}

.list-num {
  counter-reset: number;
  display: grid;
  grid-gap: 5px !important;
}

.list-num>li {
  padding-left: 30px;
  position: relative;
}

.list-num>li:before {
  background-color: var(--color_tertiary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 0.6875rem;
  position: absolute;
  top: 6px;
  left: 0;
  line-height: 20px;
  text-align: center;
  width: 20px;
  height: 20px;
}

.table-style01 {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  background: var(--color_white);
  border: 1px solid #707070;
}

.table-style01 th,
.table-style01 td {
  background-color: var(--color_white);
  border-bottom: 1px solid #707070;
  font-weight: normal;
  padding: 10px 40px;
  vertical-align: middle;
}

.table-style01 th {
  font-weight: normal;
  font-family: var(--font_jp);
}

.table-style01 thead th {
  background-color: var(--color_primary);
  border-bottom: none;
  color: var(--color_white);
  font-family: var(--font_jp);
  padding: 10px;
  text-align: center;
}

.table-style01 thead th+th {
  border-left: 1px solid var(--color_white);
}

.table-style01 tbody tr:last-child th,
.table-style01 tbody tr:last-child td {
  border-bottom: none;
}

.table-style01 tbody th {
  border-right: 1px solid #707070;
  text-align: left;
}

.table-style01 .bg01 {
  background-color: var(--color_gray_light);
}

.table-scroll-txt {
  display: none;
}

@media (max-width: 800px) {

  .table-style01 th,
  .table-style01 td {
    padding: 10px 15px;
    line-height: 1.5;
  }

  .table-style01.sp-block colgroup {
    display: none;
  }

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }

  .table-style01.sp-block tbody th {
    border-right: none;
  }

  .table-scroll::before {
    content: "スクロールできます";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/contain;
    width: 100%;
    height: 24.5px;
    margin-bottom: 5px;
    padding-left: 40px;
    position: sticky;
    top: 0;
    left: 0;
  }

  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }

  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }

  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }
}

.video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

.google-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 450px;
}

@media (max-width: 800px) {
  .google-map iframe {
    height: 300px;
  }
}

/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.l-imgR .l-img,
.l-imgL .l-img {
  width: 40%;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small {
  width: 30%;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
  flex: 1;
}

.l-imgR {
  flex-direction: row-reverse;
}

.fl-wrap {
  display: flow-root;
}

.fl-imgR,
.fl-imgL {
  width: 40%;
}

.fl-imgR.small,
.fl-imgL.small {
  width: 30%;
}

.fl-imgR {
  float: right;
  margin: 0 0 15px 35px;
}

.fl-imgL {
  float: left;
  margin: 0 35px 15px 0;
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .l-imgR .l-img,
  .l-imgL .l-img {
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img.small,
  .l-imgL .l-img.small {
    width: 100%;
  }

  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }

  .fl-imgR.small,
  .fl-imgL.small {
    width: 100%;
  }
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  transition: opacity 0.5s;
}

@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.bold,
.strong {
  font-weight: normal;
  font-family: var(--font_jp);
}

.c-red {
  color: #F44336;
}

.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 228, 0, 0.4);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.notice {
  font-size: 0.8125rem;
  text-indent: -1em;
  padding-left: 1em;
}

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center !important;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right !important;
}

.tal {
  text-align: left !important;
}

.col1,
.col2,
.col3,
.col4 {
  display: grid;
}

.col1 {
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.col4 {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

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

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}

/*------------
splide
-------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: flex;
  align-items: center;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow--prev,
.splide__arrow--next {
  display: block;
  width: 30px;
  height: 30px;
}

.splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
}

.splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 6rem;
}

@media (max-width: 800px) {
  .splide__controls {
    margin-top: 3rem;
  }
}

.splide__pagination {
  gap: 8px;
}

.splide__pagination__page {
  background: #D0D0C9;
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #707070;
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__toggle {
  cursor: pointer;
  background: #ccc;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  background: #D3D3D3;
}

.splide__toggle svg {
  fill: #fff;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}
