@charset "UTF-8";

/* ====================================================
【Mixin】
==================================================== */
/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #463F2A;
  --color_link: #AA9957;
  --color_border: #D5D0BF;
  --color_primary: #AA9957;
  --color_secondary: #CC948F;
  --color_secondary_rgb: 204, 148, 143;
  --color_tertiary: #79A4AD;
  --color_tertiary_rgb: 121, 164, 173;
  --color_quaternary: #B1B549;
  --color_quaternary_rgb: 177, 181, 73;
  --color_quinary: #F5F2E7;
  --color_white: #fff;
  --color_black: #463F2A;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #747474;
}

/* ====================================================
【アニメーション】
==================================================== */
: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:
    "Shippori Mincho",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    "Noto Sans JP",
    sans-serif;
  --font_jp: "Shippori Mincho", serif;
  --font_en: "Cormorant Garamond", serif;
  --font_weight: 500;
  --font_size: 0.9375rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

@media (max-width: 800px) {
  :root {
    --font_size: 0.875rem;
    --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: none;
  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 {
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.link {
  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: 100px;
}

@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: 1400px;
}

.container.narrow {
  max-width: 900px;
}

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table-wrap {
  background-color: var(--color_white);
  padding: 10px 20px;
}

@media (max-width: 800px) {
  .time-table-wrap {
    padding: 10px;
  }
}

.time-table {
  background-color: var(--color_white);
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.time-table tr {
  border-bottom: 1px solid var(--color_border);
}

.time-table tr:last-child {
  border-bottom: none;
}

.time-table th,
.time-table td {
  text-align: center;
  padding: 15px 0;
  line-height: 1.2;
}

@media (max-width: 800px) {

  .time-table th,
  .time-table td {
    padding: 10px 0;
    font-size: 0.8125rem;
    letter-spacing: 0;
  }
}

.time-table th {
  font-weight: normal;
}

.time-table th:first-child {
  width: 25%;
}

@media (max-width: 800px) {
  .time-table th:first-child {
    width: 90px;
  }
}

.time-table thead th {
  border-bottom: 1px solid var(--color_border);
}

.time-table img {
  margin-inline: auto;
}

.time-table-note {
  margin-top: 15px;
}

.time-table-note>li {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  line-height: 1.4;
}

.time-table-note>li img {
  margin-top: 4px;
  flex: 0 0 auto;
}

.time-table-note>li .label {
  flex: 0 0 auto;
  border: 1px solid var(--color_border);
  display: block;
  padding: 0 15px;
}

.time-table-note>li+li {
  margin-top: 8px;
}

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event-color01: #CC948F;
  --event-color02: #79A4AD;
  --event-color03: #B1B549;
}

.business-calendar-wrap {
  background-color: var(--color_white);
  padding: 25px;
  border: 2px solid var(--color_quinary);
}

.business-calendar-wrap:has(.business-calendar-box > div + div) {
  background: none;
  padding: 0;
}

.business-calendar-wrap:has(.business-calendar-box > div + div) .business-calendar-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.business-calendar-wrap:has(.business-calendar-box > div + div) .business-calendar-box>div {
  background-color: var(--color_white);
  padding: 25px;
}

@media (max-width: 800px) {
  .business-calendar-wrap {
    padding: 30px 20px;
  }

  .business-calendar-wrap:has(.business-calendar-box > div + div) .business-calendar-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .business-calendar-wrap:has(.business-calendar-box > div + div) .business-calendar-box>div {
    padding: 30px 20px;
  }
}

.business-calendar-box {
  margin: 0 0 15px;
}

.business-calendar-box .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.business-calendar-box .business-calendar caption {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid var(--color_border);
}

.business-calendar-box .business-calendar caption span {
  line-height: 1;
  font-size: 1.5625rem;
  vertical-align: -7px;
  margin: 0 10px;
}

@media (max-width: 800px) {
  .business-calendar-box .business-calendar caption span {
    margin: 0 30px;
  }
}

.business-calendar-box .business-calendar th {
  font-family: var(--font_en);
  font-size: 1rem;
  font-weight: normal;
  font-weight: normal;
  padding: 8px 5px;
  width: 14%;
}

@media (max-width: 800px) {
  .business-calendar-box .business-calendar th {
    font-size: 0.8125rem;
  }
}

.business-calendar-box .business-calendar td {
  background-clip: padding-box;
  position: relative;
  padding: 8px 5px;
  z-index: 0;
}

.business-calendar-box .business-calendar td::before {
  content: "";
  background: var(--color_gray);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  opacity: 0;
}

.business-calendar-box .business-calendar .today {
  text-decoration: underline;
}

.business-calendar-box .business-calendar .attr0,
.business-calendar-box .business-calendar .attr1,
.business-calendar-box .business-calendar .attr2 {
  color: var(--color_white);
}

.business-calendar-box .business-calendar .attr0::before,
.business-calendar-box .business-calendar .attr1::before,
.business-calendar-box .business-calendar .attr2::before {
  opacity: 1;
}

.business-calendar-box .business-calendar .attr0::before {
  background: var(--event-color01);
}

.business-calendar-box .business-calendar .attr1::before {
  background: var(--event-color02);
}

.business-calendar-box .business-calendar .attr2::before {
  background: var(--event-color03);
}

.business-calendar-box .business-calendar .business-calendar-past a,
.business-calendar-box .business-calendar .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}

.business-calendar-box .business-calendar .business-calendar-past a::before,
.business-calendar-box .business-calendar .business-calendar-future a::before {
  content: "";
  display: inline-block;
  background-color: var(--color_primary);
  width: 8px;
  height: 10px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 7px;
  left: 7px;
}

.business-calendar-box .business-calendar .business-calendar-past a::before {
  transform: scale(-1);
}

.list-event {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.list-event li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}

.list-event li::before {
  content: "";
  background-color: var(--color_black);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.list-event .event01::before {
  background-color: var(--event-color01);
}

.list-event .event02::before {
  background-color: var(--event-color02);
}

.list-event .event03::before {
  background-color: var(--event-color03);
}

.list-event .event04::before {
  background-color: var(--event-color04);
}

/*ボタン*/
.btn-more {
  display: inline-block;
  border: 1px solid var(--color_text);
  color: var(--color_text);
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  padding: 15px 55px 15px 15px;
  position: relative;
  min-width: 220px;
  transition: 0.2s;
  text-align: left;
}

.btn-more:after {
  content: "";
  display: block;
  -webkit-mask: url(../images/share/arrow_btn.svg) no-repeat center/contain;
  mask: url(../images/share/arrow_btn.svg) no-repeat center/contain;
  background-color: var(--color_text);
  width: 25px;
  height: 4px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}

@media (hover: hover) {
  .btn-more:is(:hover, :focus) {
    background-color: var(--color_text);
    color: var(--color_white);
  }

  .btn-more:is(:hover, :focus):after {
    background-color: var(--color_white);
  }
}

@media (max-width: 800px) {
  .btn-more {
    display: block;
    min-width: 0;
  }
}

.btn-wrap {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.tac {
  justify-content: center;
}

.btn-wrap.tar {
  justify-content: flex-end;
}

@media (max-width: 800px) {
  .btn-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.tel-link {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
}

.tel-link:before {
  content: "Tel.";
  font-size: 1.25rem;
  display: inline-block;
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 17px;
}

/*カテゴリーリスト*/
.list-category-links {
  display: grid;
  gap: 5px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.list-category-links>li {
  position: relative;
  padding-left: 15px;
}

.list-category-links>li::before {
  content: "";
  border-top: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 0;
  rotate: 45deg;
}

.list-category-links ul {
  margin-top: 5px;
}

.list-category-links ul li {
  position: relative;
  padding-left: 15px;
}

.list-category-links ul li::before {
  content: "└";
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--color_secondary);
  font-size: 0.625rem;
}

.list-category-links ul ul {
  margin-top: 5px;
  margin-bottom: 5px;
}

.list-category-links a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
}

@media (any-hover: hover) {
  .list-category-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

/*ブログ*/
.post-under-type01 {
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}

.post-under-type01 a {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  padding: 10px 70px 10px 10px;
  position: relative;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .post-under-type01 a:hover {
    background-color: var(--color_quinary);
  }
}

.post-under-type01 a::before {
  content: "";
  background: var(--color_primary);
  -webkit-mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
}

.post-under-type01 .post-img img {
  border: 1px solid var(--color_border);
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}

.post-under-type01 .post-data {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.post-under-type01 time {
  display: block;
  display: inline-block;
  color: #B1A890;
  font-size: 0.875rem;
  line-height: 1;
}

.post-under-type01 .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-under-type01 .category {
  display: inline-block;
  border: 1px solid var(--color_primary);
  background-color: var(--color_primary);
  border-radius: 100px;
  color: var(--color_white);
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 1px 5px;
  text-align: center;
}

.post-under-type01 .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.post-under-type01 .no-post {
  padding: 25px 0;
}

@media (max-width: 800px) {
  .post-under-type01 {
    margin-bottom: 30px;
  }

  .post-under-type01 a {
    grid-template-columns: 120px 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .post-under-type01 a::before {
    display: none;
  }

  .post-under-type01 .post-img img {
    aspect-ratio: 7/5;
  }

  .post-under-type01 .post-data {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
  }

  .post-under-type01 time {
    flex-shrink: 0;
    display: block;
    display: inline-block;
    color: #B1A890;
    font-size: 0.6875rem;
    line-height: 1;
  }

  .post-under-type01 .category {
    font-size: 0.5rem;
    padding: 0 4px;
  }

  .post-under-type01 .post-ttl {
    -webkit-line-clamp: 3;
    font-size: 0.8125rem;
  }

  .post-under-type01 .no-post {
    padding: 25px 0;
  }
}

/*お知らせ*/
.post-under-type02 {
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}

.post-under-type02 a {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: center;
  padding: 20px 70px 20px 10px;
  position: relative;
  transition: background-color 0.3s;
}

@media (max-width: 800px) {
  .post-under-type02 a {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 16px 40px 16px 10px;
  }
}

@media (any-hover: hover) {
  .post-under-type02 a:hover {
    background-color: var(--color_quinary);
  }
}

.post-under-type02 a::before {
  content: "";
  background: var(--color_primary);
  -webkit-mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 10px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
}

.post-under-type02 time {
  display: block;
  display: inline-block;
  color: #B1A890;
  font-size: 0.8125rem;
  line-height: 1;
}

.post-under-type02 .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-under-type02 .category {
  display: inline-block;
  border: 1px solid var(--color_primary);
  background-color: var(--color_primary);
  border-radius: 100px;
  color: var(--color_white);
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 1px 5px;
  text-align: center;
  width: 100%;
}

@media (max-width: 800px) {
  .post-under-type02 .category {
    width: auto;
  }
}

.post-under-type02 .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .post-under-type02 .post-ttl {
    grid-column: 1/-1;
  }
}

@media (max-width: 800px) {
  .post-under-type02 {
    margin-bottom: 30px;
  }

  .post-under-type02 a {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 16px 40px 16px 0;
  }

  .post-under-type02 .category {
    width: auto;
  }

  .post-under-type02 .post-ttl {
    grid-column: 1/-1;
  }
}

/*症例紹介*/
.case-layout {
  border: 1px solid var(--color_border);
  background: var(--color_white);
  padding: 50px;
}

.case-layout time {
  display: inline-block;
  color: #B1A890;
  font-size: 0.875rem;
  line-height: 1;
  margin-right: 20px;
}

.case-layout .category {
  display: inline-block;
  border: 1px solid var(--color_primary);
  background-color: var(--color_primary);
  border-radius: 100px;
  color: var(--color_white);
  font-size: 0.6875rem;
  line-height: 1.5;
  padding: 1px 5px;
  text-align: center;
  margin: 0 10px 0 0;
}

.case-layout .l-ttl {
  font-family: var(--font_jp);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.case-layout .post-data {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.case-layout .before-after {
  margin-bottom: 30px;
}

.case-layout table.l-table {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
}

.case-layout .l-table:not(:last-child) {
  margin-bottom: 60px;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.case-layout .l-table th,
.case-layout .l-table td {
  border: 1px solid var(--color_border);
  background: var(--color_white);
  line-height: 1.5;
  font-size: 0.9375rem;
  padding: 15px;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.case-layout .l-table th {
  background: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 500;
  vertical-align: top;
  text-align: left;
  width: 25%;
}

.case-layout .l-btn {
  text-align: center;
  margin-top: 50px;
}

.case-layout .l-item {
  margin-top: 50px;
}

.case-layout .item-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  padding: 0 0 12px;
  margin: 0 0 25px;
}

.case-layout .item-ttl::after {
  content: "";
  width: 25px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.case-layout+.case-layout {
  margin-top: 50px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5%;
}

.before-after .item {
  text-align: center;
  position: relative;
}

.before-after .item {
  display: grid;
  place-items: center;
  height: 300px;
  position: relative;
}

.before-after .item img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  max-height: 300px;
}

.layout-sidebar .before-after .item {
  height: 230px;
}

.layout-sidebar .before-after .item img {
  max-height: 230px;
}

.before-after p {
  text-align: center;
}

.before-after p::before,
.before-after p::after {
  content: "-";
  margin: 0 5px;
}

@media (max-width: 800px) {
  .case-layout {
    padding: 30px 25px;
  }

  .case-layout .l-ttl {
    font-size: 1.4375rem;
    margin-bottom: 20px;
  }

  .case-layout .post-data {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .case-layout .before-after {
    margin-bottom: 30px;
  }

  .case-layout .l-table:not(:last-child) {
    margin-bottom: 40px;
  }

  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table,
  .case-layout table.l-table {
    border-color: var(--color_border);
    border-width: 1px;
  }

  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
  .case-layout .l-table th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
  .case-layout .l-table th,
  .case-layout .l-table td {
    display: block;
    border: none;
    padding: 10px;
    font-size: 0.875rem;
    width: 100%;
  }

  .case-layout .l-btn {
    margin-top: 30px;
  }

  .case-layout .l-item {
    margin-top: 30px;
  }

  .case-layout .item-ttl {
    border-bottom: 1px solid var(--color_primary);
    font-size: 1.125rem;
    position: relative;
    padding: 0 0 12px;
    margin: 0 0 25px;
  }

  .case-layout .item-ttl::after {
    content: "";
    width: 25px;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
  }

  .case-layout+.case-layout {
    margin-top: 30px;
  }

  .before-after {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .before-after .item {
    height: auto;
  }

  .layout-sidebar .before-after .item {
    height: auto;
  }

  .layout-sidebar .before-after .item img {
    max-height: 300;
  }
}

/*詳細ページ*/
.layout-single-post {
  width: min(90%, 800px);
  margin-inline: auto;
}

.layout-single-post .post-data {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  display: inline-block;
  color: #B1A890;
  font-size: 0.875rem;
  line-height: 1;
  line-height: 1.5;
}

.layout-single-post .category-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.layout-single-post .category {
  width: 100%;
  display: inline-block;
  border: 1px solid var(--color_primary);
  background-color: var(--color_primary);
  border-radius: 100px;
  color: var(--color_white);
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 1px 5px;
  text-align: center;
}

.layout-single-post .l-ttl {
  font-family: var(--font_jp);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}

.layout-sidebar .layout-single-post {
  width: 100%;
}

@media (max-width: 800px) {
  .layout-single-post .l-ttl {
    font-size: 1.5625rem;
    margin-bottom: 20px;
  }
}

/*ページャー*/
.post-number {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: #c8c8c8;
  font-size: 1rem;
  line-height: 1;
  position: relative;
  transition: color 0.3s;
}

.post-number span:hover,
.post-number a:hover {
  color: #333;
}

.post-number .current {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 15px;
}

.post-number .prev,
.post-number .next {
  width: 10px;
  height: 10px;
  margin-top: 5px;
}

.post-number .prev {
  margin-right: 10px;
}

.post-number .next {
  margin-left: 10px;
}

.post-number .prev::before,
.post-number .next::before {
  content: "";
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}

.post-number .prev::before {
  -webkit-mask: url(../images/share/post_prev.svg) no-repeat center/contain;
  mask: url(../images/share/post_prev.svg) no-repeat center/contain;
}

.post-number .next::before {
  -webkit-mask: url(../images/share/post_next.svg) no-repeat center/contain;
  mask: url(../images/share/post_next.svg) no-repeat center/contain;
}

@media (max-width: 800px) {
  .post-number {
    gap: 15px;
    margin-top: 30px;
  }
}

.post-number-single {
  border-top: 1px solid var(--color_border);
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  text-align: center;
  margin-top: 5rem;
  padding-top: 5rem;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: var(--color_black);
  color: var(--color_white);
  border: 1px solid var(--color_black);
  font-size: 0.8125rem;
  font-family: var(--font_en);
  line-height: 28px;
  max-width: 200px;
  height: 30px;
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
}

.post-number-single .all:hover {
  background: var(--color_base);
  color: var(--color_black);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_black);
  width: 30px;
  height: 30px;
  position: relative;
  transition: background-color 0.3s;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  content: "";
  background-color: var(--color_black);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: background-color 0.3s;
  width: 10px;
  height: 10px;
}

.post-number-single .prev::before {
  right: 8px;
}

.post-number-single .next::before {
  left: 8px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background-color: var(--color_black);
}

.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  background-color: var(--color_white);
}

.post-number-single .prev::before {
  -webkit-mask: url(../images/share/post_next.svg) no-repeat center/contain;
  mask: url(../images/share/post_next.svg) no-repeat center/contain;
}

.post-number-single .next::before {
  -webkit-mask: url(../images/share/post_prev.svg) no-repeat center/contain;
  mask: url(../images/share/post_prev.svg) no-repeat center/contain;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 0 2.5%;
  min-height: 100px;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color_white);
}

@media (max-width: 800px) {
  .header {
    gap: 15px;
    padding: 10px 2.5%;
    min-height: 0;
  }
}

@media (max-width: 800px) {
  .h-logo {
    max-width: 255px;
  }
}

.h-utility {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

@media (max-width: 800px) {
  .h-utility {
    display: none;
  }
}

.h-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
}

.h-contact .sns {
  display: block;
  width: 44px;
}

/*------------
Gnavi Drawer
--------------*/
html.is-open {
  height: 100%;
  overflow: hidden;
}

.gnavi-menu-btn {
  cursor: pointer;
  background-color: var(--color_secondary);
  display: grid;
  place-content: center;
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 110;
}

.gnavi-menu-btn-line {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 15px;
}

.gnavi-menu-btn-line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color_white);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.gnavi-menu-btn-line span:nth-child(1) {
  top: 0;
}

.gnavi-menu-btn-line span:nth-child(2) {
  bottom: 0;
}

.gnavi-menu-btn-txt {
  display: block;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-top: 15px;
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(2) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-35deg);
}

.gnavi-drawer {
  pointer-events: none;
  background-color: var(--color_quinary);
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
  z-index: 100;
}

.gnavi-drawer:before {
  content: "";
  background: url(../images/share/g-navi_bg.jpg) no-repeat center/cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

.gnavi-drawer-container {
  padding: 100px 8%;
  width: 50%;
  height: 100%;
  overflow-y: auto;
  margin: 0 0 0 auto;
}

.drawer-links-wrap {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
}

.drawer-links-item .item-ttl {
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 500;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 10px;
  position: relative;
}

.drawer-links-item .item-ttl:before {
  content: "";
  background: var(--color_primary);
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: 1px;
  z-index: 1;
}

.drawer-links {
  display: grid;
  gap: 15px;
  line-height: 1.5;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 500;
}

.drawer-links>li {
  position: relative;
  padding: 0 0 0 1rem;
}

.drawer-links>li:before {
  content: "";
  display: block;
  border-top: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
  width: 0.375rem;
  height: 0.375rem;
  position: absolute;
  left: 0;
  top: 0.6em;
  transform: rotate(45deg);
  transition: 0.2s;
}

.drawer-links>li a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.03rem;
}

@media (any-hover: hover) {
  .drawer-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.gnavi-drawer-container .time-table-area {
  max-width: 490px;
  margin: 0 auto 40px;
}

.gnavi-drawer-container .navi-logo {
  margin: 0 auto 15px;
  width: -moz-fit-content;
  width: fit-content;
}

.gnavi-drawer-container .navi-address {
  margin-bottom: 15px;
  text-align: center;
}

.gnavi-drawer-container .navi-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.gnavi-drawer-container .navi-contact .sns {
  width: 30px;
}

@media (max-width: 800px) {
  .gnavi-drawer-container {
    align-items: flex-start;
    padding: 50px 25px;
    width: 100%;
  }

  .drawer-links {
    gap: 15px;
    font-size: 1rem;
  }
}

.fixed-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.fixed-btn>a {
  min-width: 6.25rem;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background-color 0.3s ease;
}

.fixed-btn>a.bg-blue {
  background-color: var(--color_tertiary);
}

.fixed-btn>a.bg-blue:is(:hover, :focus) {
  background-color: oklch(from var(--color_tertiary) calc(l - 0.1) c h);
}

.fixed-btn>a.bg-yellow {
  background-color: var(--color_quaternary);
}

.fixed-btn>a.bg-yellow:is(:hover, :focus) {
  background-color: oklch(from var(--color_quaternary) calc(l - 0.1) c h);
}

.fixed-btn>a .icon img {
  -o-object-fit: scale-down;
  object-fit: scale-down;
  width: 2.5rem;
  height: 2.5rem;
}

.fixed-btn>a .ttl {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

.fixed-btn>a .ttl .small {
  font-size: 0.75rem;
}

@media (max-width: 800px) {
  .fixed-btn {
    display: none;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_quinary);
  margin-top: auto;
  position: relative;
}

.f-contents {
  display: grid;
  grid-template-columns: 490px 1fr;
  gap: 40px;
  margin-inline: auto;
  padding: 60px 0;
  width: min(90%, 1024px);
}

.f-logo {
  margin-bottom: 20px;
}

.f-txt {
  font-size: 0.9375rem;
  margin-bottom: 30px;
}

.f-tel {
  margin-bottom: 30px;
}

.f-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 490px;
}

.list-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.list-payment li img {
  width: auto;
  height: 42px;
}

.site-map {
  display: flex;
  gap: 6rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-inline: auto;
  width: min(90%, 1024px);
  padding: 0 0 100px;
}

.f-links {
  line-height: 1.5;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 500;
}

.f-links>li {
  position: relative;
  padding: 0 0 0 1rem;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 15px;
}

.f-links>li:before {
  content: "";
  display: block;
  border-top: 1px solid var(--color_primary);
  border-right: 1px solid var(--color_primary);
  width: 0.375rem;
  height: 0.375rem;
  position: absolute;
  left: 0;
  top: 0.6em;
  transform: rotate(45deg);
  transition: 0.2s;
}

.f-links>li:last-child {
  margin-bottom: 0;
}

.f-links>li a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.03rem;
}

@media (any-hover: hover) {
  .f-links>li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.f-links>li ul {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-top: 15px;
}

.f-links>li ul>li {
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  position: relative;
  padding: 0 0 0 1rem;
  break-inside: avoid;
  margin-bottom: 15px;
}

.f-links>li ul>li:before {
  content: "";
  display: block;
  background-color: #D5D0BF;
  width: 0.5rem;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0.8em;
  transition: 0.2s;
}

.f-links>li ul>li:last-child {
  margin-bottom: 0;
}

.f-links>li ul>li a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.03rem;
}

@media (any-hover: hover) {
  .f-links>li ul>li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.copyright {
  font-size: 0.75rem;
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 10px 0;
  text-align: center;
}

.pagetop {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 800px) {
  .f-contents {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .f-logo {
    margin-bottom: 20px;
  }

  .f-txt {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }

  .f-tel {
    margin-bottom: 20px;
  }

  .f-map iframe {
    height: 300px;
  }

  .list-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
  }

  .list-payment li img {
    width: auto;
    height: 42px;
  }

  .site-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 0 60px;
  }

  .f-links {
    font-size: 0.8125rem;
  }

  .f-links:not(:has(ul)) {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }

  .f-links>li {
    margin-bottom: 10px;
  }

  .f-links>li ul {
    margin-top: 10px;
  }

  .f-links>li ul>li {
    margin-bottom: 10px;
  }

  .copyright {
    padding: 10px 0 70px;
  }

  .pagetop {
    bottom: 70px;
    right: 0;
  }
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .sp-navi {
    display: block;
  }

  .sp-navi-btns {
    display: flex;
    background: var(--color_primary);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 10000;
  }

  .sp-navi-btns>* {
    flex: 1;
    position: relative;
  }

  .sp-navi-btns .item {
    font-family: var(--font_jp);
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--color_white);
    text-decoration: none;
    height: 100%;
    padding: 10px 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: 8px;
    stroke: var(--color_white);
  }

  .sp-navi-btns .item .ttl {
    display: block;
  }

  .sp-navi-btns .item.reservation {
    background: #60594C;
  }

  .sp-navi-btns .item.reservation .img {
    display: block;
  }

  .sp-navi-btns .item.reservation .img svg {
    stroke: inherit;
  }

  .sp-navi-btns .item.line {
    background: #00C300;
  }

  .sp-navi-btns .item.line .img {
    display: block;
  }

  .sp-navi-btns .item.line .img svg {
    fill: var(--color_white);
  }

  .sp-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px;
  }

  .sp-menu-btn .ttl {
    display: block;
    color: var(--color_white);
    font-family: var(--font_jp);
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

  .sp-menu-btn span:not(.ttl) {
    background: var(--color_white);
    position: absolute;
    left: 50%;
    width: 22px;
    height: 1px;
    transform: translateX(-50%);
    transition: 0.4s;
  }

  .sp-menu-btn span:not(.ttl):nth-of-type(1) {
    top: 20px;
  }

  .sp-menu-btn span:not(.ttl):nth-of-type(2) {
    top: 26px;
  }

  .sp-menu-btn span:not(.ttl):nth-of-type(3) {
    top: 32px;
  }

  .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_quinary);
    font-family: var(--font_jp);
    font-size: 0.9375rem;
    font-weight: 500;
    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-navi-list {
    border-top: 1px solid var(--color_border);
    line-height: 1.5;
  }

  .sp-navi-list>li {
    position: relative;
    border-bottom: 1px solid var(--color_border);
  }

  .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_primary);
    -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%);
  }

  .sp-details::details-content {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 15px;
    transition: 0.3s ease;
  }

  .sp-details[open]::details-content {
    grid-template-rows: 1fr;
    padding: 15px;
  }

  .sp-details[open] .plus {
    rotate: 45deg;
  }

  .sp-details-btn {
    display: flex;
    align-items: center;
    padding: 10px 30px 10px 0;
    position: relative;
    min-height: 50px;
    width: 100%;
  }

  .sp-details-btn .text {
    display: block;
  }

  .sp-details-btn .plus {
    display: block;
    background-color: var(--color_primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    transition: 0.3s;
    transform-origin: 50% 0;
  }

  .sp-details-btn .plus::after {
    content: "";
    background-color: var(--color_white);
    -webkit-mask: url(../images/share/sp_navi_plus.svg) no-repeat center/contain;
    mask: url(../images/share/sp_navi_plus.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    transform: translate(-50%, -50%);
  }

  .sp-sub-menu {
    display: grid;
    grid-gap: 5px;
    font-size: 0.875rem;
  }

  .sp-sub-menu a {
    display: block;
    position: relative;
    padding-left: 20px;
  }

  .sp-sub-menu a::before {
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: var(--color_primary);
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
  }
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 12.5rem 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: 0.625rem;
  margin-bottom: 1.5rem;
}

.layout-sidebar .l-label [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.0625rem;
  font-weight: normal;
}

.layout-sidebar .l-label .jp {
  font-family: var(--font_jp);
  font-size: 0.75rem;
  font-weight: 500;
}

.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;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
}

.hero .hero-img {
  position: relative;
}

.hero .splide__slide img {
  width: 100%;
  height: auto;
  min-height: 720px;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.hero .splide__controls {
  background: var(--color_quinary);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  padding: 15px 15px 0;
}

.hero-ttl {
  position: absolute;
  left: 30%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.hero-ttl .list {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}

.hero-ttl .list>li {
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  width: 200px;
  height: auto;
  border-radius: 50%;
  position: relative;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.hero-ttl .list>li:before {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  inset: 5px;
  border: 2px solid var(--color_white);
  pointer-events: none;
  opacity: 0.4;
  z-index: 2;
}

.hero-ttl .list>li.bg-pink {
  background-color: rgba(var(--color_secondary_rgb), 0.8);
}

.hero-ttl .list>li.bg-blue {
  background-color: rgba(var(--color_tertiary_rgb), 0.8);
}

.hero-ttl .list>li.bg-yellow {
  background-color: rgba(var(--color_quaternary_rgb), 0.8);
}

.hero-ttl .ttl {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 0 10px var(--color_black);
  text-align: center;
}

@media (max-width: 800px) {
  .hero {
    padding-bottom: 50px;
  }

  .hero .splide__slide img {
    min-height: 0;
  }

  .hero .splide__controls {
    background: none;
  }

  .hero-ttl {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
  }

  .hero-ttl .list {
    gap: 5px;
    margin-bottom: 5vw;
  }

  .hero-ttl .list>li {
    width: 28.75vw;
    font-size: 4vw;
  }

  .hero-ttl .list>li:before {
    inset: 3px;
  }

  .hero-ttl .ttl {
    font-size: 5.3vw;
  }
}

.hero-news {
  background-color: #E2DDCC;
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 5;
  max-width: 682px;
  padding: 20px 50px 30px;
}

.t-news-layout {
  display: grid;
  grid-template: auto 1fr/180px 1fr;
  grid-template-areas: "ttl body" "btn body";
  gap: 0;
}

.t-news-layout .l-ttl {
  grid-area: ttl;
  margin-bottom: 20px;
}

.t-news-layout .l-ttl [lang=en] {
  margin-bottom: 5px;
}

.t-news-layout .l-ttl [lang=en] img {
  display: inline-block;
}

.t-news-layout .l-ttl .jp {
  font-family: var(--font_jp);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

.t-news-layout .l-body {
  grid-area: body;
}

.t-news-layout .l-btn {
  grid-area: btn;
}

.t-news-layout .l-btn .btn-more {
  padding: 8px 45px 8px 10px;
  min-width: 110px;
}

@media (max-width: 800px) {
  .hero-news {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 5;
    max-width: 95%;
    padding: 25px;
    margin: 10px 0 0 auto;
  }

  .t-news-layout {
    display: block;
  }

  .t-news-layout .l-ttl {
    margin-bottom: 15px;
  }

  .t-news-layout .l-ttl [lang=en] {
    margin-bottom: 0;
  }

  .t-news-layout .l-btn {
    position: static;
    margin-top: 30px;
  }

  .t-news-layout .l-btn .btn-more {
    padding: 15px 55px 15px 15px;
    min-width: 0;
  }
}

.post-top-type01 {
  display: grid;
}

.post-top-type01 a {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid #BCB6A3;
  padding: 15px 0;
}

.post-top-type01 .no-post {
  white-space: nowrap;
  border-bottom: 1px solid #BCB6A3;
  padding: 15px 0;
}

.post-top-type01 time {
  display: inline-block;
  white-space: nowrap;
  display: inline-block;
  color: #B1A890;
  font-size: 0.875rem;
  line-height: 1;
}

.post-top-type01 .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1rem;
}

@media (any-hover: hover) {
  .post-top-type01 a:hover .post-ttl {
    text-decoration: underline;
  }
}

@media (max-width: 800px) {
  .post-top-type01 a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

  .post-top-type01 .no-post {
    padding: 10px 0;
  }

  .post-top-type01 time {
    display: block;
    margin-bottom: 5px;
  }

  .post-top-type01 .post-ttl {
    -webkit-line-clamp: 2;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  line-height: 1.5;
  margin-bottom: 60px;
}

.t-h2 [lang=en] {
  line-height: 1;
  margin-bottom: 5px;
}

.t-h2 [lang=en] img {
  display: inline-block;
}

.t-h2 .jp {
  font-family: var(--font_jp);
  font-size: 1.625rem;
  font-weight: 500;
}

@media (max-width: 800px) {
  .t-h2 {
    margin-bottom: 40px;
  }

  .t-h2 [lang=en] {
    margin-bottom: 0;
  }

  .t-h2 [lang=en] img {
    max-height: 35px;
    width: auto;
  }

  .t-h2 .jp {
    font-size: 1.4375rem;
  }
}

/*------------
Section
--------------*/
.sec01 {
  background-color: var(--color_quinary);
  padding: 120px 0;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 60px 0;
  }
}

.sec01-layout01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-bottom: 80px;
}

.sec01-layout01 .item .item-ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 20px;
  position: relative;
}

.sec01-layout01 .item .item-ttl:before {
  content: "";
  background: var(--color_primary);
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: 1px;
  z-index: 1;
}

@media (max-width: 800px) {
  .sec01-layout01 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 40px;
  }

  .sec01-layout01 .item .item-ttl {
    font-size: 1.25rem;
    padding: 0 0 10px;
    margin-bottom: 20px;
  }
}

.sec01-layout02 {
  display: grid;
  grid-template: 1fr 1fr/52.7% 1fr;
  gap: 10px;
  margin-bottom: 80px;
  grid-template-areas: "bnr01 bnr02" "bnr01 bnr03";
}

.sec01-layout02 .bnr:nth-child(1) {
  grid-area: bnr01;
}

.sec01-layout02 .bnr:nth-child(2) {
  grid-area: bnr02;
}

.sec01-layout02 .bnr:nth-child(3) {
  grid-area: bnr03;
}

@media (max-width: 800px) {
  .sec01-layout02 {
    margin-bottom: 40px;
    display: grid;
    grid-template: auto/1fr;
    gap: 10px;
    grid-template-areas: "bnr01" "bnr02" "bnr03";
  }
}

.sec01-layout03 {
  display: grid;
  grid-template: auto 1fr/50% 1fr;
  gap: 46px 24px;
  margin-bottom: 50px;
  grid-template-areas: "recruit instagram" "youtube instagram";
}

.sec01-layout03 .item {
  position: relative;
}

.sec01-layout03 .item .item-ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 20px;
  position: relative;
}

.sec01-layout03 .item .item-ttl:before {
  content: "";
  background: var(--color_primary);
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: 1px;
  z-index: 1;
}

.sec01-layout03 .item:nth-child(1) {
  grid-area: recruit;
}

.sec01-layout03 .item:nth-child(2) {
  grid-area: youtube;
}

.sec01-layout03 .item:nth-child(3) {
  grid-area: instagram;
}

.sec01-layout03 .recruit-box {
  background-color: #E2DDCC;
  padding: 30px;
  max-width: 490px;
}

.sec01-layout03 .recruit-box .recruit-box-ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--color_white);
  margin-bottom: 20px;
  position: relative;
}

.sec01-layout03 .recruit-box .recruit-box-ttl:before {
  content: "";
  background: var(--color_primary);
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: 1px;
  z-index: 1;
}

.sec01-layout03 .recruit-box .recruit-box-desc {
  padding: 25px 20px;
  background-color: var(--color_white);
}

.sec01-layout03 .recruit-box .recruit-box-desc .recruit-box-list li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
  margin-bottom: 5px;
  font-weight: bold;
}

.sec01-layout03 .recruit-box .recruit-box-desc .recruit-box-list li::marker {
  color: #F99A67;
}

.sec01-layout03 .recruit-box .recruit-box-desc .recruit-box-list li:last-child {
  margin-bottom: 0;
}

.sec01-layout03 .follow-btn {
  display: inline-block;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  padding: 7px 15px;
  text-align: center;
  min-width: 160px;
  transition: 0.2s;
  position: absolute;
  right: 0;
  top: 0;
}

.sec01-layout03 .follow-btn:before {
  content: "";
  z-index: 1;
  display: inline-block;
  -webkit-mask: url(../images/share/icon_instagram@2x.png) no-repeat center/contain;
  mask: url(../images/share/icon_instagram@2x.png) no-repeat center/contain;
  background-color: var(--color_white);
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  vertical-align: -3px;
}

.sec01-layout03 .follow-btn:is(:hover, :focus) {
  background-color: oklch(from var(--color_primary) calc(l - 0.1) c h);
}

@media (max-width: 800px) {
  .sec01-layout03 {
    display: grid;
    grid-template: auto/1fr;
    gap: 30px;
    margin-bottom: 40px;
    grid-template-areas: "recruit" "instagram" "youtube";
  }

  .sec01-layout03 .item .item-ttl {
    font-size: 1.25rem;
    padding: 0 128px 10px 0;
    margin-bottom: 20px;
  }

  .sec01-layout03 .recruit-box {
    padding: 25px;
    max-width: 100%;
  }

  .sec01-layout03 .recruit-box .recruit-box-ttl {
    font-size: 1.25rem;
    padding: 0 0 10px;
    margin-bottom: 20px;
  }

  .sec01-layout03 .follow-btn {
    font-size: 0.875rem;
    min-width: 0;
  }

  .sec01-layout03 .follow-btn:before {
    vertical-align: -4px;
  }
}

.sec01-layout04 {
  display: grid;
  grid-template: auto auto 1fr/74.6% 1fr;
  gap: 10px 20px;
  margin-bottom: 50px;
  grid-template-areas: "bnr01 bnr02" "bnr01 bnr03" "bnr01 bnr04";
}

.sec01-layout04 .bnr:nth-child(1) {
  grid-area: bnr01;
}

.sec01-layout04 .bnr:nth-child(2) {
  grid-area: bnr02;
}

.sec01-layout04 .bnr:nth-child(3) {
  grid-area: bnr03;
}

.sec01-layout04 .bnr:nth-child(4) {
  grid-area: bnr04;
}

.sec01-layout04 .bnr-shadow {
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.16));
}

@media (max-width: 800px) {
  .sec01-layout04 {
    grid-template: auto/1fr;
    gap: 10px;
    margin-bottom: 40px;
    grid-template-areas: "bnr01" "bnr02" "bnr03" "bnr04";
  }

  .sec01-layout04 img {
    width: 100%;
    height: auto;
  }
}

.sec02 {
  background-color: #D5D0BF;
  padding: 100px 0;
}

.sec02-ttl {
  font-family: var(--font_jp);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 800px) {
  .sec02 {
    padding: 60px 0;
  }

  .sec02-ttl {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
}

.sec02-layout-pc {
  display: flex;
  gap: 5.6%;
  width: 93%;
  max-width: 1300px;
  margin: 0 0 0 auto;
}

.sec02-layout-pc .l-desc {
  flex: 1;
}

.sec02-layout-pc .l-desc .l-ttl {
  margin-bottom: 30px;
}

.sec02-layout-pc .l-desc .l-ttl [lang=en] {
  line-height: 1;
  margin-bottom: 5px;
}

.sec02-layout-pc .l-desc .l-ttl [lang=en] img {
  display: inline-block;
}

.sec02-layout-pc .l-desc .l-ttl .jp {
  font-family: var(--font_jp);
  font-size: 1.625rem;
  font-weight: 500;
}

.sec02-layout-pc .l-desc .txt-jp {
  font-family: var(--font_jp);
  font-size: clamp(1.0625rem, 1.33vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 20px;
}

.sec02-layout-pc .l-img {
  width: 47%;
}

.sec02-layout-pc .l-img.small {
  width: 38%;
}

.sec02-layout-pc+.sec02-layout-pc {
  margin-top: 80px;
}

.sec02-layout-sp {
  display: none;
}

@media (max-width: 800px) {
  .sec02-layout-pc {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .sec02-layout-pc .l-desc {
    flex: 1;
  }

  .sec02-layout-pc .l-desc .l-ttl {
    margin-bottom: 20px;
  }

  .sec02-layout-pc .l-desc .l-ttl [lang=en] {
    margin-bottom: 0;
  }

  .sec02-layout-pc .l-desc .l-ttl [lang=en] img {
    height: 55px;
    width: auto;
  }

  .sec02-layout-pc .l-desc .l-ttl .jp {
    font-size: 1.25rem;
  }

  .sec02-layout-pc .l-desc .txt-jp {
    font-size: 1.0625rem;
    margin-bottom: 15px;
  }

  .sec02-layout-pc .l-img {
    display: none;
  }

  .sec02-layout-pc+.sec02-layout-pc {
    margin-top: 50px;
  }

  .sec02-layout-sp {
    margin: 40px auto 0;
    display: block;
  }

  .sec02-layout-sp .img02 {
    width: 80%;
    margin: 20px 0 0 auto;
  }
}

.sec03 {
  background: url(../images/sec03_deco01.svg) no-repeat left top/40%;
  background-color: #E5E3DB;
  padding: 100px 0;
}

@media (max-width: 800px) {
  .sec03 {
    padding: 60px 0;
  }
}

.sec03-card-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.sec03-card-layout .item {
  width: 46.6%;
}

.sec03-card-layout .item:nth-child(even) {
  margin-top: 60px;
}

.sec03-card-layout .item a {
  display: block;
}

.sec03-card-layout .item a .card-img {
  overflow: hidden;
  box-shadow: 20px 20px 0 #463F2A;
  margin-bottom: 35px;
}

.sec03-card-layout .item a .card-img img {
  transition: 0.5s;
}

.sec03-card-layout .item a .card-ttl {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sec03-card-layout .item a .card-ttl .num {
  flex: 0 0 auto;
}

.sec03-card-layout .item a .card-ttl .jp {
  flex: 1;
  font-family: var(--font_jp);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.5;
}

.sec03-card-layout .item a .card-ttl .jp .inner {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.03rem;
}

.sec03-card-layout .item a:is(:hover, :focus) .card-img img {
  transform: scale(1.1);
}

.sec03-card-layout .item a:is(:hover, :focus) .card-ttl .jp .inner {
  background-position: 0 100%;
  background-size: 100% 1px;
}

@media (max-width: 800px) {
  .sec03-card-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sec03-card-layout .item {
    width: 100%;
  }

  .sec03-card-layout .item:nth-child(even) {
    margin-top: 0;
  }

  .sec03-card-layout .item a {
    display: block;
  }

  .sec03-card-layout .item a .card-img {
    box-shadow: 10px 10px 0 #463F2A;
    margin-bottom: 20px;
  }

  .sec03-card-layout .item a .card-ttl {
    display: flex;
    align-items: center;
  }

  .sec03-card-layout .item a .card-ttl .num {
    flex: 0 0 60px;
  }

  .sec03-card-layout .item a .card-ttl .jp {
    font-size: 1rem;
  }
}

.sec04 {
  padding: 150px 0 100px;
  position: relative;
}

.sec04:before {
  content: "";
  position: absolute;
  inset: 170px 2.5% 26%;
  background: var(--color_quinary);
  z-index: -1;
}

@media (max-width: 800px) {
  .sec04 {
    padding: 50px 0 40px;
    position: relative;
  }

  .sec04:before {
    inset: 70px 0 26%;
  }
}

.sec04-layout01 {
  display: flex;
  gap: 5.6%;
  width: 93%;
  max-width: 1300px;
  margin: 0 0 90px auto;
}

.sec04-layout01 .l-img {
  width: 53.8%;
}

.sec04-layout01 .l-desc {
  flex: 1;
}

.sec04-layout01.reverse {
  flex-direction: row-reverse;
  margin: 0 auto 90px 0;
}

.sec04-layout01 .l-ttl {
  padding: 0 0 10px;
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 25px;
  position: relative;
}

.sec04-layout01 .l-ttl:before {
  content: "";
  background: var(--color_primary);
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: 1px;
  z-index: 1;
}

.sec04-layout01 .l-ttl [lang=en] {
  line-height: 1;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.sec04-layout01 .l-ttl .jp {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
}

.sec04-layout01 .l-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}

.sec04-layout01 .l-list li {
  color: var(--color_white);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
}

.sec04-layout01 .l-list.bg-pink li {
  background-color: var(--color_secondary);
}

.sec04-layout01 .l-list.bg-blue li {
  background-color: var(--color_tertiary);
}

.sec04-layout01 .l-list.bg-yellow li {
  background-color: var(--color_quaternary);
}

.sec04-layout01 .l-bnr {
  margin-top: 15px;
}

.sec04-layout01 .l-bnr .bnr-shadow {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.15));
}

@media (max-width: 800px) {
  .sec04-layout01 {
    display: block;
    gap: 5.6%;
    width: 100%;
    margin: 0 auto 40px;
  }

  .sec04-layout01 .l-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .sec04-layout01.reverse {
    margin: 0 auto 40px;
  }

  .sec04-layout01 .l-ttl {
    margin-bottom: 15px;
  }

  .sec04-layout01 .l-ttl [lang=en] img {
    height: 35px;
    width: auto;
  }

  .sec04-layout01 .l-ttl .jp {
    font-size: 1.25rem;
  }

  .sec04-layout01 .l-list {
    gap: 6px;
    margin-bottom: 15px;
  }

  .sec04-layout01 .l-list li {
    font-size: 0.875rem;
    padding: 10px;
  }
}

.sec04-bnr {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 70px;
}

@media (max-width: 800px) {
  .sec04-bnr {
    margin: 0 auto 40px;
  }
}

.sec04-card-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 710px;
  margin: 0 auto;
}

.sec04-card-layout .item a {
  display: flex;
  flex-direction: column;
  background-color: var(--color_primary);
  padding: 30px 10px;
  height: 100%;
  position: relative;
  transition: 0.3s;
}

.sec04-card-layout .item a:after {
  content: "";
  position: absolute;
  -webkit-mask: url(../images/share/arrow_btn.svg) no-repeat center/contain;
  mask: url(../images/share/arrow_btn.svg) no-repeat center/contain;
  background-color: #fff;
  width: 25px;
  height: 4px;
  right: 10px;
  bottom: 15px;
  z-index: 1;
}

.sec04-card-layout .item a .card-img {
  margin: 0 auto 15px;
  max-width: 100px;
}

.sec04-card-layout .item a .card-ttl .jp {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.sec04-card-layout .item a .card-ttl p[lang=en] {
  margin-top: 5px;
  text-align: center;
}

.sec04-card-layout .item a .card-ttl p[lang=en] img {
  display: inline-block;
}

.sec04-card-layout .item a:is(:hover, :focus) {
  background-color: oklch(from var(--color_primary) calc(l - 0.1) c h);
}

@media (max-width: 800px) {
  .sec04-card-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
  }

  .sec04-card-layout .item a {
    padding: 20px 10px;
  }

  .sec04-card-layout .item a .card-img {
    max-width: 60%;
  }

  .sec04-card-layout .item a .card-ttl .jp {
    font-size: 0.9375rem;
  }

  .sec04-card-layout .item a .card-ttl p[lang=en] {
    margin-top: 0;
  }

  .sec04-card-layout .item a .card-ttl p[lang=en] img {
    height: 20px;
    width: auto;
  }
}

.sec05 {
  padding: 230px 0 130px;
  position: relative;
}

.sec05 .parallax-bg {
  position: absolute;
  inset: 0 0 auto;
  height: 520px;
  z-index: 0;
}

.sec05 .parallax-bg .inner {
  position: absolute;
  inset: 0;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.sec05 .parallax-bg img {
  position: fixed;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100lvb;
  z-index: -1;
}

.sec05-box {
  background-color: rgba(245, 242, 231, 0.9);
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 85px 25px;
  position: relative;
}

.sec05-box .t-h2 {
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .sec05 {
    padding: 60px 0;
  }

  .sec05 .parallax-bg {
    height: 50vw;
  }

  .sec05-box {
    padding: 40px 25px;
  }

  .sec05-box .t-h2 {
    margin-bottom: 30px;
  }
}

.sec06 {
  padding: 0 0 120px;
  margin: 0 0 120px;
  background: linear-gradient(to bottom, #fff 0%, #fff 50px, var(--color_quinary) 50px, var(--color_quinary) 100%);
}

.sec06-layout {
  display: flex;
  gap: 3.6%;
  max-width: 1700px;
  width: 95%;
  margin: 0 auto;
}

.sec06-layout .l-img {
  width: 50%;
}

.sec06-layout .l-desc {
  flex: 1;
  max-width: 550px;
}

.sec06-layout .l-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.sec06-layout .l-list>li {
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  width: 170px;
  height: auto;
  border-radius: 50%;
  position: relative;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.sec06-layout .l-list>li.bg-pink {
  background-color: rgba(var(--color_secondary_rgb), 0.4);
}

.sec06-layout .l-list>li.bg-blue {
  background-color: rgba(var(--color_tertiary_rgb), 0.4);
}

.sec06-layout .l-list>li.bg-yellow {
  background-color: rgba(var(--color_quaternary_rgb), 0.4);
}

.sec06-layout .l-list>li+li {
  margin-left: -10px;
}

@media (max-width: 800px) {
  .sec06 {
    padding: 0 0 60px;
    margin: 0 0 60px;
    background: linear-gradient(to bottom, #fff 0%, #fff 50px, var(--color_quinary) 50px, var(--color_quinary) 100%);
  }

  .sec06-layout {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  .sec06-layout .l-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .sec06-layout .l-desc {
    max-width: 100%;
  }

  .sec06-layout .l-list {
    margin-bottom: 20px;
  }

  .sec06-layout .l-list>li {
    width: 30vw;
    font-size: 3.25vw;
  }

  .sec06-layout .l-list>li+li {
    margin-left: -10px;
  }
}

/*-----------------------------------------------------------
		TOP アニメーション
		-----------------------------------------------------------*/
.is-fade {
  opacity: 0;
  transition: 0.7s;
  transform: translate(0, 15%);
}

.is-fade.is-action {
  opacity: 1;
  transform: translate(0, 0);
}

.is-card>* {
  opacity: 0;
  transition: 0.7s;
  transform: translate(0, 15%);
}

.is-card>*:nth-child(2) {
  transition-delay: 0.1s;
}

.is-card>*:nth-child(3) {
  transition-delay: 0.2s;
}

.is-card>*:nth-child(4) {
  transition-delay: 0.3s;
}

.is-card>*:nth-child(5) {
  transition-delay: 0.4s;
}

.is-card>*:nth-child(6) {
  transition-delay: 0.5s;
}

.is-card.is-action>* {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {

  .is-fade,
  .is-card>* {
    transition: none !important;
    -webkit-transition: none !important;
    opacity: 1 !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    transition-delay: 0s !important;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  display: grid;
  align-items: center;
  position: relative;
  padding: 50px 5%;
  min-height: 400px;
  overflow: hidden;
}

.page-header:before {
  content: "";
  filter: blur(5px);
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.8)), url(../images/under/page-ttl.jpg) no-repeat center/cover;
  z-index: -1;
}

.page-ttl {
  line-height: 1.5;
  font-family: var(--font_jp);
  font-size: 2.25rem;
  font-weight: 500;
  text-align: center;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  width: min(90%, 1024px);
  margin: 15px auto 0;
}

.breadcrumb ul {
  font-size: 0.875rem;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

.u-contents {
  padding: 100px 0;
}

.u-contents:has(> .general-layout-wrap) {
  padding-top: 15px;
}

.u-contents p+p {
  margin-top: 1em;
}

@media (max-width: 800px) {
  .page-header {
    padding: 15px 5%;
    min-height: 180px;
  }

  .page-ttl {
    font-size: 1.5625rem;
  }

  .u-contents {
    padding: 50px 0;
  }
}

.u-h2 {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: 500;
  text-align: center;
  padding: 0 0 15px;
  margin: 0 0 40px;
  position: relative;
}

.u-h2::after {
  content: "";
  background: var(--color_primary);
  width: 50px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.u-h3 {
  border-bottom: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0 0 10px;
  margin: 0 0 30px;
  position: relative;
}

.u-h3::after {
  content: "";
  background: var(--color_primary);
  width: 30px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.u-h4 {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 20px;
}

.u-catch {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5;
}

.num-ttl {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 20px;
}

.num-ttl .num {
  border-radius: 50px;
  background-color: var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 500;
  flex: 0 0 38px;
  line-height: 38px;
  margin-top: -2px;
  text-align: center;
}

@media (max-width: 800px) {
  .u-h2 {
    font-size: 1.4375rem;
    line-height: 1.4;
    padding: 0 0 20px;
    margin: 0 0 30px;
  }

  .u-h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    padding: 0 0 15px;
    margin: 0 0 20px;
  }

  .u-h3::after {
    width: 30px;
  }

  .u-h4 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin: 0 0 15px;
  }

  .u-catch {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .num-ttl {
    font-size: 1.25rem;
    line-height: 1.4;
    gap: 10px;
  }

  .num-ttl .num {
    font-size: 0.875rem;
    flex: 0 0 30px;
    line-height: 30px;
    margin-top: 0px;
  }
}

.tall+.tall {
  margin-top: 120px;
}

.short+.short {
  margin-top: 60px;
}

.x-short+.x-short {
  margin-top: 40px;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall+.tall {
    margin-top: 60px;
  }

  .short+.short {
    margin-top: 40px;
  }

  .x-short+.x-short {
    margin-top: 30px;
  }
}

.list-disc li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
  margin-bottom: 5px;
}

.list-disc li::marker {
  color: var(--color_primary);
}

.list-disc li:last-child {
  margin-bottom: 0;
}

.list-disc.center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.list-check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
}

.list-check li:last-child {
  margin-bottom: 0;
}

.list-check li::before {
  content: "";
  background: var(--color_primary);
  -webkit-mask: url(../images/share/icon_check.svg) no-repeat center/contain;
  mask: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
}

.list-num {
  counter-reset: number;
}

.list-num>li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 5px;
}

.list-num>li:last-child {
  margin-bottom: 0;
}

.list-num>li:before {
  background-color: var(--color_primary);
  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;
}

.list-col2 {
  -moz-column-count: 2;
  column-count: 2;
}

.list-col3 {
  -moz-column-count: 3;
  column-count: 3;
}

@media (max-width: 800px) {
  .list-col2 {
    -moz-column-count: 1;
    column-count: 1;
  }

  .list-col3 {
    -moz-column-count: 1;
    column-count: 1;
  }
}

.table-style01 th,
.table-style01 td {
  border: 1px solid var(--color_border);
  padding: 15px;
  vertical-align: middle;
}

.table-style01 th {
  background-color: var(--color_primary);
  color: var(--color_white);
}

.table-style01 thead th {
  text-align: center;
}

.table-style01 thead+tbody th {
  background-color: var(--color_quinary);
  color: var(--color_black);
}

.table-style01 td {
  background-color: var(--color_white);
}

.table-scroll-txt {
  display: none;
}

@media (max-width: 800px) {

  .table-style01 th,
  .table-style01 td {
    padding: 10px;
    line-height: 1.5;
  }

  .table-style01.sp-block {
    border: 1px solid var(--color_border);
  }

  .table-style01.sp-block colgroup {
    display: none;
  }

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    border: none;
    display: block;
    width: 100%;
  }

  .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 {
    margin-bottom: 10px !important;
    width: 150%;
  }
}

.under-slider01 .splide {
  margin: 0 auto;
}

.under-slider01 .splide__track {
  overflow: visible;
}

.under-slider01 .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

.under-slider01 .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.under-slider01 .splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 25px;
  left: calc((100% - 875px) / 2);
}

.under-slider01 .splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 25px;
  right: calc((100% - 875px) / 2);
}

.under-slider01 .splide__slide img {
  width: 100%;
}

.under-slider01 .item-desc {
  margin-top: 15px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.under-slider01 .item-ttl {
  font-size: 1rem;
  margin-bottom: 5px;
}

.under-slider02 .item-img {
  position: relative;
}

.under-slider02 figcaption {
  background: #fff;
  font-size: 0.6875rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.under-slider02 .splide__pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.youtube 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;
    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%;
  }

  .l-imgR .l-desc,
  .l-imgL .l-desc {
    width: 100%;
  }

  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }

  .fl-imgR.small,
  .fl-imgL.small {
    width: 100%;
  }
}

/*------------
card-style
--------------*/
/*card-style01*/
.card-style01 {
  display: grid;
  gap: 16px;
}

.card-style01>li {
  background: var(--color_quinary);
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.card-style01 .card-img {
  margin-bottom: 25px;
}

.card-style01 .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.card-style01 .card-desc {
  margin-bottom: 20px;
}

.card-style01 .card-btn {
  text-align: center;
  margin: auto 0 0;
}

@media (max-width: 800px) {
  .card-style01 {
    gap: 15px;
  }
}

/*card-style02*/
.card-style02 {
  display: grid;
  gap: 16px;
}

.card-style02>li {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.card-style02 .card-img {
  margin-bottom: 25px;
}

.card-style02 .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.card-style02 .card-desc {
  flex: 1;
}

.card-style02 .card-btn {
  text-align: center;
  margin: auto 0 0;
}

@media (max-width: 800px) {
  .card-style02 {
    gap: 15px;
  }
}

/*------------
flow-style
--------------*/
/*flow-style01*/
.flow-style01 {
  display: grid;
  gap: 50px 30px;
}

.flow-style01>li {
  background: var(--color_quinary);
  padding: 25px;
  position: relative;
}

.flow-style01>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent var(--color_primary);
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
}

.flow-style01 .flow-num {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.5625rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: -15px;
  left: 30px;
}

.flow-style01 .flow-img {
  margin-bottom: 15px;
}

.flow-style01 .flow-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .flow-style01 {
    gap: 35px;
  }

  .flow-style01>li:not(:last-child)::after {
    top: auto;
    bottom: -28px;
    right: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

/*flow-style02*/
.flow-style02 {
  border: 2px solid var(--color_border);
  background: #fff;
  padding: 5%;
}

.flow-style02>li+li {
  border-top: 1px solid var(--color_border);
  padding-top: 70px;
  margin-top: 70px;
  position: relative;
}

.flow-style02>li+li::before {
  content: "";
  background: url(../images/share/flow_arrow.svg) no-repeat center/contain;
  width: 45px;
  height: 45px;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-style02 .flow-ttl {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.flow-style02 .flow-ttl .num {
  background: var(--color_primary);
  display: inline-block;
  color: var(--color_white);
  font-size: 12px;
  line-height: 25px;
  padding: 0 10px;
  margin-top: 3px;
}

.flow-style02 .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 5%;
}

.flow-style02 .flow-img {
  width: 40%;
}

.flow-style02 .flow-desc {
  flex: 1;
}

@media (max-width: 800px) {
  .flow-style02 {
    padding: 25px;
  }

  .flow-style02>li+li {
    padding-top: 50px;
    margin-top: 50px;
  }

  .flow-style02 .flow-ttl {
    flex-direction: column;
    gap: 10px;
    font-size: 1.125rem;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .flow-style02 .flow-ttl .num {
    margin: 0;
  }

  .flow-style02 .wrap {
    flex-direction: column;
    gap: 30px;
  }

  .flow-style02 .flow-img {
    width: 100%;
  }
}

/*------------
intro-layout
--------------*/
.intro-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 4%;
  padding: 0 5% 110px max(5%, 50% - 600px);
  background: linear-gradient(to bottom, var(--color_white) 50px, var(--color_quinary) 50px, var(--color_quinary) 100%);
}

.intro-layout .l-img {
  width: 60%;
}

.intro-layout .l-desc {
  flex: 1;
}

.intro-layout .l-ttl {
  line-height: 1.5;
  margin-bottom: 45px;
}

.intro-layout .l-ttl [lang=en] {
  line-height: 1;
  margin-bottom: 5px;
  text-align: left;
}

.intro-layout .l-ttl [lang=en] img {
  display: inline-block;
}

.intro-layout .l-ttl .jp {
  font-family: var(--font_jp);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.9;
}

.intro-layout .l-ttl .sub-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 15px;
  padding: 0 0 0 37px;
  position: relative;
}

.intro-layout .l-ttl .sub-ttl:before {
  content: "";
  background: var(--color_primary);
  width: 26px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0.8em;
}

@media (max-width: 800px) {
  .intro-layout {
    display: block;
    padding: 0 5% 50px;
    background: linear-gradient(to bottom, var(--color_white) 50px, var(--color_quinary) 50px, var(--color_quinary) 100%);
  }

  .intro-layout .l-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .intro-layout .l-ttl {
    line-height: 1.4;
    margin-bottom: 30px;
  }

  .intro-layout .l-ttl [lang=en] img {
    max-height: 70px;
    width: 60%;
  }

  .intro-layout .l-ttl .jp {
    font-size: 1.4375rem;
    line-height: 1.5;
  }

  .intro-layout .l-ttl .sub-ttl {
    font-size: 1.0625rem;
    padding: 0 0 0 20px;
  }

  .intro-layout .l-ttl .sub-ttl:before {
    width: 15px;
  }
}

/*------------
box-style
--------------*/
/*box-style01*/
.box-style01 {
  border: 1px solid var(--color_border);
  background: var(--color_quinary);
  padding: 5%;
}

.box-style01.bg-white {
  background-color: var(--color_white);
}

.box-style01 .box-ttl {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 20px;
  }

  .box-style01 .box-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}

/*box-style02*/
.box-style02 {
  background: var(--color_quinary) url(../images/under/box-style02_bg.svg) no-repeat left top;
  padding: 50px;
  position: relative;
}

.box-style02[data-en=Feature] {
  margin-block-end: 50px;
}

.box-style02[data-en=Feature]::before {
  content: "" /"Feature";
  display: block;
  background: url(../images/under/box-style02_feature.svg) no-repeat center/contain;
  aspect-ratio: 228/55;
  width: 228px;
  height: auto;
  position: absolute;
  right: 20px;
  bottom: -25px;
  z-index: 2;
}

.box-style02[data-en=Cerec] {
  margin-block-end: 50px;
}

.box-style02[data-en=Cerec]::before {
  content: "" /"Cerec";
  display: block;
  background: url(../images/under/box-style02_cerec.svg) no-repeat center/contain;
  aspect-ratio: 169/59;
  width: 169px;
  height: auto;
  position: absolute;
  right: 20px;
  bottom: -25px;
  z-index: 2;
}

.box-style02[data-en=Microscope] {
  margin-block-end: 50px;
}

.box-style02[data-en=Microscope]::before {
  content: "" /"Microscope";
  display: block;
  background: url(../images/under/box-style02_microscope.svg) no-repeat center/contain;
  aspect-ratio: 321/61;
  width: 321px;
  height: auto;
  position: absolute;
  right: 20px;
  bottom: -25px;
  z-index: 2;
}

.box-style02[data-en=Point] {
  margin-block-start: 40px;
}

.box-style02[data-en=Point]::before {
  content: "" /"Point";
  display: block;
  background: url(../images/under/box-style02_point.svg) no-repeat center/contain;
  aspect-ratio: 109/35;
  width: 109px;
  height: auto;
  position: absolute;
  left: 40px;
  top: -18px;
  z-index: 2;
}

.box-style02.bg-white {
  border: 1px solid var(--color_border);
  background: var(--color_white);
}

.box-style02 .box-ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .box-style02 {
    padding: 20px;
  }

  .box-style02[data-en=Feature] {
    margin-block-end: 40px;
  }

  .box-style02[data-en=Feature]::before {
    width: 120px;
    right: 0;
    bottom: -18px;
  }

  .box-style02[data-en=Cerec] {
    margin-block-end: 40px;
  }

  .box-style02[data-en=Cerec]::before {
    width: 100px;
    right: 0;
    bottom: -20px;
  }

  .box-style02[data-en=Microscope] {
    margin-block-end: 40px;
  }

  .box-style02[data-en=Microscope]::before {
    width: 180px;
    right: 0;
    bottom: -20px;
  }

  .box-style02[data-en=Point]::before {
    left: 15px;
    top: -18px;
  }

  .box-style02 .box-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}

/*box-style03*/
.box-style03 {
  background: var(--color_quinary);
  padding: 40px;
}

.box-style03 .box-ttl {
  display: flex;
  gap: 15px;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 15px;
}

.box-style03.bg-dark {
  background: var(--color_primary);
  color: var(--color_white);
}

.box-style03.bg-dark .box-ttl {
  color: var(--color_white);
}

.box-style03.bg-dark .box-ttl img {
  filter: brightness(0) invert(1);
}

@media (max-width: 800px) {
  .box-style03 {
    padding: 30px;
  }
}

/*------------
dl-style
--------------*/
/*dl-style01*/
.box-style04>.box-ttl {
  background: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 5px 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}

.box-style04 .box-desc {
  background: var(--color_quinary);
  font-size: 0.875rem;
  padding: 20px;
}

/*------------
faq-style
--------------*/
.faq-style {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  transition: 0.3s;
}

.faq-style+.faq-style {
  margin-top: -1px;
}

.faq-style .faq-summary {
  display: block;
  cursor: pointer;
  padding: 18px 50px;
  position: relative;
}

.faq-style .faq-summary .faq-icon {
  top: 15px;
  left: 0;
}

.faq-style .faq-summary::-webkit-details-marker {
  display: none;
}

.faq-style .faq-summary:hover .faq-icon {
  background-color: var(--color_primary);
  color: #fff;
}

.faq-style .faq-content {
  overflow: hidden;
}

.faq-style .faq-inner {
  padding: 5px 50px 30px;
  position: relative;
}

.faq-style .faq-inner .faq-icon {
  border: 1px solid var(--color_text);
  background-color: var(--color_text);
  color: var(--color_white);
  top: 0;
  left: 0;
}

.faq-style .faq-ttl {
  font-family: var(--font_jp);
  font-weight: 500;
}

.faq-style .faq-icon {
  border: 1px solid var(--color_primary);
  border-radius: 50px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: 500;
  width: 35px;
  height: 35px;
  line-height: 32px;
  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: 11px;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before,
.faq-style .faq-open-icon::after {
  content: "";
  display: block;
  background: var(--color_primary);
  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 .faq-icon {
  background-color: var(--color_primary);
  color: #fff;
}

.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: 18px 30px 18px 50px;
  }

  .faq-style .faq-open-icon {
    right: 0;
    top: 11px;
  }

  .faq-style .faq-inner {
    padding: 0 0 30px 50px;
  }
}

/*------------
merit-demerit
--------------*/
.merit-demerit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4%;
}

.merit-demerit .item-ttl {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 25px;
}

.merit-demerit .item-ttl::after {
  content: attr(data-en);
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-left: 15px;
}

.merit-demerit .item {
  background: var(--color_quinary);
  border-top: 5px solid var(--color_primary);
  padding: 35px;
}

.merit-demerit .item:nth-of-type(2) {
  border-color: var(--color_secondary);
}

.merit-demerit .item:nth-of-type(2) .item-ttl::after {
  color: var(--color_secondary);
}

.merit-demerit .item:nth-of-type(2) .list-disc li::marker {
  color: var(--color_secondary);
}

@media (max-width: 800px) {
  .merit-demerit {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }

  .merit-demerit .item {
    padding: 35px 25px;
  }

  .merit-demerit .item-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .merit-demerit .item-ttl::after {
    font-size: 12px;
  }
}

/*------------
tel-layout
--------------*/
.tel-layout {
  background: var(--color_quinary);
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 30px;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.tel-layout .l-time {
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
}

.tel-layout .l-time .item {
  display: grid;
  grid-template-columns: 4.375rem 1fr;
  grid-gap: 10px;
  font-size: 0.875rem;
}

.tel-layout .l-time dt {
  border: 1px solid var(--color_primary);
  text-align: center;
  font-family: var(--font_jp);
  font-size: 0.625rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tel-layout .l-txt {
  font-size: 0.875rem;
}

@media (max-width: 800px) {
  .tel-layout .l-ttl {
    font-size: 15px;
    margin: 0 auto 25px;
  }

  .tel-layout .wrapper {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }

  .tel-layout .l-tel {
    font-size: 30px;
  }
}

/*------------
料金表
--------------*/
.price-style {
  display: grid;
  grid-gap: 20px;
}

.price-style .list-intro {
  border-bottom: 1px dotted var(--color_text);
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  justify-content: space-between;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0 0 5px;
}

.price-style .list-desc {
  color: var(--color_gray_dark);
  font-size: 0.8125rem;
  margin-top: 8px;
}

@media (max-width: 800px) {
  .price-style {
    grid-gap: 15px;
  }

  .price-style .list-intro {
    font-size: 0.8125rem;
    letter-spacing: 0;
  }

  .price-style .list-desc {
    font-size: 0.6875rem;
  }
}

/*------------
スタッフページ
--------------*/
.staff-layout {
  display: flex;
  flex-direction: row-reverse;
}

.staff-layout .l-img {
  width: 410px;
  margin-left: 65px;
}

.staff-layout .l-desc {
  margin-top: 20px;
  flex: 1;
}

.staff-layout .job {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.staff-layout .name {
  border-bottom: 1px solid var(--color_border);
  line-height: 1;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.staff-layout .jp {
  display: inline;
  font-family: var(--font_jp);
  font-size: 1.875rem;
  font-weight: 500;
  margin-right: 25px;
}

.staff-layout p[lang=en] {
  display: inline;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.125rem;
  font-weight: normal;
}

.dl-career {
  border-top: 1px dotted var(--color_primary);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.7;
}

.dl-career dt {
  border-bottom: 1px dotted var(--color_primary);
  padding: 10px 0;
  width: 30%;
}

.dl-career dd {
  border-bottom: 1px dotted var(--color_primary);
  padding: 10px 0;
  width: 70%;
}

.card-profile {
  margin-top: 50px;
  display: grid;
  grid-gap: 32px;
  font-size: 0.875rem;
}

.card-profile .item {
  background-color: var(--color_quinary);
  border-radius: 5px;
  padding: 30px;
}

.card-profile .card-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .staff-layout {
    display: block;
  }

  .staff-layout .l-img {
    text-align: center;
    margin: 0 0 30px;
    width: 100%;
  }

  .staff-layout .l-desc {
    margin: 0;
  }

  .staff-layout .job {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }

  .staff-layout .name {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .staff-layout .jp {
    display: block;
    font-size: 1.5625rem;
    margin: 0 0 10px;
  }

  .staff-layout [lang=en] {
    font-size: 0.875rem;
  }

  .dl-career {
    font-size: 0.8125rem;
  }

  .card-profile {
    grid-gap: 25px;
  }

  .card-profile .item {
    padding: 20px;
  }
}

/*------------
Add
--------------*/
.bnr-mouthpiece {
  display: block;
  position: relative;
}

.bnr-mouthpiece:after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--color_text);
}

.bnr-mouthpiece img {
  margin: 0 0 0 auto;
}

.bnr-mouthpiece .bnr-desc {
  width: 50%;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bnr-mouthpiece .bnr-ttl {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: min(1.61vw, 1.8125rem);
  line-height: 1.5;
  margin-bottom: 25px;
  text-align: center;
}

.bnr-mouthpiece .bnr-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  width: min(425px, 100%);
  margin-inline: auto;
}

.bnr-mouthpiece .bnr-list li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #187FC4;
  border-radius: 3px;
  color: #fff;
  font-size: min(1.11vw, 1.25rem);
  line-height: 1.6;
  text-align: center;
  aspect-ratio: 135/126;
}

.bnr-mouthpiece .check {
  display: inline-block;
  background: var(--color_text);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  padding: 16px 44px;
  position: relative;
  transition: 0.2s;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.bnr-mouthpiece .check:after {
  content: "";
  display: block;
  -webkit-mask: url(../images/share/arrow_btn.svg) no-repeat center/contain;
  mask: url(../images/share/arrow_btn.svg) no-repeat center/contain;
  background-color: var(--color_white);
  width: 25px;
  height: 4px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 800px) {
  .bnr-mouthpiece {
    background: linear-gradient(to left, #eef1f8, #f7f8fc);
  }

  .bnr-mouthpiece .bnr-desc {
    width: 100%;
    position: static;
    display: block;
    padding: 40px;
  }

  .bnr-mouthpiece .bnr-ttl {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }

  .bnr-mouthpiece .bnr-list {
    grid-gap: 5px;
  }

  .bnr-mouthpiece .bnr-list li {
    font-size: 0.625rem;
  }

  .bnr-mouthpiece .check {
    font-size: 0.875rem;
    padding: 10px 35px;
  }

  .bnr-mouthpiece .check:after {
    width: 18px;
    height: 3px;
  }
}

.general-layout-wrap {
  background-color: #D5D0BF;
  padding: 100px 0;
}

.general-layout-ttl {
  font-family: var(--font_jp);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 800px) {
  .general-layout-wrap {
    padding: 60px 0;
  }

  .general-layout-ttl {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
}

.general-layout-pc {
  display: flex;
  gap: 5.6%;
  width: 93%;
  max-width: 1300px;
  margin: 0 0 0 auto;
}

.general-layout-pc .l-desc {
  flex: 1;
}

.general-layout-pc .l-desc .l-ttl {
  margin-bottom: 30px;
}

.general-layout-pc .l-desc .l-ttl [lang=en] {
  line-height: 1;
  margin-bottom: 5px;
}

.general-layout-pc .l-desc .l-ttl [lang=en] img {
  display: inline-block;
}

.general-layout-pc .l-desc .l-ttl .jp {
  font-family: var(--font_jp);
  font-size: 1.625rem;
  font-weight: 500;
}

.general-layout-pc .l-desc .txt-jp {
  font-family: var(--font_jp);
  font-size: clamp(1.0625rem, 1.33vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 20px;
}

.general-layout-pc .l-img {
  width: 47%;
}

.general-layout-pc .l-img.small {
  width: 38%;
}

.general-layout-pc+.general-layout-pc {
  margin-top: 80px;
}

.general-layout-sp {
  display: none;
}

@media (max-width: 800px) {
  .general-layout-pc {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .general-layout-pc .l-desc {
    flex: 1;
  }

  .general-layout-pc .l-desc .l-ttl {
    margin-bottom: 20px;
  }

  .general-layout-pc .l-desc .l-ttl [lang=en] {
    margin-bottom: 0;
  }

  .general-layout-pc .l-desc .l-ttl [lang=en] img {
    height: 55px;
    width: auto;
  }

  .general-layout-pc .l-desc .l-ttl .jp {
    font-size: 1.25rem;
  }

  .general-layout-pc .l-desc .txt-jp {
    font-size: 1.0625rem;
    margin-bottom: 15px;
  }

  .general-layout-pc .l-img {
    display: none;
  }

  .general-layout-pc+.general-layout-pc {
    margin-top: 50px;
  }

  .general-layout-sp {
    margin: 40px auto 0;
    display: block;
  }

  .general-layout-sp .img02 {
    width: 80%;
    margin: 20px 0 0 auto;
  }
}

.privacy-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.9375rem;
}

.dl-privacy {
  display: grid;
  gap: 1.875rem;
}

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  font-weight: 500;
  padding-top: 1.5625rem;
  margin-bottom: 0.9375rem;
  position: relative;
}

.dl-privacy dd {
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: justify;
}

/*-----------------------------------------------------------
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: bold;
}

.c-red {
  color: #F44336;
}

.marker {
  background: linear-gradient(transparent 60%, rgba(170, 153, 88, 0.4) 60%);
}

.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;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: grid;
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.col4 {
  grid-template-columns: repeat(4, 1fr);
}

.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;
  }

  .sp-tac {
    text-align: center;
  }

  .sp-tar {
    text-align: right;
  }

  .sp-tal {
    text-align: left;
  }

  .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;
  }
}

/*------------
splide
-------------*/
:root {
  /* 矢印（Arrow） */
  --splide-arrow-bg-color: var(--color_primary);
  /* ドット（Pagination） */
  --splide-dot-color: #D0D0C9;
  --splide-dot-active-color: var(--color_primary);
  /* 再生停止ボタン（Toggle） */
  --splide-toggle-bg-color: #ccc;
  --splide-toggle-bg-hover: #D3D3D3;
  --splide-toggle-svg-color: #fff;
  /* スクロールバー（Progress） */
  --splide-progress-color: var(--color_primary);
}

.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;
  border-radius: 50%;
}

.splide__arrow--prev {
  -webkit-mask: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
  mask: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
  background-color: var(--splide-arrow-bg-color);
}

.splide__arrow--next {
  -webkit-mask: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
  mask: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
  background-color: var(--splide-arrow-bg-color);
}

.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: var(--splide-dot-color);
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: var(--splide-dot-active-color);
  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: var(--splide-progress-color);
  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: var(--splide-toggle-bg-color);
  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: var(--splide-toggle-bg-hover);
}

.splide__toggle svg {
  fill: var(--splide-toggle-svg-color);
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

/*==============================================
  Fancybox
==============================================*/

body.compensate-for-scrollbar {
  overflow: hidden
}

.fancybox-active {
  height: auto
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992
}

.fancybox-container * {
  box-sizing: border-box
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(.47, 0, .74, .71)
}

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.fancybox-toolbar {
  right: 0;
  top: 0
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0
}

.fancybox-slide--image:before {
  display: none
}

.fancybox-slide--html {
  padding: 6px
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(.5, 0, .14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: grab
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing
}

.fancybox-container [data-selectable=true] {
  cursor: text
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%
}

.fancybox-spaceball {
  z-index: 1
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%
}

.fancybox-slide--video .fancybox-content {
  background: #000
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff
}

.fancybox-iframe,
.fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0
}

.fancybox-button {
  background: rgba(30, 30, 30, .6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc
}

.fancybox-button:hover {
  color: #fff
}

.fancybox-button:focus {
  outline: none
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none
}

.fancybox-button div {
  height: 100%
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px
}

.fancybox-navigation .fancybox-button div {
  padding: 7px
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right)
}

.fancybox-caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996
}

@supports (padding:max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left))
  }
}

.fancybox-caption--separate {
  margin-top: -50px
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline
}

.fancybox-loading {
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999
}

@keyframes a {
  to {
    transform: rotate(1turn)
  }
}

.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, .25, 1)
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0)
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(.5, .5, .5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1)
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn)
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn)
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg)
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0)
}

.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translateZ(0) scale(1)
}

@media (max-height:576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px
  }

  .fancybox-slide--image {
    padding: 6px 0
  }

  .fancybox-close-small {
    right: -6px
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px
  }

  @supports (padding:max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right))
    }
  }
}

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px
}

.fancybox-share p {
  margin: 0;
  padding: 0
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
  color: #fff
}

.fancybox-share__button:hover {
  text-decoration: none
}

.fancybox-share__button--fb {
  background: #3b5998
}

.fancybox-share__button--fb:hover {
  background: #344e86
}

.fancybox-share__button--pt {
  background: #bd081d
}

.fancybox-share__button--pt:hover {
  background: #aa0719
}

.fancybox-share__button--tw {
  background: #1da1f2
}

.fancybox-share__button--tw:hover {
  background: #0d95e8
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px
}

.fancybox-share__button svg path {
  fill: #fff
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, .1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .2s cubic-bezier(.25, .46, .45, .94);
  z-index: 99991
}

.fancybox-thumbs__list a:focus:before {
  opacity: .5
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1
}

@media (max-width:576px) {
  .fancybox-thumbs {
    width: 110px
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px)
  }
}

/*------------
accordion-style
--------------*/
.accordion-style+.accordion-style {
  margin-top: 20px;
}

.accordion-style summary {
  display: block;
  cursor: pointer;
  font-family: var(--font_jp);
  border: 1px solid var(--color_border);
  background: var(--color_quinary);
  padding: 5%;
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 20px 20px 20px 50px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.accordion-style summary::-webkit-details-marker {
  display: none;
}

.accordion-style:not(.is-open) summary:is(:hover, :focus) {
  opacity: 0.5;
}

.accordion-style summary::before,
.accordion-style summary::after {
  content: "";
  display: block;
  background: #333;
  position: absolute;
  top: 50%;
  left: 20px;
}

.accordion-style summary::before {
  width: 16px;
  height: 1px;
}

.accordion-style summary::after {
  width: 16px;
  height: 1px;
  rotate: 90deg;
  transition: rotate 0.5s;
}

.accordion-style.is-open summary::after {
  rotate: 0deg;
}

.accordion-style .accordion-content {
  overflow: hidden;
}

.accordion-style .accordion-inner {
  background-color: #fff;
  padding: 20px;
  border: 1px solid var(--color_border);
  border-top: none;
}

.accordion-style .accordion-content:not([hidden="until-found"]):target {
  display: revert;
}

@media (scripting: none) {
  .accordion-style .accordion-contentl:target {
    display: revert;
  }
}

.accordion-style.pc-block summary {
  pointer-events: none;
  cursor: default;
  padding: 20px;
}

.accordion-style.pc-block summary::before,
.accordion-style.pc-block summary::after {
  content: none;
}

@media (max-width: 800px) {
  .accordion-style+.accordion-style {
    margin-top: 15px;
  }

  .accordion-style summary {
    padding: 15px 15px 15px 50px;
    font-size: 1.8rem;
  }

  .accordion-style summary::before {
    width: 12px;
  }

  .accordion-style summary::after {
    width: 13px;
  }

  .accordion-style .accordion-inner {
    padding: 15px;
  }

  .accordion-style.pc-block summary {
    padding: 15px 15px 15px 50px;
    pointer-events: auto;
    cursor: auto;
  }

  .accordion-style.pc-block summary::before,
  .accordion-style.pc-block summary::after {
    content: "";
  }
}


.list-license {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.list-license li {
  border: 1px solid #cccc;
  display: grid;
  place-items: center;
}

.sec01-layout05 {
  background: #E2DDCC;
  padding: 30px;
  margin-bottom: 50px;
}
.sec01-layout05 .box-ttl {
  border-bottom: 1px solid #fff;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 5px;
}
.sec01-layout05 .box-ttl::before {
  background: #AA9957;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 30px;
}
.sec01-layout05 .inner {
  background: #fff;
  padding: 20px;
}
.sec01-layout05 .inner p + p {
  margin-top: 15px;
}


@media (max-width: 800px) {
  .sec01-layout05 {
    padding: 20px;
    margin-bottom: 30px;
  }
  .sec01-layout05 .box-ttl {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
}