@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: #ddd;
  --color_primary: #34A8BC;
  --color_secondary: #B29540;
  --color_gold: #BA981B;
  --color_gold_light: #E6D07E;
  --color_orange: #E67E31;
  --color_white: #fff;
  --color_black: #333;
  --color_dark: #404040;
  --color_dark_light: #585858;
  --color_dark_lighter: #626262;
  --color_blue: #0060A7;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #8D8D8D;
  --color_gray_blue: #A1B8C9;
  --color_bg: #F0F0F0;
  --color_bg_blue: #E1E9EF;
  --color_bg_cyan: #D5F1F6;
}

/* ====================================================
【アニメーション】
==================================================== */
: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-筑紫B丸ゴシック Std R",
    "Local Noto Sans JP",
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  --font_jp:
    "FOT-筑紫B丸ゴシック Std B",
    "Noto Sans JP",
    sans-serif;
  --font_en: "Figtree", sans-serif;
  --font_weight: normal;
  --font_size: 1rem;
  --line_height: 2.0;
  --letter_spacing: .1em;
}

@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.1em;
}

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

figure:has(img) {
  line-height: 0;
}

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

.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: 110px;
}

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

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

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

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

.container.x-wide {
  max-width: 1476px;
}

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

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

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

.time-table th,
.time-table td {
  padding: 16px 4px;
  text-align: center;
  vertical-align: middle;
}

.time-table thead th {
  background-color: var(--color_dark);
  color: var(--color_white);
  font-family: var(--font_jp);
}

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

.time-table tbody th {
  font-weight: normal;
}

.time-table th:first-child {
  background-color: var(--color_bg);
  border-right: 1px solid var(--color_dark);
  width: 122px;
}

.time-table thead th:first-child {
  background-color: var(--color_dark);
  border-right-color: var(--color_dark);
}

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

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

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

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

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

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

/*ボタン*/
.btn-more {
  display: inline-block;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.9375rem;
  line-height: 1.3;
  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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background-color: var(--color_white);
  padding: 28px 30px;
}

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

.h-logo img {
  width: 270px;
  height: auto;
}

@media (max-width: 800px) {
  .header {
    gap: 15px;
    padding: 15px 20px;
  }

  .h-logo img {
    width: 200px;
  }
}

/*------------
Gnavi
--------------*/
.gnavi {
  background-color: var(--color_white);
  padding: 5px 0;
}

.gnavi.is-fixed {
  padding: 0;
}

.gnavi.is-fixed .gnavi-inner {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color_white);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
  width: 100%;
  z-index: 90;
}

.gnavi.is-fixed .gnavi-logo {
  display: block;
}

.gnavi-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0 30px;
  height: 110px;
}

.gnavi-logo {
  display: none;
  line-height: 1;
}

.gnavi-logo img {
  width: 194px;
  height: auto;
}

.gnavi-links {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.gnavi-links>li>a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 50% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease, color 0.5s ease;
}

@media (any-hover: hover) {
  .gnavi-links>li>a:hover {
    color: var(--color_primary);
    background-size: 100% 1px;
  }
}

@media (max-width: 1300px) {
  .gnavi-inner {
    gap: 10px;
    height: 80px;
    padding: 0 10px;
  }

  .gnavi-links {
    gap: 20px;
  }

  .gnavi-links>li>a {
    font-size: 0.6875rem;
  }
}

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

/*------------
Drawer 共通
--------------*/
html.is-open {
  height: 100%;
  overflow: hidden;
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  position: relative;
  padding: 120px 0 40px;
}

.f-contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-inline: auto;
  margin-bottom: 80px;
  width: min(90%, 1024px);
}

.f-logo {
  margin-bottom: 30px;
}

.f-logo img {
  width: 385px;
  height: auto;
}

.f-address {
  margin-bottom: 20px;
}

.f-access {
  line-height: 1.8;
}

.f-contents .time-table {
  margin-bottom: 15px;
}

.f-holiday {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  margin-bottom: 10px;
}

.f-holiday .tag {
  border: 1px solid var(--color_dark_light);
  border-radius: 3px;
  color: var(--color_dark_light);
  font-family: var(--font_jp);
  font-size: 0.875rem;
  line-height: 1;
  padding: 3px 4px;
}

.f-note {
  font-size: 0.9375rem;
  line-height: 1.9;
}

.copyright {
  font-size: 0.75rem;
  text-align: right;
  margin-inline: auto;
  width: min(90%, 1024px);
}

.pagetop {
  display: grid;
  place-items: center;
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 25px;
  right: 51px;
}

.pagetop img {
  width: 16px;
  height: auto;
}

@media (max-width: 1024px) {
  .f-contents {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .f-contents {
    gap: 25px;
    margin-bottom: 40px;
  }

  .f-logo img {
    width: 280px;
  }

  .copyright {
    text-align: center;
  }

  .pagetop {
    display: none;
  }
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  :root {
    --navi-background: var(--color_primary);
    --navi-border-color: rgba(255, 255, 255, 0.4);
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
  }

  .sp-navi {
    display: block;
  }

  .sp-navi-btns {
    display: flex;
    background: var(--navi-background);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
  }

  .sp-navi-btns>* {
    flex: 1;
    position: relative;
  }

  .sp-navi-btns .item {
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item:not(:last-child) {
    border-right: 1px solid var(--navi-border-color);
  }

  .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 6px 0;
  }

  .sp-navi-btns .item .img {
    display: block;
  }

  .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 5px;
    stroke: var(--svg-stroke);
  }

  .sp-navi-btns .item .ttl {
    display: block;
  }

  .sp-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 6px;
  }

  .sp-menu-btn .ttl {
    display: block;
    color: var(--navi-text-color);
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

  .sp-menu-btn span:not(.ttl) {
    background: var(--menu-btn);
    position: absolute;
    left: 50%;
    width: 18px;
    height: 1px;
    transform: translateX(-50%);
    transition: 0.4s;
  }

  .sp-menu-btn span:not(.ttl):nth-of-type(1) {
    top: 13px;
  }

  .sp-menu-btn span:not(.ttl):nth-of-type(2) {
    top: 19px;
  }

  .sp-menu-btn span:not(.ttl):nth-of-type(3) {
    top: 25px;
  }

  .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 6px) rotate(-45deg);
  }

  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-menu-btn.is-open span:nth-of-type(3) {
    transform: translate(-50%, -6px) rotate(45deg);
  }

  .sp-navi-drawer {
    pointer-events: none;
    visibility: hidden;
    background: var(--color_white);
    color: var(--color_black);
    font-size: 0.9375rem;
    padding: 25px 25px 100px;
    position: fixed;
    inset: 0;
    transform: translateX(60px);
    transition: 0.5s var(--ease);
    opacity: 0;
    z-index: 1000;
  }

  .sp-navi-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    transition-timing-function: var(--ease);
  }

  .sp-logo {
    margin-bottom: 30px;
  }

  .sp-logo img {
    width: 200px;
    height: auto;
  }

  .sp-navi-list {
    border-top: 1px solid var(--color_gray);
    font-weight: bold;
    line-height: 1.5;
  }

  .sp-navi-list>li {
    position: relative;
    border-bottom: 1px solid var(--color_gray);
  }

  .sp-navi-list>li>a {
    display: grid;
    align-items: center;
    padding: 10px 25px 10px 0;
    position: relative;
    min-height: 50px;
  }

  .sp-navi-list>li>a::after {
    content: "";
    background-color: var(--color_black);
    -webkit-mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    mask: url(../images/share/sp_navi_arrow.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 11px;
    height: 11px;
    transform: translateY(-50%);
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  padding: 37px 0 132px;
  position: relative;
}

.hero::before {
  content: "";
  background: url(../images/hero_bg.jpg) no-repeat center bottom/cover;
  width: 100%;
  height: 60%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}

.hero.is-fixed {
  margin-bottom: 120px;
}

@media (max-width: 800px) {
  .hero.is-fixed {
    margin-bottom: 0;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: 50px;
}

.hero-copy {
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: clamp(1.5625rem, 2.5vw, 2.8125rem);
  letter-spacing: 0.1em;
  line-height: 1.65;
  margin-bottom: clamp(35px, 5.7vw, 103px);
}

.hero-band {
  display: inline-block;
  background-image: radial-gradient(circle, #D8B637 0%, #C89F2B 50%, #B4821D 100%);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: clamp(1.4375rem, 2vw, 2.25rem);
  line-height: 1;
  padding: 3px clamp(10px, 2.7vw, 50px) 4px;
  margin-bottom: 22px;
}

.hero-ttl {
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: clamp(3rem, 3.9vw, 4.375rem);
  line-height: 1.4;
}

.hero-img {
  width: 100%;
}

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

@media (max-width: 1024px) {
  .hero {
    padding: 30px 0 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 25px;
  }

  .hero-copy {
    font-size: 1.375rem;
    margin-bottom: 25px;
  }

  .hero-band {
    font-size: 1.25rem;
    padding: 10px 15px;
    margin-bottom: 15px;
  }

  .hero-ttl {
    font-size: 2.5rem;
  }
}

/*-----------------------------------------------------------
サイド追従CTA
-----------------------------------------------------------*/
.side-cta {
  display: grid;
  gap: 10px;
  position: fixed;
  top: 240px;
  right: 0;
  z-index: 80;
}

.side-cta .item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--color_white);
  font-size: 1rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  padding: 27px 9px;
}

.side-cta .item::before {
  content: "";
  background-color: var(--color_white);
  width: 16px;
  height: 16px;
}

.side-cta .item.tel {
  background-color: var(--color_primary);
  font-family: var(--font-bace);
}

.side-cta .item.tel::before {
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 17px;
  height: 24px;
}

.side-cta .item.mail {
  background-color: var(--color_orange);
}

.side-cta .item.mail::before {
  -webkit-mask: url(../images/share/icon_mail.svg) no-repeat center/contain;
  mask: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 19px;
  height: 14px;
}

@media (any-hover: hover) {
  .side-cta .item:hover {
    opacity: 0.8;
  }
}

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

/*-----------------------------------------------------------
共通パーツ（セクションタイトル・つなぎキャッチ）
-----------------------------------------------------------*/
.l-ttl {
  text-align: center;
  margin-bottom: 60px;
}

.l-ttl::before {
  content: "";
  display: block;
  background-color: var(--color_primary);
  -webkit-mask: url(../images/ttl_deco.svg) no-repeat center/contain;
  mask: url(../images/ttl_deco.svg) no-repeat center/contain;
  width: 39px;
  height: 54px;
  margin: 0 auto 25px;
}

.l-ttl .jp {
  font-size: clamp(2.25rem, 2.7vw, 3rem);
  line-height: 1.55;
}

.l-ttl .en {
  color: var(--color_primary);
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1;
  margin-top: 20px;
}

.l-ttl.gold .jp {
  color: var(--color_secondary);
}

.l-ttl.gold-light .jp {
  color: var(--color_gold_light);
}

.l-ttl.hands::before {
  background-color: #404040;
  -webkit-mask-image: url(../images/ttl_deco02.svg);
  mask-image: url(../images/ttl_deco02.svg);
  width: 55px;
  height: 62px;
}

.l-ttl.hands.dark::before {
  background-color: var(--color_dark_light);
}

.l-ttl.hands.dark .jp {
  color: var(--color_secondary);
}

.l-ttl.gold-light.hands::before {
  background-color: var(--color_white);
}

.l-ttl.plain::before {
  content: none;
}

@media (max-width: 800px) {
  .l-ttl {
    margin-bottom: 40px;
  }

  .l-ttl::before {
    width: 30px;
    height: 42px;
    margin-bottom: 15px;
  }

  .l-ttl .jp {
    font-size: 1.5rem;
  }

  .l-ttl .en {
    font-size: 0.9375rem;
    margin-top: 12px;
  }

  .l-ttl.hands::before {
    width: 36px;
    height: 40px;
  }
}

.l-catch {
  text-align: center;
  padding: 70px 0 80px;
}

.l-catch .l-catch-txt {
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: clamp(2.25rem, 2.7vw, 3rem);
  line-height: 1.55;
  margin-bottom: 20px;
}

.l-catch .l-catch-arrow {
  width: min(480px, 70%);
  margin-inline: auto;
}

.l-catch .l-catch-arrow img {
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  .l-catch {
    padding: 50px 0 40px;
  }

  .l-catch .l-catch-txt {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .l-catch .l-catch-arrow {
    width: min(270px, 55%);
  }
}

/*-----------------------------------------------------------
CTA（タブ付き）
-----------------------------------------------------------*/
.cta {
  background-color: var(--color_dark_light);
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.5px);
  background-size: 14px 14px;
  padding: 124px 0 185px;
}

.cta .cta-ttl-wrap {
  position: relative;
}

.cta .cta-ttl {
  padding: 0 0 20px 500px;
  position: relative;
  z-index: 2;
}

.cta .cta-ttl .sub {
  color: var(--color_gold_light);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: clamp(1.6875rem, 2vw, 2.25rem);
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 25px;
}

.cta .cta-ttl .main {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: clamp(2.8125rem, 3.4vw, 3.75rem);
  letter-spacing: 0.15em;
  line-height: 1.5;
}

.cta .cta-img {
  position: absolute;
  bottom: 0;
  left: 180px;
  width: 224px;
  z-index: 1;
}

.cta .tab-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
}

.cta .tab-list .tab-nav-item {
  cursor: pointer;
  background-color: var(--color_primary);
  border: none;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1.5;
  min-width: 0;
  padding: 17px 10px;
  text-align: center;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.cta .tab-list .tab-nav-item.medicine {
  background-color: var(--color_orange);
}

.cta .tab-list .tab-nav-item.is-active {
  cursor: default;
  background-color: var(--color_primary);
  color: var(--color_white);
  margin-bottom: 0;
  padding-block: 20px;
  opacity: 1;
}

.cta .tab-list .tab-nav-item.is-active.medicine {
  background-color: var(--color_orange);
}

@media (any-hover: hover) {
  .cta .tab-list .tab-nav-item:hover {
    opacity: 1;
  }
}

.cta .tab-panel-area {
  border: 0;
  padding: 0;
}

.cta .tab-content {
  display: none;
  background-color: var(--color_white);
  padding: 59px 5% 62px;
}

.cta .tab-content.is-active {
  display: block;
}

.cta .tab-inner {
  margin: auto;
  max-width: 800px;
}

.cta-lead {
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1.625rem;
  text-align: center;
  margin-bottom: 21px;
}

.cta .btn-wrap {
  justify-content: center;
  gap: 36px;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: var(--color_white);
  border: 2px solid var(--color_primary);
  border-radius: 40px;
  box-shadow: 4px 4px 0 var(--color_primary);
  color: var(--color_primary);
  font-family: var(--font_jp);
  min-width: 380px;
  min-height: 80px;
  padding: 10px 30px;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.btn-cta::before {
  content: "";
  background-color: var(--color_primary);
  flex-shrink: 0;
  transition: background-color 0.5s ease;
}

.btn-cta.tel {
  font-family: var(--font_jp);
  font-size: 2rem;
  gap: 8px;
}

.btn-cta.tel::before {
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 21px;
  height: 28px;
}

.btn-cta.mail {
  font-size: 1.5rem;
}

.btn-cta.mail::before {
  -webkit-mask: url(../images/share/icon_mail.svg) no-repeat center/contain;
  mask: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 30px;
  height: 22px;
}

@media (any-hover: hover) {
  .btn-cta:hover {
    background-color: var(--color_primary);
    color: var(--color_white);
  }

  .btn-cta:hover::before {
    background-color: var(--color_white);
  }
}

.cta-note {
  font-size: 1.25rem;
  line-height: 1.75;
  width: -moz-fit-content;
  width: fit-content;
  margin: 25px auto 0;
}

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

.cta-app .item {
  background-color: var(--color_bg);
  display: grid;
  align-items: flex-start;
  padding: 30px;
}

.cta-step {
  color: var(--color_orange);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
}

.cta-step .num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background-color: var(--color_orange);
  border-radius: 50%;
  color: var(--color_white);
  font-size: 0.875rem;
  width: 24px;
  height: 24px;
}

.cta-badges {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.cta-badges .badge-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  margin-bottom: 5px;
  padding-left: 19px;
  position: relative;
}

.cta-badges .badge-ttl::before {
  content: "";
  background-color: var(--color_orange);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.cta-badges a {
  transition: opacity 0.5s ease;
}

.cta-badges img {
  width: 300px;
  height: auto;
}

@media (any-hover: hover) {
  .cta-badges a:hover {
    opacity: 0.6;
  }
}

.cta-app-img {
  text-align: center;
}

.cta-app-img img {
  margin: 0 auto;
  width: min(300px, 100%);
  height: auto;
}

@media (max-width: 1024px) {
  .cta .tab-list .tab-nav-item {
    font-size: 1rem;
  }

  .cta .btn-wrap {
    gap: 30px;
  }

  .cta .cta-ttl {
    padding: 0 0 20px 35%;
  }

  .cta .cta-img {
    left: 0;
  }

  .cta-img {
    left: 0;
    width: 180px;
  }

  .cta .tab-content {
    padding: 40px 5%;
  }

  .btn-cta {
    min-width: 280px;
    min-height: 64px;
    padding: 4px 30px;
  }

  .btn-cta.tel {
    font-size: 1.375rem;
  }

  .btn-cta.mail {
    font-size: 1.25rem;
  }
}

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

  .cta .tab-list .tab-nav-item {
    font-size: 0.875rem;
    line-height: 1.4;
    padding: 15px 5px;
    height: 98px;
  }

  .cta .tab-list .tab-nav-item.is-active {
    padding: 15px 5px;
    height: 110px;
  }

  .cta .btn-wrap {
    gap: 16px;
  }

  .cta .cta-img {
    left: auto;
    bottom: 0;
    right: 0;
    width: auto;
    z-index: 1;
  }

  .cta .cta-img img {
    width: auto;
    height: 113px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .cta .cta-ttl {
    padding: 0 0 60px;
  }

  .cta .cta-ttl .sub {
    font-size: 1.1875rem;
    margin-bottom: 15px;
  }

  .cta .cta-ttl .main {
    font-size: 2.125rem;
  }

  .cta .tab-content {
    padding: 30px 20px 40px;
  }

  .cta-lead {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .btn-cta.tel {
    font-size: 1.4375rem;
  }

  .btn-cta.mail {
    font-size: 1.125rem;
  }

  .cta-note {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-top: 25px;
  }

  .cta-app {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-app .item {
    padding: 25px 20px;
  }

  .cta-step {
    font-size: 1.0625rem;
    margin-bottom: 20px;
  }

  .cta-badges .badge-ttl {
    font-size: 1.0625rem;
    padding-left: 15px;
  }

  .cta-badges .badge-ttl::before {
    width: 8px;
    height: 8px;
  }
}

/*-----------------------------------------------------------
CTA（帯）
-----------------------------------------------------------*/
.cta-b {
  padding-block: 120px;
}

.cta-b .container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
  background-color: var(--color_primary);
  padding: 0 60px;
}

.cta-b.no-img .btn-wrap {
  justify-content: center;
}

.cta-b.no-img .cta-b-time {
  justify-content: center;
}

.sec03+.cta-b {
  padding-block: 75px 60px;
}

.sec08+.cta-b .container {
  grid-template-columns: 1fr auto;
}

.sec08+.cta-b .cta-b-img {
  grid-area: 1/2;
}

.sec08+.cta-b .cta-b-body {
  grid-area: 1/1;
}

.sec10+.cta-b .cta-b-img img {
  width: 173px;
}

.sec13+.cta-b .container {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.cta-b-img {
  align-self: end;
}

.cta-b-img img {
  width: 199px;
  height: auto;
}

.cta-b-body {
  color: var(--color_white);
  padding: 45px 0;
}

.cta-b-ttl {
  font-family: var(--font_jp);
  font-size: 1.625rem;
  letter-spacing: 0.15em;
  line-height: 1.5;
  margin-bottom: 30px;
}

.cta-b .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}

.btn-cta-b {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--color_orange);
  border-radius: 100px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1;
  min-width: 280px;
  min-height: 68px;
  padding: 10px 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-cta-b::before {
  content: "";
  background-color: var(--color_white);
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.btn-cta-b.tel {
  font-size: 1.375rem;
}

.btn-cta-b.tel::before {
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 18px;
  height: 18px;
}

.btn-cta-b.web::before {
  -webkit-mask: url(../images/share/icon_calendar.svg) no-repeat center/contain;
  mask: url(../images/share/icon_calendar.svg) no-repeat center/contain;
  width: 18px;
  height: 18px;
}

@media (any-hover: hover) {
  .btn-cta-b:hover {
    background-color: var(--color_white);
    color: var(--color_orange);
  }

  .btn-cta-b:hover::before {
    background-color: var(--color_orange);
  }
}

.cta-b-time {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.cta-b-time .item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-b-time dt {
  border: 1px solid var(--color_white);
  border-radius: 3px;
  font-family: var(--font_jp);
  font-size: 0.875rem;
  line-height: 1;
  padding: 4px 8px;
}

.cta-b-time dd {
  font-size: 1.0625rem;
  line-height: 1;
}

@media (max-width: 1200px) {
  .cta-b-img img {
    width: 173px;
  }
}

@media (max-width: 800px) {
  .cta-b {
    padding-block: 60px;
  }

  .cta-b .container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 20px 30px;
  }

  .cta-b .btn-wrap {
    gap: 12px;
    margin-bottom: 20px;
    padding: 0 0 0 max(120px, 30%);
    position: relative;
    z-index: 0;
  }

  .cta-b .btn-wrap::before {
    content: "";
    background: url(../images/cta_img03.png) no-repeat center/contain;
    width: max(120px, 26%);
    height: auto;
    aspect-ratio: 199/229;
    position: absolute;
    left: 2%;
    bottom: 0;
    z-index: -1;
  }

  .cta-b .btn-wrap.img-left {
    padding: 0 max(120px, 30%) 0 0;
  }

  .cta-b .btn-wrap.img-left::before {
    left: auto;
    right: 2%;
  }

  .cta-b.no-img .btn-wrap {
    padding: 0;
  }

  .cta-b.no-img .btn-wrap::before {
    content: none;
  }

  .cta-b.no-img .cta-b-time {
    justify-content: flex-start;
  }

  .cta-b-img {
    display: none;
  }

  .sec08+.cta-b .container {
    grid-template-columns: 1fr;
  }

  .sec08+.cta-b .cta-b-img,
  .sec08+.cta-b .cta-b-body {
    grid-area: auto;
  }

  .sec10+.cta-b .cta-b-img img {
    width: 104px;
  }

  .cta-b-img {
    justify-self: center;
    order: -1;
    margin-top: -20px;
  }

  .cta-b-img img {
    width: 120px;
  }

  .cta-b-body {
    padding: 20px 0 0;
    text-align: center;
  }

  .cta-b-ttl {
    font-size: 1.25rem;
  }

  .btn-cta-b {
    font-size: 1.1875rem;
    min-width: 0;
    width: 100%;
    min-height: 60px;
    padding: 3px 10px;
  }

  .btn-cta-b.tel {
    font-size: 1.1875rem;
  }

  .cta-b-time {
    gap: 8px 20px;
  }

  .cta-b-time dt {
    font-size: 0.75rem;
    width: 75px;
  }

  .cta-b-time dd {
    font-size: 0.9375rem;
    text-align: left;
    flex: 1;
  }
}

@media (max-width: 800px) {
  .btn-cta-b {
    font-size: 1rem;
  }

  .btn-cta-b.tel {
    font-size: 1rem;
  }
}

/*-----------------------------------------------------------
sec01 お悩みサイン
-----------------------------------------------------------*/
.sec01 {
  padding: 110px 0 120px;
}

.sec01 .l-ttl {
  margin-bottom: 30px;
}

.sec01-layout {
  display: grid;
  grid-template-columns: 1fr 50%;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 30px;
  max-width: 1024px;
}

.sec01-img img {
  width: 438px;
  height: auto;
}

.sec01 .list-check {
  gap: 9px;
}

.sec01 .list-check li {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  line-height: 1.5;
  padding-left: 34px;
}

.sec01 .list-check li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  width: 23px;
  height: 18px;
  position: absolute;
  top: 0.4em;
  left: 0;
}

.sec01-box {
  border: 1px solid var(--color_primary);
  padding: 40px 60px;
}

.sec01-box .sec01-box-ttl {
  color: var(--color_primary);
  font-size: clamp(1.4375rem, 1.7vw, 1.875rem);
  line-height: 1.5;
  margin-bottom: 20px;
}

.sec01-box p {
  font-size: 1.0625rem;
}

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

  .sec01-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
    max-width: 310px;
  }

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

  .sec01-img img {
    width: min(300px, 100%);
  }

  .sec01 .list-check {
    gap: 12px;
  }

  .sec01 .list-check li {
    font-size: 1.0625rem;
    padding-left: 32px;
  }

  .sec01 .list-check li::before {
    top: 0.25em;
  }

  .sec01-box {
    padding: 25px 20px;
  }

  .sec01-box p:not(.sec01-box-ttl) {
    font-size: 0.9375rem;
  }
}

/*-----------------------------------------------------------
sec02 放置NG・維持のための継続
-----------------------------------------------------------*/
.sec02 {
  background: url(../images/sec02_bg.png) no-repeat center/cover;
  padding: 120px 0;
}

.sec02-board {
  position: relative;
  line-height: 0;
  margin-bottom: 100px;
}

.sec02-board>img {
  width: 100%;
  height: auto;
}

.sec02-bands {
  display: grid;
  gap: 20px;
  justify-items: start;
  position: absolute;
  top: 50%;
  left: 5.5%;
  transform: translateY(-50%) rotate(-4deg);
}

.sec02-bands .band {
  display: inline-block;
  background-image: radial-gradient(circle, #D8B637 0%, #C89F2B 50%, #B4821D 100%);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1.625rem;
  line-height: 1;
  padding: 0 30px 3px;
}

.sec02-bands .band em {
  font-size: 2.3125rem;
}

.sec02-board-txt {
  color: var(--color_white);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  line-height: 2;
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  width: min(464px, 42%);
}

.sec02-catch {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: clamp(1.875rem, 2.3vw, 2.5rem);
  line-height: 1.5;
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  padding: 0 64px;
}

.sec02-catch .em {
  color: var(--color_gold_light);
  font-size: 1.25em;
}

.sec02-catch::before, .sec02-catch::after {
  content: "";
  background-image: radial-gradient(circle at 50% 2px, var(--color_white) 2px, transparent 2px);
  background-size: 4px 8px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 4px;
  height: 70px;
}

.sec02-catch::before {
  left: 16px;
  rotate: -30deg;
}

.sec02-catch::after {
  right: 16px;
  rotate: 30deg;
}

.sec02-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.sec02-subttl {
  color: var(--color_gold_light);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: clamp(1.4375rem, 1.7vw, 1.875rem);
  line-height: 1.5;
  margin-bottom: 25px;
}

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

.sec02-desc p {
  font-size: 1.0625rem;
}

.sec02-img img {
  width: 480px;
  height: auto;
}

@media (max-width: 1200px) {
  .sec02-bands {
    left: 3%;
  }
}

@media (max-width: 800px) {
  .sec02 {
    overflow: hidden;
    padding: 50px 0;
  }

  .sec02-board {
    margin-bottom: 55px;
  }

  .sec02-board>img {
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 350px;
  }

  .sec02-bands {
    top: 12%;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    gap: 12px;
  }

  .sec02-bands .band {
    font-size: 1.125rem;
    padding: 0 10px 3px;
    white-space: nowrap;
  }

  .sec02-bands .band em {
    font-size: 1.5625rem;
  }

  .sec02-board-txt {
    top: auto;
    bottom: 6%;
    right: 6%;
    transform: none;
    width: 88%;
    line-height: 1.8;
  }

  .sec02-catch {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 35px;
    padding: 0 50px;
  }

  .sec02-catch::before, .sec02-catch::after {
    bottom: auto;
    top: 50%;
    translate: 0 -50%;
    height: 90px;
  }

  .sec02-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .sec02-subttl {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .sec02-desc {
    order: 1;
  }

  .sec02-desc p {
    font-size: 0.9375rem;
  }

  .sec02-img {
    order: 0;
  }

  .sec02-img img {
    width: 100%;
  }
}

@media (max-width: 711px) {
  .sec02-board>img {
    min-height: 430px;
  }
}

@media (max-width: 433px) {
  .sec02-board>img {
    min-height: 510px;
  }
}

@media (max-width: 357px) {
  .sec02-board>img {
    min-height: 560px;
  }
}

/*-----------------------------------------------------------
sec03 選ばれる理由
-----------------------------------------------------------*/
.sec03 {
  background: var(--color_bg) url("../images/sec03_bg.svg") repeat center/40px 40px;
  padding: 130px 0 120px;
}

.sec03-item {
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-template-areas: "img desc";
  gap: 50px;
}

.sec03-item:not(:last-child) {
  margin-bottom: 85px;
}

.sec03-item.reverse {
  grid-template-columns: 1fr 40%;
  grid-template-areas: "desc img";
}

.sec03-item.reverse .sec03-num {
  left: auto;
  right: 0;
}

.sec03-img-area {
  grid-area: img;
  position: relative;
  padding-top: 40px;
}

.sec03-num {
  color: var(--color_primary);
  font-size: clamp(3.75rem, 4.5vw, 5rem);
  line-height: 1;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  z-index: 1;
}

.sec03-catch {
  color: var(--color_secondary);
  font-family: var(--font_jp);
  font-size: clamp(1.25rem, 1.4vw, 1.625rem);
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

.sec03-ttl {
  color: var(--color_secondary);
  font-size: clamp(1.4375rem, 1.7vw, 1.875rem);
  line-height: 1.75;
  margin-bottom: 30px;
}

.sec03-desc {
  grid-area: desc;
  padding-top: 40px;
}

.sec03-txt {
  font-size: 1.0625rem;
}

@media (max-width: 1024px) {
  .sec03-item {
    gap: 30px;
  }

  .sec03-item.reverse .sec03-img-area {
    order: 0;
  }
}

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

  .sec03-item {
    grid-template-columns: 1fr;
    grid-template-areas: "img""desc";
  }

  .sec03-item.reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "img""desc";
  }

  .sec03-item.reverse .sec03-num {
    left: 0;
    right: auto;
  }

  .sec03-item:not(:last-child) {
    margin-bottom: 55px;
  }

  .sec03-img-area {
    padding-top: 25px;
  }

  .sec03-num {
    font-size: 2.375rem;
  }

  .sec03-desc {
    padding-top: 0;
  }

  .sec03-catch {
    font-size: 1.125rem;
    margin-bottom: 0;
  }

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

  .sec03-txt {
    font-size: 0.9375rem;
  }
}

/*-----------------------------------------------------------
sec04 お悩みに合わせたアプローチ
-----------------------------------------------------------*/
.sec04 {
  background: url(../images/sec04_bg.jpg) no-repeat center/cover;
  position: relative;
  padding: 120px 0 160px;
  z-index: 0;
}

.sec04::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.sec04-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sec04-cards .item {
  background-color: var(--color_white);
  border: 1px solid var(--color_dark);
  text-align: center;
  padding: 35px 35px 40px;
}

.sec04-cards .item-ttl {
  font-size: 1.625rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

.sec04-cards .item-tag {
  display: inline-block;
  background-image: radial-gradient(circle, #D8B637 0%, #C89F2B 50%, #B4821D 100%);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1;
  padding: 3px 12px;
  margin-bottom: 30px;
}

.sec04-cards .item-box {
  background-color: var(--color_dark_light);
  color: var(--color_white);
  text-align: left;
  position: relative;
  padding: 25px 20px 30px;
  margin-bottom: 45px;
  min-height: 203px;
}

.sec04-cards .item-box::after {
  content: "";
  border-style: solid;
  border-width: 24px 36px 0 36px;
  border-color: var(--color_dark_light) transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.sec04-cards .item-box .box-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
}

.sec04-cards .item-box .list-check {
  gap: 8px;
}

.sec04-cards .item-box .list-check li {
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.7;
  padding-left: 32px;
}

.sec04-cards .item-box .list-check li::before {
  content: "";
  background: url(../images/share/icon_check02.svg) no-repeat center/contain;
  width: 23px;
  height: 18px;
  position: absolute;
  top: 0.5em;
  left: 0;
}

.sec04-cards .item-result {
  font-size: 1.375rem;
  font-family: var(--font_jp);
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .sec04-cards .item {
    padding: 35px 5% 40px;
  }
}

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

  .sec04-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sec04-cards .item {
    padding: 30px 20px;
  }

  .sec04-cards .item-ttl {
    font-size: 1.3125rem;
    margin-bottom: 12px;
  }

  .sec04-cards .item-tag {
    font-size: 0.9375rem;
    margin-bottom: 25px;
  }

  .sec04-cards .item-box {
    min-height: auto;
  }

  .sec04-cards .item-box .box-ttl {
    font-size: 1.0625rem;
  }

  .sec04-cards .item-box .list-check li {
    font-size: 1rem;
  }

  .sec04-cards .item-box .list-check li::before {
    top: 0.2em;
  }

  .sec04-cards .item-result {
    font-size: 1.25rem;
  }
}

/*-----------------------------------------------------------
sec05 機器のポイント
-----------------------------------------------------------*/
.sec05 {
  background: url(../images/sec05_bg.jpg) no-repeat center/cover;
  padding: 120px 0 100px;
}

.sec05-layout {
  display: grid;
  grid-template-columns: 41% 1fr;
  align-items: center;
  gap: 40px;
}

.sec05-img img {
  margin: 0 0 0 auto;
}

.sec05-point-ttl {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-weight: bold;
  font-size: clamp(3.375rem, 4vw, 4.5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  opacity: 0.4;
  margin-bottom: 13px;
}

.sec05-list {
  display: grid;
  gap: 19px;
  justify-items: start;
}

.sec05-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color_white);
  font-family: var(--font_jp);
  font-size: clamp(1.1875rem, 1.4vw, 1.625rem);
  line-height: 1.4;
  padding: 11px 15px 11px 40px;
  position: relative;
}

.sec05-list li::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 15px;
  top: 0.9em;
}

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

  .sec05-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 35px;
  }

  .sec05-point-ttl {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .sec05-list {
    gap: 12px;
  }

  .sec05-list li {
    font-size: 1rem;
    padding: 8px 14px 8px 30px;
  }

  .sec05-list li::before {
    width: 8px;
    height: 8px;
    left: 12px;
    top: 1em;
  }
}

/*-----------------------------------------------------------
sec06 Treatment
-----------------------------------------------------------*/
.sec06 {
  padding: 100px 0;
}

.sec06-item:not(:last-child) {
  margin-bottom: 60px;
}

.sec06-num {
  color: var(--color_gray_dark);
  font-weight: bold;
  font-size: clamp(3.75rem, 4.5vw, 5rem);
  line-height: 1;
  opacity: 0.2;
  position: relative;
  z-index: 1;
  margin-bottom: -38px;
  margin-left: -80px;
}

.sec06-body {
  background-color: var(--color_bg);
  padding: 90px 50px 50px;
}

.sec06-body>p {
  font-size: 1.0625rem;
}

.sec06-ttl {
  color: var(--color_secondary);
  font-size: clamp(1.4375rem, 1.7vw, 1.875rem);
  line-height: 1.5;
  margin-bottom: 30px;
}

.sec06-effects {
  display: grid;
  margin-block: 25px;
}

.sec06-effects li {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 14px 0;
}

.sec06-effects li .num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background-color: var(--color_primary);
  border-radius: 50%;
  color: var(--color_white);
  font-size: 0.9375rem;
  width: 26px;
  height: 26px;
}

.sec06-box {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  padding: 40px 40px 35px;
  margin-block: 40px 50px;
}

.sec06-box .box-ttl {
  font-size: 1.375rem;
  color: var(--color_dark);
  margin-bottom: 25px;
}

.sec06-box .box-note {
  font-size: 0.875rem;
  line-height: 1.6;
}

.sec06-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
  margin-bottom: 40px;
}

.sec06-steps li {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 25px;
  position: relative;
}

.sec06-steps li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 12px;
  border-color: transparent transparent transparent var(--color_dark);
  position: absolute;
  top: 55%;
  right: -34px;
}

.sec06-steps .step-ttl {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
}

.sec06-steps .step-ttl .num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background-color: var(--color_primary);
  border-radius: 50%;
  color: var(--color_white);
  font-size: 0.8125rem;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.sec06-steps figure {
  display: grid;
  place-items: center;
}

.sec06-steps figure img {
  width: auto;
  max-width: 100%;
  height: 100px;
}

.sec06-check-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-block: 35px 45px;
}

.check-ttl {
  font-size: 1.375rem;
  color: var(--color_dark);
  margin-bottom: 25px;
}

.sec06-check .list-check {
  gap: 5px;
}

.sec06-check .list-check li {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  line-height: 1.5;
  padding-left: 34px;
}

.sec06-check-imgs {
  display: flex;
  gap: 10px;
}

.sec06-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 60px;
}

.sec06-table th,
.sec06-table td {
  border: 1px solid var(--color_border);
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
}

.sec06-table th {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1rem;
  width: 30%;
}

.sec06-table td {
  background-color: var(--color_white);
  color: var(--color_dark);
  font-size: 1rem;
  line-height: 1.9;
}

.sec06-table .notice {
  margin-top: 5px;
}

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

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

.list-dot li::before {
  content: "";
  background-color: #6B8699;
  border-radius: 50%;
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
}

.sec06-notes .notes-ttl {
  border-bottom: 1px solid var(--color_dark_light);
  color: var(--color_dark);
  font-size: 1.375rem;
  line-height: 1.5;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.notes-list {
  display: grid;
  gap: 25px;
}

.notes-list dt {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color_white);
  color: var(--color_dark);
  font-family: var(--font_jp);
  font-size: 1rem;
  line-height: 1.5;
  padding: 8px 15px;
  margin-bottom: 12px;
}

.notes-list dt .num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  aspect-ratio: 1;
  border: 1px solid var(--color_dark);
  border-radius: 50%;
  font-size: 0.8125rem;
  font-style: normal;
  width: 24px;
  height: 24px;
}

.notes-list dd {
  font-size: 1rem;
  line-height: 1.9;
  padding: 0 15px;
}

.notes-list dd p+p {
  margin-top: 15px;
}

@media (max-width: 1200px) {
  .sec06-num {
    margin-left: -5%;
    margin-bottom: -27px;
  }
}

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

  .sec06-item:not(:last-child) {
    margin-bottom: 60px;
  }

  .sec06-num {
    font-size: 2.625rem;
    margin-bottom: -12px;
    margin-left: 0;
  }

  .sec06-body {
    padding: 30px 20px;
  }

  .sec06-body>p {
    font-size: 0.9375rem;
  }

  .sec06-ttl {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

  .sec06-effects li {
    font-size: 1rem;
    padding: 10px 0;
  }

  .sec06-box {
    padding: 25px 20px;
    margin-block: 30px;
  }

  .sec06-box .box-ttl {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }

  .sec06-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sec06-steps li {
    gap: 15px;
  }

  .sec06-steps li:not(:last-child)::after {
    border-width: 12px 9px 0 9px;
    border-color: var(--color_dark) transparent transparent transparent;
    top: auto;
    bottom: -21px;
    right: auto;
    left: 50%;
    translate: -50% 0;
  }

  .sec06-steps figure img {
    height: 80px;
  }

  .sec06-check-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-block: 30px;
  }

  .check-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }

  .sec06-check .list-check li {
    font-size: 1rem;
    padding-left: 28px;
  }

  .sec06-check .list-check li::before {
    width: 20px;
    height: 15px;
  }

  .sec06-check-imgs {
    justify-content: center;
  }

  .sec06-table {
    margin-bottom: 40px;
  }

  .sec06-table th,
  .sec06-table td {
    display: block;
    width: 100%;
    padding: 12px 15px;
  }

  .sec06-table th {
    padding: 10px 15px;
  }

  .sec06-table td {
    font-size: 0.9375rem;
  }

  .sec06-notes .notes-ttl {
    font-size: 1.125rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .notes-list {
    gap: 20px;
  }

  .notes-list dd {
    font-size: 0.9375rem;
    padding: 0 5px;
  }
}

/*-----------------------------------------------------------
sec07 注入治療の施術について
-----------------------------------------------------------*/
.sec07 {
  padding-block: 0 90px;
}

.sec07-table {
  border-collapse: collapse;
  width: 100%;
}

.sec07-table th,
.sec07-table td {
  border: 1px solid var(--color_border);
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
}

.sec07-table th {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  width: 30%;
}

.sec07-table td {
  background-color: var(--color_white);
  color: var(--color_dark);
  line-height: 2.1;
}

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

  .sec07-table th,
  .sec07-table td {
    display: block;
    width: 100%;
    padding: 12px 15px;
  }

  .sec07-table th {
    border: none;
    padding: 10px 15px;
  }

  .sec07-table td {
    font-size: 0.9375rem;
  }
}

/*-----------------------------------------------------------
sec08 症例紹介
-----------------------------------------------------------*/
.sec08 {
  background: url(../images/sec08_bg.jpg) no-repeat center/cover;
  padding: 130px 0 120px;
}

.sec08-card {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 50px;
  background-color: var(--color_white);
  padding: 50px;
}

.sec08-images {
  display: grid;
  justify-items: center;
  gap: 5px;
}

.sec08-images .item {
  position: relative;
  width: 100%;
}

.sec08-images .item img {
  aspect-ratio: 310/208;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec08-images .item figcaption {
  background-color: var(--color_white);
  color: var(--color_dark);
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1;
  padding: 8px 14px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.sec08-images .arrow {
  display: block;
  border-style: solid;
  border-width: 12px 9px 0 9px;
  border-color: var(--color_dark) transparent transparent transparent;
  margin-block: 8px;
}

.sec08-ttl {
  font-size: 1.375rem;
  color: var(--color_dark);
  margin-bottom: 20px;
}

.sec08-table .item {
  display: grid;
  grid-template-columns: 144px 1fr;
  gap: 20px;
  align-items: baseline;
  border-bottom: 1px solid var(--color_gray_dark);
  padding: 10px 0;
}

.sec08-table dt {
  font-family: var(--font_jp);
  font-size: 0.9375rem;
}

.sec08-table dd {
  color: var(--color_dark);
  font-size: 0.9375rem;
}

@media (max-width: 1024px) {
  .sec08-table .item {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

  .sec08-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .sec08-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .sec08-table .item {
    grid-template-columns: 110px 1fr;
    gap: 12px;
  }
}

/*-----------------------------------------------------------
sec09 対面×オンライン
-----------------------------------------------------------*/
.sec09 {
  background: url(../images/sec02_bg.png) no-repeat center/cover;
  padding: 120px 0;
}

.sec09 .l-ttl {
  margin-bottom: 70px;
}

.sec09-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}

.sec09-cards .item .item-num {
  color: var(--color_primary);
  font-weight: bold;
  font-size: clamp(2.375rem, 2.8vw, 3.125rem);
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-bottom: -19px;
  padding: 0 0 0 40px;
}

.sec09-cards .item .item-inner {
  background-color: var(--color_dark_lighter);
  height: 100%;
  padding: 50px 40px 39px;
}

.sec09-cards .item .item-img {
  margin-bottom: 25px;
}

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

.sec09-cards .item .item-ttl {
  color: var(--color_white);
  font-size: 1.625rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

.sec09-cards .item .item-box {
  background-color: var(--color_white);
  border: 5px solid var(--color_primary);
  padding: 25px 20px;
}

.sec09-cards .item .item-box .box-ttl {
  color: var(--color_secondary);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 18px;
  padding: 0 35px;
}

.sec09-cards .item .item-box .box-ttl::before, .sec09-cards .item .item-box .box-ttl::after {
  content: "";
  background-image: radial-gradient(circle at 50% 2px, var(--color_secondary) 2px, transparent 2px);
  background-size: 4px 8px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 4px;
  height: 37px;
}

.sec09-cards .item .item-box .box-ttl::before {
  left: 8px;
  rotate: -30deg;
}

.sec09-cards .item .item-box .box-ttl::after {
  right: 8px;
  rotate: 30deg;
}

.sec09-cards .item .item-box .box-txt {
  font-size: 1.0625rem;
}

.sec09-cards .item .item-box .box-txt+.notice {
  margin-top: 4px;
}

.sec09-cards .item .item-box .notice {
  font-size: 0.875rem;
}

.sec09-note {
  color: var(--color_white);
  font-size: 1.0625rem;
}

@media (max-width: 1024px) {
  .sec09-cards {
    gap: 40px;
  }
}

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

  .sec09 .l-ttl {
    margin-bottom: 40px;
  }

  .sec09-cards {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 35px;
  }

  .sec09-cards .item .item-num {
    font-size: 1.875rem;
    margin-bottom: -13px;
    padding: 0 0 0 5%;
  }

  .sec09-cards .item .item-inner {
    padding: 20px 15px 30px;
  }

  .sec09-cards .item .item-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .sec09-cards .item .item-box .box-ttl::before, .sec09-cards .item .item-box .box-ttl::after {
    height: 24px;
  }

  .sec09-cards .item .item-box .box-txt {
    font-size: 0.9375rem;
  }

  .sec09-note {
    font-size: 0.9375rem;
  }
}

/*-----------------------------------------------------------
sec10 治療の流れ
-----------------------------------------------------------*/
.sec10 {
  padding-top: 130px;
}

.sec10-flow {
  display: grid;
}

.sec10-flow>li {
  background-color: var(--color_bg_cyan);
  padding: 43px 50px 37px;
  position: relative;
}

.sec10-flow>li:not(:last-child) {
  margin-bottom: 60px;
}

.sec10-flow>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: var(--color_dark) transparent transparent transparent;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
}

.sec10 .flow-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.sec10 .flow-header .num {
  color: var(--color_primary);
  font-weight: bold;
  font-size: 3.125rem;
  line-height: 1;
  white-space: nowrap;
}

.sec10 .flow-header .flow-ttl {
  font-size: 1.625rem;
  line-height: 1.4;
}

.sec10 .flow-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  gap: 40px;
}

.sec10 .flow-layout .flow-desc p {
  font-size: 1.0625rem;
}

.sec10 .flow-layout .flow-desc p:not(:last-child) {
  margin-bottom: 15px;
}

.sec10 .flow-layout .flow-desc .notice {
  font-size: 0.9375rem;
}

.sec10 .flow-layout .flow-desc .flow-strong {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-family: var(--font_jp);
  font-size: 1.125rem;
}

.sec10 .flow-layout .flow-desc .flow-strong::before {
  content: "";
  flex-shrink: 0;
  background-color: var(--color_blue);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-top: 13px;
}

.sec10 .flow-balloon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 30px auto 0;
  max-width: 870px;
}

.sec10 .flow-balloon figure {
  flex-shrink: 0;
}

.sec10 .flow-balloon figure img {
  width: 150px;
  height: auto;
}

.sec10 .flow-balloon .balloon {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  padding: 14px 30px;
}

.sec10 .flow-balloon .balloon::before {
  content: "";
  border-style: solid;
  border-width: 10px 29px 10px 0;
  border-color: transparent var(--color_primary) transparent transparent;
  position: absolute;
  top: 23px;
  right: 100%;
}

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

  .sec10-flow>li {
    padding: 30px 20px;
  }

  .sec10-flow>li:not(:last-child) {
    margin-bottom: 55px;
  }

  .sec10-flow>li:not(:last-child)::after {
    top: calc(100% + 20px);
  }

  .sec10 .flow-header {
    gap: 15px;
    margin-bottom: 15px;
  }

  .sec10 .flow-header .num {
    font-size: 2.25rem;
  }

  .sec10 .flow-header .flow-ttl {
    font-size: 1.25rem;
  }

  .sec10 .flow-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec10 .flow-layout .flow-desc p {
    font-size: 0.9375rem;
  }

  .sec10 .flow-layout .flow-desc .flow-strong {
    gap: 5px;
    font-size: 1rem;
  }

  .sec10 .flow-layout .flow-desc .flow-strong::before {
    width: 7px;
    height: 7px;
    margin-top: 12px;
  }

  .sec10 .flow-layout .flow-img img {
    margin: 0 auto;
    width: 100%;
  }

  .sec10 .flow-balloon {
    align-items: flex-end;
    gap: 10px;
    margin-top: 25px;
  }

  .sec10 .flow-balloon figure img {
    width: 100px;
  }

  .sec10 .flow-balloon .balloon {
    font-size: 0.9375rem;
    padding: 10px 15px;
  }

  .sec10 .flow-balloon .balloon::before {
    border-width: 5px 14px 5px 0;
    top: auto;
    bottom: 15px;
  }
}

/*-----------------------------------------------------------
sec11 よくある質問
-----------------------------------------------------------*/
.sec11 {
  background: var(--color_bg) url(../images/sec03_bg.svg) repeat center/40px 40px;
  padding: 120px 0 114px;
}

.sec11 .accordion-style {
  background-color: var(--color_white);
  border: 1px solid var(--color_gray_dark);
}

.sec11 .accordion-style+.accordion-style {
  margin-top: 18px;
}

.sec11 .accordion-style .accordion-btn {
  justify-content: space-between;
  padding: 20px 30px;
}

.sec11 .accordion-style .accordion-ttl {
  font-size: 1.375rem;
  line-height: 1.5;
}

.sec11 .accordion-style .accordion-open-ico {
  background-color: transparent;
}

.sec11 .accordion-style .accordion-open-ico::before, .sec11 .accordion-style .accordion-open-ico::after {
  background-color: var(--color_text);
}

.sec11 .accordion-style .accordion-open-ico::before {
  width: 16px;
  height: 2px;
}

.sec11 .accordion-style .accordion-open-ico::after {
  width: 2px;
  height: 16px;
}

.sec11 .accordion-style .accordion-inner {
  padding: 0 30px;
}

.sec11 .accordion-style .accordion-inner::after {
  content: "";
  display: block;
  height: 30px;
}

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

.sec11 .faq-style .faq-summary {
  border: none;
  border-radius: 0;
  padding: 12px 50px 12px 75px;
}

.sec11 .faq-style .faq-summary .faq-icon {
  top: 10px;
  left: 15px;
}

@media (any-hover: hover) {
  .sec11 .faq-style .faq-summary:hover .faq-icon {
    background-color: var(--color_primary);
    border-color: var(--color_primary);
  }
}

.sec11 .faq-style .faq-ttl {
  font-size: 1.375rem;
  line-height: 1.6;
}

.sec11 .faq-style .faq-inner {
  border: none;
  border-radius: 0;
  padding: 12px 50px 12px 75px;
}

.sec11 .faq-style .faq-inner .faq-icon {
  background-color: var(--color_orange);
  border-color: var(--color_orange);
  top: 12px;
  left: 15px;
}

.sec11 .faq-style .faq-desc {
  color: var(--color_text);
  font-size: 1.0625rem;
}

.sec11 .faq-style .faq-icon {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 50%;
  color: var(--color_white);
  font-weight: bold;
  font-size: 1.0625rem;
  padding: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}

.sec11 .faq-style .faq-open-icon {
  top: 8px;
}

.sec11 .faq-style.is-open .faq-summary {
  border-radius: 0;
}

.sec11 .faq-style.is-open .faq-summary .faq-icon {
  background-color: var(--color_primary);
  border-color: var(--color_primary);
}

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

  .sec11 .accordion-style+.accordion-style {
    margin-top: 15px;
  }

  .sec11 .accordion-style .accordion-btn {
    padding: 15px 15px;
  }

  .sec11 .accordion-style .accordion-ttl {
    font-size: 1.0625rem;
  }

  .sec11 .accordion-style .accordion-inner {
    padding: 0 15px;
  }

  .sec11 .accordion-style .accordion-inner::after {
    height: 20px;
  }

  .sec11 .faq-style .faq-summary {
    padding: 8px 35px 8px 45px;
  }

  .sec11 .faq-style .faq-summary .faq-icon {
    top: 8px;
    left: 0;
  }

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

  .sec11 .faq-style .faq-inner {
    padding: 8px 10px 8px 45px;
  }

  .sec11 .faq-style .faq-inner .faq-icon {
    top: 8px;
    left: 0;
  }

  .sec11 .faq-style .faq-desc {
    font-size: 0.9375rem;
  }

  .sec11 .faq-style .faq-icon {
    font-size: 0.875rem;
    width: 30px;
    height: 30px;
  }

  .sec11 .faq-style .faq-open-icon {
    top: 2px;
    right: 0;
  }
}

/*-----------------------------------------------------------
sec12 内服薬の料金表
-----------------------------------------------------------*/
.sec12 {
  padding-top: 120px;
}

.sec12-subttl {
  color: var(--color_secondary);
  font-size: clamp(1.4375rem, 1.7vw, 1.875rem);
  line-height: 1.5;
  margin-bottom: 25px;
}

.sec12-subttl:not(:first-of-type) {
  margin-top: 45px;
}

.sec12-table {
  border: 1px solid var(--color_secondary);
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.sec12-table th,
.sec12-table td {
  border: 1px solid var(--color_secondary);
  font-size: 0.9375rem;
  line-height: 1.85;
  padding: 15px;
  text-align: left;
}

.sec12-table thead th {
  background-color: var(--color_white);
  border-bottom-color: var(--color_secondary);
  color: var(--color_text);
  font-family: var(--font_jp);
  font-size: 1rem;
  padding: 15px;
}

.sec12-table thead th:first-child {
  background-color: var(--color_primary);
  color: var(--color_white);
}

.sec12-table tbody th {
  background-color: var(--color_primary);
  border-left-color: var(--color_secondary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1rem;
  vertical-align: middle;
}

.sec12-table tbody th img {
  width: 32px;
  height: auto;
}

.sec12-table tbody th .img-th {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.sec12-table tbody td {
  color: var(--color_dark);
}

.sec12-table tbody td.price {
  text-align: right;
  vertical-align: middle;
}

.sec12-table tbody td[rowspan] {
  vertical-align: middle;
}

.sec12-table .col-item {
  width: 25%;
}

.sec12-table .col-detail {
  width: 39%;
}

.sec12-table .col-price {
  width: 13%;
}

.sec12-table .col-caution {
  width: 23%;
}

.sec12-table.table01 .col-item {
  width: 22%;
}

.sec12-table.table01 .col-detail {
  width: 38%;
}

.sec12-table.table01 .col-price {
  width: 18%;
}

.sec12-table.table01 .col-caution {
  width: 22%;
}

.sec12 .table-scroll {
  margin-bottom: 10px;
}

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

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

  .sec12-subttl {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

  .sec12-subttl:not(:first-of-type) {
    margin-top: 45px;
  }

  .sec12 .table-scroll .sec12-table {
    width: 810px;
  }

  .sec12-table tbody th .img-th {
    flex-direction: column;
    align-items: flex-start;
  }

  .sec12-note {
    font-size: 0.75rem;
    text-align: left;
  }
}

/*-----------------------------------------------------------
sec13 お薬の注意事項
-----------------------------------------------------------*/
.sec13 {
  padding-top: 100px;
}

.sec13 .l-ttl {
  margin-bottom: 40px;
}

.sec13-lead {
  font-size: 1.0625rem;
  text-align: center;
  margin-bottom: 35px;
}

.sec13-subttl {
  border-bottom: 1px solid var(--color_dark_light);
  font-size: 1.375rem;
  line-height: 1.5;
  padding-bottom: 12px;
  margin-bottom: 45px;
}

.sec13-item:not(:last-child) {
  margin-bottom: 50px;
}

.sec13-drug {
  font-size: 1.125rem;
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
  margin-bottom: 25px;
}

.sec13-drug::before {
  content: "";
  background-color: var(--color_primary);
  width: 7px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sec13-box {
  display: grid;
  gap: 18px;
  background-color: var(--color_bg);
  padding: 50px;
}

.sec13-box dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color_dark);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 2px;
}

.sec13-box dt::before {
  content: "";
  flex-shrink: 0;
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.sec13-box dd {
  color: var(--color_dark);
  font-size: 0.9375rem;
  line-height: 1.85;
  padding-left: 17px;
}

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

  .sec13-lead {
    text-align: left;
    font-size: 0.9375rem;
    margin-bottom: 40px;
  }

  .sec13-subttl {
    font-size: 1.125rem;
    margin-bottom: 25px;
  }

  .sec13-item:not(:last-child) {
    margin-bottom: 35px;
  }

  .sec13-drug {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .sec13-box {
    gap: 12px;
    padding: 25px 15px;
    margin-left: 0;
  }

  .sec13-box dd {
    padding-left: 0;
  }
}

/*-----------------------------------------------------------
sec14 基本情報バナー
-----------------------------------------------------------*/
.sec14 {
  padding-top: 150px;
}

.sec14-banner {
  display: flex;
  align-items: center;
  background: url(../images/sec14_bg.jpg) no-repeat center/cover;
  position: relative;
  min-height: 264px;
  padding: 30px 140px 30px 68px;
}

.sec14-banner::before {
  content: "";
  background-color: rgba(64, 64, 64, 0.8);
  position: absolute;
  inset: 0;
}

.sec14-banner .txt {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1.625rem;
  line-height: 1.5;
  position: relative;
}

.sec14-banner .arrow {
  display: grid;
  place-items: center;
  background-color: var(--color_white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 65px;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  transition: 0.3s;
}

.sec14-banner .arrow::before {
  content: "";
  border-top: 2px solid var(--color_dark);
  border-right: 2px solid var(--color_dark);
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  margin-right: 3px;
}

@media (any-hover: hover) {
  .sec14-banner:hover .arrow {
    background-color: var(--color_primary);
  }

  .sec14-banner:hover .arrow::before {
    border-color: var(--color_white);
  }
}

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

  .sec14-banner {
    background: url(../images/sec14_bg.jpg) no-repeat right 17% center/cover;
    min-height: 180px;
    padding: 20px 70px 20px 20px;
  }

  .sec14-banner .txt {
    font-size: 1.375rem;
  }

  .sec14-banner .arrow {
    right: 15px;
    width: 36px;
    height: 36px;
  }
}

/*-----------------------------------------------------------
sec15 医院情報
-----------------------------------------------------------*/
.sec15 {
  padding-top: 165px;
}

.sec15-slider {
  margin-bottom: 80px;
}

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

.sec15-slider .splide__slide {
  opacity: 0.5;
  transition: opacity 1s;
}

.sec15-slider .splide__slide.is-current {
  opacity: 1;
}

.sec15-slider .splide__slide img {
  aspect-ratio: 1024/532;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec15-slider .splide__arrow {
  display: grid;
  place-items: center;
  background: var(--color_dark);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  z-index: 1;
}

.sec15-slider .splide__arrow::before {
  content: "";
  background-color: var(--color_white);
  width: 10px;
  height: 16px;
}

.sec15-slider .splide__arrow--prev {
  left: calc(50% - 512px);
  translate: -50% -50%;
}

.sec15-slider .splide__arrow--prev::before {
  -webkit-mask: url(../images/share/splide_prev.svg) no-repeat center/contain;
  mask: url(../images/share/splide_prev.svg) no-repeat center/contain;
}

.sec15-slider .splide__arrow--next {
  right: calc(50% - 512px);
  translate: 50% -50%;
}

.sec15-slider .splide__arrow--next::before {
  -webkit-mask: url(../images/share/splide_next.svg) no-repeat center/contain;
  mask: url(../images/share/splide_next.svg) no-repeat center/contain;
}

.sec15-slider .splide__pagination {
  gap: 10px;
  margin-top: 25px;
}

.sec15-slider .splide__pagination__page {
  background: transparent;
  border: 1px solid var(--color_dark);
  width: 8px;
  height: 8px;
}

.sec15-slider .splide__pagination__page.is-active {
  background: var(--color_dark);
}

.sec15-map {
  line-height: 0;
}

.sec15-map iframe {
  border: 0;
  width: 100%;
  height: 500px;
}

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

  .sec15-slider {
    margin-bottom: 40px;
  }

  .sec15-map iframe {
    height: 400px;
  }
}

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

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

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

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

@media (max-width: 800px) {
  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .table-scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }

  .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 {
    width: 150%;
  }
}

/*------------
レイアウト
--------------*/
.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;
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    flex-direction: column;
    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%;
  }
}

/*------------
Add
--------------*/
.faq-style {
  transition: 0.3s;
}

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

.faq-style .faq-summary {
  display: block;
  cursor: pointer;
  background-color: var(--color_white);
  border: 1px solid var(--color_secondary);
  border-radius: 15px;
  padding: 18px 50px 18px 80px;
  position: relative;
  transition: 0.3s;
}

.faq-style .faq-summary .faq-icon {
  top: 25px;
  left: 20px;
}

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

@media (any-hover: hover) {
  .faq-style .faq-summary:hover .faq-icon {
    background-color: var(--color_secondary);
    border-color: var(--color_secondary);
    color: var(--color_white);
  }
}

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

.faq-style .faq-inner {
  background-color: var(--color_white);
  border-right: 1px solid var(--color_secondary);
  border-bottom: 1px solid var(--color_secondary);
  border-left: 1px solid var(--color_secondary);
  border-radius: 0 0 15px 15px;
  padding: 18px 50px 18px 80px;
  position: relative;
}

.faq-style .faq-inner .faq-icon {
  border: 1px solid #ccc;
  background-color: #ccc;
  color: #fff;
  top: 22px;
  left: 20px;
}

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

.faq-style .faq-icon {
  border: 1px solid #aaa;
  border-radius: 10px;
  font-family: var(--font_en);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  padding: 3px 15px;
  text-align: center;
  position: absolute;
  transition: 0.3s;
}

.faq-style .faq-open-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 17px;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before, .faq-style .faq-open-icon::after {
  content: "";
  display: block;
  background: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before {
  width: 16px;
  height: 2px;
  transform: translateX(-50%);
}

.faq-style .faq-open-icon::after {
  width: 16px;
  height: 2px;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left;
  transition: transform 0.5s;
}

.faq-style.is-open .faq-summary {
  border-radius: 15px 15px 0 0;
}

.faq-style.is-open .faq-summary .faq-icon {
  background-color: var(--color_secondary);
  border-color: var(--color_secondary);
  color: var(--color_white);
}

.faq-style.is-open .faq-open-icon {
  transform: rotate(180deg);
}

.faq-style.is-open .faq-open-icon::after {
  opacity: 0;
}

@media (max-width: 800px) {
  .faq-style {
    line-height: 1.5;
  }

  .faq-style .faq-summary {
    padding: 15px 40px 15px 70px;
  }

  .faq-style .faq-summary .faq-icon {
    top: 16px;
    left: 12px;
  }

  .faq-style .faq-open-icon {
    right: 5px;
    top: 10px;
    width: 34px;
    height: 34px;
  }

  .faq-style .faq-inner {
    padding: 15px 20px 20px 70px;
  }

  .faq-style .faq-inner .faq-icon {
    top: 14px;
    left: 12px;
  }
}

/*------------
アコーディオン
--------------*/
.accordion-style+.accordion-style {
  margin-top: 10px;
}

.accordion-style .accordion-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  padding: 15px 0;
  transition: opacity 0.3s;
}

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

.accordion-style .accordion-open-ico {
  display: block;
  flex-shrink: 0;
  background-color: var(--color_text);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  position: relative;
}

.accordion-style .accordion-open-ico::before, .accordion-style .accordion-open-ico::after {
  content: "";
  background-color: var(--color_white);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.accordion-style .accordion-open-ico::before {
  width: 12px;
  height: 1px;
}

.accordion-style .accordion-open-ico::after {
  width: 1px;
  height: 12px;
  transition: scale 0.3s;
}

.accordion-style .accordion-desc {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s var(--ease);
}

.accordion-style .accordion-desc>* {
  min-height: 0;
}

.accordion-style.is-open .accordion-open-ico::after {
  scale: 1 0;
}

.accordion-style.is-open .accordion-desc {
  grid-template-rows: 1fr;
}

@media (any-hover: hover) {
  .accordion-style .accordion-btn:hover {
    opacity: 0.6;
  }
}

@media (max-width: 800px) {
  .accordion-style .accordion-ttl {
    font-size: 0.9375rem;
  }

  .accordion-style .accordion-open-ico {
    width: 22px;
    height: 22px;
  }

  .accordion-style .accordion-open-ico::before {
    width: 10px;
  }

  .accordion-style .accordion-open-ico::after {
    height: 10px;
  }
}

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

.sp-only {
  display: none;
}

.br-pc-only {
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
}

.br-sp-only {
  display: none;
  height: 0;
  margin: 0;
  padding: 0;
}

.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-family: var(--font_jp);
  font-weight: bold;
}

.c-red {
  color: #F44336;
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.notice {
  font-size: 0.875rem;
  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;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.col1 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 40px;
}

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

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

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

@media (max-width: 800px) {

  .col1,
  .col2,
  .col3,
  .col4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
}

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

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

  .sp-only {
    display: block;
  }

  .br-pc-only {
    display: none;
  }

  .br-sp-only {
    display: block;
  }

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

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

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

  .mbXS {
    margin-bottom: 4px;
  }

  .mbS {
    margin-bottom: 8px;
  }

  .mbM {
    margin-bottom: 16px;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

  .sp-col1 {
    grid-template-columns: 1fr;
  }

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

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

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

  .gapXS {
    grid-gap: 4px;
  }

  .gapS {
    grid-gap: 8px;
  }

  .gapM {
    grid-gap: 16px;
  }

  .gapXM {
    grid-gap: 32px;
  }

  .gapL {
    grid-gap: 48px;
  }

  .gapXL {
    grid-gap: 64px;
  }
}

.tel {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font_en);
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: none;
  }
}

/*------------
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: 96px;
}

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

.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;
}
