@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #F4F4F4;
  --color_text: #333;
  --color_link: #333;
  --color_border: #ddd;
  --color_primary: #1E1F3B;
  --color_secondary: #D9B886;
  --color_white: #fff;
  --color_black: #15161E;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

/* ====================================================
【アニメーション】
==================================================== */
:root {
  --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* ====================================================
【サイト全体の設定】
==================================================== */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP"), local("Noto Sans CJK JP Regular");
}

:root {
  --font_base:
    "Shippori Mincho B1",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    "Noto Sans JP",
    sans-serif;
  --font_jp: "Shippori Mincho B1", serif;
  --font_en: "Lato", serif;
  --font_weight: 500;
  --font_size: 1rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

@media (max-width: 800px) {
  :root {
    --font_size: 0.9375rem;
    --line_height: 1.8;
  }
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  color: inherit;
  text-decoration: none;
}

:where(button) {
  all: unset;
  box-sizing: border-box;
}

:where(a, input, button, textarea, select) {
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

textarea {
  resize: block;
}

:where(button, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(ul, ol, li) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(em, dfn) {
  font-style: inherit;
}

sup {
  vertical-align: text-top;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  line-height: 1;
}

hr {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

mark {
  background: transparent;
  font-style: normal;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
body {
  background-color: var(--color_base);
  background: url(../images/share/bg_base.png) repeat;
  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);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--color_black);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

body.is-bg-black::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    transition: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_jp);
  font-weight: 500;
  letter-spacing: 0.05em;
}

[lang=en] {
  font-family: var(--font_en);
}

th,
dt {
  font-weight: 500;
}

.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: 50px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 50px;
  }
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}

.container.wide {
  max-width: 1400px;
}

.container.ultra-wide {
  max-width: 1600px;
}

.container.narrow {
  max-width: 1024px;
}

@media (max-width: 800px) {
  .container {
    width: 100%;
    padding: 0 30px;
  }
}

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  background-color: var(--color_gray_light);
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.time-table tr {
  border-bottom: 1px solid var(--color_border);
}

.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;
  }
}

.time-table thead th {
  background-color: var(--color_black);
  color: var(--color_white);
}

.time-table th:first-child {
  width: 25%;
}

@media (max-width: 800px) {
  .time-table th:first-child {
    width: 90px;
  }
}

.time-table img {
  margin-inline: auto;
}

.time-table-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 10px;
}

.time-table-note img {
  margin-top: 4px;
}

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event01: #EF866B;
  --event02: #F7B46B;
  --event03: #A8DBA8;
  --event04: #B0D7D5;
}

.business-calendar-box-wrap {
  margin-bottom: 15px;
}

.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.business-calendar-box-wrap .business-calendar caption {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}

.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 1.5625rem;
  vertical-align: -1px;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .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-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}

.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(180deg);
}

.business-calendar-box-wrap .business-calendar th {
  background: #f1f3f4;
  border: 1px solid #dfdfdf;
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
  padding: 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid #dfdfdf;
  position: relative;
  font-size: 0.8125rem;
  padding: 5px;
  z-index: 0;
}

.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}

.business-calendar-box-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 0.9375rem;
}

.business-calendar-box-wrap.col2 {
  grid-template-columns: 1fr;
}

.business-calendar-box-wrap.col2 .business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3%;
}

.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
}

.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: #fff;
}

.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before,
.business-calendar-box-wrap .business-calendar .attr2::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
  opacity: 1;
}

.business-calendar-box-wrap .business-calendar .attr0::before {
  background: var(--event01);
}

.business-calendar-box-wrap .business-calendar .attr1::before {
  background: var(--event02);
}

.business-calendar-box-wrap .business-calendar .attr2::before {
  background: var(--event03);
}

.business-calendar-box-wrap .business-calendar .attr3::before {
  background: var(--event04);
}

.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(--event01);
}

.list-event .event02::before {
  background-color: var(--event02);
}

.list-event .event03::before {
  background-color: var(--event03);
}

.list-event .event04::before {
  background-color: var(--event04);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .list-event {
    display: block;
  }

  .list-event li+li {
    margin-top: 5px;
  }
}

/*ボタン*/
.link-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font_en);
  font-size: 2.375rem;
  line-height: 1;
}

.link-tel img {
  width: 30px;
  height: 30px;
}

@media (max-width: 800px) {
  .link-tel {
    gap: 10px;
    font-size: 1.875rem;
  }

  .link-tel img {
    width: 25px;
    height: 25px;
  }
}

.btn-out {
  padding-right: 15px;
  position: relative;
}

.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}

.btn-out::after {
  content: "";
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

@media (any-hover: hover) {
  .btn-out:hover::after {
    background-position: left bottom;
    background-size: 100% auto;
  }
}

.btn-more {
  display: inline-block;
  color: var(--color_primary);
  border: 1px solid currentColor;
  width: 100px;
  aspect-ratio: 1/1;
  padding: 12px 15px;
  line-height: 1.5;
  text-align: left;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

.btn-more::before {
  content: "";
  background-color: currentColor;
  -webkit-mask: url(../images/share/arrow_btn.svg) no-repeat center/contain;
  mask: url(../images/share/arrow_btn.svg) no-repeat center/contain;
  width: 26px;
  height: 5px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  transition: transform 0.3s;
}

.btn-more.white {
  color: var(--color_white);
}

@media (any-hover: hover) {
  .btn-more.white:hover {
    background-color: var(--color_white);
    color: var(--color_primary);
  }
}

@media (any-hover: hover) {
  .btn-more:hover {
    background-color: var(--color_primary);
    color: var(--color_white);
  }

  .btn-more:hover::before {
    transform: translateX(10px);
  }
}

@media (max-width: 800px) {
  .btn-more {
    width: 90px;
    padding: 5px 10px;
    font-size: 0.875rem;
  }

  .btn-more::before {
    width: 26px;
    height: 5px;
    bottom: 12px;
    left: 10px;
  }
}

.btn-more02 {
  border: 1px solid currentColor;
  display: inline-block;
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 10px 42px 10px 17px;
  border-radius: 2px;
  line-height: 1.5;
  text-align: center;
  transition: background-color 0.3s;
  position: relative;
  transition: .3s;
}

.btn-more02::after {
  content: "";
  background-color: currentColor;
  -webkit-mask: url(../images/share/arrow_btn02.svg) no-repeat center/contain;
  mask: url(../images/share/arrow_btn02.svg) no-repeat center/contain;
  width: 17px;
  height: 6px;
  position: absolute;
  top: 17px;
  right: 15px;
}

.btn-more02:hover {
  background-color: var(--color_secondary);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 15px 50px;
  border-radius: 2px;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  position: relative;
  min-width: 320px;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .btn-download:hover {
    opacity: 0.8;
  }
}

.btn-download::before {
  content: "";
  display: inline-block;
  background-color: var(--color_secondary);
  -webkit-mask: url(../images/share/icon_pdf.svg) no-repeat center/contain;
  mask: url(../images/share/icon_pdf.svg) no-repeat center/contain;
  width: 25px;
  height: 25px;
  margin-top: 5px;
  margin-left: -25px;
}

.btn-download::after {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_download.svg) no-repeat center/contain;
  mask: url(../images/share/icon_download.svg) no-repeat center/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

@media (max-width: 800px) {
  .btn-download {
    display: flex;
    padding: 15px 20px;
    font-size: 1.25rem;
    min-width: 0;
  }
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  justify-content: center;
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  font-size: 1.0625rem;
  line-height: 1;
  margin-bottom: 17px;
}

.btn-back {
  display: inline-flex;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 50px;
}

.btn-back::before {
  content: "";
  background-color: #333;
  -webkit-mask: url(../images/share/icon_back.svg) no-repeat center/contain;
  mask: url(../images/share/icon_back.svg) no-repeat center/contain;
  width: 17px;
  height: 12px;
}

@media (any-hover: hover) {
  .btn-back:hover {
    text-decoration: underline;
  }
}

@media (max-width: 800px) {
  .btn-back {
    margin-bottom: 15px;
  }
}

.btn-back-large {
  display: block;
  background-color: var(--color_primary);
  border-radius: 10px;
  color: var(--color_white);
  line-height: 1;
  padding: 35px 80px 35px 30px;
  min-width: 270px;
  gap: 5px 20px;
  width: min(100%, 1024px);
  position: relative;
  margin: 50px auto 0;
}

.btn-back-large::after {
  content: "";
  width: 55px;
  height: 40px;
  background: url(../images/share/icon_arrow.svg) right center/30px no-repeat;
  border-left: 3px dotted var(--color_white);
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}

.btn-back-large [lang=en] {
  font-size: 2.8125rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-back-large .jp {
  font-weight: 600;
  font-size: 0.9375rem;
}

@media (max-width: 800px) {
  .btn-back-large {
    padding: 20px 80px 20px 20px;
  }

  .btn-back-large::after {
    right: 25px;
  }

  .btn-back-large [lang=en] {
    font-size: 2.1875rem;
  }

  .btn-back-large .jp {
    font-size: 0.75rem;
  }
}

/*カテゴリーリスト*/
.category-select-area {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  border-radius: 10px;
  margin-bottom: 50px;
}

.category-select-area .item {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 20px;
}

.category-select-area .item+.item {
  border-top: 1px solid var(--color_border);
}

.category-select-area .ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.5;
}

.category-select-area .ttl::before {
  content: "";
  display: block;
  background-color: var(--color_black);
  width: 15px;
  height: 15px;
}

.category-select-area .ttl.service::before {
  -webkit-mask: url(../images/share/icon_service.svg) no-repeat center/contain;
  mask: url(../images/share/icon_service.svg) no-repeat center/contain;
}

.category-select-area .ttl.type::before {
  -webkit-mask: url(../images/share/icon_type.svg) no-repeat center/contain;
  mask: url(../images/share/icon_type.svg) no-repeat center/contain;
}

.category-select-area .ttl.product::before {
  -webkit-mask: url(../images/share/icon_product.svg) no-repeat center/contain;
  mask: url(../images/share/icon_product.svg) no-repeat center/contain;
}

.category-select-area .ttl.subsidy::before {
  -webkit-mask: url(../images/share/icon_subsidy.svg) no-repeat center/contain;
  mask: url(../images/share/icon_subsidy.svg) no-repeat center/contain;
}

@media (max-width: 800px) {
  .category-select-area {
    border-radius: 10px;
    margin-bottom: 30px;
  }

  .category-select-area .item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px;
  }
}

.list-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.list-category-links a {
  display: block;
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 100vmax;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 1px 10px;
  transition: 0.3s;
}

.list-category-links a.is-active {
  background-color: var(--color_primary);
  color: #fff;
}

@media (any-hover: hover) {
  .list-category-links a:hover {
    background-color: var(--color_primary);
    color: #fff;
  }
}

@media (max-width: 800px) {
  .list-category-links {
    gap: 5px;
  }
}

/*新着情報*/
.post-under-news {
  display: grid;
  gap: 15px;
  margin-bottom: 50px;
}

.post-under-news a {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 5px;
  display: grid;
  gap: 15px;
  padding: 20px 70px 20px 20px;
  position: relative;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .post-under-news a:hover {
    background-color: var(--color_gray_light);
  }
}

.post-under-news a::before {
  content: "";
  background: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1;
}

.post-under-news .post-img img {
  border-radius: 3px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}

.post-under-news .post-data {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.post-under-news time {
  display: block;
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: 0.875rem;
  line-height: 1;
}

.post-under-news .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-under-news .category {
  display: block;
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 100vmax;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
  padding: 1px 5px;
  transition: 0.3s;
}

.post-under-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.post-under-news .no-post {
  padding: 25px 0;
}

@media (max-width: 800px) {
  .post-under-news {
    gap: 15px;
    margin-bottom: 30px;
  }

  .post-under-news a {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
    position: relative;
    transition: background-color 0.3s;
  }

  .post-under-news a::before {

  }

  .post-under-news .post-data {
    flex-wrap: wrap;
    gap: 0 10px;
    margin-bottom: 5px;
  }

  .post-under-news time {
    font-size: 0.75rem;
  }

  .post-under-news .post-ttl {
    font-size: 0.875rem;
  }

  .post-under-news .no-post {
    padding: 25px 0;
  }
}

/*詳細ページ*/
.btn-back {
  color: var(--color_white);
  display: inline-flex;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 15px;
}

.btn-back::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_back.svg) no-repeat center/contain;
  mask: url(../images/share/icon_back.svg) no-repeat center/contain;
  width: 17px;
  height: 12px;
}

@media (any-hover: hover) {
  .btn-back:hover {
    text-decoration: underline;
  }
}

:has(.layout-single-post) .u-contents {
  position: relative;
}

:has(.layout-single-post) .u-contents::before {
  content: "";
  background: url(../images/under/page_bg.jpg) repeat center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  z-index: -1;
}

:has(.layout-single-post) .u-contents .container {
  max-width: 1024px;
  margin-inline: auto;
}

.layout-single-post {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  border-radius: 10px;
  overflow: hidden;
  margin-inline: auto;
}

.layout-single-post .l-header {
  padding: 60px 50px 50px;
  position: relative;
  overflow: hidden;
}

.layout-single-post .l-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.layout-single-post .l-label {
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 100px;
  line-height: 1;
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
}

.layout-single-post time {
  font-family: var(--font_en);
  font-size: 0.875rem;
  line-height: 1;
}

.layout-single-post .l-ttl {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.4;
}

.layout-single-post .category-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.layout-single-post .category-wrap .category {
  display: inline-flex;
  color: var(--color_white);
  background-color: var(--color_primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  padding: 5px 10px;
  text-align: center;
}

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
}

.layout-single-post .l-body {
  padding: 0 50px 50px;
}

.layout-single-post .post-data {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  :has(.layout-single-post) .u-contents::before {
    height: 200px;
  }

  .layout-single-post .l-header {
    padding: 25px 15px;
  }

  .layout-single-post .l-meta {
    margin-bottom: 15px;
  }

  .layout-single-post .l-ttl {
    font-size: 1.5625rem;
  }

  .layout-single-post .l-body {
    padding: 0 15px 15px;
  }
}

/*ページャー*/
.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 {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  text-align: center;
  margin-top: 5rem;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: var(--color_primary);
  color: var(--color_white);
  border: 1px solid var(--color_primary);
  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_primary);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  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_primary);
  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_primary);
}

.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;
}

/*投稿本文用CSS*/
.postdata {
  display: flow-root;
  overflow-wrap: break-word;
}

.postdata .screen-reader-text {
  border: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.postdata .screen-reader-text:focus {
  background-color: #eee;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.postdata iframe {
  max-width: 100%;
}

.aligncenter {
  margin-inline: auto;
}

.postdata h2[class=wp-block-heading] {
  border-bottom: 1px solid var(--color_black);
  border-top: 1px solid var(--color_black);
  font-size: 1.375rem;
  line-height: 1.5;
  margin-block: 50px 30px;
  padding-block: 15px;
  position: relative;
}

.postdata h3[class=wp-block-heading] {
  font-size: 1.25rem;
  line-height: 1.5;
  border-left: 4px solid var(--color_black);
  padding: 3px 0px 3px 15px;
  margin-block: 25px;
}

.postdata h4[class=wp-block-heading] {
  background: #f5f5f5;
  border-radius: 2px;
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 8px 15px;
  margin-block: 15px;
}

.wp-block-button__link {
  border: 1px solid #e9e9e9 !important;
  background-color: #f6f6f6 !important;
  color: var(--color_black) !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  text-align: left;
  font-size: 0.9375rem !important;
  line-height: 1 !important;
  min-width: 200px;
  padding: 10px 45px !important;
  line-height: 1.5;
  position: relative;
  transition: 0.3s;
}

.wp-block-button__link::after {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 18px;
  height: 11px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.wp-block-button__link:hover {
  opacity: 1;
  background-color: var(--color_primary) !important;
  color: var(--color_white) !important;
}

.wp-block-button__link:hover::after {
  background-color: var(--color_white);
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-block: 1em;
}

.postdata a:not(.wp-block-button__link) {
  text-decoration: underline;
}

.postdata a:focus-visible {
  text-decoration: none;
}

@media (any-hover: hover) {
  .postdata a:hover {
    text-decoration: none;
  }
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata sub {
  font-size: 1.1rem;
  position: relative;
  bottom: -0.1em;
}

.postdata sup {
  font-size: 1.1rem;
  position: relative;
  top: -0.1em;
}

.postdata ul {
  display: grid;
  grid-gap: 5px;
}

.postdata ul li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
}

.postdata ul li::marker {
  color: var(--color_black);
}

.postdata ol {
  display: grid;
  grid-gap: 5px;
  counter-reset: number;
}

.postdata ol li {
  padding-left: 30px;
  position: relative;
}

.postdata ol li::before {
  background-color: var(--color_black);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 0.6875rem;
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 20px;
  width: 20px;
  height: 20px;
  text-align: center;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  display: grid;
  justify-content: center;
  top: 0;
  width: 100%;
  padding: 25px;
  position: absolute;
  z-index: 10;
}

/*------------
Gnavi
--------------*/
.gnavi {
  display: grid;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  border-radius: 2px;
  padding: 2px;
  color: var(--color_white);
  font-size: 1rem;
  line-height: 1;
  width: 100%;
}

.gnavi-links {
  display: flex;
}

.gnavi-links>li>a {
  border-radius: 2px;
  display: inline-block;
  line-height: 1;
  transition: background-color 0.3s;
  padding: 8px 15px;
}

.gnavi-links>li>a:hover {
  background-color: var(--color_primary);
  color: var(--color_white);
}

/*dropdown*/
.dropdown {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}

.dropdown::after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--color_black);
  border-right: 1px solid var(--color_black);
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  transform-origin: right;
}

.dropdown.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.dropdown .sub-menu {
  display: grid;
  grid-gap: 5px;
  pointer-events: none;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: absolute;
  top: 30px;
  right: 50%;
  width: -moz-max-content;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.dropdown .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.dropdown:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

@media (max-width: 800px) {
  .gnavi {
    display: none;
  }
}

/*------------
Gnavi Drawer
--------------*/
html.is-open {
  height: 100%;
  overflow: hidden;
  scrollbar-gutter: stable;
}

.gnavi-menu-btn {
  cursor: pointer;
  background-color: var(--color_primary);
  border-radius: 2px;
  color: var(--color_white);
  display: grid;
  place-content: center;
  gap: 5px;
  width: 85px;
  height: 44px;
  position: fixed;
  top: 25px;
  right: 1.5%;
  z-index: 110;
}

.gnavi-menu-btn-line {
  position: relative;
  display: grid;
  width: 35px;
  height: 8px;
}

.gnavi-menu-btn-line span {
  display: block;
  position: absolute;
  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;
  right: 0;
  width: 25px;
}

.gnavi-menu-btn-txt {
  display: block;
  font-family: var(--font_en);
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
}

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(2) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-20deg);
  width: 100%;
}

.gnavi-drawer {
  display: grid;
  align-items: center;
  background-color: #FAF9F4;
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
  overflow-y: auto;
  z-index: 100;
}

.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

.gnavi-drawer-container {
  display: flex;
  justify-content: space-between;
  padding: 50px 2.5%;
  width: 100%;
  max-width: min(1100px, 90%);
  margin-inline: auto;
}

.drawer-links-wrap {
  display: flex;
  align-items: start;
  gap: 100px;
}

.drawer-links {
  display: grid;
  gap: 15px;
  line-height: 1.5;
  font-size: 1.125rem;
}

.drawer-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;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .drawer-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.drawer-btn {
  display: grid;
  gap: 15px;
}

.drawer-btn a {
  border: 1px solid var(--color_primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--color_primary);
  font-size: 1.125rem;
  padding: 10px 15px;
  position: relative;
}

.drawer-btn .tel {
  font-family: var(--font_en);
}

.drawer-btn .tel::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
}

.drawer-btn .mail::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/icon_mail.svg) no-repeat center/contain;
  mask: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 20px;
  height: 16px;
}

.drawer-btn .line {
  border-color: #4CC764;
  color: #4CC764;
}

.drawer-btn .line::before {
  content: "";
  background: url(../images/share/icon_line@2x.png) no-repeat center/contain;
  width: 18px;
  height: 18px;
}

.drawer-btn-text {
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .gnavi-drawer {
    align-items: start;
  }

  .gnavi-drawer-container {
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 2.5% 100px;
  }

  .drawer-links-wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
    margin-bottom: 30px;
  }

  .drawer-links {
    display: grid;
    gap: 15px;
    font-size: 1rem;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_white);
  margin-top: auto;
  position: relative;
  padding: 200px 0 50px;
}

.f-contents {
  display: grid;
  grid-template-columns: 300px 1fr;
  margin-inline: auto;
  margin-bottom: 150px;
  width: min(90%, 1200px);
}

.f-logo {
  margin-bottom: 50px;
}

.f-txt {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 40px;
}

.site-map {
  display: flex;
  gap: 6rem;
  justify-content: flex-end;
  align-items: flex-start;
}

.f-links {
  display: grid;
  gap: 1rem;
  line-height: 1.5;
}

.f-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;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .f-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.f-bottom {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  width: min(90%, 1024px);
}

.f-bottom-links {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  line-height: 1;
}

.f-bottom-links li+li::before {
  content: "|";
  margin: 0 15px;
}

.f-bottom-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;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .f-bottom-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.copyright {
  font-size: 0.8125rem;
}

.pagetop {
  position: absolute;
  top: 25px;
  right: 20px;
}

@media (max-width: 800px) {
  .footer {
    padding: 50px 0 80px;
  }

  .f-contents {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 50px;
  }

  .f-logo {
    max-width: 200px;
    margin-bottom: 25px;
  }

  .f-txt {
    margin-bottom: 20px;
  }

  .site-map {
    gap: 1.5rem;
    justify-content: start;
    align-items: start;
  }
}

/*---------------------------------------------------------
Popup Contact
-----------------------------------------------------------*/
.popup-contact-open {
  position: fixed;
  background-color: #ad8851;
  color: var(--color_white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  padding: 12px 20px;
  height: 50px;
  bottom: 20px;
  right: 25px;
  transition: background-color 0.3s;
  white-space: nowrap;
  min-width: 190px;
  height: 50px;
  z-index: 50;
}

.popup-contact-open::before {
  content: "";
  display: inline-block;
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_plus.svg) no-repeat center/contain;
  mask: url(../images/share/icon_plus.svg) no-repeat center/contain;
  width: 12px;
  height: 12px;
  transition: background-color 0.3s;
  margin-top: 2px;
}

@media (any-hover: hover) {
  .popup-contact-open:hover {
    background-color: var(--color_primary);
  }
}

.popup-contact-wrap {
  border-radius: 5px 5px 0 0;
  background-color: #15161E;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  padding: 40px 50px;
  transform: translateY(100%);
  visibility: hidden;
  transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
  z-index: 50;
}

.popup-contact-wrap.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.popup-contact-ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 35px;
}

.popup-contact-ttl::before {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_plus.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
}

.popup-contact-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.popup-contact-list a {
  border: 1px solid var(--color_white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--color_white);
  font-size: 1.125rem;
  padding: 10px 15px;
  position: relative;
}

@media (any-hover: hover) {
  .popup-contact-list a:hover {
    filter: brightness(0.9);
  }
}

.popup-contact-list .tel {
  font-family: var(--font_en);
}

.popup-contact-list .tel::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
}

.popup-contact-list .mail::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_mail.svg) no-repeat center/contain;
  mask: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 20px;
  height: 16px;
}

.popup-contact-list .line {
  border-color: #4CC764;
  color: #4CC764;
}

.popup-contact-list .line::before {
  content: "";
  background: url(../images/share/icon_line@2x.png) no-repeat center/contain;
  width: 18px;
  height: 18px;
}

.popup-contact-bottom {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 25px;
  padding-top: 25px;
}

.popup-contact-text {
  color: var(--color_white);
}

.popup-contact-close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ad8851;
  border-radius: 2px;
  color: var(--color_white);
  font-family: var(--font_jp);
  line-height: 1;
  padding: 15px 40px;
  transition: background-color 0.3s;
  min-width: 190px;
  height: 50px;
}

.popup-contact-close::before {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_close.svg) no-repeat center/contain;
  width: 10px;
  height: 2px;
}

@media (any-hover: hover) {
  .popup-contact-close:hover {
    background-color: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .popup-contact-open {
    justify-content: center;
    height: 60px;
    font-size: 17px;
    bottom: 5px;
    right: 5px;
    left: 5px;
  }

  .popup-contact-wrap {
    padding: 20px;
  }

  .popup-contact-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .popup-contact-list a {
    padding: 10px;
  }

  .popup-contact-bottom {
    flex-direction: column;
    gap: 15px;
    padding-top: 25px;
  }

  .popup-contact-close {
    width: 100%;
  }
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas: "sidebar body";
  gap: 5rem;
  align-items: flex-start;
  margin-inline: auto;
  width: min(90%, 1024px);
}

.layout-sidebar .l-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 50px;
}

.layout-sidebar .l-label {
  border-bottom: 1px solid var(--color_border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.layout-sidebar .l-label [lang=en] {
  font-size: 1.0625rem;
}

.layout-sidebar .l-label .jp {
  font-size: 0.625rem;
}

.layout-sidebar .l-body {
  grid-area: body;
}

@media (max-width: 800px) {
  .layout-sidebar {
    grid-template-columns: 1fr;
    grid-template-areas: "body" "sidebar";
    gap: 5rem;
  }

  .layout-sidebar .l-sidebar {
    position: static;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
}

.hero-logo {
  filter: brightness(0) invert(1);
}

.hero-contents {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--color_white);
  line-height: 1;
}

.hero-logo {
  margin-bottom: 40px;
}

.hero-logo img {
  margin-inline: auto;
}

.hero-bg {
  overflow: hidden;
  z-index: -1;
  position: relative;
}

.hero-bg img {
  width: 100%;
  height: 100svh;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-catch01 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.hero-catch02 {
  font-size: 3.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}

.hero-catch03 {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

@media (max-width: 800px) {
  .hero-contents {
    padding: 0 20px;
  }

  .hero-logo {
    margin-bottom: 30px;
  }

  .hero-catch01 {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .hero-catch02 {
    font-size: 1.875rem;
    margin-bottom: 25px;
  }

  .hero-catch03 {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  line-height: 1.5;
  margin-bottom: 50px;
}

.t-h2 .jp {
  font-size: 2.125rem;
}

.t-h2 [lang=en] {
  color: var(--color_secondary);
  font-size: 1.25rem;
}

@media (max-width: 800px) {
  .t-h2 {
    margin-bottom: 30px;
  }

  .t-h2 .jp {
    font-size: 1.5625rem;
    margin-bottom: 5px;
  }

  .t-h2 [lang=en] {
    font-size: 1.125rem;
  }
}

/*------------
Section
--------------*/
.sec01 {
  padding: 200px 0;
}

.sec01-layout {
  display: grid;
  grid-template-columns: 100px 1fr 130px;
  gap: 100px;
  grid-template-areas: "btn body ttl";
}

.sec01-layout .l-ttl {
  grid-area: ttl;
  writing-mode: vertical-rl;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.3em;
}

.sec01-layout .l-body {
  display: grid;
  align-items: end;
  grid-area: body;
  writing-mode: vertical-rl;
  max-height: 310px;
  text-align: justify;
  line-height: 2.8;
}

.sec01-layout .l-btn {
  display: grid;
  align-items: end;
  grid-area: btn;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 100px 0;
  }

  .sec01-layout {
    display: block;
  }

  .sec01-layout .l-ttl {
    writing-mode: vertical-rl;
    font-size: 1.5625rem;
    margin: 0 auto 25px;
  }

  .sec01-layout .l-body {
    writing-mode: horizontal-tb;
    max-height: none;
    text-align: justify;
    line-height: 2;
  }

  .sec01-layout .l-btn {
    grid-area: btn;
    margin-top: 25px;
  }
}

.sec02-slider {
  display: none;
}

.sec02-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "img body";
}

.sec02-layout .l-img {
  grid-area: img;
}

.sec02-layout .l-img .inner {
  position: relative;
  height: 100vh;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.sec02-layout .l-img .img {
  position: fixed;
  inset: 0;
  width: calc((100vw - 50px) / 2);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.sec02-layout .l-body {
  grid-area: body;
  min-height: 100vh;
}

.sec02-layout .l-body .wrapper {
  position: sticky;
  top: 16vh;
  max-width: 400px;
  margin: 0 auto;
  text-align: justify;
}

.sec02-layout .l-body p {
  line-height: 2.5;
}

.sec02-layout .l-body p+p {
  margin-top: 25px;
}

@media (max-width: 800px) {

  .sec02-slider {
    display: block;
  }

  .sec02-slider img {
    aspect-ratio: 7/5;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .sec02-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    grid-template-areas: "img" "body";
  }

  .sec02-layout .l-img {
    display: none;
  }

  .sec02-layout .l-body {
    min-height: 0;
    padding: 0 30px;
  }

  .sec02-layout .l-body .wrapper {
    position: static;
    max-width: none;
  }

  .sec02-layout .l-body p {
    line-height: 2;
  }

  .sec02-layout .l-body p+p {
    margin-top: 15px;
  }
}

.sec03 {
  padding: 300px 0;
}

.sec03-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}

.sec03-layout .item {
  display: block;
  container-type: inline-size;
  position: relative;
  overflow: hidden;
}

.sec03-layout .item-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  inset: 0;
  color: var(--color_white);
  padding: 35cqw 30px 30px;
}

.sec03-layout .item-ttl {
  text-align: center;
  line-height: 1;
}

.sec03-layout .item-ttl .name {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.sec03-layout .item-ttl .price {
  font-size: 2.75rem;
}

.sec03-layout .item-ttl .price span {
  font-size: 1.5rem;
  margin-left: 5px;
}

.sec03-layout .item-ttl+.item-ttl {
  margin-top: 35px;
}

.sec03-layout .item-text {
  margin-top: auto;
}

.sec03-layout .item-img img {
  transition: transform 0.5s;
  width: 100%;
}

@media (any-hover: hover) {
  .sec03-layout .item:hover .item-img img {
    transform: scale(1.05);
  }
}

@media (max-width: 800px) {
  .sec03 {
    padding: 100px 0;
  }

  .sec03-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }

  .sec03-layout .item-img img {
    max-height: 450px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.sec04 {
  background-color: var(--color_black);
  position: relative;
  z-index: 1;
}

.sec04-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  color: var(--color_white);
  padding: 300px 5% 300px 0;
}

.sec04-layout .t-h2 [lang=en] {
  color: var(--color_white);
}

.sec04-layout p {
  text-align: justify;
  font-size: 0.9375rem;
  line-height: 3;
}

.sec04-layout p+p {
  margin-top: 2rem;
}

.sec04-layout .l-btn {
  text-align: right;
  margin-top: 100px;
}

.sec04-bgs {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.sec04-bgs .sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

.sec04-bgs .bg-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
}

.sec04-bgs .bg-item.is-active {
  opacity: 1;
}

.sec04-bgs img {
  width: 100%;
  height: 100vh;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: opacity 0.8s ease-in-out;
  opacity: 1;
}

@media (max-width: 800px) {
  .sec04 {
    padding: 50px 0;
  }

  .sec04-layout {
    grid-template-columns: 1fr;
    padding: 50px 0;
  }

  .sec04-layout p {
    line-height: 2;
  }

  .sec04-layout .l-btn {
    margin-top: 50px;
  }
}

.sec05 {
  padding: 300px 0;
  position: relative;
}

.sec05-img {
  padding: 0 2.5%;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.sec05-img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec05-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.sec05-layout .col {
  display: flex;
  flex-direction: column;
  background-color: oklch(from var(--color_primary) l c h/0.9);
  color: var(--color_white);
  padding: 60px 120px;
  text-align: justify;
}

.sec05-layout .l-ttl {
  text-align: center;
  line-height: 1;
  margin-bottom: 20px;
}

.sec05-layout .l-ttl [lang=en] {
  color: var(--color_white);
  font-size: 1.25rem;
}

.sec05-layout .l-ttl .jp {
  font-size: 2.125rem;
  margin-bottom: 15px;
}

.sec05-layout .l-body {
  margin-bottom: 40px;
}

.sec05-layout .l-body p {
  line-height: 3;
}

.sec05-layout .l-btn {
  margin-top: auto;
  text-align: right;
}

@media (max-width: 800px) {
  .sec05 {
    padding: 100px 0;
  }

  .sec05-img {
    padding: 0;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    transform: translateY(0);
    z-index: -1;
  }

  .sec05-img img {
    height: 250px;
  }

  .sec05-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 150px;
  }

  .sec05-layout .col {
    padding: 35px 30px;
  }

  .sec05-layout .l-ttl {
    margin-bottom: 20px;
  }

  .sec05-layout .l-ttl [lang=en] {
    font-size: 0.9375rem;
  }

  .sec05-layout .l-ttl .jp {
    font-size: 1.5625rem;
    margin-bottom: 15px;
  }

  .sec05-layout .l-body {
    margin-bottom: 20px;
  }

  .sec05-layout .l-body p {
    line-height: 2;
  }
}

.sec06 {
  background-color: #F4F4F4;
  padding-bottom: 200px;
}

.sec06-map {
  border-top: 5px solid var(--color_primary);
  margin-bottom: 120px;
}

.sec06-map iframe {
  filter: grayscale(100%);
  width: 100%;
  height: 500px;
}

.sec06-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}

.sec06-header .ttl {
  font-size: 2.125rem;
  line-height: 1;
}

.sec06-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.sec06-layout .col {
  border-left: 2px solid var(--color_primary);
  padding-left: 50px;
}

.sec06-layout .address {
  line-height: 1;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .sec06 {
    padding-bottom: 100px;
  }

  .sec06-map {
    margin-bottom: 50px;
  }

  .sec06-map iframe {
    height: 250px;
  }

  .sec06-header {
    display: block;
    margin-bottom: 30px;
  }

  .sec06-header .ttl {
    font-size: 1.375rem;
  }

  .sec06-header .btn-more {
    display: none;
  }

  .sec06-layout {
    grid-template-columns: 1fr;
    gap: 25px 0;
    margin-bottom: 30px;
  }

  .sec06-layout .col {
    padding-left: 25px;
  }

  .sec06-layout .address {
    line-height: 1;
    margin-bottom: 15px;
  }
}

.sec07 {
  padding: 200px 0;
}

.sec07-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  margin-bottom: 60px;
}

.sec07-layout .t-h2 {
  writing-mode: vertical-rl;
  margin-right: auto;
}

.post-top-news {
  display: grid;
  gap: 50px;
}

.post-top-news a {
  display: grid;
  gap: 50px;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 50px;
}

.post-top-news .wrap {
  display: flex;
  justify-content: space-between;
}

.post-top-news time {
  color: var(--color_secondary);
  display: inline-block;
  font-family: var(--font_en);
  white-space: nowrap;
}

.post-top-news .arrow {
  display: block;
  border: 1px solid var(--color_primary);
  width: 55px;
  height: 30px;
  position: relative;
  transition: background-color 0.3s;
}

.post-top-news .arrow::before {
  content: "";
  background-color: currentColor;
  -webkit-mask: url(../images/share/arrow_btn02.svg) no-repeat center/contain;
  mask: url(../images/share/arrow_btn02.svg) no-repeat center/contain;
  width: 17px;
  height: 6px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
}

.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1.0625rem;
  font-weight: 400;
}

@media (any-hover: hover) {
  .post-top-news a:hover .arrow {
    background-color: var(--color_primary);
    color: var(--color_white);
  }
}

@media (max-width: 800px) {
  .sec07 {
    padding: 100px 0;
  }

  .sec07-layout {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .sec07-layout .t-h2 {
    writing-mode: horizontal-tb;
  }

  .post-top-news {
    display: grid;
    gap: 15px;
  }

  .post-top-news a {
    gap: 10px;
    padding-bottom: 15px;
  }

  .post-top-news .wrap {
    display: flex;
    justify-content: space-between;
    align-items: end;
    line-height: 1;
  }

  .post-top-news .arrow {
    width: 40px;
    height: 20px;
  }

  .post-top-news .arrow::before {
    width: 14px;
    height: 5px;
    top: 6px;
  }

  .post-top-news .post-ttl {
    font-size: 0.9375rem;
  }
}

.top-footer-img {
  position: relative;
  overflow: hidden;
  height: 65vh;
}

.top-footer-img img {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
}

@media (max-width: 800px) {
  .top-footer-img {
    height: 300px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  color: var(--color_white);
  padding: 200px 5% 100px;
  position: relative;
}

.page-ttl {
  line-height: 1.5;
}

.page-ttl [lang=en] {
  font-size: 1.25rem;
  padding-left: 10px;
  margin-bottom: 10px;
}

.page-ttl .jp {
  font-size: 3.125rem;
}

.page-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.breadcrumb {
  background-color: var(--color_white);
  border-bottom: 1px solid var(--color_primary);
  padding: 8px 5%;
  position: relative;
  z-index: 1;
}

.breadcrumb ul {
  font-size: 0.6875rem;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  border-radius: 100px;
  width: 5px;
  height: 5px;
  background-color: var(--color_primary);
  margin: 0 8px 0 5px;
  vertical-align: 2px;
}

.u-contents {
  padding: 100px 0;
}

@media (max-width: 800px) {
  .page-header {
    padding: 100px 30px 50px;
  }

  .page-ttl [lang=en] {
    font-size: 0.9375rem;
    margin-bottom: 5px;
  }

  .page-ttl .jp {
    font-size: 1.875rem;
  }

  .page-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
  }

  .page-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .breadcrumb {
    padding: 5px 30px;
  }

  .u-contents {
    padding: 50px 0;
  }
}

.u-h2 {
  line-height: 1.5;
  margin-bottom: 50px;
}

.u-h2 [lang=en] {
  color: var(--color_secondary);
  font-size: 1.125rem;
  margin-bottom: 5px;
}

.u-h2 .jp {
  font-size: 1.75rem;
}

.u-h2 .small {
  font-size: 1.125rem;
}

.u-h3 {
  color: var(--color_primary);
  border-top: 1px solid var(--color_primary);
  border-bottom: 1px solid var(--color_primary);
  padding: 20px 0;
  font-size: 1.375rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.u-h4 {
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .u-h2 {
    margin-bottom: 30px;
  }

  .u-h2 [lang=en] {
    font-size: 0.9375rem;
  }

  .u-h2 .jp {
    font-size: 1.5625rem;
  }

  .u-h2 .small {
    font-size: 0.9375rem;
  }

  .u-h3 {
    padding: 15px 0;
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .u-h4 {
    margin-bottom: 10px;
  }
}

.tall+.tall {
  margin-top: 120px;
}

.short+.short {
  margin-top: 60px;
}

.x-short+.x-short {
  margin-top: 30px;
}

.hidden {
  overflow: hidden;
}

.clip {
  overflow: clip;
}

@media (max-width: 800px) {
  .tall+.tall {
    margin-top: 50px;
  }

  .short+.short {
    margin-top: 50px;
  }

  .x-short+.x-short {
    margin-top: 15px;
  }
}

.list-disc {
  display: grid;
  grid-gap: 15px;
}

.list-disc li {
  list-style: square;
  margin-left: 1.5em;
  line-height: 1.8;
}

.list-disc li::marker {
  color: #D9B886;
  font-size: 0.9375rem;
}

.list-disc.center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.list-check {
  display: grid;
  grid-gap: 5px;
}

.list-check li {
  position: relative;
  padding-left: 30px;
}

.list-check li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
}

.list-num {
  counter-reset: number;
  display: grid;
  grid-gap: 5px;
}

.list-num>li {
  padding-left: 30px;
  position: relative;
}

.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;
}

.table-style01 th,
.table-style01 td {
  border: 1px solid #c9c9c9;
  padding: 15px;
  vertical-align: middle;
}

.table-style01 th {
  background-color: #e2e2e2;
}

.table-style01 .bg01 {
  background-color: #f5f5f5;
}

.table-scroll-txt {
  display: none;
}

@media (max-width: 800px) {

  .table-style01 th,
  .table-style01 td {
    padding: 10px;
    line-height: 1.5;
  }

  .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%;
  }

  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }

  .fl-imgR.small,
  .fl-imgL.small {
    width: 100%;
  }
}

/*------------
Add
--------------*/
.crematory-intro-img {
  position: sticky;
  top: 0;
  height: 100lvh;
  z-index: -1;
}

.crematory-intro-img .inner {
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(24% 22% 24% 22%);
  clip-path: inset(24% 22% 24% 22%);
  will-change: clip-path;
}

.crematory-intro-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  transform: scale(1.2);
}

.crematory-intro-spacer {
  height: 50lvh;
}

.crematory-intro-body {
  color: var(--color_white);
  padding: 0 5% 250px;
}

.crematory-intro-read {
  display: grid;
  gap: 50px;
  height: 450px;
  writing-mode: vertical-rl;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.crematory-intro-read p {
  font-size: 1rem;
  line-height: 2.5;
}

.crematory-intro-read p+p {
  margin-right: 35px;
}

.crematory-intro-read .ttl {
  font-size: 2.1875rem;
}

.crematory-intro-hr {
  margin: 50px auto;
  border: 1px solid oklch(from var(--color_white) l c h/0.8);
}

.crematory-intro-info {
  font-size: 0.875rem;
  line-height: 2;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.crematory-intro-info .item {
  display: grid;
  grid-template-columns: 100px 1fr;
}

@media (max-width: 800px) {
  .crematory-intro-spacer {
    height: 25lvh;
  }

  .crematory-intro-body {
    padding: 0 30px 100px;
  }

  .crematory-intro-read {
    gap: 25px;
    writing-mode: horizontal-tb;
      height: auto;
  }

  .crematory-intro-read p {
    font-size: 0.9375rem;
    line-height: 2;
  }

  .crematory-intro-read p+p {
    margin-right: 0;
    margin-top: 1rem;
  }

  .crematory-intro-read .ttl {
    font-size: 1.75rem;
  }

  .crematory-intro-info {
    margin-left: 0;
  }
}

.u-read {
  max-width: 800px;
  margin: 0 auto;
}

.layout-style01 {
  border-top: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 50px;
  padding: 50px 5% 0;
}

.layout-style01.col1 {
  grid-template-columns: 1fr;
  gap: 0;
}

@media (max-width: 800px) {
  .layout-style01 {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 50px 30px 0;
  }

  .layout-style01.col1 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.layout-style02 {
  display: grid;
  grid-template-columns: 1fr 20%;
  align-items: start;
  gap: 25px;
  grid-template-areas: "body ttl";
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.layout-style02 .l-ttl {
  grid-area: ttl;
  writing-mode: vertical-rl;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.3em;
}

.layout-style02 .l-body {
  display: grid;
  align-items: end;
  grid-area: body;
  writing-mode: vertical-rl;
  max-height: 450px;
  text-align: justify;
  line-height: 2.5;
  padding-top: 50px;
}

.layout-style02 p+p {
  margin-left: 35px;
}

@media (max-width: 800px) {
  .layout-style02 {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
    grid-template-areas: "ttl" "body";
  }

  .layout-style02 .l-ttl {
    writing-mode: horizontal-tb;
    font-size: 1.5625rem;
    letter-spacing: 0.15em;
  }

  .layout-style02 .l-body {
    writing-mode: horizontal-tb;
    max-height: none;
    line-height: 2;
    padding-top: 0;
  }

  .layout-style02 p+p {
    margin: 20px 0 0;
  }
}

.table-price {
  table-layout: fixed;
  width: 100%;
  text-align: center;
}

.table-price th,
.table-price td {
  vertical-align: middle;
}

.table-price thead th {
  border-bottom: 1px solid var(--color_black);
  padding: 15px;
}

.table-price tbody th,
.table-price tbody td {
  border-bottom: 1px solid var(--color_border);
  padding: 15px;
}

@media (max-width: 800px) {
  .table-price thead th {
    padding: 15px 0;
  }

  .table-price tbody th,
  .table-price tbody td {
    padding: 15px 0;
  }
}

.flow-style {
  display: grid;
  gap: 25px;
}

.flow-style>li {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  padding: 25px 20px 25px 55px;
  position: relative;
}

.flow-style .flow-no {
  background-color: var(--color_white);
  display: grid;
  place-items: center;
  border: 1px solid var(--color_secondary);
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
  font-family: var(--font_en);
  color: var(--color_secondary);
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}

.flow-style .flow-ttl {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .flow-style {
    margin-top: 50px;
    gap: 45px;
  }

  .flow-style>li {
    padding: 40px 25px 25px;
  }

  .flow-style .flow-no {
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
  }

  .flow-style .flow-ttl {
    text-align: center;
    margin-bottom: 15px;
  }
}

.flow-style02 {
  border-top: 1px solid var(--color_primary);
}

.flow-style02>li {
  border-bottom: 1px solid var(--color_primary);
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  padding: 50px 0;
}

.flow-style02 .flow-no {
  color: var(--color_primary);
  display: grid;
  align-content: center;
  font-family: var(--font_en);
  line-height: 1;
}

.flow-style02 .flow-no span {
  display: block;
}

.flow-style02 .flow-no span:nth-child(1) {
  font-size: 1.125rem;
  margin-bottom: 5px;
}

.flow-style02 .flow-no span:nth-child(2) {
  font-size: 3.75rem;
}

.flow-style02 .flow-ttl {
  color: var(--color_primary);
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .flow-style02>li {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px 0;
  }

  .flow-style02 .flow-no span:nth-child(1) {
    font-size: 0.9375rem;
  }

  .flow-style02 .flow-no span:nth-child(2) {
    font-size: 2.8125rem;
  }

  .flow-style02 .flow-ttl {
    font-size: 1.375rem;
    margin-bottom: 15px;
  }
}

.faq-style {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  border-radius: 6px;
  transition: 0.3s;
}

.faq-style+.faq-style {
  margin-top: 15px;
}

.faq-style .faq-summary {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  align-items: center;
  gap: 25px;
  cursor: pointer;
  padding: 15px 20px;
  line-height: 1;
  position: relative;
}

.faq-style .faq-summary .faq-ttl {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}

.faq-style .faq-summary::-webkit-details-marker {
  display: none;
}

.faq-style .faq-icon {
  background-color: var(--color_primary);
  border-radius: 100px;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 1.25rem;
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
}

.faq-style .faq-content .faq-icon {
  background-color: var(--color_gray_light);
  color: var(--color_primary);
}

.faq-style .faq-content {
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.faq-style .faq-wrap {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  padding: 0 20px 25px;
}

.faq-style .faq-open-icon {
  background-color: var(--color_primary);
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  position: relative;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before,
.faq-style .faq-open-icon::after {
  content: "";
  display: block;
  background: var(--color_white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.faq-style .faq-open-icon::before {
  width: 10px;
  height: 2px;
}

.faq-style .faq-open-icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.5s;
}

.faq-style.is-open .faq-open-icon {
  background-color: #d2d2d2;
}

.faq-style.is-open .faq-open-icon::after {
  opacity: 0;
}

@media (max-width: 800px) {
  .faq-style {
    border-radius: 10px;
  }

  .faq-style+.faq-style {
    margin-top: 15px;
  }

  .faq-style .faq-summary {
    grid-template-columns: 30px 1fr 30px;
    gap: 10px;
    padding: 15px;
  }

  .faq-style .faq-summary .faq-ttl {
    font-size: 1.0625rem;
    line-height: 1.5;
  }

  .faq-style .faq-icon {
    font-size: 0.9375rem;
    width: 30px;
    height: 30px;
  }

  .faq-style .faq-wrap {
    grid-template-columns: 30px 1fr;
    gap: 15px;
    padding: 0 15px 15px;
  }
}

.u-map {
  border: 3px solid var(--color_primary);
}

.u-map iframe {
  width: 100%;
}

@media (max-width: 800px) {
  .u-map iframe {
    height: 300px;
  }
}

.dl-access {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 25px;
}

.dl-access .item {
  display: grid;
  grid-template-columns: 100px 1fr;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 5px;
}

@media (max-width: 800px) {
  .dl-access {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.list-style01 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 35px;
}

.list-style01 li {
  background-color: #f5f5f5;
  padding: 25px 30px;
  border-top: 2px solid var(--color_primary);
  text-align: justify;
}

.list-style01 .list-ttl {
  color: var(--color_primary);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.list-style01 .list-ttl em {
  -webkit-text-decoration: double underline;
  text-decoration: double underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.box-style01 {
  border: 1px solid var(--color_primary);
  background-color: var(--color_white);
  padding: 40px;
}

.box-style01 .box-ttl {
  color: var(--color_primary);
  font-size: 1.25rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
}

.layout-plan .l-ttl {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 20px 25px;
}

.layout-plan .l-ttl:has(.label) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.layout-plan .label {
  border-radius: 100px;
  background-color: #ad8851;
  color: var(--color_white);
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 3px 20px;
}

.layout-plan .l-body {
  border: 1px solid var(--color_border);
  background: #fff;
}

.layout-plan .inner {
  padding: 25px;
}

.layout-plan .l-img {
  margin-bottom: 15px;
}

.layout-plan .l-price {
  background-color: var(--color_gray_light);
  padding: 20px 25px;
  line-height: 1.5;
}

.layout-plan .price {
  font-size: 1.375rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 5px;
}

.layout-plan .yen {
  font-size: 0.875rem;
  margin-left: 3px;
}

.layout-plan .tax-price {
  font-size: 0.75rem;
  color: var(--color_gray_dark);
}

.layout-plan .l-catch {
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .layout-plan .l-ttl {
    font-size: 1.25rem;
    padding: 20px;
  }

  .layout-plan .l-ttl:has(.label) {
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
  }

  .layout-plan .label {
    font-size: 0.75rem;
  }

  .layout-plan .inner {
    padding: 20px;
  }
}

.layout-greeting {
  display: grid;
  place-items: center;
  padding-top: 50px;
}

.layout-greeting .l-message {
  border-right: 1px solid var(--color_secondary);
  border-left: 1px solid var(--color_secondary);
  color: var(--color_primary);
  display: grid;
  font-size: 1.875rem;
  letter-spacing: 0.15em;
  line-height: 2;
  padding: 0 100px;
  writing-mode: vertical-rl;
  margin-bottom: 50px;
}

.layout-greeting .l-message span:nth-child(2) {
  margin-top: 1em;
}

.layout-greeting .l-desc {
  text-align: center;
}

.layout-greeting .logo {
  margin: 0 auto 20px;
  max-width: 300px;
}

@media (max-width: 800px) {
  .layout-greeting {
    padding-top: 50px;
  }

  .layout-greeting .l-message {
    font-size: 1.375rem;
    padding: 0 50px;
    margin-bottom: 50px;
  }

  .layout-greeting .logo {
    max-width: 200px;
  }
}

.dl-overview .item {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .dl-overview .item {
    grid-template-columns: 100px 1fr;
    line-height: 1.5;
  }
}

.layout-area .l-img {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  padding: 25px;
  margin-bottom: 50px;
}

.layout-area .l-img img {
  max-height: 650px;
  -o-object-fit: contain;
  object-fit: contain;
}

.layout-area .l-box {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  padding: 20px;
  line-height: 1.7;
}

.dl-area .item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 15px;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.dl-area dt {
  color: var(--color_primary);
}

@media (max-width: 800px) {
  .dl-area .item {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .dl-area dt {
    color: var(--color_primary);
  }
}

.list-floor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 25px;
}

.list-floor .list-img img {
  aspect-ratio: 7/5;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.list-floor .list-ttl {
  border-bottom: 1px solid var(--color_border);
  padding: 15px 0;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .list-floor {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.box-menu {
  border: 1px solid var(--color_secondary);
  background-color: var(--color_white);
  padding: 35px;
}

@media (max-width: 800px) {
  .box-menu {
    padding: 20px;
  }
}

.box-download {
  background-color: var(--color_gray_light);
  border: 1px solid var(--color_primary);
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
}

.box-download .box-ttl {
  color: var(--color_primary);
  font-size: 2.1875rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}

.box-download .box-ttl::after {
  content: "";
  background-color: var(--color_secondary);
  width: 50px;
  height: 1px;
  display: block;
  margin: 25px auto;
}

.box-download p {
  text-align: center;
}

.box-download .box-btn {
  margin-top: 50px;
  text-align: center;
}

@media (max-width: 800px) {
  .box-download {
    padding: 25px;
  }

  .box-download .box-ttl {
    font-size: 1.875rem;
  }

  .box-download .box-ttl::after {
    margin: 15px auto 25px;
  }

  .box-download p {
    text-align: left;
  }

  .box-download .box-btn {
    margin-top: 25px;
  }
}

.list-offering {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.list-offering>li {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  padding: 15px;
}

.list-offering .list-ttl {
  font-size: 1.5625rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.list-offering .list-ttl .small {
  font-size: 0.9375rem;
  margin-left: 5px;
}

.list-offering .list-img {
  margin-bottom: 25px;
}

.list-offering .list-price {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  line-height: 1;
  gap: 10px;
  padding-bottom: 15px;
  margin-bottom: 35px;
}

.list-offering .list-price .ttl {
  font-size: 0.9375rem;
  font-weight: bold;
}

.list-offering .list-price .price {
  text-align: right;
  font-size: 1.375rem;
}

.list-offering .list-price .yen {
  font-size: 0.8125rem;
  margin-left: 5px;
}

.list-offering .list-price-special {
  background-color: var(--color_gray_light);
  padding: 15px 15px 25px;
  line-height: 1.5;
  gap: 10px;
}

.list-offering .list-price-special .ttl {
  display: grid;
  place-items: center;
  background-color: var(--color_secondary);
  background-color: #c69546;
  border-radius: 100px;
  color: var(--color_white);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 4px 25px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: -27px auto 15px;
}

.list-offering .list-price-special .price {
  font-size: 2.1875rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.list-offering .list-price-special .yen {
  font-size: 0.875rem;
  margin-left: 5px;
}

@media (max-width: 800px) {
  .list-offering {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.layout-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 50px 5% 0;
}

.layout-contact .l-body {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 35px;
}

.layout-contact .l-body p {
  text-align: justify;
}

.layout-contact .l-btn {
  font-size: 1.25rem;
  display: inline-flex;
  gap: 25px;
  margin-top: auto;
  margin-left: auto;
}

.layout-contact .l-btn .text {
  display: inline-block;
  line-height: 1.5;
}

.layout-contact .l-btn .arrow {
  border: 1px solid var(--color_white);
  border-radius: 2px;
  width: 60px;
  height: 60px;
  position: relative;
  transition: background-color 0.3s;
}

.layout-contact .l-btn .arrow::before {
  content: "";
  background-color: currentColor;
  -webkit-mask: url(../images/share/arrow_btn.svg) no-repeat center/contain;
  mask: url(../images/share/arrow_btn.svg) no-repeat center/contain;
  width: 26px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (any-hover: hover) {
  .layout-contact .l-btn:hover .arrow {
    background-color: var(--color_white);
  }

  .layout-contact .l-btn:hover .arrow::before {
    background-color: var(--color_primary);
  }
}

.layout-contact .l-img {
  border-radius: 5px;
  overflow: hidden;
}

.layout-contact .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 800px) {
  .layout-contact {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .layout-contact .l-body {
    padding: 25px;
  }

  .layout-contact .l-btn {
    font-size: 1.125rem;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 25px;
    margin-left: 0;
  }

  .layout-contact .l-btn .text {
    line-height: 1.5;
  }

  .layout-contact .l-btn .arrow {
    width: 50px;
    height: 50px;
  }
}

.layout-price-wrap {
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 70px;
}

.layout-price-wrap .layout-price+.layout-price {
  border-top: 1px solid var(--color_border);
  padding-top: 100px;
  margin-top: 100px;
}

.layout-price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-columns: 1fr 45%;
  gap: 80px;
}

.layout-price .l-ttl::after {
  content: "";
  background-color: var(--color_secondary);
  width: 35px;
  height: 1px;
  display: block;
  margin: 30px 0;
}

.layout-price .l-ttl [lang=en] {
  color: var(--color_secondary);
}

.layout-price .l-ttl .jp {
  font-size: 2.1875rem;
  line-height: 1.5;
  font-weight: bold;
}

.layout-price .l-ttl .sub {
  color: var(--color_secondary);
  font-size: 0.875rem;
  margin-top: 5px;
}

.layout-price .l-img img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 7/5;
}

.dl-price {
  line-height: 1.5;
}

.dl-price .item {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 1;
}

.dl-price dd {
  font-size: 1.375rem;
}

.dl-price dd .small {
  font-size: 0.75rem;
  letter-spacing: 0;
  margin-left: 5px;
}

@media (max-width: 800px) {
  .layout-price-wrap {
    padding: 20px;
  }

  .layout-price-wrap .layout-price+.layout-price {
    padding-top: 50px;
    margin-top: 50px;
  }

  .layout-price {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "body";
    gap: 25px;
  }

  .layout-price .l-img {
    grid-area: img;
  }

  .layout-price .l-body {
    grid-area: body;
  }

  .layout-price .l-ttl .jp {
    font-size: 1.5625rem;
  }

  .layout-price .l-ttl .sub {
    font-size: 0.8125rem;
  }
}

.card-service-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media (max-width: 800px) {
  .card-service-wrap {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.card-service {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
}

.card-service .card-ttl {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 15px 30px;
}

.card-service .card-body {
  padding: 30px;
}

.card-service .list-num>li {
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.card-service .list-num>li::before {
  top: 2px;
}

.card-service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 25px;
}

.card-service-list>li {
  background-color: var(--color_white);
  border: 1px solid var(--color_gray_light);
  padding: 25px 35px 35px;
  text-align: justify;
}

.card-service-list .list-label {
  border-radius: 100px;
  background-color: var(--color_secondary);
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  padding: 3px 20px;
  margin: -40px 0 20px;
}

.card-service-list .list-ttl {
  text-align: center;
  color: var(--color_primary);
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .card-service-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.flow-access {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.flow-access li {
  position: relative;
}

.flow-access li+li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 12px 0px 12px 12px;
  border-color: transparent transparent transparent var(--color_primary);
}

@media (max-width: 800px) {
  .flow-access {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .flow-access li {
    position: relative;
  }

  .flow-access li+li::before {
    top: -23px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

.box-flow {
  background-color: var(--color_white);
  border-radius: 5px;
  border: 1px dashed var(--color_border);
  padding: 80px;
}

@media (max-width: 800px) {
  .box-flow {
    padding: 25px;
  }
}

.card-contact-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card-contact {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-bottom: 5px solid var(--color_primary);
  padding: 35px;
}

.card-contact .card-img {
  width: 70px;
  margin: 0 auto 25px;
}

.card-contact .card-text {
  font-weight: bold;
  font-size: 1.0625rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 25px;
}

.card-contact hr {
  border-color: var(--color_border);
  margin: 25px auto;
  width: 80%;
}

.card-contact .card-btn {
  text-align: center;
  margin-top: auto;
}

.card-contact .tel {
  font-family: var(--font_en);
  font-size: 1.875rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 10px;
}

.card-contact .tel span {
  font-size: 1.25rem;
  margin-right: 5px;
}

.card-contact .line {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.card-contact .card-text02 {
  background-color: var(--color_gray_light);
  padding: 15px;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: justify;
  margin-top: 25px;
}

@media (max-width: 800px) {
  .card-contact-wrap {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.list-anchor-links {
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.list-anchor-links li+li {
  border-left: 1px solid var(--color_border);
}

.list-anchor-links a {
  display: grid;
  place-content: center;
  text-align: center;
  padding: 25px 10px;
  font-weight: bold;
  line-height: 1.2;
  height: 100%;
  position: relative;
}

.list-anchor-links a::before {
  content: "";
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50%;
  transition: 0.3s;
}

.list-anchor-links a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  transform: translate(-50%, 0) rotate(45deg);
  position: absolute;
  bottom: -3px;
  left: 50%;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .list-anchor-links a:hover::before {
    border-color: var(--color_primary);
    background-color: var(--color_primary);
  }

  .list-anchor-links a:hover::after {
    border-color: var(--color_white);
  }
}

@media (max-width: 800px) {
  .list-anchor-links {
    background-color: var(--color_white);
    grid-template-columns: repeat(5, 1fr);
  }

  .list-anchor-links li+li {
    border-left: 1px solid var(--color_border);
  }

  .list-anchor-links a {
    display: grid;
    align-content: center;
    place-content: start;
    align-content: center;
    text-align: left;
    padding: 25px 10px;
    font-weight: bold;
    line-height: 1.2;
    height: 100%;
    width: 100%;
    max-height: 150px;
    writing-mode: vertical-rl;
  }

  .list-anchor-links a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--color_border);
    border-bottom: 1px solid var(--color_border);
    transform: translate(-50%, 0) rotate(45deg);
    position: absolute;
    bottom: -3px;
    left: 50%;
    transition: 0.3s;
  }
}

.privacy-ttl {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.dl-privacy {
  display: grid;
  gap: 3rem;
}

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-size: 1.2rem;
  padding-top: 25px;
  margin-bottom: 15px;
  position: relative;
}

.dl-privacy dd {
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: justify;
}

.thanks-layout {
  max-width: 800px;
  margin: 0 auto;
}

.thanks-layout .l-ttl {
  text-align: center;
  font-size: 2.2rem;
  position: relative;
}

.thanks-layout .l-ttl::after {
  content: "";
  display: block;
  background-color: var(--color_primary);
  width: 50px;
  height: 2px;
  margin: 1rem auto 2rem;
}

.thanks-layout p {
  text-align: center;
}

@media (max-width: 800px) {
  .thanks-layout p {
    text-align: left;
  }
}

/*-----------------------------------------------------------
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;
}

.c-gold {
  color: var(--color_secondary);
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.notice {
  font-size: 0.8125rem;
  text-indent: -1.3em;
  padding-left: 1.3em;
}

.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;
  }

  .mbXS {
    margin-bottom: 10px;
  }

  .mbS {
    margin-bottom: 15px;
  }

  .mbM {
    margin-bottom: 25px;
  }

  .mbXM {
    margin-bottom: 40px;
  }

  .mbL {
    margin-bottom: 50px;
  }

  .mbXL {
    margin-bottom: 75px;
  }

  .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
-------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: flex;
  align-items: center;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow--prev,
.splide__arrow--next {
  display: block;
  width: 30px;
  height: 30px;
}

.splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
}

.splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 6rem;
}

@media (max-width: 800px) {
  .splide__controls {
    margin-top: 3rem;
  }
}

.splide__pagination {
  gap: 8px;
}

.splide__pagination__page {
  background: #D0D0C9;
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #707070;
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__toggle {
  cursor: pointer;
  background: #ccc;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  background: #D3D3D3;
}

.splide__toggle svg {
  fill: #fff;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

/*------------
lenis
-------------*/
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
