@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: #DBE6E1;
  --color_primary: #75BA9C;
  --color_sub01: #D6B761;
  --color_sub02: #FDF2D5;
  --color_bg: #ECF7F3;
  --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);
}

/* ====================================================
【サイト全体の設定】
==================================================== */
:root {
  --font_base: "FOT-筑紫明朝 Pr6N D", serif;
  --font_base_bold: "FOT-筑紫明朝 Pr6N B", serif;
  --font_jp: "Noto Serif JP", serif;
  --font_en: "Oooh Baby", cursive;
  --font_weight: normal;
  --font_medium: 500;
  --font_size: 0.9375rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

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

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}

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

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

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

::selection {
  background: #d4dcd6;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font_weight);
  line-height: 1.6;
  letter-spacing: 0.1em;
}

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

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

.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 {
  border: 1px solid #eee;
  background: #fff;
  font-size: 1rem;
  text-align: center;
  overflow: hidden;
  margin-bottom: 5px;
}

.time-table-head {
  background-color: #6C9F8C;
  color: #fff;
}

.time-table-head .item {
  padding: 6px 0;
}

.time-table-body {
  border-top: 1px solid #eee;
}

.time-table-body .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 0;
  color: var(--color_black);
}

.time-table-body .item:first-child {
  background-color: #85B4A2;
  color: #fff;
  letter-spacing: 0;
}

.time-table-head,
.time-table-body {
  display: grid;
  grid-template-columns: 130px repeat(7, 1fr);
}

.time-table.large .time-table-head,
.time-table.large .time-table-body {
  grid-template-columns: 220px repeat(7, 1fr);
}

.time-table-note {
  font-family: var(--font_base_regular);
  line-height: 1.5;
}

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

  .time-table-head .item {
    padding: 5px 0;
  }

  .time-table-body .item {
    padding: 5px 0;
    font-size: 0.8125rem;
  }

  .time-table-body .item:first-child {
    line-height: 1.3;
    font-size: 0.75rem;
  }

  .time-table-head,
  .time-table-body {
    grid-template-columns: 80px repeat(7, 1fr) !important;
  }
}

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event01: #EF866B;
  --event02: #F7B46B;
  --event03: #A8DBA8;
  --event04: #B0D7D5;
}

.business-calendar-box-wrap {
  margin-bottom: 15px;
}

.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.business-calendar-box-wrap .business-calendar caption {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}

.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 1.5625rem;
  vertical-align: -1px;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}

.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}

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

.business-calendar-box-wrap .business-calendar th {
  background: #f1f3f4;
  border: 1px solid #dfdfdf;
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
  padding: 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid #dfdfdf;
  position: relative;
  font-size: 0.8125rem;
  padding: 5px;
  z-index: 0;
}

.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}

.business-calendar-box-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 0.9375rem;
}

.business-calendar-box-wrap.col2 {
  grid-template-columns: 1fr;
}

.business-calendar-box-wrap.col2 .business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3%;
}

.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
}

.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: #fff;
}

.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before,
.business-calendar-box-wrap .business-calendar .attr2::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
  opacity: 1;
}

.business-calendar-box-wrap .business-calendar .attr0::before {
  background: var(--event01);
}

.business-calendar-box-wrap .business-calendar .attr1::before {
  background: var(--event02);
}

.business-calendar-box-wrap .business-calendar .attr2::before {
  background: var(--event03);
}

.business-calendar-box-wrap .business-calendar .attr3::before {
  background: var(--event04);
}

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

.list-event li {
  display: flex;
  gap: 5px;
  line-height: 1;
}

.list-event i {
  font-style: normal;
}

.list-event .event01 {
  color: var(--event01);
}

.list-event .event02 {
  color: var(--event02);
}

.list-event .event03 {
  color: var(--event03);
}

.list-event .event04 {
  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-out {
  padding-right: 15px;
  position: relative;
}

.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}

.btn-out::after {
  content: "";
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

@media (any-hover: hover) {
  .btn-out:hover::after {
    background-position: left bottom;
    background-size: 100% auto;
  }
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  font-size: 0.9375rem;
  line-height: 1.2;
  position: relative;
}

.btn-more::before {
  content: "";
  background: url(../images/share/btn-arrow.svg) no-repeat center/contain;
  width: 48px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.btn-more::after {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #99CEB7;
  flex-shrink: 0;
}

.btn-more.white {
  color: #fff;
}

.btn-more.white::before {
  filter: brightness(0) invert(1);
}

.btn-more.white::after {
  border-color: #fff;
}

@media (any-hover: hover) {
  .btn-more:hover::before {
    right: 10px;
  }
}

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

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

.yoyaku-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color_sub01);
  border: 1px solid var(--color_sub01);
  color: var(--color_white);
  font-size: 0.9375rem;
  padding: 0 25px 0;
  min-width: 160px;
  height: 50px;
  transition: background-color 0.3s, color 0.3s;
}

.yoyaku-btn::before {
  content: "";
  -webkit-mask: url(../images/share/icon_calendar.svg) no-repeat center/contain;
  mask: url(../images/share/icon_calendar.svg) no-repeat center/contain;
  background-color: var(--color_white);
  width: 18px;
  height: 18px;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .yoyaku-btn:hover {
    background-color: transparent;
    color: var(--color_sub01);
  }

  .yoyaku-btn:hover::before {
    background-color: var(--color_sub01);
  }
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: var(--color_white);
  font-size: 0.9375rem;
  padding: 0 25px 0;
  min-width: 210px;
  height: 50px;
  transition: background-color 0.3s, color 0.3s;
}

.instagram-btn::before {
  content: "";
  -webkit-mask: url(../images/share/icon_instagram_w.svg) no-repeat center/contain;
  mask: url(../images/share/icon_instagram_w.svg) no-repeat center/contain;
  background-color: var(--color_white);
  width: 23px;
  height: 23px;
  transition: background-color 0.3s;
}

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

  .instagram-btn:hover::before {
    background-color: var(--color_primary);
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*セレクト式カテゴリー*/
.select-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 50px;
}

.select-area .select-item {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin: 0 30px 0 0;
}

.select-area .select-ttl {
  display: inline-block;
  font-size: 1rem;
  white-space: nowrap;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
  background: url(../images/share/icon_select_arrow.svg) no-repeat right 10px center/20px auto;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--color_black);
  color: var(--color_black);
  font-size: 1rem;
  line-height: 1.5;
  vertical-align: middle;
  min-width: 150px;
  padding: 5px 20px 5px 0;
  flex: 1;
}

.select-area .select-category::-ms-expand {
  display: none;
}

@media (max-width: 800px) {
  .select-area {
    display: block;
    margin: 0 0 30px;
  }

  .select-area .select-item {
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
  }

  .select-area .select-item+.select-item {
    margin-top: 40px;
  }

  .select-area .select-ttl {
    font-size: 0.9375rem;
    width: 100%;
  }
}

/*ブログ*/
.post-under-blog {
  border-top: 1px solid var(--color_border);
}

.post-under-blog:has(.no-post) {
  border-top: none;
}

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

@media (any-hover: hover) {
  .post-under-blog a:hover {
    background-color: var(--color_bg);
  }
}

.post-under-blog a::before {
  content: "";
  background: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
}

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

.post-under-blog time {
  display: block;
  color: #aaa;
  font-family: var(--font_jp);
  font-weight: var(--font_medium);
  font-size: 0.9375rem;
  line-height: 1;
  margin-bottom: 5px;
}

.post-under-blog .category-wrap {
  background-color: var(--color_primary);
  color: var(--color_white);
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1px 10px 2px;
}

.post-under-blog .category {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
}

.post-under-blog .category+.category::before {
  content: "/";
  display: block;
  margin: 0 4px;
}

.post-under-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .post-under-blog a {
    grid-template-columns: 120px 1fr;
    gap: 10px;
    padding: 10px 0;
  }

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

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

  .post-under-blog time {
    font-size: 0.75rem;
  }

  .post-under-blog .category {
    font-size: 0.625rem;
  }

  .post-under-blog .post-ttl {
    font-size: 0.75rem;
  }
}

/*お知らせ*/
.post-under-news {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--color_border);
}

.post-under-news a {
  border-bottom: 1px solid var(--color_border);
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 20px 35px 20px 10px;
  position: relative;
  transition: background-color 0.3s;
}

.post-under-news:has(.no-post) {
  border-top: none;
}

@media (any-hover: hover) {
  .post-under-news a:hover {
    background-color: var(--color_bg);
  }
}

.post-under-news a::before {
  content: "";
  background: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 10px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
}

.post-under-news time {
  display: block;
  color: #aaa;
  font-family: var(--font_jp);
  font-weight: var(--font_medium);
  font-size: 0.9375rem;
  line-height: 1;
  flex-shrink: 0;
}

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

.post-under-news .category {
  display: block;
  border: 1px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 2px 5px;
  text-align: center;
  width: 100%;
}

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

@media (max-width: 800px) {
  .post-under-news a {
    gap: 15px;
    padding: 15px 0;
  }

  .post-under-news a::before {
    display: none;
  }
}

/*症例紹介*/
.case-layout {
  background-color: var(--color_bg);
  padding: 6%;
}

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

.case-layout time {
  display: block;
  color: #aaa;
  font-family: var(--font_jp);
  font-weight: var(--font_medium);
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.case-layout .category-wrap {
  background-color: var(--color_white);
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1px 10px 2px;
}

.case-layout .category {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
}

.case-layout .category+.category::before {
  content: "/";
  display: block;
  margin: 0 4px;
}

.case-layout .l-ttl {
  font-size: 1.5625rem;
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 40px;
  padding-bottom: 5px;
}

.case-layout .before-after {
  margin-bottom: 60px;
}

.case-layout .l-table {
  background-color: #fff;
}

.case-layout .l-table th,
.case-layout .l-table td {
  border: 1px solid var(--color_primary);
  line-height: 1.5;
  padding: 17px 35px;
}

.case-layout .l-table th {
  background-color: #9DC4B3;
  color: #fff;
  font-size: 1rem;
  vertical-align: middle;
  width: 33%;
}

.case-layout .l-btn {
  text-align: center;
  margin-top: 40px;
}

.case-layout+.case-layout {
  margin-top: 60px;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(5.555vw, 100px);
  position: relative;
}

.before-after::before {
  content: "";
  background: url(../images/share/icon_arrow_right.svg) no-repeat center/contain;
  width: 16px;
  height: 47px;
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.before-after figure {
  display: grid;
  place-items: center;
  max-height: 330px;
  position: relative;
}

.before-after figure img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  height: 330px;
}

.before-after p {
  font-size: 1.5625rem;
  line-height: 1;
  margin-top: 15px;
}

@media screen and (max-width: 800px) {
  .case-layout .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }

  .case-layout .before-after {
    margin-bottom: 30px;
  }

  .case-layout .l-table {
    border-bottom: 1px solid var(--color_primary);
  }

  .case-layout .l-table th,
  .case-layout .l-table td {
    display: block;
    padding: 10px;
    border-bottom: none;
  }

  .case-layout .l-table th {
    width: 100%;
    font-size: 0.9375rem;
  }

  .case-layout .l-table td {
    font-size: 0.875rem;
  }

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

  .case-layout+.case-layout {
    margin-top: 30px;
  }

  .before-after {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .before-after::before {
    top: 49%;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .before-after figure {
    max-height: 250px;
  }

  .before-after figure img {
    height: 250px;
  }

  .before-after p {
    font-size: 1.125rem;
  }
}

/*詳細ページ*/
.layout-single-post {
  padding-bottom: 50px;
  border-bottom: 1px solid var(--color_border);
}

.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: #aaa;
  font-family: var(--font_jp);
  font-weight: var(--font_medium);
  font-size: 0.9375rem;
  line-height: 1;
}

.layout-single-post .category-wrap {
  background-color: var(--color_primary);
  color: var(--color_white);
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1px 10px 2px;
  ;
}

.layout-single-post .category {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
}

.layout-single-post .category+.category::before {
  content: "/";
  display: block;
  margin: 0 4px;
}

.layout-single-post .l-ttl {
  border-bottom: 2px solid var(--color_border);
  font-size: 1.5625rem;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.postdata {
  /*WP必須クラス*/
  overflow-wrap: break-word;
}

.postdata .screen-reader-text {
  border: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.postdata .screen-reader-text:focus {
  background-color: #eee;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.postdata iframe {
  max-width: 100%;
}

.postdata {
  /*スタイルの調整が必要*/
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-family: var(--font_base_bold);
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  position: relative;
  padding-left: 15px;
}

.postdata ul li::before {
  content: "";
  background: var(--color_primary);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol {
  counter-reset: number;
}

.postdata ol li {
  padding-left: 30px;
  position: relative;
}

.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: 1.9;
  text-align: center;
  padding-left: 1px;
  width: 20px;
  height: 20px;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

.postdata sub {
  font-size: 0.6875rem;
  position: relative;
  bottom: -0.1em;
}

.postdata .wp-block-button__link {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  color: #fff;
  font-size: 0.9375rem;
  text-align: center;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s;
}

.postdata .wp-block-button__link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: border-color 0.3s;
}

@media (any-hover: hover) {
  .postdata a:hover {
    text-decoration: none;
  }

  .postdata .wp-block-button__link:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .layout-single-post .post-data {
    margin-bottom: 15px;
  }

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

  .postdata ul li::before {
    top: 12px;
  }

  .postdata ol li::before {
    top: 4px;
  }
}

/*ページャー*/
.post-number {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.post-number span,
.post-number a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 0.8125rem;
  line-height: 1;
  text-align: center;
  width: 30px;
  height: 30px;
  padding-bottom: 1px;
  padding-left: 1px;
  transition: 0.3s;
}

.post-number>*+* {
  margin-left: 10px;
}

.post-number a:hover {
  background: var(--color_primary);
  color: #fff;
}

.post-number .current {
  background: var(--color_primary);
  color: #fff;
}

.post-number-single {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 50px;
}

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

.post-number-single .all {
  display: grid;
  place-items: center;
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 0.8125rem;
  line-height: 1;
  text-transform: uppercase;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
  padding-bottom: 1px;
}

.post-number-single .all:hover {
  background: transparent;
  color: var(--color_primary);
}

.post-number .prev,
.post-number .next,
.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number .prev::before,
.post-number .next::before,
.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid var(--color_primary);
  margin: 0 auto;
  top: 12px;
  transition: 0.3s;
}

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

.post-number .prev:hover::before,
.post-number .next:hover::before,
.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  border-color: #fff;
}

.post-number .prev::before,
.post-number-single .prev::before {
  transform: rotate(-135deg);
  left: 10px;
  border-left: 1px solid var(--color_primary);
}

.post-number .next::before,
.post-number-single .next::before {
  transform: rotate(135deg);
  right: 10px;
  border-right: 1px solid var(--color_primary);
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 120px;
  background-color: var(--color_white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 35px 15px 30px;
}

@media (max-width: 800px) {
  .header {
    position: absolute;
    height: 68px;
    gap: 15px;
    padding: 10px 2.5%;
  }

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

.h-utility {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

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

.h-tel {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.4375rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.h-tel::before {
  content: "";
  background: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 17px;
  height: 21px;
  margin-top: 2px;
}

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

.h-menu-btn {
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}

.h-menu-btn-line {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 14px;
}

.h-menu-btn-line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color_black);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.h-menu-btn-line span:nth-child(1) {
  top: 0;
}

.h-menu-btn-line span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.h-menu-btn-line span:nth-child(3) {
  top: auto;
  bottom: 0;
}

.h-menu-btn-txt::before {
  content: "MENU";
  display: block;
  font-family: var(--font_jp);
  font-weight: var(--font_medium);
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
  margin-top: -3px;
}

.h-menu-btn.is-open .h-menu-btn-line span {
  background-color: var(--color_white);
}

.h-menu-btn.is-open .h-menu-btn-line span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
}

.h-menu-btn.is-open .h-menu-btn-line span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.h-menu-btn.is-open .h-menu-btn-line span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-20deg);
}

.h-menu-btn.is-open .h-menu-btn-txt::before {
  content: "CLOSE";
  color: var(--color_white);
}

.gnavi-drawer {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
  z-index: 100;
}

.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

.gnavi-drawer-container {
  background-color: var(--color_primary);
  display: grid;
  align-items: center;
  gap: 5%;
  margin-left: auto;
  padding: min(113px, 6.277vw) min(128px, 7.111vw) min(69px, 3.833vw) min(115px, 6.388vw);
  padding: 110px 112px 69px 115px;
  width: 875px;
  height: 100%;
  overflow-y: auto;
}

@media (max-width: 800px) {
  .gnavi-drawer-container {
    align-items: flex-start;
    padding: 50px 25px 100px;
    width: 100%;
  }
}

/*------------
Gnavi
--------------*/
.gnavi-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  gap: 5px 84px;
  color: var(--color_white);
  margin-bottom: 10px;
}

.gnavi-links>li>a {
  display: inline-block;
  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) {
  .gnavi-links>li>a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}

.gnavi-card-title {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--color_white);
  line-height: 1.5;
  margin-bottom: 15px;
}

.gnavi-card-title::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color_white);
}

.gnavi-card-title .ttl {
  flex-shrink: 0;
}

.gnavi-card-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.gnavi-card-links>li>a {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  background-color: #FAF6EC;
  aspect-ratio: 1/1;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
  padding: 10px;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .gnavi-card-links>li>a:hover {
    background-color: var(--color_sub02);
  }
}

@media (max-width: 800px) {
  .gnavi-links {
    gap: 5px 30px;
  }

  .gnavi-card-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_primary);
  color: var(--color_white);
  margin-top: auto;
  position: relative;
  padding: 40px 0 30px;
}

.footer .time-table {
  font-size: clamp(0.75rem, 1.142vw, 1rem);
}

.footer .time-table-head,
.footer .time-table-body {
  grid-template-columns: min(130px, 9.285vw) repeat(7, 1fr);
}

.f-contents {
  display: grid;
  grid-template-columns: min(50%, 490px) 1fr;
  gap: 40px;
  margin-left: min(188px, 10.444vw);
}

.f-contents .col:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.f-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.f-access {
  margin-top: 15px;
}

.f-address {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.f-parking {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-map {
  display: flex;
  gap: 10px 35px;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 15px;
}

.f-links {
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
  font-size: 0.9375rem;
}

.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 {
  text-align: right;
}

.copyright small {
  font-size: 0.75rem;
}

.pagetop {
  position: absolute;
  bottom: 60px;
  right: 16px;
  transition: transform 0.5s;
}

.pagetop:hover {
  transform: translateY(-10px);
}

@media (max-width: 1400px) {
  .f-contents {
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .site-map {
    flex-direction: column;
    justify-content: flex-start;
  }
}

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

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

  .f-inner {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .f-logo {
    margin: 0 auto;
  }

  .f-access {
    margin: 0;
  }

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

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

  .copyright {
    padding-top: 30px;
  }

  .pagetop {
    bottom: 120px;
  }
}

.sp-navi-btns {
  display: none;
}

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

  .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(--navi-font);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item:nth-child(2) a {
    background-color: var(--color_sub01);
  }

  .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: 10px 0 5px;
  }

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

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

  .sp-navi-btns .item .img img {
    margin-bottom: 9px;
  }

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

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

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

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

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

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

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

  .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 5px) 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%, -5px) rotate(45deg);
  }
}

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  display: flex;
  gap: min(70px, 3.888vw);
  margin: 140px 0 65px;
  padding: 0 min(70px, 3.888vw) 0 min(100px, 5.555vw);
  position: relative;
}

.hero .splide__slide {
  padding: 0 30px 30px 0;
  position: relative;
}

.hero .splide__slide::before {
  content: "";
  background-color: var(--color_primary);
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero .splide__slide img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero .splide__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 0 37px;
}

.hero .splide__pagination {
  gap: 10px;
}

.hero .splide__pagination__page {
  background-color: #B6B6B6;
}

.hero .splide__pagination__page.is-active {
  background-color: var(--color_primary);
}

.hero-icon {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -65px;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

.hero-icon.sp {
  display: none;
}

.hero-catch {
  font-size: clamp(1.25rem, 2.388vw, 2.6875rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 15px 0 40px;
}

.hero-catch.sp {
  display: none;
}

@media (max-width: 800px) {
  .hero {
    display: block;
    margin: 68px 0 50px;
    padding: 0;
  }

  .hero .splide__controls {
    display: none;
  }

  .hero .splide__slide {
    padding: 0 10px 10px 0;
  }

  .hero .splide__slide::before {
    top: 10px;
    left: 10px;
  }

  .hero-left {
    width: 48.192vw;
  }

  .hero-right {
    width: 60.963vw;
    margin: -85px 0 0 auto;
  }

  .hero-icon {
    gap: 15px;
    margin: 0;
  }

  .hero-icon img {
    width: 37.5vw;
  }

  .hero-icon.pc {
    display: none;
  }

  .hero-icon.sp {
    display: flex;
  }

  .hero-catch {
    font-size: max(1rem, 6.25vw);
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 10px #fff;
    margin: -42px 0 10px;
    padding: 0 5%;
    position: relative;
    z-index: 1;
  }

  .hero-catch.pc {
    display: none;
  }

  .hero-catch.sp {
    display: block;
  }
}

/*------------
Title
--------------*/
.t-ttl01 {
  font-size: 1.25rem;
  border-bottom: 2px solid var(--color_border);
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.t-ttl02 {
  text-align: center;
  margin-bottom: 75px;
}

.t-ttl02 .txt01 {
  color: #D5EBE1;
  font-family: var(--font_jp);
  font-size: clamp(6.25rem, 11.666vw, 8.75rem);
  line-height: 1;
}

.t-ttl02 .txt02 {
  font-size: 1.6875rem;
  margin-top: -36px;
}

.t-ttl03 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .t-ttl01 {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }

  .t-ttl02 {
    margin-bottom: 40px;
  }

  .t-ttl02 .txt01 {
    font-size: clamp(1.875rem, 12.5vw, 3.125rem);
  }

  .t-ttl02 .txt01.sp-small {
    font-size: clamp(1.875rem, 11.25vw, 2.8125rem);
  }

  .t-ttl02 .txt02 {
    font-size: 1.5rem;
    margin-top: -20px;
  }

  .t-ttl03 {
    font-size: 1.625rem;
  }
}

/*------------
Section
--------------*/
.sec01 {
  background-color: var(--color_bg);
  padding: 80px 0;
}

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

.instagram-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

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

  .sec01 .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .instagram-list {
    margin-bottom: 30px;
  }
}

.sec02 {
  padding: 115px 0;
  position: relative;
}

.sec02::before {
  content: "";
  background: url(../images/sec02_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
}

.sec02::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.74);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

  .sec02::before {
    background: url(../images/sec02_bg.jpg) no-repeat center left -300px / cover;
  }
}

.sec03 {
  padding: 95px 0 120px;
}

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

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

.sec04 .case-layout {
  background-color: transparent;
  padding: 0;
}

.sec04 .case-layout .l-table th {
  font-size: 1.5625rem;
}

.sec04 .case-layout .l-table td {
  font-size: 1.0625rem;
}

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

  .sec04 .case-layout .l-table th {
    font-size: 0.9375rem;
  }

  .sec04 .case-layout .l-table td {
    font-size: 0.875rem;
  }
}

.sec05 {
  padding: 100px 0 120px;
  position: relative;
}

.sec05::before {
  content: "";
  background: url(../images/sec05_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
}

.sec05::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.85);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

  .sec05::before {
    background: url(../images/sec05_bg.jpg) no-repeat center left -300px / cover;
  }
}

.sec06 {
  padding: 120px 0;
  position: relative;
}

.sec06::before {
  content: "";
  background-color: var(--color_bg);
  width: 176px;
  aspect-ratio: 176/294;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.sec06::after {
  content: "";
  background-color: var(--color_bg);
  width: 176px;
  aspect-ratio: 176/169;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

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

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

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

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

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

/*------------
Post
--------------*/
.post-top-news {
  display: grid;
}

.post-top-news article:first-child a {
  padding: 0 0 16px;
}

.post-top-news a {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--color_border);
  padding: 16px 0;
  transition: border-color 0.3s;
}

@media (any-hover: hover) {
  .post-top-news a:hover {
    border-bottom-color: var(--color_primary);
  }
}

.post-top-news time {
  display: inline-block;
  color: #aaa;
  font-family: var(--font_jp);
  font-weight: var(--font_medium);
  flex-shrink: 0;
  font-size: 0.9375rem;
}

.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 0.9375rem;
}

@media (max-width: 800px) {
  .post-top-news article:first-child a {
    padding: 0 0 10px;
  }

  .post-top-news a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

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

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

.t-blog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 180px;
  position: relative;
}

.t-blog-layout .l-ttl {
  margin-top: -15px;
}

.t-blog-layout .l-ttl .txt01 {
  color: #D5EBE1;
  font-size: 5rem;
  line-height: 1;
}

.t-blog-layout .l-ttl .txt02 {
  font-size: 1.25rem;
  margin-top: -23px;
}

.t-blog-layout .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.post-top-blog .post-img {
  overflow: hidden;
}

.post-top-blog .post-img img {
  aspect-ratio: 7/5;
  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);
  font-weight: var(--font_medium);
  font-size: 0.9375rem;
  line-height: 1;
  margin-bottom: 5px;
}

.post-top-blog .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 0.875rem;
}

.post-top-blog .category-wrap {
  background-color: var(--color_primary);
  color: var(--color_white);
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1px 10px 2px;
}

.post-top-blog .category {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
}

.post-top-blog .category+.category::before {
  content: "/";
  display: block;
  margin: 0 4px;
}

.post-top-blog .no-post {
  white-space: nowrap;
}

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

@media (max-width: 800px) {
  .t-blog-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  .t-blog-layout .l-ttl {
    margin: 0;
  }

  .t-blog-layout .l-ttl .txt01 {
    font-size: 4.375rem;
  }

  .t-blog-layout .l-ttl .txt02 {
    font-size: 1.125rem;
  }

  .t-blog-layout .l-btn {
    position: static;
    text-align: center;
  }

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

  .post-top-blog:has(.no-post) {
    border-top: none;
  }

  .post-top-blog a {
    border-bottom: 1px solid var(--color_border);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
    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.75rem;
  }

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

  .post-top-blog .category-wrap {
    padding: 0 12px 2px;
  }

  .post-top-blog .category {
    font-size: 0.625rem;
  }
}

/*------------
Card
--------------*/
.top-card01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
}

.top-card01>li {
  padding-top: 35px;
  position: relative;
}

.top-card01 .inner {
  height: 100%;
  background-color: #faf6ec;
  box-shadow: 0px 0px 10px rgba(153, 206, 183, 0.2);
  padding: 40px 50px 45px;
}

.top-card01 .card-ttl {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5625rem;
  text-align: center;
  border-bottom: 1px solid #DBD8D1;
  padding-bottom: 10px;
  margin: 0 auto 15px;
}

.top-card01 .card-ttl.small {
  font-size: 1.25rem;
  padding-top: 8px;
}

.top-card01 .card-en {
  color: var(--color_primary);
  font-size: 3.75rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: -20px;
}

.top-card02 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.top-card02>li>a {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  background-color: #DBCCA7;
  font-size: 1.5625rem;
  line-height: 1.4;
  text-align: center;
  padding: 30px 15px;
  transition: background-color 0.3s;
}

@media (hover: hover) {
  .top-card02>li>a:hover {
    background-color: #c8b380;
  }
}

@media (max-width: 1200px) {
  .top-card02>li>a {
    font-size: 1.25rem;
  }
}

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

  .top-card01>li {
    padding-top: 20px;
  }

  .top-card01 .inner {
    padding: 30px 5%;
  }

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

  .top-card01 .card-ttl.small {
    padding-top: 0;
  }

  .top-card01 .card-en {
    font-size: 2.5rem;
    left: 5%;
  }

  .top-card02 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .top-card02>li>a {
    font-size: 1.125rem;
    padding: 20px 15px;
  }

  .top-card02>li img {
    width: 120px;
  }
}

/*------------
Layout
--------------*/
.top-layout01 {
  display: flex;
  gap: 60px;
}

.top-layout01 .l-img {
  width: 57%;
  height: 100%;
  position: relative;
  margin: 0 0 0 25px;
  padding-bottom: 25px;
}

.top-layout01 .l-img::before {
  content: "";
  background-color: var(--color_sub02);
  height: calc(100% - 25px);
  position: absolute;
  inset: 25px 25px auto -100%;
  z-index: -1;
}

.top-layout01 .l-desc {
  flex: 1;
}

.top-layout01.reverse {
  flex-direction: row-reverse;
}

.top-layout01.reverse .l-img {
  margin: 0 25px 0 0;
}

.top-layout01.reverse .l-img::before {
  inset: 25px -100% auto 25px;
}

.top-layout01 .l-en {
  color: var(--color_primary);
  font-size: 3.75rem;
  line-height: 1;
  margin-bottom: 10px;
}

.top-layout01 .l-ttl {
  font-size: 2.5rem;
}

.top-layout01 .l-sub-ttl {
  font-size: 1.5625rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  padding-left: 65px;
  position: relative;
}

.top-layout01 .l-sub-ttl::before {
  content: "";
  background: var(--color_primary);
  width: 50px;
  height: 1px;
  position: absolute;
  top: 22px;
  left: 0;
}

.top-layout02 {
  display: flex;
}

.top-layout02 .l-img {
  position: relative;
  width: 52%;
  z-index: 1;
}

.top-layout02 .l-desc {
  background-color: var(--color_bg);
  padding: 55px 70px;
  margin: 60px 0 0 -55px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.top-layout02.reverse {
  flex-direction: row-reverse;
}

.top-layout02.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
}

.top-layout02 .l-en {
  color: var(--color_primary);
  font-size: 3.75rem;
  line-height: 1;
  margin-bottom: 15px;
  position: absolute;
  top: -28px;
  left: 80px;
}

.top-layout02 .l-ttl {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.top-layout02 .l-sub-ttl {
  font-size: 1.5625rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  padding-left: 65px;
  position: relative;
}

.top-layout02 .l-sub-ttl::before {
  content: "";
  background-color: var(--color_primary);
  width: 50px;
  height: 1px;
  position: absolute;
  top: 19px;
  left: 0;
}

@media (max-width: 1200px) {
  .top-layout01 .l-img {
    width: 48%;
  }
}

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

  .top-layout01 .l-img {
    width: 100%;
    margin: 0;
  }

  .top-layout01.reverse {
    flex-direction: column;
  }

  .top-layout01.reverse .l-img {
    margin: 0;
  }

  .top-layout01 .l-en {
    font-size: 2.5rem;
  }

  .top-layout01 .l-ttl {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }

  .top-layout01 .l-sub-ttl {
    font-size: 1.25rem;
    padding-left: 35px;
    margin-bottom: 15px;
  }

  .top-layout01 .l-sub-ttl::before {
    width: 25px;
    top: 17px;
  }

  .top-layout02 {
    flex-direction: column;
  }

  .top-layout02 .l-img {
    width: 100%;
  }

  .top-layout02 .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px -5vw 0;
    z-index: 0;
  }

  .top-layout02.reverse {
    flex-direction: column;
  }

  .top-layout02.reverse .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px -5vw 0;
  }

  .top-layout02 .l-en {
    font-size: 2.5rem;
    margin-bottom: 5px;
    position: static;
  }

  .top-layout02 .l-ttl {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }

  .top-layout02 .l-sub-ttl {
    font-size: 1.25rem;
    margin-bottom: 15px;
    padding-left: 35px;
  }

  .top-layout02 .l-sub-ttl::before {
    width: 25px;
    top: 16px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  display: grid;
  place-items: center;
  align-content: center;
  height: 21.333vw;
  max-height: 320px;
  min-height: 240px;
  background-color: var(--color_bg);
  margin-top: 120px;
  padding: 15px 5% 30px;
  text-align: center;
}

.page-ttl .txt01 {
  color: #D5EBE1;
  font-family: var(--font_jp);
  /* font-size: clamp(3.125rem, 7.777vw, 8.75rem); */
  font-size: clamp(80px, 7.222vw, 8.125rem);
  line-height: 1;
  text-transform: uppercase;
}

.page-ttl .txt02 {
  font-size: 1.6875rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: max(-2.857vw, -40px);
}

.breadcrumb {
  margin: 5px 0 60px;
  width: 100%;
}

.breadcrumb ul {
  margin-inline: auto;
  max-width: 1024px;
  width: 90%;
}

.breadcrumb ul li {
  font-size: 0.8125rem;
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "> ";
  padding: 0 5px;
  color: var(--color_border);
}

.breadcrumb ul a {
  text-decoration: underline;
}

.breadcrumb ul a:hover {
  text-decoration: none;
}

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

@media (max-width: 800px) {
  .page-ttl {
    height: 150px;
    min-height: auto;
    margin-top: 68px;
    padding: 15px 5% 20px;
  }

  .page-ttl .txt01 {
    font-size: clamp(1.875rem, 10vw, 2.5rem);
  }

  .page-ttl .txt02 {
    font-size: 1.25rem;
    margin-top: -15px;
  }

  .breadcrumb {
    margin: 5px 0 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

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

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

.u-h3,
.postdata h3 {
  font-size: 1.625rem;
  padding-left: 67px;
  margin-bottom: 30px;
  position: relative;
}

.u-h3::before,
.postdata h3::before {
  content: "";
  background: var(--color_primary);
  width: 50px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 22px;
}

.u-h4,
.postdata h4 {
  color: var(--color_primary);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.u-ttl01 {
  font-size: 1.125rem;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.u-ttl01::before {
  content: "■";
  color: var(--color_primary);
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 800px) {

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

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

  .u-h3::before,
  .postdata h3::before {
    width: 30px;
    top: 20px;
  }

  .u-h4,
  .postdata h4 {
    font-size: 1.125rem;
  }
}

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

.tall:last-of-type {
  margin-bottom: 100px;
}

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

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

.hidden {
  overflow: hidden;
}

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

  .tall:last-of-type {
    margin-bottom: 70px;
  }

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

.l-style01 {
  display: flex;
}

.l-style01 .l-img {
  position: relative;
  width: 45%;
  z-index: 1;
}

.l-style01 .l-desc {
  min-height: 400px;
  background: var(--color_bg);
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  flex: 1;
}

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

.l-style01.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
}

.l-style01 .l-num {
  display: inline-block;
  color: var(--color_primary);
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 15px;
}

.l-style01 .l-ttl {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.l-style01 .l-sub-ttl {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.l-style01 .l-sub-ttl::before {
  content: "";
  flex: 0 0 30px;
  background: var(--color_primary);
  width: 30px;
  height: 2px;
}

.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.l-imgR.align-center,
.l-imgL.align-center {
  align-items: center;
}

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

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

.l-imgR .l-img.recruit,
.l-imgL .l-img.recruit {
  width: 20%;
  display: grid;
  place-content: center;
  text-align: center;
}

.l-imgR .l-img.recruit figcaption,
.l-imgL .l-img.recruit figcaption {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 5px;
}

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

.l-imgR .l-ttl,
.l-imgL .l-ttl {
  color: var(--color_primary);
  font-size: 1.375rem;
  margin-bottom: 15px;
}

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

@media (max-width: 800px) {
  .l-style01 {
    flex-direction: column;
  }

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

  .l-style01 .l-desc {
    min-height: auto;
    padding: 100px 5vw 30px;
    margin: -80px -5vw 0;
  }

  .l-style01.reverse {
    flex-direction: column;
  }

  .l-style01.reverse .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px -5vw 0;
  }

  .l-style01 .l-num {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .l-style01 .l-ttl {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .l-style01 .l-sub-ttl {
    gap: 15px;
    font-size: 17px;
    margin-bottom: 15px;
  }

  .l-style01 .l-sub-ttl::before {
    flex: 0 0 20px;
    width: 20px;
  }

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

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

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

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

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

.list-disc li {
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}

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

.list-disc.gap15 {
  gap: 15px;
}

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

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

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

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

.list-check>li {
  line-height: 1.5;
  padding-left: 25px;
  position: relative;
}

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

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

.list-check-square>li {
  line-height: 1.5;
  padding-left: 30px;
  position: relative;
}

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

.dl-style01 {
  display: grid;
  gap: 15px;
}

.dl-style01 .item {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 10px 0;
}

.dl-style01 .item02 {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 10px 0;
}

.dl-style01 dt {
  font-size: 1.25rem;
  background: var(--color_primary);
  color: #fff;
  padding: 25px;
}

.dl-style01 dd {
  background: var(--color_bg);
  padding: 25px 20px;
}

.dl-style01 .ttl {
  font-size: 1.25rem;
}

.dl-style01 .arrow {
  margin: 13px 0 10px 75px;
}

.dl-style01 .list-check {
  gap: 8px;
}

.dl-style01.small dt {
  font-size: 1.125rem;
  padding: 15px;
}

.dl-style01.small dd {
  padding: 15px;
}

.dl-style02 {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: start;
  gap: 10px 30px;
}

.dl-style02>dt {
  background: var(--color_primary);
  border-radius: 50px;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3px 10px 4px;
}

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

  .dl-style01 .item02 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dl-style01 dt {
    font-size: 1.125rem;
    padding: 20px;
  }

  .dl-style01 .ttl {
    font-size: 1.125rem;
  }

  .dl-style01 .arrow {
    margin: 13px 0 10px 50px;
  }

  .dl-style02 {
    grid-template-columns: 80px 1fr;
    gap: 10px 15px;
  }

  .dl-style02>dt {
    font-size: 0.75rem;
  }
}

.card-style01 {
  gap: 44px;
}

.card-style01>li {
  border: 1px solid var(--color_primary);
  padding: 30px;
}

.card-style01 .card-img {
  margin-bottom: 25px;
}

.card-style01 .card-ttl {
  background-color: var(--color_primary);
  color: #fff;
  font-size: 1.375rem;
  text-align: center;
  padding: 13px 5%;
  margin: -30px -30px 25px;
}

.card-style02 {
  gap: 16px;
}

.card-style02>li {
  background-color: var(--color_bg);
  padding: 25px;
}

.card-style02 .card-img {
  margin-bottom: 25px;
}

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

.card-style02 .item01 {
  grid-area: 2/1/3/3;
}

.card-style02.border>li {
  border: 1px solid var(--color_primary);
}

.card-style03 {
  gap: 16px;
}

.card-style03>li {
  border: 1px solid #A4C7B8;
  padding: 25px;
}

.card-style03 .card-img {
  margin-bottom: 25px;
}

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

.card-style04 {
  gap: 16px;
}

.card-style04>li {
  background-color: var(--color_bg);
  border-top: 5px solid var(--color_primary);
  padding: 25px;
}

.card-style04 .card-img {
  margin-bottom: 25px;
}

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

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

  .card-style01>li {
    padding: 25px;
  }

  .card-style01 .card-ttl {
    font-size: 1.125rem;
    margin: -25px -25px 20px;
  }

  .card-style02 {
    gap: 15px;
  }

  .card-style02 .item01 {
    grid-area: auto;
  }

  .card-style03 {
    gap: 15px;
  }
}

.table-style01 th,
.table-style01 td {
  padding: 15px;
  border: 1px solid #D1D1D1;
  vertical-align: middle;
}

.table-style01 th {
  background: var(--color_primary);
  color: #fff;
  text-align: center;
}

.table-style01 th.bg01 {
  background: var(--color_bg);
  color: #333;
}

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

.table-style01 .table-img {
  max-width: 150px;
  margin: 0 auto;
}

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

.table-style02 th {
  padding: 15px 15px 15px 0;
  text-align: left;
  border-bottom: 2px solid var(--color_primary);
}

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

@media (max-width: 800px) {

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

  .table-style01.sp-block {
    border-bottom: 1px solid #D1D1D1;
  }

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

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

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

  .table-style02.sp-block tr:first-child th {
    padding: 0 0 5px;
  }

  .table-style02.sp-block th,
  .table-style02.sp-block td {
    display: block;
    padding: 20px 0;
  }

  .table-style02.sp-block th {
    border-bottom: none;
    padding-bottom: 5px;
  }

  .table-style02.sp-block td {
    padding-top: 0;
    position: relative;
  }

  .table-style02.sp-block td::before {
    content: "";
    background-color: var(--color_primary);
    width: 100px;
    height: 2px;
    position: absolute;
    bottom: -2px;
  }

  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.875rem;
  }

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

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

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

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

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

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

.box-style01 {
  padding-top: 30px;
  position: relative;
}

.box-style01 .box-desc {
  height: 100%;
  background-color: #faf6ec;
  padding: 40px 50px;
}

.box-style01 .box-ttl {
  font-size: 1.5625rem;
  border-bottom: 1px solid #DBD8D1;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.box-style01 .box-en {
  color: var(--color_primary);
  font-size: 3.75rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: -17px;
}

.box-style02 {
  background-color: var(--color_bg);
  padding: 27px 50px 35px 20px;
  position: relative;
}

.box-style02::before {
  content: "";
  background: url(../images/under/box-style02_deco01.svg) no-repeat top left/contain;
  width: 410px;
  aspect-ratio: 410/160;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.box-style02::after {
  content: "";
  background: url(../images/under/box-style02_deco02.svg) no-repeat bottom right/contain;
  width: 410px;
  aspect-ratio: 410/160;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.box-style02 .inner {
  display: flex;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.box-style02 .box-desc {
  margin-top: 20px;
}

.box-style02 .box-ttl {
  font-size: 1.5625rem;
  border-bottom: 1px solid #DBD8D1;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.box-style02 .box-en {
  color: #fff;
  font-size: 3.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.box-style02 .l-imgR .l-img {
  width: 38%;
}

.box-style03 {
  border: 1px solid #A4C7B8;
  padding: 5%;
}

.box-style03 .box-ttl {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 25px;
}

.box-style04 {
  background-color: var(--color_bg);
  padding: 5%;
}

.box-style04 .box-ttl {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 25px;
}

.box-style05 {
  background: var(--color_primary);
  color: #fff;
  padding: 40px;
}

.box-style05 .box-ttl {
  display: flex;
  gap: 15px;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.box-style05 .box-ttl img {
  filter: brightness(0) invert(1);
}

.box-style06 {
  background: var(--color_bg);
  padding: 40px;
}

.box-style06 .box-ttl {
  color: var(--color_primary);
  display: flex;
  gap: 15px;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding-top: 20px;
  }

  .box-style01 .box-desc {
    padding: 30px 20px 20px;
  }

  .box-style01 .box-ttl {
    font-size: 1.25rem;
  }

  .box-style01 .box-en {
    font-size: 2.5rem;
    left: 5%;
  }

  .box-style02 {
    padding: 20px;
  }

  .box-style02::before {
    width: 300px;
  }

  .box-style02::after {
    width: 180px;
  }

  .box-style02 .inner {
    flex-direction: column;
    gap: 15px;
  }

  .box-style02 .box-desc {
    margin-top: 0;
  }

  .box-style02 .box-ttl {
    font-size: 1.25rem;
  }

  .box-style02 .box-en {
    font-size: 2.5rem;
  }

  .box-style02 .l-imgR .l-img {
    width: 100%;
  }

  .box-style03 {
    padding: 20px;
  }

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

  .box-style04 {
    padding: 20px;
  }

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

  .box-style05 {
    padding: 20px;
  }

  .box-style05 .box-ttl {
    font-size: 1.125rem;
  }

  .box-style06 {
    padding: 20px;
  }

  .box-style06 .box-ttl {
    font-size: 1.125rem;
  }
}

.flow-style01 {
  display: grid;
  gap: 40px;
}

.flow-style01>li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 50px;
  position: relative;
  min-height: 150px;
}

.flow-style01>li:not(:last-child)::before {
  content: "";
  background-color: var(--color_primary);
  width: 1px;
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 33px;
}

.flow-style01>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: var(--color_primary) transparent transparent transparent;
  position: absolute;
  bottom: -1px;
  left: 28px;
}

.flow-style01 .flow-num {
  font-size: 1.875rem;
  color: var(--color_primary);
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.flow-style01 .flow-num::before {
  content: attr(data-en);
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.flow-style01 .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}

.flow-style01 .flow-img {
  width: 35%;
}

.flow-style01 .flow-desc {
  flex: 1;
  padding-top: 10px;
}

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

.flow-style02 {
  border: 2px solid #eee;
  background: #fff;
  padding: 5%;
}

.flow-style02>li+li {
  border-top: 1px solid #A4C7B8;
  padding-top: 70px;
  margin-top: 70px;
  position: relative;
}

.flow-style02>li+li::before {
  content: "";
  background: url(../images/share/flow_arrow02.svg) no-repeat center/contain;
  width: 45px;
  height: 45px;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-style02 .flow-ttl {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid #A4C7B8;
  font-size: 1.25rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.flow-style02 .flow-ttl .num {
  background: var(--color_primary);
  border-radius: 50px;
  display: inline-block;
  color: #fff;
  font-size: 0.75rem;
  line-height: 25px;
  padding: 0 10px;
  margin-top: 3px;
}

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

.flow-style02 .flow-img {
  width: 30%;
}

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

.flow-style03 li {
  background-color: #fff;
  border: 1px solid #A4C7B8;
  padding: 20px 20px 20px 0;
  display: grid;
  align-items: center;
  grid-template-columns: 120px 1fr;
  position: relative;
}

.flow-style03 li+li {
  margin-top: 40px;
}

.flow-style03 li+li::before {
  content: "";
  width: 14px;
  height: 50px;
  background: url(../images/share/flow_arrow.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
}

.flow-style03 .num {
  color: var(--color_primary);
  text-align: center;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0;
}

.flow-style03 .num::before {
  content: attr(data-en);
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 3px;
}

.flow-style03 .num.small {
  font-size: 1.375rem;
}

.flow-style03 .flow-ttl {
  font-size: 1.125rem;
  margin-bottom: 3px;
}

.flow-style03 .flow-desc {
  flex: 1;
  border-left: 1px solid #A4C7B8;
  padding-left: 50px;
  line-height: 1.7;
}

.flow-style03 .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
}

.flow-style03 .flow-img {
  width: 30%;
}

.flow-style03 .flow-read {
  flex: 1;
}

.flow-style03 p+p {
  margin-top: 1em;
}

@media (max-width: 800px) {
  .flow-style01 {
    gap: 40px;
  }

  .flow-style01>li {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }

  .flow-style01>li:not(:last-child)::before {
    top: 55px;
    left: 24px;
  }

  .flow-style01>li:not(:last-child)::after {
    left: 20px;
  }

  .flow-style01 .flow-num {
    font-size: 1.5625rem;
  }

  .flow-style01 .flow-num::before {
    font-size: 0.75rem;
    margin-bottom: 5px;
  }

  .flow-style01 .wrap {
    flex-direction: column;
    gap: 15px;
  }

  .flow-style01 .flow-img {
    width: 100%;
  }

  .flow-style01 .flow-ttl {
    margin-bottom: 10px;
  }

  .flow-style01 .flow-desc {
    padding-top: 0;
  }

  .flow-style02 {
    padding: 20px;
  }

  .flow-style02>li+li {
    padding-top: 50px;
    margin-top: 50px;
  }

  .flow-style02 .flow-ttl {
    flex-direction: column;
    gap: 10px;
    font-size: 1.25rem;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .flow-style02 .flow-ttl .num {
    margin: 0;
  }

  .flow-style02 .wrap {
    flex-direction: column;
    gap: 30px;
  }

  .flow-style02 .flow-img {
    width: 100%;
  }

  .flow-style03 li {
    padding: 20px 20px 20px 0;
    grid-template-columns: 75px 1fr;
  }

  .flow-style03 .num {
    font-size: 1.5625rem;
  }

  .flow-style03 .num::before {
    font-size: 0.75rem;
  }

  .flow-style03 .num.small {
    font-size: 1.125rem;
  }

  .flow-style03 .flow-ttl {
    margin-bottom: 5px;
  }

  .flow-style03 .flow-desc {
    padding-left: 20px;
    line-height: 1.5;
  }

  .flow-style03 .wrapper {
    display: block;
  }

  .flow-style03 .flow-img {
    width: 100%;
    margin-bottom: 15px;
  }
}

.faq-style {
  border-top: 1px solid #A4C7B8;
  border-bottom: 1px solid #A4C7B8;
  transition: 0.3s;
}

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

.faq-style .faq-summary {
  display: block;
  cursor: pointer;
  padding: 18px 50px;
  position: relative;
}

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

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

.faq-style .faq-summary:hover .faq-icon {
  background-color: var(--color_primary);
  color: #fff;
}

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

.faq-style .faq-inner {
  padding: 3px 50px 30px;
  position: relative;
}

.faq-style .faq-inner .faq-icon {
  border: 1px solid var(--color_sub01);
  background-color: var(--color_sub01);
  color: #fff;
  top: 0;
  left: 0;
}

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

.faq-style .faq-icon {
  border: 1px solid var(--color_primary);
  border-radius: 50px;
  color: var(--color_black);
  font-size: 0.9375rem;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

  .faq-style .faq-summary {
    padding: 18px 35px 18px 50px;
  }

  .faq-style .faq-summary .faq-icon {
    top: 14px;
  }

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

  .faq-style .faq-inner {
    padding: 6px 0 30px 50px;
  }

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

.staff-layout .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 8%;
}

.staff-layout .l-img {
  width: 32%;
}

.staff-layout .l-desc {
  flex: 1;
}

.staff-layout .job {
  margin-bottom: 25px;
}

.staff-layout .l-ttl {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 35px;
}

.staff-layout .name {
  font-size: 1.5625rem;
}

.staff-layout .kana {
  color: var(--color_primary);
  font-size: 0.8125rem;
}

.card-profile {
  margin-top: 50px;
}

.card-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
  font-size: 14px;
}

.card-profile .item {
  background-color: var(--color_bg);
  border-radius: 5px;
  padding: 30px;
}

.card-profile .card-ttl {
  border-bottom: 1px dashed #A4C7B8;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.card-profile .list-disc li:before {
  top: 9px;
}

.dl-career {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px 0;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .staff-layout .wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .staff-layout .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }

  .staff-layout .l-ttl {
    margin-bottom: 25px;
  }

  .staff-layout .name {
    font-size: 22px;
  }

  .staff-layout .kana {
    font-size: 12px;
  }

  .staff-layout .card-profile {
    margin-top: 30px;
  }

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

  .card-profile .item {
    padding: 20px;
  }
}

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

.list-anchor-link a {
  display: flex;
  align-items: center;
  background-color: var(--color_bg);
  border-radius: 3px;
  font-size: 0.875rem;
  line-height: 1.5;
  position: relative;
  padding: 0 35px 0 15px;
  min-height: 60px;
  transition: background-color 0.3s;
}

.list-anchor-link a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}

.list-anchor-link a:hover {
  background-color: #c6e2d8;
}

@media (max-width: 800px) {
  .list-anchor-link {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .list-anchor-link a {
    font-size: 13px;
    justify-content: center;
    text-align: center;
    padding: 8px 8px 20px;
    min-height: 0;
    height: 100%;
  }

  .list-anchor-link a::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
  }

  .list-anchor-link a:hover {
    opacity: 0.7;
  }
}

.merit-demerit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
}

.merit-demerit .item {
  background: var(--color_bg);
  border-top: 5px solid var(--color_primary);
  padding: 35px;
}

.merit-demerit .item:nth-of-type(2) {
  border-color: var(--color_sub01);
}

.merit-demerit .item:nth-of-type(2) .item-ttl::after {
  color: var(--color_sub01);
}

.merit-demerit .item:nth-of-type(2) .list-disc li:before {
  background-color: var(--color_sub01);
}

.merit-demerit .item-ttl {
  font-size: 1.375rem;
  line-height: 1;
  margin-bottom: 25px;
}

.merit-demerit .item-ttl::after {
  content: attr(data-en);
  color: var(--color_primary);
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  margin-left: 15px;
}

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

  .merit-demerit .item {
    padding: 35px 25px;
  }

  .merit-demerit .item-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .merit-demerit .item-ttl::after {
    font-size: 12px;
  }
}

.tel-layout {
  background: var(--color_bg);
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.tel-layout .l-tel {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 35px;
  line-height: 1;
}

.tel-layout .l-tel img {
  padding-top: 5px;
}

.tel-layout .l-time {
  display: grid;
  gap: 10px;
  line-height: 1.5;
}

.tel-layout .l-time .item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
}

.tel-layout .l-time dt {
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  text-align: center;
  font-size: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-layout .l-ttl {
    font-size: 0.9375rem;
    margin: 0 auto 25px;
  }

  .tel-layout .wrapper {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }

  .tel-layout .l-tel {
    font-size: 1.875rem;
  }

  .tel-layout .l-tel img {
    max-width: 20px;
  }
}

.under-slider01 .splide {
  margin: 0 auto;
}

.under-slider01 .splide__track {
  overflow: visible;
}

.under-slider01 .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

.under-slider01 .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

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

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

.under-slider01 .splide__slide img {
  width: 100%;
}

.under-slider01 .item-desc {
  margin-top: 15px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.under-slider01 .item-ttl {
  font-size: 1rem;
  margin-bottom: 5px;
}

.under-slider02 .item-img {
  position: relative;
}

.under-slider02 figcaption {
  background: #fff;
  font-size: 0.6875rem;
  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%);
}

@media (max-width: 800px) {
  .under-slider01 .splide__arrow--prev {
    left: 15px;
  }

  .under-slider01 .splide__arrow--next {
    right: 15px;
  }

  .under-slider01 .item-desc {
    margin-top: 15px;
  }
}

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

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

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.dl-privacy dt {
  border-bottom: 1px solid var(--color_primary);
  font-size: 1.125rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.dl-privacy .item+.item {
  margin-top: 30px;
}

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

.sp-only {
  display: none;
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.bold,
.strong {
  font-family: var(--font_base_bold);
}

.color-red {
  color: #F44336 !important;
}

.color-green {
  color: var(--color_primary) !important;
}

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

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

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbXM {
  margin-bottom: 50px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mb40_30 {
  margin-bottom: 40px !important;
}

.mb80_30 {
  margin-bottom: 80px !important;
}

.mbXL {
  margin-bottom: 100px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

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

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

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

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

.gap15 {
  gap: 15px;
}

.gap20 {
  gap: 20px;
}

.gap25 {
  gap: 25px;
}

.gap30 {
  gap: 30px;
}

.gap35 {
  gap: 35px;
}

.gap40 {
  gap: 40px;
}

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

  .sp-only {
    display: block;
  }

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

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

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

  .mbL,
  .mb40_30,
  .mb80_30 {
    margin-bottom: 30px !important;
  }

  .mbXL {
    margin-bottom: 50px !important;
  }

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

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

  .sp-gap0 {
    gap: 0;
  }

  .sp-gap15 {
    gap: 15px;
  }

  .sp-gap20 {
    gap: 20px;
  }

  .sp-gap25 {
    gap: 25px;
  }

  .sp-gap30 {
    gap: 30px;
  }

  .sp-gap35 {
    gap: 35px;
  }

  .sp-gap40 {
    gap: 40px;
  }
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.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: translateY(0);
  }
}

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

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

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

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

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

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

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

.splide--rtl {
  direction: rtl;
}

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

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

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

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

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

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

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

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

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

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

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

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

.splide__pagination {
  gap: 8px;
}

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

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

.splide__pagination__page:hover {
  cursor: pointer;
}

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.splide__toggle:hover {
  background: #D3D3D3;
}

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

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