@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: #e9e9e9;
  --color_primary: #9CD0A4;
  --color_secondary: #F9F1BC;
  --color_tertiary: #BDE3DF;
  --color_bg01: #FEFCF1;
  --color_bg02: #EBF5EA;
  --color_white: #fff;
  --color_black: #333;
  --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");
}

:root {
  --font_base:
    "Local Noto Sans JP",
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  --font_jp_m: "FOT-筑紫A丸ゴシック Std M", TsukuARdGothicStd-M, serif;
  --font_jp_d: "FOT-筑紫A丸ゴシック Std D", TsukuARdGothicStd-D, serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B", TsukuARdGothicStd-B, serif;
  --font_en: "FOT-筑紫A丸ゴシック Std E", TsukuARdGothicStd-E, serif;
  --font_weight: normal;
  --font_size: 1.125rem;
  --line_height: 1.6;
  --letter_spacing: .05em;
}

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

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

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

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

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

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

.link {
  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: 120px;
}

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

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

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

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

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

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  background-color: var(--color_white);
  border: 1px solid var(--color_bg02);
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

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

.time-table th,
.time-table td {
  text-align: center;
  padding: 15px 0;
  line-height: 1.2;
}

.time-table thead th {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp_d);
  font-size: 1.125rem;
}

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

.time-table tbody th {
  background-color: #D4E8D2;
  font-family: var(--font_jp_d);
  letter-spacing: 0;
  width: 27%;
}

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

.time-table-note {
  font-family: var(--font_jp_d);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 10px;
}

@media (max-width: 800px) {

  .time-table th,
  .time-table td {
    padding: 10px 0;
  }

  .time-table thead th {
    font-size: 0.875rem;
  }

  .time-table th:first-child {
    font-size: 0.875rem;
    width: 70px;
  }
}

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event01: #9CD0A4;
  --event02: #E8DEA5;
  --event03: #E99D85;
}

.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;
  position: relative;
  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;
  position: absolute;
}

.business-calendar-box-wrap .business-calendar caption span.business-calendar-past {
  left: 0;
}

.business-calendar-box-wrap .business-calendar caption span.business-calendar-future {
  right: 0;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  color: #7FB24F;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(180deg);
}

.business-calendar-box-wrap .business-calendar th {
  background: var(--color_primary);
  border: 1px solid var(--color_bg02);
  color: var(--color_white);
  text-align: center;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  padding: 8px 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: var(--color_white);
  border: 1px solid var(--color_bg02);
  position: relative;
  font-family: var(--font_jp_m);
  font-size: 0.9375rem;
  padding: 7px 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::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: 10px;
  flex-wrap: wrap;
  font-size: 0.9375rem;
}

.list-event li {
  display: inline-flex;
  align-items: baseline;
  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;
  }
}

/*ボタン*/
.btn-more {
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 70px;
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  line-height: 1.3;
  min-width: 210px;
  min-height: 50px;
  padding: 14px 30px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.btn-more::before {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  width: 3px;
  height: 8px;
  position: absolute;
  top: calc(50% + 1px);
  left: 16px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .btn-more:hover {
    color: var(--color_white);
    background-color: #4d8756;
  }

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

  .btn-more:hover[target=_blank]::after {
    background-color: var(--color_white);
  }
}

.btn-more[target=_blank]::after {
  content: "";
  background-color: var(--color_black);
  -webkit-mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

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

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

@media (max-width: 800px) {
  .btn-more {
    min-height: auto;
    padding: 10px 25px;
  }
}

.btn-tel {
  display: inline-block;
  background-color: var(--color_tertiary);
  border-radius: 39px;
  font-family: var(--font_jp);
  padding: 7px 46px;
  text-align: center;
  transition: background-color 0.3s;
}

.btn-tel .small {
  font-size: 1.0625rem;
}

.btn-tel .l-tel {
  display: flex;
  gap: 5px;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
}

.btn-tel[href^="tel:"] {
  cursor: pointer;
}

@media (any-hover: hover) {
  .btn-tel:hover {
    background-color: oklch(from var(--color_tertiary) calc(l - 0.05) c h);
  }
}

.btn-reserve {
  display: inline-block;
  background-color: #FAF1BC;
  border-radius: 39px;
  font-family: var(--font_jp);
  padding: 7px 46px;
  text-align: center;
  transition: background-color 0.3s;
}

.btn-reserve .small {
  font-size: 1.0625rem;
}

.btn-reserve .l-web {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
}

@media (any-hover: hover) {
  .btn-reserve:hover {
    background-color: oklch(from #FAF1BC calc(l - 0.05) c h);
  }
}

@media (max-width: 800px) {
  .btn-tel {
    line-height: 1.3;
    width: 100%;
    padding: 7px 20px;
  }

  .btn-tel .small {
    font-size: 0.875rem;
  }

  .btn-tel .l-tel {
    font-size: 1.125rem;
    justify-content: center;
  }

  .btn-tel .l-tel img {
    width: 13px;
  }

  .btn-reserve {
    line-height: 1.3;
    width: 100%;
    padding: 7px 20px;
  }

  .btn-reserve .small {
    font-size: 0.875rem;
  }

  .btn-reserve .l-web {
    font-size: 1.125rem;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  font-size: 1.0625rem;
  line-height: 1;
  margin-bottom: 17px;
}

/*カテゴリーリスト*/
.list-category-links {
  display: grid;
  gap: 5px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.list-category-links>li {
  position: relative;
  padding-left: 15px;
}

.list-category-links>li::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 3px;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 0;
  rotate: 45deg;
}

.list-category-links ul {
  margin-top: 5px;
}

.list-category-links ul li {
  position: relative;
  padding-left: 15px;
}

.list-category-links ul li::before {
  content: "└";
  position: absolute;
  top: 5px;
  left: 0;
  color: #888;
  font-size: 0.625rem;
}

.list-category-links ul ul {
  margin-top: 5px;
  margin-bottom: 5px;
}

.list-category-links a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
}

@media (any-hover: hover) {
  .list-category-links a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

/*ブログ*/
.post-under-blog {
  display: grid;
  gap: 10px;
  margin-bottom: 50px;
}

.post-under-blog a {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  padding: 10px 70px 10px 10px;
  position: relative;
  transition: background-color 0.3s;
  z-index: 0;
}

@media (any-hover: hover) {
  .post-under-blog a:hover .post-ttl {
    color: #5d9165;
  }

  .post-under-blog a:hover::before {
    background-color: var(--color_white);
  }

  .post-under-blog a:hover::after {
    background-color: var(--color_primary);
    border-color: var(--color_primary);
  }
}

.post-under-blog a::before {
  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: 11px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
  z-index: 1;
}

.post-under-blog a::after {
  content: "";
  border: 1px solid var(--color_black);
  border-radius: 11px;
  width: 35px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: border-color 0.3s, background-color 0.3s;
  z-index: 0;
}

.post-under-blog .post-img img {
  border: 1px solid #eee;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}

.post-under-blog .post-data {
  display: flex;
  align-items: center;
  gap: 5px 10px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.post-under-blog time {
  display: block;
  color: #9BD0A3;
  font-family: var(--font_jp_d);
  font-size: 0.9375rem;
  line-height: 1;
  white-space: nowrap;
}

.post-under-blog .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-under-blog .category {
  display: inline-block;
  background-color: var(--color_bg02);
  border-radius: 2px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 1px 5px;
  text-align: center;
}

.post-under-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.3s;
}

.post-under-blog .no-post {
  padding: 25px 0;
}

@media (max-width: 800px) {
  .post-under-blog {
    margin-bottom: 30px;
  }

  .post-under-blog a {
    border-radius: 10px;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .post-under-blog a::before, .post-under-blog a::after {
    display: none;
  }

  .post-under-blog .post-img img {
    aspect-ratio: 7/5;
    border-radius: 6px;
  }

  .post-under-blog time {
    flex-shrink: 0;
    font-size: 0.6875rem;
  }

  .post-under-blog .category {
    font-size: 0.5rem;
    padding: 0 4px;
  }

  .post-under-blog .post-ttl {
    -webkit-line-clamp: 3;
    font-size: 0.8125rem;
  }

  .post-under-blog .no-post {
    padding: 25px 0;
  }
}

/*お知らせ*/
.post-under-news-wrap {
  margin-inline: auto;
  width: min(90%, 800px);
}

.post-under-news {
  display: grid;
  gap: 10px;
  margin-bottom: 50px;
}

.post-under-news a {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  align-items: center;
  padding: 30px 70px 30px 10px;
  position: relative;
  transition: background-color 0.3s;
}

@media (max-width: 800px) {
  .post-under-news a {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 16px 40px 16px 10px;
  }
}

@media (any-hover: hover) {
  .post-under-news a:hover .post-ttl {
    color: #5d9165;
  }

  .post-under-news a:hover::before {
    background-color: var(--color_white);
  }

  .post-under-news a:hover::after {
    background-color: var(--color_primary);
    border-color: var(--color_primary);
  }
}

.post-under-news a::before {
  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: 11px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
  z-index: 1;
}

.post-under-news a::after {
  content: "";
  border: 1px solid var(--color_black);
  border-radius: 11px;
  width: 35px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: border-color 0.3s, background-color 0.3s;
  z-index: 0;
}

.post-under-news time {
  display: block;
  color: #9BD0A3;
  font-family: var(--font_jp_d);
  font-size: 0.9375rem;
  line-height: 1;
  white-space: nowrap;
}

.post-under-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: color 0.3s;
}

@media (max-width: 800px) {
  .post-under-news .post-ttl {
    grid-column: 1/-1;
  }
}

@media (max-width: 800px) {
  .post-under-news {
    margin-bottom: 30px;
  }

  .post-under-news a {
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    padding: 16px 40px 16px 10px;
  }

  .post-under-news a::before {
    width: 8px;
    height: 6px;
    right: 20px;
  }

  .post-under-news a::after {
    width: 30px;
    height: 19px;
    right: 9px;
  }

  .post-under-news .category {
    width: auto;
  }

  .post-under-news .post-ttl {
    grid-column: 1/-1;
  }
}

/*詳細ページ*/
.layout-single-post {
  background-color: var(--color_white);
  border-radius: 20px;
  box-shadow: 0 0 10px #eee;
  padding: 5%;
  position: relative;
  width: min(90%, 800px);
  margin: 150px auto 0;
}

.layout-single-post::before {
  content: "";
  background-color: var(--color_tertiary);
  height: 5px;
  position: absolute;
  top: 15px;
  left: 50px;
  right: 50px;
  border-radius: 10px;
}

.layout-single-post .post-data {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  color: #9BD0A3;
  font-family: var(--font_jp_d);
  font-size: 0.875rem;
  line-height: 1.5;
  white-space: nowrap;
}

.layout-single-post .category-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.layout-single-post .category {
  display: inline-block;
  background-color: var(--color_bg02);
  border-radius: 2px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 1px 5px;
  text-align: center;
}

.layout-single-post .l-ttl {
  font-size: 1.75rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .layout-single-post {
    margin: 90px auto 0;
    padding: 50px 15px 20px;
  }

  .layout-single-post::before {
    left: 15px;
    right: 15px;
  }

  .layout-single-post .l-ttl {
    font-size: 1.5625rem;
    margin-bottom: 30px;
  }
}

/*ページャー*/
.post-number {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: #c8c8c8;
  font-size: 1rem;
  line-height: 1;
  position: relative;
  transition: color 0.3s;
}

.post-number span:hover,
.post-number a:hover {
  color: #333;
}

.post-number .current {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 15px;
}

.post-number .prev,
.post-number .next {
  width: 10px;
  height: 10px;
  margin-top: 5px;
}

.post-number .prev {
  margin-right: 10px;
}

.post-number .next {
  margin-left: 10px;
}

.post-number .prev::before,
.post-number .next::before {
  content: "";
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
}

.post-number .prev::before {
  -webkit-mask: url(../images/share/post_prev.svg) no-repeat center/contain;
  mask: url(../images/share/post_prev.svg) no-repeat center/contain;
}

.post-number .next::before {
  -webkit-mask: url(../images/share/post_next.svg) no-repeat center/contain;
  mask: url(../images/share/post_next.svg) no-repeat center/contain;
}

@media (max-width: 800px) {
  .post-number {
    gap: 15px;
    margin-top: 30px;
  }
}

.post-number-single {
  border-top: 1px solid var(--color_border);
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  text-align: center;
  margin-top: 5rem;
  padding-top: 5rem;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: var(--color_tertiary);
  color: var(--color_block);
  border: 1px solid var(--color_black);
  font-size: 0.8125rem;
  font-family: var(--font_en);
  line-height: 28px;
  max-width: 200px;
  height: 30px;
  width: 100%;
  transition: background-color 0.3s;
}

.post-number-single .all:hover {
  background: var(--color_base);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_black);
  width: 30px;
  height: 30px;
  position: relative;
  transition: background-color 0.3s;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  content: "";
  background-color: var(--color_black);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: background-color 0.3s;
  width: 10px;
  height: 10px;
}

.post-number-single .prev::before {
  right: 8px;
}

.post-number-single .next::before {
  left: 8px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background-color: var(--color_tertiary);
}

.post-number-single .prev::before {
  -webkit-mask: url(../images/share/post_next.svg) no-repeat center/contain;
  mask: url(../images/share/post_next.svg) no-repeat center/contain;
}

.post-number-single .next::before {
  -webkit-mask: url(../images/share/post_prev.svg) no-repeat center/contain;
  mask: url(../images/share/post_prev.svg) no-repeat center/contain;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 27px 20px 20px 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

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

/*------------
Gnavi
--------------*/
.gnavi {
  background-color: #FAF1BC;
  border-radius: 35px;
  box-shadow: 0 0 5px #EADB7B;
  padding: 16px 31px 11px 36px;
}

.gnavi-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.gnavi-links>li>a, .gnavi-links>li>p {
  display: flex;
  flex-direction: column;
  font-family: var(--font_jp);
  font-size: 1.375rem;
  line-height: 1.5;
}

.gnavi-links>li>a [lang=en], .gnavi-links>li>p [lang=en] {
  font-family: var(--font_jp);
  font-size: 0.75rem;
  line-height: 1;
  text-align: center;
}

.gnavi-links>li>a {
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .gnavi-links>li>a:hover {
    color: #4d8756;
  }
}

/*dropdown*/
.dropdown {
  position: relative;
  padding-right: 15px;
}

.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);
  position: absolute;
  bottom: 12px;
  right: 0;
}

.dropdown.is-open .sub-menu-wrap {
  pointer-events: auto;
  opacity: 1;
}

.dropdown .sub-menu-wrap {
  display: grid;
  grid-gap: 5px;
  pointer-events: none;
  background-color: #F9F1BC;
  border-radius: 10px;
  padding: 15px 31px 17px 17px;
  position: absolute;
  top: 70px;
  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-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
  height: 35px;
}

.dropdown .sub-menu-wrap::after {
  content: "";
  background-color: #F9F1BC;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 16px;
  height: 10px;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.dropdown .sub-menu-wrap.col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dropdown:last-child .sub-menu-wrap {
  right: 0;
  transform: translateX(0);
}

.dropdown .sub-menu {
  display: grid;
  gap: 7px;
  place-content: start;
}

.dropdown .sub-menu>li {
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  padding-left: 14px;
  position: relative;
}

.dropdown .sub-menu>li::before {
  content: "";
  background-color: #46453D;
  width: 6px;
  height: 1px;
  position: absolute;
  top: 11px;
  left: 0;
}

.dropdown .sub-menu>li>a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}

@media (any-hover: hover) {
  .dropdown .sub-menu>li>a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

@media (max-width: 1300px) {
  .gnavi-links {
    gap: 25px;
  }

  .gnavi-links>li>a, .gnavi-links>li>p {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 10px 2.5%;
  }

  .h-logo {
    max-width: 286px;
  }

  .gnavi {
    display: none;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_bg02);
  position: relative;
  padding: 60px 0 40px;
}

.f-contents {
  display: grid;
  grid-template-columns: 1fr 490px;
  gap: 30px 60px;
  margin-bottom: 50px;
  padding: 0 0 0 5vw;
}

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

.f-address {
  display: flex;
  align-items: end;
  gap: 28px;
  margin-bottom: 25px;
}

.f-txt {
  font-family: var(--font_jp_d);
  font-size: 1.5625rem;
  line-height: 1.5;
}

.f-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 18px;
}

.f-btn .btn {
  display: inline-block;
  background-color: var(--color_tertiary);
  border-radius: 39px;
  font-family: var(--font_jp);
  padding: 7px 36px;
  text-align: center;
  transition: background-color 0.3s;
}

.f-btn .btn .small {
  font-size: 1.0625rem;
}

.f-btn .btn .l-tel {
  display: flex;
  gap: 5px;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
}

@media (any-hover: hover) {
  .f-btn .btn:hover {
    background-color: oklch(from var(--color_tertiary) calc(l - 0.05) c h);
  }
}

.f-btn .btn02 {
  background-color: #FAF1BC;
}

.f-btn .btn02 .l-web {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
}

@media (any-hover: hover) {
  .f-btn .btn02:hover {
    background-color: oklch(from #FAF1BC calc(l - 0.05) c h);
  }
}

.f-btn .btn03 {
  display: flex;
  gap: 10px;
  background-color: #D4EAD0;
  padding: 15px 17px 13px 17px;
  position: relative;
}

.f-btn .btn03 .l-line {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
  display: grid;
}

@media (any-hover: hover) {
  .f-btn .btn03:hover {
    background-color: oklch(from #D4EAD0 calc(l - 0.05) c h);
  }
}

.f-btn-note {
  font-family: var(--font_base);
  font-size: 0.875rem;
  margin-top: 10px;
}

.site-map {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: space-between;
  padding: 0 0 0 5vw;
}

.f-links {
  display: grid;
  gap: 30px;
  min-width: 260px;
}

.f-links .link-ttl {
  border-bottom: 1px solid #D4EAD0;
  font-family: var(--font_jp);
  font-size: 1.375rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.f-links .sub-menu-wrap.col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.f-links .sub-menu {
  display: grid;
  gap: 10px;
  margin-bottom: auto;
}

.f-links .sub-menu>li {
  font-size: 1.0625rem;
  padding-left: 20px;
  position: relative;
}

.f-links .sub-menu>li::before {
  content: "";
  background-color: var(--color_primary);
  width: 6px;
  height: 1px;
  position: absolute;
  top: 14px;
  left: 0;
}

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

.copyright {
  font-size: 1rem;
  margin: 40px auto 0;
  text-align: center;
  width: min(90%, 1024px);
}

.pagetop {
  position: absolute;
  top: 30px;
  right: 79px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  letter-spacing: 0;
  line-height: 1;
  writing-mode: vertical-rl;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .pagetop:hover {
    color: #4d8756;
  }
}

@media (max-width: 1500px) {
  .pagetop {
    right: 8px;
  }
}

.pc-fixed {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 100;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.pc-fixed .btn,
.pc-fixed .ttl {
  display: grid;
  gap: 2px;
  background-color: var(--color_secondary);
  border-radius: 10px;
  font-family: var(--font_jp);
  font-size: 0.8125rem;
  padding: 12px 5px 7px;
  text-align: center;
  width: 78px;
  height: 78px;
  transition: background-color 0.3s;
}

.pc-fixed .btn img,
.pc-fixed .ttl img {
  margin-inline: auto;
}

.pc-fixed .item:nth-child(1) img {
  width: 22px;
}

.pc-fixed .item:nth-child(2) img {
  width: 38px;
}

.pc-fixed .item:nth-child(3) img {
  width: 38px;
}

.pc-fixed .item:nth-child(4) img {
  width: 31px;
}

@media (any-hover: hover) {
  .pc-fixed .btn:hover {
    background-color: oklch(from #FAF1BC calc(l - 0.05) c h);
  }
}

.pc-fixed .tel-btn {
  display: flex;
  align-items: stretch;
  transition: margin-right 0.5s var(--ease);
}

.pc-fixed .tel-btn .ttl {
  flex-shrink: 0;
  transition: background-color 0.3s, border-radius 0.3s;
}

.pc-fixed .tel-btn .number {
  display: flex;
  align-items: center;
  background-color: var(--color_secondary);
  font-family: var(--font_jp);
  font-size: 2.1875rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  max-width: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.5s var(--ease), padding 0.5s var(--ease), opacity 0.3s ease;
}

@media (any-hover: hover) {
  .pc-fixed .tel-btn:hover {
    margin-right: -20px;
  }

  .pc-fixed .tel-btn:hover .number {
    max-width: 350px;
    padding: 0 30px 0 15px;
    opacity: 1;
  }

  .pc-fixed .tel-btn:hover .ttl {
    border-radius: 10px 0 0 10px;
  }
}

@media (max-width: 1200px) {
  .site-map {
    justify-content: start;
    padding: 0;
  }

  .pagetop {
    top: auto;
    bottom: 74px;
    right: 20px;
    gap: 15px;
    font-size: 0.875rem;
  }

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

  .pc-fixed {
    top: auto;
    bottom: 20%;
    transform: none;
  }

  .pc-fixed .btn,
  .pc-fixed .ttl {
    font-size: 0.6875rem;
    width: 83px;
    height: 83px;
  }
}

@media (max-width: 1024px) {
  .footer {
    padding: 60px 0 65px;
  }

  .f-contents {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .pc-fixed {
    display: none;
  }
}

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

  .f-contents {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }

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

  .f-txt {
    font-size: 1.125rem;
  }

  .f-btn {
    flex-direction: column;
    gap: 15px;
  }

  .f-btn .btn {
    line-height: 1.3;
    width: 100%;
    padding: 7px 20px;
  }

  .f-btn .btn .l-tel {
    font-size: 1.25rem;
    justify-content: center;
  }

  .f-btn .btn .small {
    font-size: 0.875rem;
  }

  .f-btn .btn02 .l-web {
    font-size: 1.25rem;
  }

  .f-btn .btn03 {
    justify-content: center;
  }

  .f-btn .btn03 .l-line {
    font-size: 1.25rem;
  }

  .f-btn .btn03 .note {
    font-size: 0.75rem;
    bottom: -22px;
  }

  .site-map {
    flex-direction: column;
    align-items: normal;
    gap: 30px;
  }

  .f-links .link-ttl {
    font-size: 1.25rem;
    padding-bottom: 5px;
  }

  .f-links .sub-menu>li {
    font-size: 1rem;
    padding-left: 14px;
  }

  .f-links .sub-menu>li::before {
    top: 12px;
  }

  .f-links .sub-menu-wrap.col2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .f-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.sp-navi {
  display: none;
}

@media (max-width: 1024px) {
  :root {
    --navi-background: #FAF1BC;
    --navi-border-color: #fff;
    --navi-text-color: #333;
    --svg-stroke: #333;
    --menu-btn: #fff;
  }

  .sp-navi {
    display: block;
  }

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

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

  .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    font-size: 0.625rem;
    font-family: var(--font_jp);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item:last-of-type {
    border-right: none;
  }

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

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

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

  .sp-navi-btns .item .img img {
    height: 16px;
    margin-bottom: 7px;
  }

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

  .sp-navi-btns .item:nth-of-type(3) .img img {
    height: 23px;
    margin-bottom: 3px;
  }

  .sp-navi-btns .item:nth-of-type(4) .img img, .sp-navi-btns .item:nth-of-type(5) .img img {
    height: 17px;
  }

  .sp-menu-btn {
    background-color: var(--color_primary);
    border-radius: 0 0 0 10px;
    width: 53px;
    height: 54px;
    position: fixed;
    top: 0;
    right: 0;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px;
    z-index: 9999;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sp-details::details-content {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 15px;
    transition: 0.3s ease;
  }

  .sp-details[open]::details-content {
    background-color: rgba(0, 0, 0, 0.015);
    grid-template-rows: 1fr;
    padding: 15px;
  }

  .sp-details[open] .plus {
    rotate: 45deg;
  }

  .sp-details-btn {
    display: flex;
    align-items: center;
    padding: 10px 30px 10px 0;
    position: relative;
    min-height: 50px;
    width: 100%;
  }

  .sp-details-btn .text {
    display: block;
  }

  .sp-details-btn .plus {
    display: block;
    background-color: var(--color_primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    transition: 0.3s;
    transform-origin: 50% 0;
  }

  .sp-details-btn .plus::after {
    content: "";
    background-color: var(--color_white);
    -webkit-mask: url(../images/share/sp_navi_plus.svg) no-repeat center/contain;
    mask: url(../images/share/sp_navi_plus.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    transform: translate(-50%, -50%);
  }

  .sp-sub-menu {
    display: grid;
    grid-gap: 5px;
    font-size: 0.875rem;
  }

  .sp-sub-menu a {
    display: block;
    position: relative;
    padding-left: 20px;
  }

  .sp-sub-menu a::before {
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: var(--color_primary);
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
  }
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 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: 120px;
}

.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] {
  color: #9BD0A3;
  font-size: 1.25rem;
}

.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 .splide__slide img {
  width: 100%;
}

.hero .splide__controls {
  position: absolute;
  right: 20px;
  bottom: 15px;
  gap: 10px;
  margin-top: 0;
}

.hero-catch01 {
  width: 40%;
  height: auto;
  position: absolute;
  top: 40%;
  right: 12%;
  transform: translateY(-50%);
}

.hero-catch02 {
  position: absolute;
  top: 19%;
  left: 7%;
}

.hero-catch02 .txt {
  font-family: var(--font_jp);
  font-size: clamp(1.5625rem, 2vw, 2.1875rem);
  letter-spacing: 0.2em;
  line-height: 2;
  font-feature-settings: normal;
  writing-mode: vertical-rl;
  text-shadow: 0 0 8px rgba(255, 255, 255, 1), 0 0 12px rgba(255, 255, 255, 0.8);
}

.hero-catch03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: fit-content;
  position: absolute;
  right: 11%;
  bottom: 24%;
}

.hero-catch03 .item {
  background-color: var(--color_white);
  border-radius: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  padding: 33px 15px 28px;
  text-align: center;
}

.hero-catch03 .item img {
  margin-inline: auto;
}

.hero-catch03 .txt {
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 1.3;
  margin-top: 7px;
}

.hero-catch03 .txt span {
  font-size: 1.25rem;
}

@media (max-width: 1350px) {
  .hero-catch03 {
    gap: 10px;
    bottom: 15%;
  }

  .hero-catch03 .item {
    padding: 20px 10px 16px;
  }

  .hero-catch03 .txt {
    font-size: 0.75rem;
    margin-top: 4px;
  }

  .hero-catch03 .txt span {
    font-size: 1rem;
  }
}

@media (max-width: 800px) {
  .hero {
    margin: 0 0 min(35vw, 155px);
  }

  .hero-catch01 {
    width: 85%;
    top: auto;
    bottom: 11%;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .hero-catch02 {
    top: 15%;
    left: 5%;
  }

  .hero-catch02 .txt {
    font-size: 1.25rem;
  }

  .hero-catch03 {
    max-width: 470px;
    width: calc(100% - 30px);
    bottom: max(-33vw, -145px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-catch03 .item {
    border: 1px solid var(--color_border);
    padding: 20px 7px 15px;
  }

  .hero-catch03 .item img {
    height: clamp(30px, 7.5vw, 60px);
  }

  .hero-catch03 .txt {
    font-size: clamp(0.625rem, 1.5vw, 0.75rem);
  }

  .hero-catch03 .txt span {
    font-size: clamp(0.75rem, 2vw, 1rem);
  }
}

.contents {
  background-color: var(--color_white);
}

/*------------
Components
--------------*/
.t-h2 {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 75px;
}

.t-h2 [lang=en] {
  color: #9BD0A3;
  font-size: clamp(4.375rem, 6.1vw, 6.875rem);
  line-height: 1;
  margin-bottom: 20px;
}

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

.t-h2.yellow [lang=en] {
  color: var(--color_secondary);
}

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

  .t-h2 [lang=en] {
    font-size: 2.1875rem;
    margin-bottom: 3px;
  }

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

/*------------
Section
--------------*/
.sec01 {
  padding: 0 0 100px;
}

.sec01-inner {
  background-color: var(--color_white);
  border-radius: 30px 30px 0 0;
  padding: 8% 7%;
  position: relative;
  margin-top: -81px;
  z-index: 1;
}

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

.l-sec01 .l-ttl {
  border-bottom: 1px solid var(--color_bg02);
  font-size: 1.6875rem;
  padding: 0 0 10px 0;
}

.l-sec01 .l-ttl02 {
  border-bottom: 1px solid var(--color_bg02);
  padding: 0 0 10px 0;
}

.l-sec01 .l-ttl02 [lang=en] {
  font-family: var(--font_jp);
  font-size: 0.75rem;
}

.l-sec01 .l-ttl02 .jp {
  font-size: 1.6875rem;
}

.l-sec01 .l-dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  font-family: var(--font_jp_d);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.l-sec01 .l-dl dt,
.l-sec01 .l-dl dd {
  border-bottom: 1px solid var(--color_bg02);
  padding: 18px 0;
}

.l-sec01 .l-dl dd {
  font-size: 1.0625rem;
}

.l-sec01 .l-btn {
  margin-top: 30px;
}

.l-sec01 .l-btn .btn-more {
  min-width: 170px;
}

.l-sec01 .business-calendar-box-wrap {
  margin-top: 25px;
}

.sec01-box {
  background-color: var(--color_bg02);
  border-radius: 30px;
  padding: 50px 50px 65px;
}

.sec01-box .box-ttl {
  font-size: 1.6875rem;
  margin: 0 0 27px;
  text-align: center;
}

.sec01-box .l-txt {
  font-size: 1.375rem;
  margin-bottom: 30px;
  text-align: center;
}

.sec01-box .l-txt span {
  text-decoration: underline;
  text-decoration-color: var(--color_primary);
  text-decoration-thickness: 9px;
  text-underline-offset: -5px;
}

.sec01-box .sec01-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.sec01-box .sec01-btn .btn {
  cursor: pointer;
  display: inline-block;
  background-color: var(--color_tertiary);
  border-radius: 39px;
  font-family: var(--font_jp);
  padding: 7px 46px;
  text-align: center;
  transition: background-color 0.3s;
}

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

.sec01-box .sec01-btn .btn .l-tel {
  display: flex;
  gap: 5px;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
}

@media (any-hover: hover) {
  .sec01-box .sec01-btn .btn:hover {
    background-color: oklch(from var(--color_tertiary) calc(l - 0.05) c h);
  }
}

.sec01-box .sec01-btn .btn02 {
  background-color: #FAF1BC;
}

.sec01-box .sec01-btn .btn02 .l-web {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
}

@media (any-hover: hover) {
  .sec01-box .sec01-btn .btn02:hover {
    background-color: oklch(from #FAF1BC calc(l - 0.05) c h);
  }
}

.sec01-box .sec01-btn .btn03 {
  display: flex;
  gap: 10px;
  background-color: #D4EAD0;
  position: relative;
}

.sec01-box .sec01-btn .btn03 .l-line {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  display: grid;
}

.sec01-box .sec01-btn .btn03 .note {
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font_base);
  font-size: 0.875rem;
  width: -moz-max-content;
  width: max-content;
}

@media (any-hover: hover) {
  .sec01-box .sec01-btn .btn03:hover {
    background-color: oklch(from #D4EAD0 calc(l - 0.05) c h);
  }
}

@media (max-width: 1400px) {
  .sec01-inner {
    margin-top: -15px;
  }
}

@media (max-width: 1024px) {
  .sec01-inner {
    padding: 5% 4%;
  }

  .l-sec01 {
    grid-template-columns: repeat(auto-fit, minmax(365px, 1fr));
  }
}

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

  .sec01-inner {
    border-radius: 0;
    padding: 50px 0;
    margin: 0;
  }

  .l-sec01 {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .l-sec01 .l-ttl {
    font-size: 1.375rem;
  }

  .l-sec01 .l-ttl02 .jp {
    font-size: 1.375rem;
  }

  .l-sec01 .l-dl dd {
    font-size: 0.9375rem;
  }

  .sec01-box {
    border-radius: 20px;
    padding: 30px 20px 50px;
  }

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

  .sec01-box .l-txt {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: left;
  }

  .sec01-box .sec01-btn {
    flex-direction: column;
    gap: 15px;
  }

  .sec01-box .sec01-btn .btn {
    line-height: 1.3;
    width: 100%;
    padding: 7px 20px;
  }

  .sec01-box .sec01-btn .btn .l-tel {
    font-size: 1.25rem;
    justify-content: center;
  }

  .sec01-box .sec01-btn .btn .small {
    font-size: 0.875rem;
  }

  .sec01-box .sec01-btn .btn02 .l-web {
    font-size: 1.25rem;
  }

  .sec01-box .sec01-btn .btn03 {
    justify-content: center;
  }

  .sec01-box .sec01-btn .btn03 .l-line {
    font-size: 1.25rem;
  }

  .sec01-box .sec01-btn .btn03 .note {
    font-size: 0.75rem;
    bottom: -22px;
  }
}

.sec02 {
  background-color: var(--color_bg01);
  overflow: hidden;
  padding: 100px 0;
  position: relative;
  z-index: 0;
}

.sec02::before {
  content: "";
  background: url(../images/sec02_deco01.png) no-repeat center/contain;
  width: clamp(215px, 24.1vw, 434px);
  height: auto;
  aspect-ratio: 465/398;
  position: absolute;
  top: 9%;
  left: -1%;
  z-index: -1;
}

.sec02::after {
  content: "";
  background: url(../images/sec02_deco02.png) no-repeat center/contain;
  width: clamp(215px, 25.8vw, 465px);
  height: auto;
  aspect-ratio: 434/545;
  position: absolute;
  top: 10%;
  right: 0;
  z-index: -1;
}

.sec02 .t-h2 {
  margin-bottom: 65px;
}

.sec02 .l-txt {
  font-family: var(--font_jp_m);
  font-size: 2.375rem;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
}

.sec02 .l-txt02 {
  font-size: 1.375rem;
  text-align: center;
}

.sec02 .l-btn {
  margin: 50px 0 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.sec02_slider img {
  border-radius: 10px;
}

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

  .sec02::before {
    width: 160px;
    top: 4%;
  }

  .sec02::after {
    width: 125px;
  }

  .sec02 .t-h2 {
    margin-bottom: 30px;
  }

  .sec02 .l-txt {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .sec02 .l-txt02 {
    font-size: 1rem;
    text-align: left;
  }

  .sec02 .l-btn {
    gap: 10px 20px;
    justify-content: start;
    margin: 30px 0 40px;
  }
}

.sec03 {
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}

.sec03::before {
  content: "";
  background: url(../images/sec03_deco01.png) no-repeat center/contain;
  width: clamp(215px, 29.7vw, 535px);
  height: auto;
  aspect-ratio: 535/369;
  position: absolute;
  top: 4%;
  right: 0;
  z-index: -1;
}

.l-sec03 {
  display: grid;
  grid-template-columns: 50% calc(50% - 52px);
  grid-template-areas: "img desc";
  gap: 52px;
  position: relative;
}

.l-sec03 .l-img {
  grid-area: img;
}

.l-sec03 .l-img img {
  border-radius: 30px;
  margin-inline: auto;
}

.l-sec03 .l-desc {
  grid-area: desc;
}

.l-sec03 .l-ttl {
  font-family: var(--font_jp_m);
  font-size: clamp(1.75rem, 2.1vw, 2.375rem);
  line-height: 1.8;
  margin-bottom: 40px;
}

.l-sec03 .l-inner {
  max-width: 451px;
}

.l-sec03 .l-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 25px;
}

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

.l-sec03.reverse .l-inner {
  max-width: 491px;
}

.l-sec03+.l-sec03 {
  margin-top: 75px;
}

.l-sec03:first-of-type::before {
  content: "";
  background: url(../images/sec03_deco02.png) no-repeat center/contain;
  width: clamp(130px, 14.2vw, 256px);
  height: auto;
  aspect-ratio: 256/347;
  position: absolute;
  top: 20%;
  left: -25%;
  z-index: -1;
}

.l-sec03:nth-of-type(3)::before {
  content: "";
  background: url(../images/sec03_deco03.png) no-repeat center/contain;
  width: clamp(135px, 12.8vw, 232px);
  height: auto;
  aspect-ratio: 232/217;
  position: absolute;
  top: -11%;
  right: -14%;
  z-index: -1;
}

.l-sec03:nth-of-type(3)::after {
  content: "";
  background: url(../images/sec03_deco04.png) no-repeat center/contain;
  width: clamp(267px, 26.3vw, 473px);
  height: auto;
  aspect-ratio: 473/400;
  position: absolute;
  top: 36%;
  left: -34%;
  rotate: 10deg;
  z-index: -1;
}

@media (max-width: 1024px) {
  .l-sec03:first-of-type::before {
    top: auto;
    bottom: 0;
    left: -5%;
  }

  .l-sec03:nth-of-type(3)::after {
    left: -15%;
  }
}

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

  .sec03::before {
    width: 155px;
    top: 0;
  }

  .l-sec03 {
    grid-template-columns: 1fr;
    grid-template-areas: "img""desc";
    gap: 25px;
  }

  .l-sec03 .l-img img {
    border-radius: 20px;
  }

  .l-sec03 .l-ttl {
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .l-sec03 .l-inner {
    max-width: none;
  }

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

  .l-sec03.reverse .l-inner {
    max-width: none;
  }

  .l-sec03+.l-sec03 {
    margin-top: 50px;
  }

  .l-sec03:first-of-type::before {
    width: 117px;
    left: auto;
    bottom: -5%;
    right: -15%;
    transform: scale(-1, 1);
  }

  .l-sec03:nth-of-type(3)::before {
    width: 140px;
    top: -16%;
  }

  .l-sec03:nth-of-type(3)::after {
    width: 210px;
    top: auto;
    bottom: -5%;
    left: auto;
    right: -10%;
    transform: scale(-1, 1);
  }
}

.sec04 {
  background-color: var(--color_bg02);
  padding: 100px 0;
}

.sec04 .t-h2 {
  margin-bottom: 70px;
}

.sec04-txt {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 65px;
}

.sec04-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px 47px;
  margin-bottom: 25px;
}

.sec04-list a {
  display: block;
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 40px 20px;
  position: relative;
  transition: transform 0.3s;
}

.sec04-list a::before {
  content: "";
  background-color: #D4EAD0;
  -webkit-mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 36px;
  height: 36px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

@media (any-hover: hover) {
  .sec04-list a:hover {
    transform: translateY(-10px);
  }
}

.sec04-list .l-img {
  margin-bottom: 10px;
}

.sec04-list .l-img img {
  margin-inline: auto;
}

.sec04-list .l-ttl {
  font-size: 1.6875rem;
  text-align: center;
  margin-bottom: 15px;
}

.sec04-list .list-check {
  margin: 0 0 0 auto;
  width: calc(100% - 60px);
}

.sec04-link {
  display: grid;
  grid-template-columns: 166px 1fr;
  align-items: center;
  gap: 67px;
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 50px 85px;
  position: relative;
  transition: transform 0.3s;
}

.sec04-link::before {
  content: "";
  background-color: #D4EAD0;
  -webkit-mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 36px;
  height: 36px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

@media (any-hover: hover) {
  .sec04-link:hover {
    transform: translateY(-10px);
  }
}

.sec04-link .l-ttl {
  font-size: 1.6875rem;
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .sec04-list .list-check {
    margin: 0;
    width: auto;
  }
}

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

  .sec04 .t-h2 {
    margin-bottom: 40px;
  }

  .sec04-txt {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .sec04-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .sec04-list a {
    border-radius: 15px;
    padding: 25px 10px;
  }

  .sec04-list a::before {
    width: 25px;
    height: 25px;
  }

  .sec04-list .l-img img {
    width: 85px;
  }

  .sec04-list .l-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .sec04-link {
    grid-template-columns: 85px 1fr;
    gap: 20px;
    padding: 25px 20px;
    border-radius: 15px;
  }

  .sec04-link .l-img img {
    width: 85px;
  }

  .sec04-link .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .sec04-link p {
    font-size: 0.875rem;
  }

  .sec04-link::before {
    width: 25px;
    height: 25px;
  }
}

.sec05 {
  background-color: var(--color_bg01);
  padding: 100px 0;
}

.sec05 .t-h2 {
  margin-bottom: 60px;
}

.sec05-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 55px;
}

.sec05-list a {
  background-color: #FAF1BC;
  border-radius: 30px;
  padding: 45px 25px 80px;
  position: relative;
  transition: transform 0.3s;
}

.sec05-list a::before {
  content: "";
  background-color: #D3C46D;
  -webkit-mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 36px;
  height: 36px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

@media (any-hover: hover) {
  .sec05-list a:hover {
    transform: translateY(-10px);
  }
}

.sec05-list .l-ttl {
  font-size: 1.6875rem;
  margin-bottom: 23px;
  text-align: center;
}

.sec05-check {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.sec05-check>li {
  background-color: var(--color_white);
  border-radius: 24px;
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  line-height: 1.5;
  padding: 10px 10px 10px 44px;
  position: relative;
}

.sec05-check>li::before {
  content: "";
  background: url(../images/share/icon_check02.svg) no-repeat center/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 12px;
  left: 12px;
}

@media (max-width: 1024px) {
  .sec05-check {
    grid-template-columns: 1fr;
  }
}

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

  .sec05 .t-h2 {
    margin-bottom: 30px;
  }

  .sec05-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec05-list a {
    border-radius: 20px;
    padding: 25px 20px 45px;
  }

  .sec05-list a::before {
    width: 25px;
    height: 25px;
  }

  .sec05-list .l-ttl {
    font-size: 1.375rem;
    margin-bottom: 15px;
  }

  .sec05-check>li {
    font-size: 0.9375rem;
    padding: 8px 8px 8px 38px;
  }

  .sec05-check>li::before {
    width: 18px;
    height: 18px;
    top: 10px;
    left: 10px;
  }
}

.sec06 {
  overflow: hidden;
  padding: 100px 0 90px;
  position: relative;
  z-index: 0;
}

.sec06::before {
  content: "";
  background: url(../images/sec06_deco01.png) no-repeat center/contain;
  width: clamp(152px, 16.2vw, 292px);
  height: auto;
  aspect-ratio: 292/313;
  position: absolute;
  top: 8%;
  left: 2%;
  z-index: -1;
}

.sec06::after {
  content: "";
  background: url(../images/sec06_deco02.png) no-repeat center/contain;
  width: clamp(133px, 15.4vw, 277px);
  height: auto;
  aspect-ratio: 277/488;
  position: absolute;
  top: 11%;
  right: -1%;
  rotate: -6deg;
  z-index: -1;
}

.l-sec06 {
  display: grid;
  grid-template-columns: 1fr 54%;
  grid-template-areas: "img desc";
  gap: 60px;
  padding: 0 0 0 5vw;
  position: relative;
  z-index: 0;
}

.l-sec06::before {
  content: "";
  background: url(../images/sec06_deco03.png) no-repeat center/contain;
  width: clamp(163px, 12.2vw, 220px);
  height: auto;
  aspect-ratio: 220/193;
  position: absolute;
  bottom: -13%;
  right: -4%;
  z-index: -1;
}

.l-sec06 .l-img {
  grid-area: img;
}

.l-sec06 .l-img img {
  border-radius: 30px;
  margin-inline: auto;
}

.l-sec06 .l-desc {
  grid-area: desc;
}

.l-sec06 .l-desc p+p {
  margin-top: 1em;
}

.l-sec06 .l-btn {
  margin-top: 40px;
}

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

  .sec06::before {
    width: 160px;
  }

  .sec06::after {
    width: 150px;
  }

  .l-sec06 {
    grid-template-columns: 1fr;
    grid-template-areas: "img""desc";
    gap: 25px;
    padding: 0;
  }

  .l-sec06::before {
    width: 120px;
  }

  .l-sec06 .l-img img {
    border-radius: 20px;
  }

  .l-sec06 .l-btn {
    margin-top: 25px;
  }
}

.sec07 {
  background-color: var(--color_bg01);
  overflow: hidden;
  padding: 115px 0 80px;
  position: relative;
  z-index: 0;
}

.sec07::before {
  content: "";
  background: url(../images/sec07_deco01.png) no-repeat center/contain;
  width: clamp(218px, 25vw, 449px);
  height: auto;
  aspect-ratio: 449/648;
  position: absolute;
  bottom: -12%;
  left: -9%;
  z-index: -1;
}

.l-sec07 {
  display: grid;
  grid-template-columns: 1fr 41%;
  grid-template-areas: "desc img";
  gap: 60px;
  padding: 0 0 0 5vw;
  position: relative;
  z-index: 0;
}

.l-sec07::before {
  content: "";
  background: url(../images/sec07_deco02.png) no-repeat center/contain;
  width: 70px;
  height: auto;
  aspect-ratio: 70/90;
  position: absolute;
  top: -138px;
  right: 14%;
  z-index: -1;
}

.l-sec07::after {
  content: "";
  background: url(../images/sec07_deco03.png) no-repeat center/contain;
  width: 75px;
  height: auto;
  aspect-ratio: 75/97;
  position: absolute;
  bottom: -3%;
  right: -10%;
  z-index: -1;
}

.l-sec07 .l-img {
  grid-area: img;
}

.l-sec07 .l-img img {
  border-radius: 10px;
  margin-inline: auto;
}

.l-sec07 .l-desc {
  grid-area: desc;
}

.l-sec07 .l-ttl {
  margin-bottom: 35px;
}

.l-sec07 .l-ttl [lang=en] {
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: clamp(4.375rem, 6.1vw, 6.875rem);
  line-height: 1;
  margin-bottom: 20px;
}

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

.l-sec07 .l-btn {
  margin-top: 35px;
}

@media (max-width: 1024px) {
  .l-sec07 {
    padding: 0;
  }
}

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

  .sec07::before {
    width: 180px;
    bottom: -6%;
  }

  .l-sec07 {
    grid-template-columns: 1fr;
    grid-template-areas: "img""desc";
    gap: 25px;
    padding: 0;
  }

  .l-sec07 .l-ttl {
    margin-bottom: 20px;
  }

  .l-sec07 .l-ttl [lang=en] {
    font-size: 2.1875rem;
    margin-bottom: 3px;
  }

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

  .l-sec07::before {
    width: 45px;
    top: -8%;
  }

  .l-sec07::after {
    width: 45px;
    right: 0;
  }
}

.sec08 {
  background-color: var(--color_bg02);
  padding: 100px 0 120px;
}

.l-sec08 {
  display: grid;
  grid-template-columns: 1fr 41%;
  gap: 10%;
  padding: 0 0 0 5vw;
}

.l-sec08 .l-img img {
  border-radius: 20px;
  margin-inline: auto;
}

.l-sec08 .item+.item {
  margin-top: 20px;
}

.l-sec08 .l-ttl {
  border-bottom: 1px solid #D4EAD0;
  font-size: 1.375rem;
  margin-bottom: 10px;
  padding-bottom: 7px;
}

.l-sec08 .l-ttl02 {
  color: var(--color_primary);
  font-size: 1.375rem;
  margin: 20px 0 15px;
}

.l-sec08 p {
  font-size: 1.0625rem;
}

.l-sec08 .l-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  margin-top: 45px;
}

.l-sec08 .l-btn .btn-more {
  min-width: 170px;
}

.sec08-list {
  display: grid;
  gap: 10px;
}

.sec08-list>li {
  font-size: 1.0625rem;
  padding-left: 20px;
  position: relative;
}

.sec08-list>li::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 10px;
  left: 0;
}

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

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

  .l-sec08 .l-ttl {
    font-size: 1.25rem;
  }

  .l-sec08 .l-ttl02 {
    font-size: 1.125rem;
  }

  .l-sec08 p {
    font-size: 0.9375rem;
  }

  .l-sec08 .l-btn {
    gap: 10px 20px;
    margin-top: 30px;
  }

  .sec08-list>li {
    font-size: 0.9375rem;
  }

  .sec08-list>li::before {
    top: 7px;
  }
}

.sec09 {
  background-color: var(--color_bg01);
  padding: 100px 0;
}

.sec09 .l-btn {
  margin-top: 60px;
  text-align: center;
}

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

  .sec09 .l-btn {
    margin-top: 30px;
  }
}

.sec10 {
  overflow: hidden;
  padding: 125px 0;
  position: relative;
  z-index: 0;
}

.sec10::before {
  content: "";
  background: url(../images/sec10_deco01.png) no-repeat center/contain;
  width: clamp(140px, 12.4vw, 224px);
  height: auto;
  aspect-ratio: 224/403;
  position: absolute;
  bottom: 7%;
  left: 3%;
  z-index: -1;
}

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

  .sec10::before {
    width: 104px;
    left: auto;
    right: 0;
    bottom: 0;
  }
}

.sec11 {
  background-color: var(--color_bg01);
  padding: 60px 0 100px;
}

.sec11-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 11px;
}

.sec11-list a {
  display: grid;
  background-color: #FAF1BC;
  border-radius: 10px;
  padding: 23px 10px 35px;
  position: relative;
  width: 390px;
  transition: transform 0.3s;
}

.sec11-list a::before {
  content: "";
  background-color: #D3C46D;
  -webkit-mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 36px;
  height: 36px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.sec11-list a:nth-of-type(5) {
  padding: 23px 10px 30px;
}

.sec11-list a:nth-of-type(5) .l-ttl {
  margin-bottom: 3px;
}

.sec11-list a:nth-of-type(5) p {
  margin-bottom: 9px;
}

@media (any-hover: hover) {
  .sec11-list a:hover {
    transform: translateY(-10px);
  }
}

.sec11-list .l-ttl {
  font-size: 1.6875rem;
  margin-bottom: 10px;
  text-align: center;
}

.sec11-list p {
  font-size: 1.0625rem;
  margin-bottom: 13px;
  text-align: center;
}

.sec11-list .l-tel {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  line-height: 1;
  margin: auto;
  padding-left: 22px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.sec11-list .l-tel::before {
  content: "";
  background-color: #D3C46D;
  -webkit-mask: url(../images/share/icon_tel_b.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel_b.svg) no-repeat center/contain;
  width: 17px;
  height: 22px;
  position: absolute;
  top: 0;
  left: 0;
}

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

  .sec11-list {
    gap: 10px;
  }

  .sec11-list a {
    width: 100%;
    padding: 20px 15px 25px;
  }

  .sec11-list a::before {
    width: 25px;
    height: 25px;
  }

  .sec11-list a:nth-of-type(5) {
    padding: 20px 15px 25px;
  }

  .sec11-list .l-ttl {
    font-size: 1.375rem;
  }

  .sec11-list p {
    font-size: 0.875rem;
  }

  .sec11-list .l-tel {
    font-size: 1.25rem;
  }
}

.t-news-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: 1fr 50px;
  grid-template-areas: "ttl body""btn body";
  gap: 0;
}

.t-news-layout .l-ttl {
  grid-area: ttl;
}

.t-news-layout .l-ttl [lang=en] {
  color: #9BD0A3;
  font-family: var(--font_en);
  font-size: 2.8125rem;
  line-height: 1;
  margin-bottom: 8px;
}

.t-news-layout .l-ttl .jp {
  font-family: var(--font_jp_d);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.t-news-layout .l-body {
  grid-area: body;
}

.t-news-layout .l-btn {
  grid-area: btn;
}

.t-news-layout .l-btn .btn-more {
  min-width: 170px;
}

@media (max-width: 800px) {
  .t-news-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "ttl""body""btn";
    gap: 30px;
  }

  .t-news-layout .l-ttl [lang=en] {
    font-size: 2.1875rem;
    margin-bottom: 3px;
  }

  .t-news-layout .l-ttl .jp {
    font-size: 1.25rem;
  }
}

.post-top-news {
  display: grid;
}

.post-top-news a {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--color_bg02);
  padding: 18px 0;
}

.post-top-news time {
  color: #9BD0A3;
  font-family: var(--font_jp_d);
  font-size: 0.9375rem;
  display: inline-block;
  white-space: nowrap;
}

.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_jp_d);
  font-size: 1.0625rem;
}

.post-top-news .no-post {
  padding: 18px 0;
}

@media (any-hover: hover) {
  .post-top-news a:hover .post-ttl {
    text-decoration: underline;
  }
}

@media (max-width: 800px) {
  .post-top-news a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

  .post-top-news time {
    font-size: 0.875rem;
  }

  .post-top-news .post-ttl {
    -webkit-line-clamp: 2;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

.post-top-blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.post-top-blog .post-img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}

.post-top-blog .post-img img {
  aspect-ratio: 7/5;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s;
}

.post-top-blog time {
  display: inline-block;
  color: #aaa;
  font-family: var(--font_jp_d);
  font-size: 1.0625rem;
  line-height: 1;
  margin-bottom: 8px;
}

.post-top-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_base);
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 11px;
}

.post-top-blog .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-top-blog .category {
  text-box: trim-both cap alphabetic;
  background-color: var(--color_bg02);
  border-radius: 2px;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1;
  padding: 5px 9px;
}

.post-top-blog .no-post {
  padding: 20px 0;
}

@media (any-hover: hover) {
  .post-top-blog a:hover .post-img img {
    scale: 1.1;
  }
}

@media (max-width: 800px) {
  .post-top-blog {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--color_border);
  }

  .post-top-blog a {
    border-bottom: 1px solid var(--color_border);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 10px 0;
  }

  .post-top-blog .post-img {
    margin-bottom: 0;
  }

  .post-top-blog .post-img img {
    aspect-ratio: 7/5;
  }

  .post-top-blog .post-desc {
    line-height: 1;
  }

  .post-top-blog time {
    text-box: trim-both cap alphabetic;
    font-size: 0.6875rem;
    margin-bottom: 5px;
  }

  .post-top-blog .post-ttl {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }

  .post-top-blog .category {
    font-size: 0.625rem;
    padding: 3px 6px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  display: grid;
  place-content: center;
  background: url(../images/under/page-ttl-bg.jpg) no-repeat center/cover;
  margin: 120px 0 0;
  padding: 90px 5% 70px;
  position: relative;
  text-align: center;
  z-index: 0;
}

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

.page-ttl [lang=en] {
  text-box: trim-both cap alphabetic;
  color: #9BD0A3;
  font-size: clamp(3.4375rem, 6.1vw, 6.875rem);
  margin-bottom: 35px;
}

.page-ttl .jp {
  font-family: var(--font_jp);
  font-size: 1.6875rem;
}

.breadcrumb {
  margin: 0 auto 5px;
  position: relative;
  width: min(90%, 1024px);
  z-index: 1;
}

.breadcrumb ul {
  font-size: 0.875rem;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

.u-contents {
  background-color: var(--color_bg01);
  padding: 0 0 100px;
}

.u-contents p+p {
  margin-top: 1em;
}

@media (max-width: 800px) {
  .page-header {
    overflow: hidden;
    margin: 55px 0 0;
    padding: 50px 3%;
  }

  .page-ttl [lang=en] {
    font-size: 2.1875rem;
    margin-bottom: 5px;
  }

  .page-ttl .jp {
    font-size: 1rem;
  }

  .u-contents {
    padding: 0 0 50px;
  }
}

.u-h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  padding-bottom: 12px;
  position: relative;
  text-align: center;
}

.u-h2::before {
  content: "";
  background-color: var(--color_primary);
  width: 60px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.postdata h2 {
  font-size: 1.625rem;
  margin-bottom: 40px;
  padding-bottom: 12px;
  position: relative;
}

.postdata h2::before {
  content: "";
  background-color: var(--color_primary);
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.u-h3,
.postdata h3 {
  border-bottom: 2px solid var(--color_bg02);
  font-size: 1.625rem;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.postdata h3 {
  font-size: 1.375rem;
}

.u-h4,
.postdata h4 {
  font-size: 1.125rem;
  padding-left: 14px;
  position: relative;
  margin-bottom: 15px;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background-color: var(--color_primary);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 0;
}

.ttl-style01 {
  color: #5d9165;
  font-size: 1.375rem;
  margin-bottom: 15px;
}

@media (max-width: 800px) {

  .u-h2,
  .postdata h2 {
    font-size: 1.625rem;
    margin-bottom: 30px;
    padding-bottom: 8px;
  }

  .u-h2::before,
  .postdata h2::before {
    width: 40px;
  }

  .postdata h2 {
    font-size: 1.5rem;
  }

  .u-h3,
  .postdata h3 {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

  .u-h4,
  .postdata h4 {
    margin-bottom: 10px;
  }

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

.tall+.tall {
  margin-top: 120px;
}

.tall.bg01 {
  background-color: var(--color_bg02);
  padding: 60px 0;
}

.tall.bg01 .u-h3 {
  border-bottom: 2px solid var(--color_bg01);
}

.tall:first-child {
  padding: 100px 0 0;
}

.tall:first-child.l-style05 {
  padding: 100px 0 80px;
}

.short+.short {
  margin-top: 60px;
}

.x-short+.x-short {
  margin-top: 30px;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall+.tall {
    margin-top: 60px;
  }

  .tall:first-child {
    padding: 50px 0 0;
  }

  .tall:first-child.l-style05 {
    padding: 50px 0;
  }

  .short+.short {
    margin-top: 30px;
  }

  .x-short+.x-short {
    margin-top: 15px;
  }
}

.list-disc,
.postdata ul {
  display: grid;
  grid-gap: 5px;
}

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

.list-disc li::marker,
.postdata ul li::marker {
  color: var(--color_primary);
  font-size: 0.9375rem;
}

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

.list-disc02 {
  display: grid;
  gap: 10px;
}

.list-disc02>li {
  font-size: 1.0625rem;
  padding-left: 20px;
  position: relative;
}

.list-disc02>li::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 10px;
  left: 0;
}

.list-check {
  display: grid;
  gap: 5px;
  font-family: var(--font_jp);
  font-size: 1.0625rem;
}

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

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

.list-check02 {
  display: grid;
  gap: 20px;
  font-size: 1rem;
}

.list-check02.col2, .list-check02.col3 {
  gap: 20px;
}

.list-check02 li {
  border-bottom: 1px dashed var(--color_tertiary);
  position: relative;
  padding: 0 0 5px 40px;
}

.list-check02 li::before {
  content: "";
  background-color: #c1b042;
  -webkit-mask: url(../images/share/icon_check-square.svg) no-repeat center/contain;
  mask: url(../images/share/icon_check-square.svg) no-repeat center/contain;
  position: absolute;
  top: -4px;
  left: 0;
  width: 32px;
  height: 32px;
}

.list-check02 .em {
  color: #8cccc5;
  font-weight: bold;
  font-size: 1.25rem;
}

.list-check02:has(.em) li::before {
  top: 0;
}

.list-num,
.postdata ol {
  counter-reset: number;
  display: grid;
  grid-gap: 5px;
}

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

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

.list-emergency {
  display: grid;
  gap: 20px;
  font-family: var(--font_jp);
}

.list-emergency li {
  position: relative;
  padding: 0 0 5px 35px;
}

.list-emergency li::before {
  content: "";
  background: url(../images/share/icon_warning.svg) no-repeat center/contain;
  position: absolute;
  top: 2px;
  left: 0;
  width: 26px;
  height: 26px;
}

.list-emergency.col2 {
  gap: 15px 20px;
}

@media (max-width: 800px) {
  .list-disc02>li {
    font-size: 0.9375rem;
  }

  .list-disc02>li::before {
    top: 7px;
  }

  .list-check li {
    font-size: 0.9375rem;
  }

  .list-check li::before {
    top: 9px;
  }

  .list-check02.col2, .list-check02.col3 {
    gap: 10px;
  }

  .list-check02 li {
    padding: 0 0 9px 35px;
  }

  .list-check02 li::before {
    width: 27px;
    height: 27px;
    top: -1px;
  }

  .list-check02 .em {
    font-size: 1.125rem;
  }

  .list-check02:has(.em) li::before {
    top: 0;
  }

  .list-emergency li::before {
    top: 1px;
    width: 23px;
    height: 23px;
  }
}

.list-anchor-link {
  background: var(--color_white);
  border-radius: 10px;
  border: 1px solid var(--color_primary);
  display: flex;
  flex-wrap: wrap;
  gap: 5px 25px;
  padding: 20px 25px;
}

.list-anchor-link>li {
  padding-right: 25px;
  position: relative;
}

.list-anchor-link a {
  font-family: var(--font_jp_m);
  transition: color 0.3s;
}

.list-anchor-link a::before {
  content: "";
  background: url(../images/share/arrow-circle-down.svg) no-repeat center/contain;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 5px;
  right: 0;
}

@media (any-hover: hover) {
  .list-anchor-link a:hover {
    color: #5d9165;
  }
}

.list-anchor-link02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.list-anchor-link02 a {
  display: grid;
  place-content: center;
  background-color: var(--color_white);
  border: 1px solid var(--color_tertiary);
  border-radius: 10px;
  font-family: var(--font_jp_m);
  height: 100%;
  padding: 15px 10px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s;
}

.list-anchor-link02 a::before {
  content: "";
  background-color: var(--color_tertiary);
  -webkit-mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 19px;
  height: 19px;
  position: absolute;
  bottom: 3px;
  right: 3px;
}

@media (any-hover: hover) {
  .list-anchor-link02 a:hover {
    background-color: oklch(from var(--color_white) calc(l - 0.05) c h);
  }
}

.anchor-link-wrap {
  background-color: var(--color_bg02);
  border-radius: 20px;
  padding: 30px;
}

.anchor-link-wrap .label {
  color: #8cccc5;
  font-family: var(--font_en);
  font-size: 1.125rem;
  margin: 0 0 20px;
  padding: 0 0 5px 0;
  position: relative;
  text-align: center;
}

.anchor-link-wrap .label::before {
  content: "";
  background-color: #8cccc5;
  width: 20px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 800px) {
  .list-anchor-link>li {
    padding-right: 20px;
  }

  .list-anchor-link a::before {
    width: 17px;
    height: 17px;
    top: 5px;
  }

  .list-anchor-link02 {
    grid-template-columns: repeat(2, 1fr);
  }

  .anchor-link-wrap {
    padding: 20px 5%;
  }
}

.table-style01 th,
.table-style01 td {
  border-bottom: 1px dashed #ccc;
  padding: 15px 0;
  vertical-align: middle;
}

.table-style01 th {
  text-align: left;
}

.table-style01 .bg01 {
  background-color: #f5f5f5;
}

.table-style02 th,
.table-style02 td {
  border: 1px solid var(--color_border);
  padding: 15px;
  vertical-align: middle;
}

.table-style02 th {
  background-color: var(--color_secondary);
  font-family: var(--font_jp_d);
}

.table-style02 td {
  background-color: var(--color_white);
}

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

@media (max-width: 800px) {

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

  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

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

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

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

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

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

  .table-scroll table {
    width: 150%;
  }
}

.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 {
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.under-slider01 .splide__arrow--prev {
  background: #fff url(../images/share/splide_prev.svg) no-repeat calc(50% - 3px) center/auto 25px;
  left: calc((100% - 904px) / 2);
}

.under-slider01 .splide__arrow--next {
  background: #fff url(../images/share/splide_next.svg) no-repeat calc(50% + 3px) center/auto 25px;
  right: calc((100% - 904px) / 2);
}

.under-slider01 .splide__slide img {
  border-radius: 15px;
  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 img,
.l-imgL .l-img img {
  border-radius: 10px;
}

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

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

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

@media (max-width: 800px) {

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

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

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

/*------------
Add
--------------*/
.tall:has(.l-style01) {
  background-color: var(--color_bg02);
  overflow: hidden;
  padding: 100px 0;
  position: relative;
  z-index: 0;
}

.tall:has(.l-style01)::before {
  content: "";
  background: url(../images/under/under_deco02.png) no-repeat center/contain;
  width: 360px;
  height: auto;
  aspect-ratio: 434/545;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.tall:has(.l-style01)::after {
  content: "";
  background: url(../images/under/under_deco03.png) no-repeat center/contain;
  width: 300px;
  height: auto;
  aspect-ratio: 449/648;
  position: absolute;
  bottom: -6%;
  left: -3%;
  z-index: -1;
}

.l-style01 {
  display: grid;
  grid-template-columns: 50% calc(50% - 52px);
  grid-template-areas: "img desc";
  align-items: center;
  gap: 52px;
}

.l-style01 .l-img {
  grid-area: img;
}

.l-style01 .l-img img {
  border-radius: 30px;
  margin-inline: auto;
}

.l-style01 .l-desc {
  grid-area: desc;
}

.l-style01 .l-ttl {
  font-family: var(--font_jp_m);
  font-size: clamp(1.75rem, 2.1vw, 2.375rem);
  line-height: 1.8;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .tall:has(.l-style01) {
    padding: 50px 0;
  }

  .tall:has(.l-style01)::before {
    width: 195px;
  }

  .tall:has(.l-style01)::after {
    width: 180px;
    bottom: -6%;
    left: -9%;
  }

  .l-style01 {
    grid-template-columns: 1fr;
    grid-template-areas: "img""desc";
    gap: 25px;
  }

  .l-style01 .l-ttl {
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

.l-style02 {
  display: grid;
  grid-template-columns: 52% 1fr;
  grid-template-areas: "l-img l-desc";
}

.l-style02 .l-img {
  grid-area: l-img;
}

.l-style02 .l-img img {
  border-radius: 10px;
}

.l-style02 .l-desc {
  grid-area: l-desc;
  background-color: var(--color_white);
  border-radius: 10px;
  box-shadow: 0 0 10px #eee;
  margin: 72px 0 0 -51px;
  padding: 50px 45px;
}

.l-style02 .num {
  display: inline-block;
  background-color: #5d9165;
  border-radius: 25px;
  color: var(--color_white);
  font-family: var(--font_jp_m);
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 5px;
  padding: 4px 20px 5px;
}

.l-style02 .l-ttl {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.l-style02 .l-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-top: 25px;
}

.l-style02.reverse {
  grid-template-columns: 1fr 52%;
  grid-template-areas: "l-desc l-img";
}

.l-style02.reverse .l-desc {
  margin: 72px -51px 0 0;
}

.l-style02+.l-style02 {
  margin-top: 80px;
}

@media (max-width: 800px) {
  .l-style02 {
    grid-template-columns: 1fr;
    grid-template-areas: "l-img""l-desc";
  }

  .l-style02 .l-desc {
    margin: -30px 3% 0;
    padding: 30px 5%;
  }

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

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

  .l-style02.reverse .l-desc {
    margin: -30px 3% 0;
    padding: 30px 5%;
  }

  .l-style02+.l-style02 {
    margin-top: 50px;
  }
}

.l-style03 {
  display: flex;
  flex-direction: row-reverse;
  gap: 3%;
  overflow: hidden;
  padding: 45px 0 158px 5%;
  position: relative;
  z-index: 0;
}

.l-style03::before {
  content: "";
  background-color: var(--color_bg02);
  border-radius: 0 30px 30px 0;
  width: 69%;
  height: 66%;
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: -1;
}

.l-style03::after {
  content: "";
  background: url(../images/sec06_deco01.png) no-repeat center/contain;
  width: clamp(152px, 16.2vw, 292px);
  height: auto;
  aspect-ratio: 292/313;
  position: absolute;
  top: -6%;
  left: 0;
  z-index: -1;
}

.l-style03 .l-img {
  position: relative;
  width: 41%;
  z-index: 0;
}

.l-style03 .l-img img {
  border-radius: 30px 0 0 30px;
}

.l-style03 .l-desc {
  flex: 1;
}

.l-style03 .l-inner {
  max-width: 698px;
  margin: 0 0 0 auto;
}

.l-style03 .l-ttl {
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.l-style03 .label,
.l-style03 .label02 {
  position: absolute;
  bottom: 0;
  left: 5%;
  color: #9BD0A3;
  font-family: var(--font_en);
  font-size: clamp(4.375rem, 5.5vw, 6.25rem);
  line-height: 1;
  max-width: calc(100% - 160px);
}

@media (max-width: 1024px) {

  .l-style03 .label,
  .l-style03 .label02 {
    max-width: 100%;
  }
}

@media (max-width: 800px) {
  .l-style03 {
    flex-direction: column;
    gap: 30px;
    padding: 0 0 80px 0;
  }

  .l-style03::before {
    width: 80%;
    height: calc(100% - 100px);
    bottom: 10px;
  }

  .l-style03::after {
    content: none;
  }

  .l-style03 .l-img {
    width: 100%;
  }

  .l-style03 .l-img img {
    border-radius: 0;
  }

  .l-style03 .l-inner {
    margin: 0 5%;
    max-width: none;
  }

  .l-style03 .l-ttl {
    font-size: 1.625rem;
    margin-bottom: 20px;
  }

  .l-style03 .label {
    font-size: 2.1875rem;
  }

  .l-style03 .label02 {
    font-size: 1.875rem;
  }
}

.l-style04 {
  background-color: var(--color_bg02);
  padding: 60px 0;
}

.l-style04 .l-ttl {
  display: flex;
  align-items: baseline;
  gap: 35px;
  margin-bottom: 60px;
  position: relative;
  z-index: 0;
}

.l-style04 .l-ttl::before {
  content: "";
  background-color: var(--color_white);
  width: 100%;
  height: 17px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.l-style04 .l-ttl .label {
  font-family: var(--font_en);
  font-size: 3.75rem;
  line-height: 1;
  color: var(--color_primary);
}

.l-style04 .l-ttl .ttl {
  font-size: 1.6875rem;
}

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

.l-style04 .l-btn {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

@media (max-width: 800px) {
  .l-style04 .l-ttl {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
  }

  .l-style04 .l-ttl .ttl {
    text-decoration: underline;
    text-decoration-color: var(--color_white);
    text-decoration-thickness: 9px;
    text-underline-offset: -5px;
  }

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

  .l-style04 .l-ttl .label {
    font-size: 1.75rem;
    gap: 5px;
  }

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

  .l-style04 .l-ttl .ttl {
    font-size: 1.25rem;
  }

  .l-style04 .l-btn {
    margin-top: 30px;
  }
}

.l-style05 {
  background-color: var(--color_bg02);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.l-style05::before {
  content: "";
  background: url(../images/under/under_deco02.png) no-repeat center/contain;
  width: clamp(215px, 25.8vw, 465px);
  height: auto;
  aspect-ratio: 434/545;
  position: absolute;
  top: 2%;
  right: 0;
  z-index: -1;
}

.l-style05::after {
  content: "";
  background: url(../images/under/under_deco03.png) no-repeat center/contain;
  width: clamp(218px, 25vw, 449px);
  height: auto;
  aspect-ratio: 449/648;
  position: absolute;
  bottom: -12%;
  left: -9%;
  z-index: -1;
}

.l-style05 .l-ttl {
  margin-bottom: 60px;
  text-align: center;
}

.l-style05 .l-ttl [lang=en] {
  color: #9BD0A3;
  font-size: clamp(4.375rem, 5vw, 5.625rem);
  line-height: 1;
  margin-bottom: 15px;
}

.l-style05 .l-ttl .ttl {
  font-size: 1.6875rem;
}

.l-style05 .l-catch {
  background: var(--color_white);
  border-radius: 10px;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  margin-bottom: 45px;
  padding: 20px;
  text-align: center;
}

.l-style05 .l-catch em {
  color: #5d9165;
  font-size: 1.625rem;
  text-decoration: underline;
  text-decoration-color: var(--color_secondary);
  text-decoration-thickness: 9px;
  text-underline-offset: -5px;
}

.l-style05 .l-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px 60px;
}

.l-style05 .l-card .card-ttl {
  font-size: 1.25rem;
  margin-bottom: 10px;
  padding-left: 17px;
  position: relative;
}

.l-style05 .l-card .card-ttl::before {
  content: "";
  background-color: #5d9165;
  width: 5px;
  height: 16px;
  position: absolute;
  top: 9px;
  left: 0;
}

@media (max-width: 800px) {
  .l-style05::before {
    width: 125px;
  }

  .l-style05::after {
    width: 180px;
    bottom: -6%;
  }

  .l-style05 .l-catch {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .l-style05 .l-catch em {
    font-size: 1.375rem;
  }

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

  .l-style05 .l-ttl [lang=en] {
    font-size: 2.1875rem;
    margin-bottom: 3px;
  }

  .l-style05 .l-ttl .ttl {
    font-size: 1.25rem;
  }

  .l-style05 .l-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.flow-style {
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 40px;
}

.flow-style>li {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: flex-start;
  gap: 50px;
  padding-bottom: 40px;
  position: relative;
  z-index: 0;
}

.flow-style>li::before {
  content: "";
  background-color: var(--color_black);
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  z-index: -1;
}

.flow-style>li:last-child {
  padding-bottom: 0;
}

.flow-style>li:last-child::before {
  content: none;
}

.flow-style .flow-num {
  display: grid;
  gap: 2px;
  place-content: center;
  text-align: center;
  width: 64px;
  height: auto;
  aspect-ratio: 1;
  background-color: var(--color_secondary);
  border-radius: 50%;
  font-family: var(--font_en);
  font-weight: 500;
  line-height: 1;
  position: relative;
}

.flow-style .flow-num::before {
  content: "";
  background-color: var(--color_white);
  border-radius: 50%;
  inset: -5px;
  position: absolute;
  z-index: -1;
}

.flow-style .flow-num .en {
  font-size: 0.625rem;
  letter-spacing: 0;
}

.flow-style .flow-num .num {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.flow-style .list-content {
  padding: 10px 0 0;
}

.flow-style .list-ttl {
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.flow-style .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 5%;
}

.flow-style .flow-img {
  width: 33%;
}

.flow-style .flow-img img {
  border-radius: 10px;
}

.flow-style .flow-desc {
  flex: 1;
}

.flow-style .l-box {
  background-color: var(--color_bg02);
  border-radius: 10px;
  padding: 30px;
}

.flow-style .l-box .box-ttl {
  font-size: 1.375rem;
  margin-bottom: 20px;
}

.flow-style .tel-layout02 {
  background-color: #f1f9fe;
  box-shadow: none;
}

@media (max-width: 800px) {
  .flow-style {
    padding: 30px 5%;
  }

  .flow-style>li {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }

  .flow-style>li::before {
    left: 24px;
  }

  .flow-style .flow-num {
    width: 48px;
  }

  .flow-style .flow-num::before {
    inset: -3px;
  }

  .flow-style .flow-num .en {
    font-size: 0.5625rem;
  }

  .flow-style .flow-num .num {
    font-size: 1.0625rem;
  }

  .flow-style .list-content {
    padding: 7px 0 0;
  }

  .flow-style .list-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .flow-style .wrap {
    flex-direction: column;
    gap: 20px;
  }

  .flow-style .flow-img {
    width: 100%;
  }

  .flow-style .l-box {
    padding: 15px 5%;
  }

  .flow-style .l-box .box-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}

.tel-layout01 {
  background-color: var(--color_white);
  box-shadow: 0 0 30px rgba(51, 51, 51, 0.15);
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  padding: 30px 50px;
}

.tel-layout01 .l-ttl {
  font-size: 1.75rem;
  margin: 0 0 40px;
  text-align: center;
}

.tel-layout01 .l-ttl02 {
  font-size: 1.375rem;
  margin: 0 0 25px;
  text-align: center;
}

.tel-layout01 .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.tel-layout01 .item:has(.btn-tel) {
  text-align: center;
}

.tel-layout01 .l-time {
  font-size: 0.875rem;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 5px;
  margin: 17px 0 0;
}

.tel-layout01 .l-time dt {
  color: #5d9165;
  font-family: var(--font_jp_m);
}

.tel-layout02 {
  background-color: var(--color_white);
  box-shadow: 0 0 30px rgba(51, 51, 51, 0.15);
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  padding: 30px 50px;
}

.tel-layout02 .l-ttl {
  font-size: 1.75rem;
  margin: 0 0 40px;
  text-align: center;
}

.tel-layout02 .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.tel-layout02 .btn-tel {
  width: 100%;
}

.tel-layout02 .btn-tel .l-tel {
  justify-content: center;
}

.tel-layout02 .l-time {
  font-size: 0.875rem;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 5px;
  margin: 17px 0 0;
}

.tel-layout02 .l-time dt {
  color: #5d9165;
  font-family: var(--font_jp_m);
}

.tel-layout02 .btn-reserve {
  width: 100%;
}

.tel-layout02 .item-txt {
  color: #888;
  font-size: 0.875rem;
  margin: 17px 0 0;
  text-align: center;
}

@media (max-width: 800px) {
  .tel-layout01 {
    max-width: 100%;
    padding: 20px 5%;
  }

  .tel-layout01 .l-ttl {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

  .tel-layout01 .l-ttl02 {
    font-size: 1.125rem;
  }

  .tel-layout01 .wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tel-layout02 {
    max-width: 100%;
    padding: 20px 5%;
  }

  .tel-layout02 .l-ttl {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

  .tel-layout02 .wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tel-layout02 .l-time {
    margin: 10px 0 0;
  }

  .tel-layout02 .item-txt {
    margin: 10px 0 0;
  }
}

.dl-style01 {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}

.dl-style01 dt,
.dl-style01 dd {
  padding: 5px;
}

.dl-style01 dt {
  display: grid;
  place-content: center;
  background-color: #FCF6E0;
  border: 1px solid #EDD982;
  border-radius: 5px;
  font-family: var(--font_jp_m);
  font-size: 0.9375rem;
  text-align: center;
}

.dl-style02 {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 25px 20px;
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 25px;
}

.dl-style02 dt {
  display: grid;
  place-content: center;
  background-color: #FCF6E0;
  border: 1px solid #EDD982;
  border-radius: 5px;
  font-family: var(--font_jp_m);
  font-size: 1.125rem;
  text-align: center;
}

.dl-style02 dd {
  padding: 10px 0;
}

@media (max-width: 800px) {

  .dl-style02 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .dl-style02 dd {
    padding: 0;
  }
}

.box-style01 {
  background-color: var(--color_white);
  border-radius: 10px;
  padding: 30px 50px;
}

.box-style01 .box-ttl {
  font-size: 1.75rem;
  margin: 0 0 40px;
  text-align: center;
}

.box-style01 .box-ttl .dot {
  display: inline-block;
  color: #5d9165;
  font-feature-settings: normal;
  position: relative;
}

.box-style01 .box-ttl .dot::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 8px;
  background-size: 1.1em 10px;
  background-repeat: repeat-x;
  background-position: 0;
  background-image: radial-gradient(circle at center center, #5d9165 0px, #5d9165 3px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, 0) 100%);
}

.box-style01 .box-txt {
  font-family: var(--font_jp);
  text-align: center;
}

.box-style01 .box-txt span {
  color: #cbb417;
  font-size: 1.875rem;
}

.box-style02 {
  background-color: var(--color_bg02);
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 30px;
}

.box-style02 .box-ttl {
  display: flex;
  gap: 10px;
  font-size: 1.5rem;
  margin: 0 0 25px;
}

.box-style02 .box-ttl img {
  width: 32px;
}

.box-style02 .box-ttl02 {
  display: flex;
  gap: 10px;
  font-size: 1.25rem;
  margin: 0 0 20px;
}

.box-style02 .box-ttl02 img {
  width: 25px;
}

.box-style02.bg01 {
  background-color: #f7f7f7;
  border: 1px solid #ccc;
}

.box-style03-wrap {
  padding: 60px 0;
  position: relative;
  z-index: 0;
}

.box-style03-wrap::before {
  content: "";
  background: #d09c9c;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.box-style03 {
  background-color: var(--color_white);
  border: 1px solid #c32b2b;
  border-radius: 10px;
  padding: 30px 50px;
}

.box-style03 .box-ttl {
  font-size: 1.375rem;
  margin: 0 0 40px;
  text-align: center;
}

.box-style03 .box-ttl .dot {
  color: #c32b2b;
  display: inline-block;
  font-size: 1.875rem;
  font-feature-settings: normal;
  position: relative;
}

.box-style03 .box-ttl .dot::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 8px;
  background-size: 1.1em 10px;
  background-repeat: repeat-x;
  background-position: -2px 0;
  background-image: radial-gradient(circle at center center, #c32b2b 0px, #c32b2b 3px, rgba(255, 255, 255, 0) 3px, rgba(255, 255, 255, 0) 100%);
}

.box-style04 {
  background-color: #FCF6E0;
  border: 1px solid #EDD982;
  border-radius: 10px;
  padding: 30px 50px;
}

.box-style04 .box-txt {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  text-align: center;
}

.box-style04 .txt-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color_white);
  box-shadow: 0 0 30px rgba(51, 51, 51, 0.15);
  font-size: 1.375rem;
  padding: 15px 20px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
}

.box-style04 .em {
  font-size: 2.25rem;
  color: #cbb417;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 20px 5%;
  }

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

  .box-style01 .box-txt span {
    font-size: 1.625rem;
  }

  .box-style02 {
    padding: 20px 5%;
  }

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

  .box-style03 {
    padding: 20px 5%;
  }

  .box-style03 .box-ttl {
    font-size: 1.25rem;
    margin: 0 0 30px;
  }

  .box-style03 .box-ttl .dot {
    font-size: 1.625rem;
  }

  .box-style03 .box-ttl .dot::before {
    bottom: 90%;
  }

  .box-style04 {
    padding: 20px 5%;
  }

  .box-style04 .txt-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    font-size: 1.25rem;
    margin: 15px auto;
  }
}

.list-card01 .item {
  background-color: var(--color_bg02);
  border-radius: 10px;
  padding: 25px;
}

.list-card01 .card-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-size: 1.375rem;
  margin: 0 0 20px;
  padding: 0 0 5px 0;
}

.list-card01 .card-ttl .small {
  font-size: 1.125rem;
}

.list-card01 .card-ttl02 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}

.list-card01 .card-ttl02::before {
  content: "";
  background-color: #5d9165;
  width: 5px;
  height: 16px;
  position: absolute;
  top: 8px;
  left: 0;
}

.list-card01 .card-img {
  margin-bottom: 10px;
}

.list-card01 .card-img img {
  border-radius: 10px;
}

.list-card01:has(.card-btn) .item {
  display: flex;
  flex-direction: column;
}

.list-card01:has(.card-btn) .card-desc {
  margin-bottom: auto;
}

.list-card01:has(.card-btn) .card-btn {
  margin-top: 20px;
  text-align: center;
}

.list-card02.col3 {
  gap: 30px 20px;
}

.list-card02 .item {
  background-color: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 10px;
  padding: 25px;
}

.list-card02 .card-ttl {
  color: #5d9165;
  font-size: 1.375rem;
  margin: 0 0 15px;
}

.list-card02 .card-ttl .small {
  font-size: 1.125rem;
}

.list-card02 .card-img {
  margin-bottom: 15px;
}

.list-card02 .card-img img {
  border-radius: 10px;
}

@media (max-width: 800px) {
  .list-card01 .item {
    padding: 20px 5%;
  }

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

  .list-card01 .card-ttl .small {
    font-size: 1rem;
  }

  .list-card02 .item {
    padding: 20px 5%;
  }

  .list-card02 .card-ttl {
    font-size: 1.125rem;
    margin: 0 0 10px;
  }
}

.list-payment-logo {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.list-payment-logo>li {
  display: grid;
  place-content: center;
  background-color: var(--color_white);
  border: 1px solid #ddd;
  padding: 5px;
}

.list-payment-logo img {
  max-width: 59px;
  max-height: 40px;
}

.price-style {
  display: grid;
  gap: 20px;
  background: #fff;
  padding: 40px;
}

.price-style .list-intro {
  border-bottom: 1px dashed #ccc;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  justify-content: space-between;
  padding: 0 0 5px;
}

.price-style .ttl {
  font-weight: bold;
}

.price-style .tax {
  font-size: 0.875rem;
}

.price-style .list-desc {
  color: #747474;
  font-size: 13px;
  margin-top: 8px;
}

@media (max-width: 800px) {
  .price-style {
    padding: 30px 5%;
    gap: 15px;
  }

  .price-style .list-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 0 0 10px;
  }
}

.staff-layout {
  display: grid;
  grid-template-columns: 1fr 40%;
  grid-template-areas: "l-desc l-img";
  gap: 70px;
}

.staff-layout .l-img {
  grid-area: l-img;
}

.staff-layout .l-img img {
  border-radius: 15px;
}

.staff-layout .img {
  margin: 0 0 15px;
  position: relative;
  z-index: 0;
}

.staff-layout .img::before {
  content: "";
  background: url(../images/under/under_deco04.png) no-repeat center/contain;
  width: 125px;
  height: auto;
  aspect-ratio: 277/488;
  position: absolute;
  bottom: -20px;
  right: -50px;
  rotate: 30deg;
  z-index: 0;
}

.staff-layout .l-desc {
  grid-area: l-desc;
}

.staff-layout .l-message {
  border-bottom: 1px dashed #ccc;
  color: #5d9165;
  font-family: var(--font_jp);
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.staff-layout .l-name {
  display: flex;
  gap: 0 20px;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
}

.staff-layout .l-name .job {
  font-size: 0.875rem;
  line-height: 1.3;
  text-align: center;
  width: 100%;
}

.staff-layout .l-name .jp {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  letter-spacing: 0.1em;
}

.staff-layout .l-name .en {
  color: #aaa;
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}

.staff-card .item {
  background-color: var(--color_white);
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px 30px 40px;
}

.staff-card .card-ttl {
  color: var(--color_primary);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.staff-card .list-disc {
  font-size: 0.9375rem;
  gap: 10px;
}

.staff-career {
  font-size: 0.9375rem;
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 10px 0;
}

@media (max-width: 800px) {
  .staff-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "l-img""l-desc";
    gap: 25px;
  }

  .staff-layout .l-img {
    margin: auto;
  }

  .staff-layout .img {
    margin-inline: auto;
    width: 80%;
  }

  .staff-layout .img::before {
    width: 90px;
    bottom: -11px;
    right: -50px;
  }

  .staff-layout .l-message {
    font-size: 1.125rem;
  }

  .staff-layout .l-name .job {
    font-size: 0.75rem;
  }

  .staff-layout .l-name .jp {
    font-size: 1.375rem;
  }

  .staff-layout .l-name .en {
    font-size: 0.75rem;
  }

  .staff-card .item {
    padding: 20px 5%;
  }

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

.l-access .l-img {
  width: 50%;
}

.l-access .item+.item {
  margin-top: 20px;
}

.l-access .item-s+.item-s {
  margin-top: 20px;
}

.l-access .l-ttl {
  border-bottom: 1px solid #D4EAD0;
  font-size: 1.375rem;
  margin-bottom: 10px;
  padding-bottom: 7px;
}

.l-access .l-ttl02 {
  color: #5d9165;
  font-size: 1.375rem;
  margin: 0 0 15px;
}

@media (max-width: 800px) {
  .l-access .l-img {
    width: 100%;
  }

  .l-access .l-ttl {
    font-size: 1.25rem;
  }

  .l-access .l-ttl02 {
    font-size: 1.125rem;
  }
}

.privacy-ttl {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.dl-privacy {
  display: grid;
  gap: 3rem;
}

.dl-privacy dt {
  border-top: 2px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.625rem;
  padding-top: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.dl-privacy dd {
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 800px) {
  .dl-privacy dt {
    font-size: 1.375rem;
  }
}

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

.sp-only {
  display: none;
}

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

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

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.bold,
.strong {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.c-red {
  color: #c32b2b;
}

.color-green {
  color: var(--color_primary);
}

.color-green02 {
  color: #5d9165;
}

.color-blue {
  color: #8cccc5;
}

.font01 {
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
}

.font02 {
  font-family: var(--font_jp);
}

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

.img-round img {
  border-radius: 15px;
}

.note {
  font-size: 0.9375rem;
  color: #888;
}

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

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

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

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

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

@media (max-width: 800px) {

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

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

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

  .sp-only {
    display: block;
  }

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

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

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

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

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

  .mbXS {
    margin-bottom: 4px;
  }

  .mbS {
    margin-bottom: 8px;
  }

  .mbM {
    margin-bottom: 16px;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

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

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

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

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

  .gapXS {
    grid-gap: 4px;
  }

  .gapS {
    grid-gap: 8px;
  }

  .gapM {
    grid-gap: 16px;
  }

  .gapXM {
    grid-gap: 32px;
  }

  .gapL {
    grid-gap: 48px;
  }

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

/*------------
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: var(--color_white);
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #4d8756;
  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-color: var(--color_secondary);
  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-color: #e7da84;
}

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

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

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

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