@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #8D652A;
  --color_link: #56A333;
  --color_border: #e9e9e9;
  --color_primary: #56A333;
  --color_secondary: #8CC4C9;
  --color_tertiary: #8D652A;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_brown: #8D652A;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
  --color_bg: #FEFBF3;
}

/* ====================================================
【アニメーション】
==================================================== */
:root {
  --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* ====================================================
【サイト全体の設定】
==================================================== */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}

:root {
  --font_base: "Local Noto Sans JP", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B", sans-serif;
  --font_en: "Quicksand", sans-serif;
  --font_weight: 500;
  --font_size: rem(16);
  --line_height: 2.0;
  --letter_spacing: .05em;
}

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

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  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%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

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

:where(a, input, button, textarea, select) {
  -ms-touch-action: manipulation;
  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;
  -webkit-border-before: 1px solid;
  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: normal;
  letter-spacing: 0.05em;
  font-family: var(--font_jp);
  line-height: 1.5;
}

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

th,
dt {
  font-weight: 500;
}

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

.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 120px;
}

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

  body {
    font-size: 0.9375rem;
  }
}

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

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

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

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

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  border: 1px solid #DFDFDF;
  background: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 5px;
}

.time-table-head {
  background-color: #607D8B;
  color: #fff;
}

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

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

.time-table-body .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0;
}

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

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

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

@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.625rem;
  }

  .time-table-head,
  .time-table-body {
    grid-template-columns: 90px 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 {
  -webkit-transform: rotate(180deg);
  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%;
  -webkit-transform: translate(-50%, -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.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: "";
  -webkit-transition: background-size 0.3s;
  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%;
}

.btn-out:hover::after {
  background-position: left bottom;
  background-size: 100% auto;
}

.btn-more {
  display: inline-block;
  background: #fff;
  font-family: var(--font_jp);
  color: var(--color_primary);
  font-size: 1.25rem;
  text-align: center;
  padding: 20px 40px 20px 20px;
  border-radius: 20px;
  border: 1px solid currentColor;
  -webkit-box-shadow: 4px 4px 0px currentColor;
  box-shadow: 4px 4px 0px currentColor;
  min-width: 325px;
  line-height: 1.35;
  position: relative;
}

.btn-more::after {
  content: "";
  -webkit-mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  background: currentColor;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-more.blue {
  color: #8CC4C9;
}

.btn-more.brown {
  color: #8D652A;
}

.btn-more.small {
  padding: 10px 30px;
  border-radius: 15px;
}

.btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  color: var(--color_primary);
  border: 1px solid currentColor;
  -webkit-box-shadow: 4px 4px 0px currentColor;
  box-shadow: 4px 4px 0px currentColor;
  border-radius: 10px;
  font-size: 1.125rem;
  padding: 15px 25px;
  line-height: 1.5;
  font-family: var(--font_jp);
}

.btn-icon svg {
  fill: currentColor;
}

.btn-tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.37;
  color: var(--color_primary);
}

.btn-tel::before {
  content: "";
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  background: currentColor;
  width: 22px;
  height: 22px;
  display: inline-block;
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 800px) {
  .btn-more {
    min-width: 0;
    width: 100%;
    font-size: 0.9375rem;
  }

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

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  text-box: trim-both cap alphabetic;
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 17px;
}

.category-ttl::before {
  content: "";
  background: url(../images/under/h2_deco@2x.png) no-repeat center/contain;
  width: 60px;
  height: 40px;
  display: inline-block;
  margin-right: 15px;
  -webkit-transform: rotate(-10deg) translateY(8px);
  transform: rotate(-10deg) translateY(8px);
}

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

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

.list-category-links>li::before {
  content: "";
  -webkit-mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  background: var(--color_primary);
  width: 6px;
  height: 10px;
  position: absolute;
  top: 5px;
  left: 0;
}

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

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

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

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

@media (any-hover: hover) {
  .list-category-links a:hover {
    text-decoration: underline;
  }
}

.list-category-links a:focus-visible {
  text-decoration: none;
}

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

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

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

.post-under-blog a::before {
  content: "";
  -webkit-mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  background: var(--color_primary);
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  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;
  border-radius: 10px;
}

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

.post-under-blog time {
  display: block;
  font-size: 0.875rem;
  line-height: 1;
  font-family: var(--font_jp);
}

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

.post-under-blog .category {
  display: inline-block;
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  text-align: center;
  padding: 3px 15px;
  background: #FEFBF3;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 0px #8D652A;
  box-shadow: 3px 3px 0px #8D652A;
}

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

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

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

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

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

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

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

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

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

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

/* 公開情報 */
.post-under-disclosure {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.post-under-disclosure .post-img img {
  border-radius: 10px;
  border: 1px solid var(--color_border);
  aspect-ratio: 725/1024;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.post-under-disclosure .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 15px;
}

@media (any-hover: hover) {
  .post-under-disclosure li a:hover .post-ttl {
    text-decoration: underline;
  }
}

.post-under-disclosure li a:focus-visible .post-ttl {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .post-under-disclosure {
    grid-template-columns: 1fr;
  }
}

/*お知らせ*/
.post-under-news {
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}

.post-under-news a {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 80px 100px 1fr;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 70px 20px 10px;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

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

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

.post-under-news time {
  display: block;
  font-size: 0.8125rem;
  line-height: 1;
}

.post-under-news .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  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: 2;
  overflow: hidden;
  font-size: 0.9375rem;
  line-height: 1.5;
}

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

/*詳細ページ*/
.layout-single-post {
  width: min(90%, 800px);
  margin-inline: auto;
}

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

.layout-single-post time {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: var(--font_jp);
}

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

.layout-single-post .category {
  display: inline-block;
  font-size: 0.625rem;
  line-height: 1.5;
  text-align: center;
  padding: 3px 15px;
  background: #FEFBF3;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 0px #8D652A;
  box-shadow: 3px 3px 0px #8D652A;
  width: 100%;
}

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

@media (max-width: 800px) {
  .layout-single-post .l-ttl {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }
}

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

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

.post-number span:hover,
.post-number a:hover {
  color: var(--color_primary);
}

.post-number .current {
  color: var(--color_primary);
  text-decoration: underline;
  text-underline-offset: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 下層表示 */
.l-under-post01 {
  max-width: 900px;
  margin-inline: auto;
  padding: 45px 50px 55px;
  background: #fff;
  border: 2px solid #8D652A;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 35px 50px;
}

.l-under-post01 .l-ttl {
  grid-area: 1/1/2/2;
  font-size: 1.75rem;
  line-height: 1.57;
}

.l-under-post01 .u-post-style01,
.l-under-post01 .u-post-style02 {
  grid-area: 2/1/3/3;
}

.l-under-post01 .l-btn {
  grid-area: 1/2/2/3;
}

.l-under-post01 .btn-more {
  min-width: 210px;
  padding: 14px 40px 14px 20px;
}

.u-post-style01 .post-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.u-post-style01 time {
  display: inline-block;
  font-family: var(--font_jp);
  color: var(--color_primary);
  white-space: nowrap;
}

.u-post-style01 .post-ttl {
  font-family: var(--font_jp);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .u-post-style01 .post-item a:hover .post-ttl {
    text-decoration: none;
  }
}

.u-post-style01 .post-item a:focus-visible .post-ttl {
  text-decoration: none;
}

@media (max-width: 800px) {
  .l-under-post01 {
    display: block;
    padding: 25px;
  }

  .l-under-post01 .l-ttl {
    font-size: 1.5625rem;
    margin-bottom: 30px;
  }

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

  .l-under-post01 .btn-more {
    min-width: 0;
    width: 100%;
  }

  .u-post-style01 .post-item a {
    display: block;
  }
}

.l-under-post02 {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 10px 70px;
  max-width: 1200px;
  margin-inline: auto;
}

.l-under-post02 .l-ttl {
  grid-area: 1/1/2/2;
  line-height: 1.27;
  margin-bottom: 50px;
  font-size: 2rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.l-under-post02 .l-ttl::before {
  content: "";
  background: url(../images/top_ttl_deco@2x.png) no-repeat center/contain;
  width: 71px;
  height: 50px;
  display: block;
  margin-inline: auto;
}

.l-under-post02 .l-desc {
  grid-area: 1/2/3/3;
}

.l-under-post02 .l-btn {
  grid-area: 2/1/3/2;
}

.l-under-post02 .btn-more {
  min-width: 200px;
}

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

.u-post-style02 .post-img {
  aspect-ratio: 51/37;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--color_border);
}

.u-post-style02 .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.u-post-style02 time {
  display: block;
  font-family: var(--font_jp);
  line-height: 1;
  color: var(--color_primary);
  margin-bottom: 15px;
}

.u-post-style02 .post-ttl {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font_jp);
  line-height: 1.5;
  margin-bottom: 15px;
}

.u-post-style02 .category {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 1.3;
  padding: 8px 15px;
  background: #FEFBF3;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 0px #8D652A;
  box-shadow: 3px 3px 0px #8D652A;
  margin: 0 5px 10px 0;
}

@media (any-hover: hover) {
  .u-post-style02 .post-item a:hover .post-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .u-post-style02 .post-item a:hover .post-ttl {
    text-decoration: underline;
  }
}

.u-post-style02 .post-item a:focus-visible .post-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.u-post-style02 .post-item a:focus-visible .post-ttl {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .l-under-post02 {
    display: block;
  }

  .l-under-post02 .l-ttl {
    font-size: 1.5625rem;
  }

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

  .l-under-post02 .btn-more {
    min-width: 0;
    width: 100%;
  }

  .u-post-style02 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.u-post-style03 {
  font-family: var(--font_jp);
}

.u-post-style03 .post-item {
  padding: 22px 0;
  border-top: 3px dotted #E3F6E0;
}

.u-post-style03 .post-item:last-of-type {
  border-bottom: 3px dotted #E3F6E0;
}

.u-post-style03 .post-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.u-post-style03 time {
  color: var(--color_primary);
}

.u-post-style03 .post-ttl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (any-hover: hover) {
  .u-post-style03 .post-item a:hover .post-ttl {
    text-decoration: underline;
  }
}

.u-post-style03 .post-item a:focus-visible .post-ttl {
  text-decoration: underline;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.h-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  padding: 25px 2.5%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: #fff;
  border-radius: 0 0 50px 50px;
}

.h-utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.h-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.h-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  padding: 12px 10px 7px;
  text-align: center;
  min-width: 120px;
  border-radius: 10px;
  border: 2px solid var(--color_primary);
  color: var(--color_primary);
  line-height: 1.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.h-btn.bg01 {
  background: var(--color_primary);
  color: #fff;
}

.h-btn svg {
  fill: currentColor;
}

@media (any-hover: hover) {
  .h-btn:hover {
    background: #E3F6E0;
    color: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .h-wrapper {
    position: static;
    gap: 15px;
    padding: 20px 15px;
  }

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

  .h-utility {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
.gnavi-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 30px;
}

.gnavi-links>li>a {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.125rem;
}

/*dropdown*/
.dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  font-family: var(--font_jp);
}

.dropdown::before {
  content: "";
  -webkit-mask: url(../images/share/gnavi_deco.svg) no-repeat center/contain;
  mask: url(../images/share/gnavi_deco.svg) no-repeat center/contain;
  background: #E3F6E0;
  width: 70px;
  height: 30px;
  position: absolute;
  left: -8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.dropdown::after {
  content: "";
  -webkit-mask: url(../images/share/icon_dropdown.svg) no-repeat center/contain;
  mask: url(../images/share/icon_dropdown.svg) no-repeat center/contain;
  background: var(--color_primary);
  width: 12px;
  height: 10px;
  -webkit-transform-origin: right;
  transform-origin: right;
}

.dropdown.color01::before {
  background: #E0F1F6;
}

.dropdown.color01::after {
  background: #8CC4C9;
}

.dropdown.color02::before {
  background: #F6ECE0;
}

.dropdown.color02::after {
  background: #8D652A;
}

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

.dropdown .sub-menu {
  display: grid;
  grid-gap: 5px;
  pointer-events: none;
  background-color: #FEFBF3;
  border-radius: 30px;
  -webkit-box-shadow: 5px 5px 0px #8D652A;
  box-shadow: 5px 5px 0px #8D652A;
  padding: 30px 50px;
  position: absolute;
  top: 40px;
  right: 50%;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.dropdown .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

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

.dropdown .menu-ttl {
  line-height: 1.5;
  margin-bottom: 10px;
}

@media (any-hover: hover) {
  .dropdown .menu-ttl a:hover {
    text-decoration: underline;
  }
}

.dropdown .menu-ttl a:focus-visible {
  text-decoration: underline;
}

.list-sub-menu li+li {
  margin-top: 5px;
}

.list-sub-menu li a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.list-sub-menu li a::before {
  content: "";
  -webkit-mask: url(../images/share/icon_arrow_right.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow_right.svg) no-repeat center/contain;
  background: var(--color_primary);
  width: 12px;
  height: 10px;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (any-hover: hover) {
  .list-sub-menu li a:hover::before {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
}

.dropdown.color01 .list-sub-menu li a::before {
  background: #8CC4C9;
}

.dropdown.color02 .list-sub-menu li a::before {
  background: #8D652A;
}

.gnavi-links [aria-current=page],
.drawer-links [aria-current=page],
.f-links [aria-current=page] {
  color: var(--color_primary);
}

/*------------
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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35px;
  height: 15px;
}

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

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

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

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

.h-menu-btn-txt {
  display: block;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: bold;
  text-align: center;
  margin-top: 5px;
}

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

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

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

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

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

.gnavi-drawer-container {
  background-color: #F5F5F5;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5%;
  margin-left: auto;
  padding: 50px 2.5%;
  width: 350px;
  height: 100%;
  overflow-y: auto;
}

.gnavi-drawer-container .drawer-item .item-ttl {
  display: block;
  font-family: var(--font_jp);
  font-size: 1rem;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 10px;
}

.drawer-links {
  display: grid;
  gap: 15px;
  line-height: 1.5;
  font-size: 1.125rem;
}

.drawer-links li a {
  font-family: var(--font_jp);
}

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

  .drawer-links {
    font-size: 0.875rem;
    gap: 10px;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.f-cta-box {
  max-width: 1400px;
  width: 90%;
  margin-inline: auto;
  background: #E3F6E0;
  border-radius: 50px;
  margin-bottom: 80px;
  padding: 60px 0 100px;
  position: relative;
  z-index: 1;
}

.f-cta-box::before {
  content: "";
  background: url(../images/share/f_illust01@2x.png) no-repeat center/contain;
  width: 245px;
  height: 150px;
  position: absolute;
  top: -55px;
  left: -55px;
}

.f-cta-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.f-cta-card .item {
  padding: 45px 25px 35px;
  background: #FEFBF3;
  border-radius: 30px;
  color: var(--color_primary);
  border: 2px solid currentColor;
  position: relative;
  min-height: 177px;
  display: grid;
  place-content: center;
  text-align: center;
}

.f-cta-card .item-ttl {
  position: absolute;
  top: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.9375rem;
  text-align: center;
  padding: 6px 10px;
  line-height: 1.5;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 0px currentColor;
  box-shadow: 3px 3px 0px currentColor;
  min-width: 170px;
}

.f-cta-card .icon svg {
  fill: currentColor;
  margin: 0 auto 15px;
}

.f-cta-card .btn-more {
  min-width: 0;
  width: 100%;
}

.f-cta-card .btn-tel {
  color: currentColor;
}

.f-cta-card .item.bg01 {
  background: #E0F1F6;
  color: #8CC4C9;
}

.f-cta-card .item.bg02 {
  background: #F6ECE0;
  color: #8D652A;
}

.footer {
  margin-top: auto;
  position: relative;
  overflow: hidden;
  padding: 55px 0 0;
}

.f-contents {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 70px;
  margin-inline: auto;
  margin-bottom: 75px;
  width: min(90%, 1024px);
  position: relative;
  z-index: 0;
}

.f-contents::before,
.f-contents::after {
  content: "";
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
}

.f-contents::before {
  background-image: url(../images/share/f_illust03@2x.png);
  width: 199px;
  height: 364px;
  left: -400px;
  bottom: 90px;
}

.f-contents::after {
  background-image: url(../images/share/f_illust02@2x.png);
  width: 510px;
  height: 308px;
  right: -575px;
  top: -190px;
}

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

.f-txt {
  line-height: 1.5;
  color: currentColor;
  margin-bottom: 15px;
}

.f-link-item+.f-link-item {
  margin-top: 30px;
}

.f-link-item .item-ttl {
  display: block;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  line-height: 1.66;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 20px;
}

.f-links {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
}

.f-links a {
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  letter-spacing: 0;
}

@media (any-hover: hover) {
  .f-links a:hover {
    text-decoration: underline;
  }
}

.f-links a:focus-visible {
  text-decoration: underline;
}

.f-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-inline: auto;
  width: min(90%, 1024px);
}

.f-bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.8125rem;
  line-height: 1;
}

.f-bottom-links li+li::before {
  content: "|";
  margin: 0 15px;
}

@media (any-hover: hover) {
  .f-bottom-links a:hover {
    text-decoration: underline;
  }
}

.f-bottom-links a:focus-visible {
  text-decoration: underline;
}

.copyright {
  font-size: 0.8125rem;
}

.f-bg {
  padding: 0 0 50px;
  background: #FEFBF3;
  position: relative;
}

.f-bg::before {
  content: "";
  background: #FEFBF3;
  border-radius: 100px 100px 0 0;
  width: 100%;
  height: 320px;
  position: absolute;
  bottom: 100%;
  left: 0;
}

.pagetop {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 2;
}

@media (max-width: 800px) {
  .f-cta-box {
    padding: 30px 0 50px;
    border-radius: 30px;
    margin-bottom: 50px;
  }

  .f-cta-box::before {
    width: 155px;
    height: 90px;
    top: -45px;
    left: -5%;
  }

  .f-cta-card {
    grid-template-columns: 1fr;
  }

  .f-cta-card .item {
    min-height: 0;
    padding: 45px 5% 35px;
  }

  .f-bg {
    padding: 0 0 100px;
  }

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

  .f-logo img {
    margin-inline: auto;
  }

  .f-txt {
    text-align: center;
  }

  .site-map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    gap: 10px;
  }

  .f-links {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }

  .f-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }

  .copyright {
    padding-top: 50px;
  }

  .pagetop {
    top: auto;
    bottom: 65px;
    right: 20px;
    width: 40px;
  }
}

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

@media (max-width: 800px) {
  :root {
    --navi-background: #56A333;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
    --navi-font: "FOT-筑紫A丸ゴシック Std B", sans-serif;
  }

  .sp-navi-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--navi-background);
    -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    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>* {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    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;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

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

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

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

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

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

  .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;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

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

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

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

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

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

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

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

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

.layout-sidebar .l-sidebar .sidebar-item+.sidebar-item {
  margin-top: 50px;
}

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

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

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

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

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  z-index: 2;
  max-width: 1700px;
  width: 94%;
  margin: 125px auto 0;
}

.hero .splide__slide img {
  width: 100%;
  height: 780px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50px;
}

.hero .splide__pagination {
  gap: 10px;
}

.hero .splide__pagination__page {
  width: 10px;
  height: 10px;
}

.hero .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.hero .splide__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  padding: 0 15px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.hero-wrapper {
  position: relative;
  z-index: 1;
}

.hero-wrapper::before,
.hero-wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.hero-wrapper::before {
  background: url(../images/hero_illust01@2x.png) no-repeat center/contain;
  width: 128px;
  height: 131px;
  right: -30px;
  bottom: -120px;
}

.hero-wrapper::after {
  background: url(../images/hero_illust02@2x.png) no-repeat center/contain;
  width: 497px;
  height: 460px;
  bottom: -295px;
  left: -190px;
}

.hero-desc {
  position: absolute;
  bottom: 120px;
  left: 5.88%;
  z-index: 2;
}

.hero-catch {
  font-family: var(--font_jp);
  margin-top: 40px;
}

.hero-catch .catch-txt {
  padding: 5px 25px;
  background: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 5px 5px 0px #8D652A;
  box-shadow: 5px 5px 0px #8D652A;
  font-size: 1.875rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  line-height: 1.5;
}

.hero-catch .catch-txt+* {
  margin-top: 15px;
}

.hero-catch .catch-txt.large {
  font-size: 3.125rem;
}

.hero-catch .catch-txt.large em {
  font-size: 3.75rem;
}

.hero-catch .catch-txt.deco {
  position: relative;
}

.hero-catch .catch-txt.deco::before {
  content: "";
  background: url(../images/hero_ttl_deco.svg) no-repeat center/contain;
  width: 90px;
  height: 131px;
  position: absolute;
  top: -35px;
  right: -70px;
  z-index: 2;
}

.hero-information {
  position: absolute;
  right: 100px;
  bottom: 260px;
  z-index: 3;
}

.hero-message {
  position: relative;
  text-align: center;
  font-family: var(--font_jp);
}

.hero-message::before {
  content: "";
  background: url(../images/speech-bubble.png) no-repeat center / contain;
  width: 249px;
  height: 189px;
  position: absolute;
  right: -38px;
  bottom: -40px;
  z-index: -1;
  pointer-events: none;
}

.btn-recruit {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
}

.btn-recruit a {
  display: grid;
  place-content: center;
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background: #FCF08F;
  -webkit-box-shadow: 5px 5px 0px #8D652A;
  box-shadow: 5px 5px 0px #8D652A;
  font-family: var(--font_jp);
  font-size: 1.875rem;
  line-height: 1.5;
  text-align: center;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.btn-recruit a::before {
  content: "";
  background: url(../images/hero_btn_deco.svg) no-repeat center/contain;
  width: 161px;
  height: 137px;
  position: absolute;
  top: -13px;
  left: -20px;
  z-index: 3;
  pointer-events: none;
}

.btn-recruit a::after {
  content: attr(data-en);
  display: block;
  font-size: 1.25rem;
  font-family: var(--font_en);
  font-weight: 600;
}

@media (any-hover: hover) {
  .btn-recruit a:hover {
    opacity: 0.8;
  }
}

.btn-recruit a:focus-visible {
  opacity: 0.8;
}

@media (max-width: 800px) {
  .hero {
    width: 92%;
    margin: 0 auto;
  }

  .hero .splide__slide img {
    height: 350px;
    border-radius: 30px;
  }

  .hero-wrapper::before {
    width: 42px;
    height: 43px;
    right: -13px;
    bottom: 0;
  }

  .hero-wrapper::after {
    width: 165px;
    height: 155px;
    left: -50px;
    bottom: -70px;
  }

  .hero .splide__controls {
    position: static;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin: 15px auto 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hero .splide__pagination__page {
    width: 7px;
    height: 7px;
  }

  .hero-desc {
    left: 10px;
    bottom: 60px;
  }

  .hero-text-img {
    width: 190px;
  }

  .hero-catch {
    margin-top: 65px;
  }

  .hero-catch .catch-txt {
    font-size: 0.9375rem;
    border-radius: 10px;
    padding: 5px 10px;
    line-height: 1.4;
  }

  .hero-catch .catch-txt.large {
    font-size: 1.5rem;
  }

  .hero-catch .catch-txt.large em {
    font-size: 1.8125rem;
  }

  .hero-catch .catch-txt+* {
    margin-top: 8px;
  }

  .hero-catch .catch-txt.deco::before {
    width: 44px;
    height: 63px;
    top: -17px;
    right: -33px;
  }

  .hero-information-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
    gap: 30px;
  }

  .hero-information {
    position: static;
  }

  .hero-message {
    font-size: 10px;
    padding-top: 15px;
  }

  .hero-message::before {
    content: "";
    background: url(../images/speech-bubble_sp.png) no-repeat center / contain;
    width: 168px;
    height: 113px;
    position: absolute;
    right: -35px;
    bottom: -25px;
  }

  .btn-recruit {
    position: static;
  }

  .btn-recruit a {
    width: 103px;
    height: 103px;
    margin-left: auto;
    font-size: 0.9375rem;
  }

  .btn-recruit a::before {
    width: 80px;
    height: 68px;
    top: -7px;
    left: -10px;
  }

  .btn-recruit a::after {
    font-size: 0.625rem;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  text-align: center;
  line-height: 1.27;
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.t-h2::before {
  content: "";
  background: url(../images/top_ttl_deco@2x.png) no-repeat center/contain;
  width: 142px;
  height: 100px;
  display: block;
  margin-inline: auto;
}

.t-h2.tal {
  text-align: left;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

@media (max-width: 800px) {
  .t-h2 {
    font-size: 1.5625rem;
    margin-bottom: 40px;
  }

  .t-h2::before {
    width: 90px;
    height: 60px;
  }
}

/*------------
Section
--------------*/
/* sec01 */
.sec01 {
  padding: 515px 0 0;
  margin-top: -415px;
  background: url(../images/sec01_bg.jpg) no-repeat center/cover;
  font-size: 1.125rem;
  position: relative;
}

.sec01 .container {
  position: relative;
  z-index: 1;
}

.sec01 .container.deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../images/sec01_illust01@2x.png) no-repeat center/contain;
  width: 230px;
  height: 457px;
  right: -365px;
  bottom: -185px;
}

.sec01-bg-deco {
  background: #fff;
  height: 150px;
  border-radius: 50px 50px 0 0;
  margin: 110px 50px 0;
  position: relative;
}

.sec01-bg-deco::before,
.sec01-bg-deco::after {
  content: "";
  pointer-events: none;
  position: absolute;
  bottom: 0;
  width: 8rem;
  height: 8rem;
}

.sec01-bg-deco::before {
  content: "";
  -webkit-box-shadow: 2rem 2rem 0 0 #fff;
  box-shadow: 2rem 2rem 0 0 #fff;
  border-radius: 0 0 3rem 0;
  right: 100%;
}

.sec01-bg-deco::after {
  content: "";
  -webkit-box-shadow: -2rem 2rem 0 0 #fff;
  box-shadow: -2rem 2rem 0 0 #fff;
  border-radius: 0 0 0 3rem;
  left: 100%;
}

.sec01-bg-white {
  background: #fff;
  padding: 0 0 150px;
}

.sec01 .container.wide-more {
  max-width: 1460px;
}

.l-top-card01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.l-top-card01 .l-item {
  overflow: hidden;
}

.l-top-card01 .l-img {
  border-radius: 50px;
  border: 10px solid #E0F1F6;
  overflow: hidden;
}

.l-top-card01 .l-desc {
  position: relative;
  margin: -80px 50px 0 0;
  z-index: 2;
}

.l-top-card01 .l-list {
  position: absolute;
  bottom: calc(100% + 20px);
  left: 40px;
  right: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.l-top-card01 .l-list li {
  padding: 8px 15px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 0px #8D652A;
  box-shadow: 3px 3px 0px #8D652A;
  font-size: 0.9375rem;
  line-height: 1.3;
  font-family: var(--font_jp);
}

.l-top-card01 .l-box {
  padding: 50px;
  background: #E0F1F6;
  border-radius: 0 50px 50px 50px;
  position: relative;
}

.l-top-card01 .l-box::before {
  content: "";
  pointer-events: none;
  -webkit-box-shadow: -2rem 2rem 0 0 #E0F1F6;
  box-shadow: -2rem 2rem 0 0 #E0F1F6;
  border-radius: 0 0 0 3rem;
  width: 10rem;
  height: 10rem;
  position: absolute;
  bottom: 100%;
  left: 10px;
}

.l-top-card01 .l-item.bg01 .l-img {
  border-color: #F6ECE0;
}

.l-top-card01 .l-item.bg01 .l-box {
  background: #F6ECE0;
}

.l-top-card01 .l-item.bg01 .l-box::before {
  -webkit-box-shadow: -2rem 2rem 0 0 #F6ECE0;
  box-shadow: -2rem 2rem 0 0 #F6ECE0;
}

.l-top-card01 .l-ttl {
  font-size: 1.875rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

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

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

@media (max-width: 800px) {
  .sec01 {
    padding: 400px 0 0;
    margin-top: -375px;
    font-size: 1rem;
  }

  .sec01-bg-deco {
    margin: 50px 0 0;
    height: 50px;
  }

  .sec01-bg-deco::before,
  .sec01-bg-deco::after {
    display: none;
  }

  .sec01-bg-white {
    padding: 0 0 50px;
  }

  .l-top-card01 {
    grid-template-columns: 1fr;
    gap: 30px;
    font-size: 0.9375rem;
  }

  .l-top-card01 .l-img {
    border-width: 5px;
  }

  .l-top-card01 .l-desc {
    margin: -50px 5% 0 0;
  }

  .l-top-card01 .l-list {
    right: 0;
    left: 25px;
  }

  .l-top-card01 .l-list li {
    font-size: 0.625rem;
    padding: 5px 10px;
    border-radius: 5px;
  }

  .l-top-card01 .l-box {
    padding: 30px 5%;
    border-radius: 0 30px 30px 30px;
  }

  .l-top-card01 .l-box::before {
    left: 5px;
  }

  .l-top-card01 .l-ttl {
    font-size: 1.125rem;
  }

  .l-top-card01 .l-ttl em {
    font-size: 1.5625rem;
  }

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

/* sec02 */
.sec02 {
  padding: 0 0 250px;
}

.sec02 .container {
  max-width: 1400px;
}

.top-box01 {
  max-width: 1400px;
  margin-inline: auto;
  padding: 70px 5vw 80px;
  background: #E3F6E0;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}

.top-box01::before,
.top-box01::after {
  content: "";
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.top-box01::before {
  background-image: url(../images/sec02_illust01@2x.png);
  width: 224px;
  height: 107px;
  top: -50px;
  right: 0;
}

.top-box01::after {
  background-image: url(../images/sec02_illust02@2x.png);
  width: 411px;
  height: 346px;
  left: -150px;
  bottom: -145px;
}

.l-top-post01 {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 10px 70px;
  max-width: 1200px;
  margin-inline: auto;
}

.l-top-post01 .t-h2 {
  grid-area: 1/1/2/2;
}

.l-top-post01 .l-desc {
  grid-area: 1/2/3/3;
}

.l-top-post01 .l-btn {
  grid-area: 2/1/3/2;
}

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

.top-post-style01 .post-img {
  aspect-ratio: 51/37;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
}

.top-post-style01 .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-post-style01 time {
  display: block;
  font-family: var(--font_jp);
  line-height: 1;
  color: var(--color_primary);
  margin-bottom: 15px;
}

.top-post-style01 .post-ttl {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font_jp);
  line-height: 1.5;
  margin-bottom: 15px;
}

.top-post-style01 .category {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 1.3;
  padding: 8px 15px;
  background: #FEFBF3;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 0px #8D652A;
  box-shadow: 3px 3px 0px #8D652A;
  margin: 0 5px 10px 0;
}

@media (any-hover: hover) {
  .top-post-style01 .post-item a:hover .post-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .top-post-style01 .post-item a:hover .post-ttl {
    text-decoration: underline;
  }
}

.top-post-style01 .post-item a:focus-visible .post-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top-post-style01 .post-item a:focus-visible .post-ttl {
  text-decoration: underline;
}

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

  .sec02-bg01 {
    height: 50px;
    left: 0;
    right: 0;
  }

  .sec02-bg01::before,
  .sec02-bg01::after {
    display: none;
  }

  .top-box01 {
    padding: 25px 5% 50px;
    border-radius: 30px;
  }

  .top-box01::before {
    width: 140px;
    height: 65px;
    top: -35px;
  }

  .top-box01::after {
    width: 250px;
    height: 200px;
    left: -20%;
    bottom: -90px;
  }

  .l-top-post01 {
    display: block;
  }

  .l-top-post01.under .t-h2 {
    font-size: 1.5625rem;
  }

  .top-post-style01 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

/* sec03 */
.sec03 {
  padding: 160px 0 200px;
  background: #FEFBF3;
  position: relative;
}

.sec03::before {
  content: "";
  background: url(../images/sec03_wave.svg) no-repeat bottom/100% auto;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 100%;
  left: 0;
  pointer-events: none;
}

.sec03 .container {
  max-width: 1400px;
}

.top-layout01 {
  padding: 50px 0 60px;
  background: #fff;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}

.top-layout01::before,
.top-layout01::after {
  content: "";
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
}

.top-layout01::before {
  background-image: url(../images/sec03_illust01@2x.png);
  width: 195px;
  height: 289px;
  top: -135px;
  left: -95px;
}

.top-layout01::after {
  background-image: url(../images/sec03_illust02@2x.png);
  width: 230px;
  height: 149px;
  bottom: -55px;
  right: -40px;
}

.top-layout01 .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 60px;
  max-width: 1200px;
  width: 85.71%;
  margin-inline: auto;
}

.top-layout01 .l-img {
  width: 51.58%;
  position: relative;
  margin-top: -110px;
  z-index: 2;
}

.top-layout01 .l-img img {
  border-radius: 50px;
  border: 10px solid #fff;
}

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

.top-layout01 .t-h2::before {
  margin: 0 auto 0 0;
}

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

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

  .top-layout01::before {
    display: none;
  }

  .top-layout01 .l-container {
    display: block;
    width: 90%;
  }

  .top-layout01 .l-img {
    width: 100%;
    margin-bottom: 30px;
  }

  .top-layout01 .l-img img {
    border-width: 5px;
  }

  .top-layout01::after {
    width: 130px;
    height: 80px;
    bottom: -35px;
    right: -5%;
  }
}

/* sec04 */
.sec04 {
  padding: 100px 0 150px;
  background: #FCF08F;
  position: relative;
}

.sec04::before {
  content: "";
  background: url(../images/sec04_wave.svg) no-repeat bottom/100% auto;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 100%;
  left: 0;
  pointer-events: none;
}

.sec04 .container {
  max-width: 1400px;
}

.top-layout02 {
  position: relative;
  z-index: 1;
}

.top-layout02::before {
  content: "";
  background: url(../images/sec04_illust01@2x.png) no-repeat center/contain;
  width: 242px;
  height: 154px;
  position: absolute;
  right: -20px;
  top: -20px;
  z-index: 2;
}

.top-layout02::after {
  content: "";
  background: url(../images/sec04_illust02@2x.png) no-repeat center/contain;
  width: 244px;
  height: 213px;
  position: absolute;
  bottom: -20px;
  left: -95px;
  z-index: -1;
}

.top-layout02 .l-img {
  position: relative;
}

.top-layout02 .l-img img {
  border-radius: 50px;
  border: 10px solid #fff;
  width: 100%;
  height: 550px;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-layout02 .l-desc {
  max-width: 1200px;
  width: 85.71%;
  position: relative;
  z-index: 1;
  margin: -245px auto 0;
  padding: 60px 0 100px;
  background: #FEFBF3;
  border-radius: 50px;
}

.top-layout02 .l-container {
  max-width: 1024px;
  width: 90%;
  margin-inline: auto;
}

.top-layout02 p+p {
  margin-top: 2em;
}

.top-layout02 .l-btn {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 40px;
}

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

  .sec04 .container {
    width: 95%;
  }

  .top-layout02::before {
    width: 160px;
    height: 100px;
    top: -10px;
    right: -3%;
  }

  .top-layout02::after {
    width: 100px;
    height: 90px;
    bottom: -40px;
    left: -5%;
  }

  .top-layout02 .l-img img {
    border-width: 5px;
    height: auto;
    border-radius: 30px;
  }

  .top-layout02 .l-desc {
    width: 95%;
    margin: -30px auto 0;
    border-radius: 30px;
    padding: 30px 5%;
  }

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

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

/* sec05 */
.sec05 {
  padding: 75px 0 100px;
  position: relative;
}

.sec05::before {
  content: "";
  background: url(../images/sec05_wave.svg) no-repeat bottom/100% auto;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 100%;
  left: 0;
  pointer-events: none;
}

.top-post-style02 {
  font-family: var(--font_jp);
}

.top-post-style02 .post-item {
  padding: 22px 0;
  border-top: 3px dotted #E3F6E0;
}

.top-post-style02 .post-item:last-of-type {
  border-bottom: 3px dotted #E3F6E0;
}

.top-post-style02 .post-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.top-post-style02 time {
  color: var(--color_primary);
}

.top-post-style02 .post-ttl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.top-post-style02 .post-item a:focus-visible .post-ttl {
  text-decoration: underline;
}

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

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
/* デフォルト */
.page-header-default {
  margin-top: 125px;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.page-header-default::before {
  content: "";
  background: url(../images/under/pagettl_bg_base.jpg) no-repeat center/cover;
  width: 100%;
  height: 235px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.page-header-default .page-ttl {
  height: 340px;
  max-width: 1700px;
  width: 94.44%;
  margin-inline: auto;
  background: url(../images/under/pagettl_img_base.jpg) no-repeat center/cover;
  border-radius: 50px;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-header-default .page-ttl .page-ttl-container {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
}

.page-header-default .page-ttl .jp {
  line-height: 1.5;
  font-family: var(--font_jp);
  font-size: 2.375rem;
  padding: 10px 25px;
  background: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 5px 5px 0px #8D652A;
  box-shadow: 5px 5px 0px #8D652A;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

/* スライダー */
.page-header-slide {
  position: relative;
  margin-top: 125px;
}

.page-header-slide .splide__slide img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-header-slide .page-ttl-wrapper {
  position: absolute;
  left: 50%;
  bottom: 105px;
  z-index: 2;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 1200px;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.page-header-slide .page-ttl .title {
  font-family: var(--font_jp);
  font-size: 2.375rem;
  padding: 5px 25px;
  background: #FEFBF3;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 0px #8D652A;
  box-shadow: 5px 5px 0px #8D652A;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  line-height: 1.5;
}

.page-header-slide .page-catch {
  margin-left: auto;
}

.page-header-slide .page-catch .catch-txt {
  font-family: var(--font_jp);
  font-size: 1.625rem;
  line-height: 1.5;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 15px;
}

.page-header-slide .page-catch .catch-txt span {
  display: inline-block;
  padding: 5px 20px;
  background: #F6ECE0;
  border-radius: 10px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  width: 90%;
  margin-inline: auto;
}

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

.breadcrumb ul li {
  display: inline;
}

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

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

@media (max-width: 800px) {
  .page-header-default {
    margin-top: 0;
    padding-bottom: 30px;
  }

  .page-header-default::before {
    height: 100px;
  }

  .page-header-default .page-ttl {
    border-radius: 30px;
    height: 200px;
    width: 90%;
  }

  .page-header-default .page-ttl .jp {
    font-size: 1.5625rem;
    padding: 5px 15px;
    border-radius: 10px;
  }

  .page-header-slide {
    margin-top: 0;
  }

  .page-header-slide .page-ttl-wrapper {
    bottom: 30px;
    display: block;
  }

  .page-header-slide .splide__slide img {
    height: 350px;
  }

  .page-header-slide .page-ttl .title {
    font-size: 1.5625rem;
  }

  .page-header-slide .page-catch {
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    margin-left: auto;
    margin: 20px 0 15px auto;
  }

  .page-header-slide .page-catch .catch-txt {
    font-size: 1rem;
    gap: 5px;
  }
}

.u-h2 {
  margin-bottom: 50px;
  font-size: 2rem;
  text-align: center;
}

.u-h2::before {
  content: "";
  background: url(../images/under/h2_deco@2x.png) no-repeat center/contain;
  width: 71px;
  height: 50px;
  display: block;
  margin: 0 auto 10px;
}

.u-h3 {
  margin-bottom: 30px;
  font-size: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #8D652A;
}

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

@media (max-width: 800px) {
  .u-h2 {
    margin-bottom: 30px;
    font-size: 1.5625rem;
  }

  .u-h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
  }

  .u-h4 {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }
}

.tall {
  padding: 90px 0;
}

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

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

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

.hidden {
  overflow: hidden;
}

.sec-bg01 {
  padding: 90px 0 150px;
  background: #E3F6E0;
  position: relative;
}

.sec-bg01::before,
.sec-bg01::after {
  content: "";
  -webkit-mask: url(../images/under/u_wave.svg) no-repeat bottom/100% auto;
  mask: url(../images/under/u_wave.svg) no-repeat bottom/100% auto;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  pointer-events: none;
}

.sec-bg01::before {
  background: #E3F6E0;
  bottom: 100%;
}

.sec-bg01::after {
  background: #fff;
  bottom: 0;
}

.tall+.sec-bg01 {
  margin-top: 50px;
}

.bg-white {
  position: relative;
}

.bg-white::before {
  content: "";
  -webkit-mask: url(../images/under/u_wave.svg) no-repeat bottom/100% auto;
  mask: url(../images/under/u_wave.svg) no-repeat bottom/100% auto;
  background: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 100%;
  left: 0;
  pointer-events: none;
}

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

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

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

  .sec-bg01 {
    padding: 50px 0 60px;
  }
}

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

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

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

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

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

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

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

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

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

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

.list-disc.col2,
.list-check.col2,
.list-num.col2 {
  grid-gap: 5px;
}

.list-disc.col3,
.list-check.col3,
.list-num.col3 {
  grid-gap: 5px;
}

.list-disc.col4,
.list-check.col4,
.list-num.col4 {
  grid-gap: 5px;
}

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

.table-style01 th {
  background-color: #E3F6E0;
  font-family: var(--font_jp);
  font-weight: normal;
}

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

@media (max-width: 800px) {
  .table-style01.sp-block colgroup {
    display: none;
  }

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

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

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

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

  .table-style01.sp-block td {
    border-width: 0 1px;
  }

  .table-scroll::before {
    content: "スクロールできます";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/contain;
    width: 100%;
    height: 24.5px;
    margin-bottom: 5px;
    padding-left: 40px;
    position: sticky;
    top: 0;
    left: 0;
  }

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

  .table-scroll.table-sticky .table-style01 th:first-child {
    position: sticky;
    top: 0;
    left: 0;
  }
}

.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%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.under-slider01 .splide__arrow--prev,
.under-slider01 .splide__arrow--next {
  -webkit-mask-size: auto 25px;
  mask-size: auto 25px;
}

.under-slider01 .splide__arrow--prev {
  left: calc((100% - 875px) / 2);
}

.under-slider01 .splide__arrow--next {
  right: calc((100% - 875px) / 2);
}

.under-slider01 .splide__slide img {
  width: 100%;
  border-radius: 20px;
}

.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 .splide__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.under-slider02 .splide__arrow svg {
  display: none;
}

.under-slider02 .splide__arrow--prev {
  left: -7%;
}

.under-slider02 .splide__arrow--next {
  right: -7%;
}

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

.under-slider02 figcaption {
  background: #fff;
  font-size: 0.6875rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.under-slider02 .splide__pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* under-slider03 */
.under-slider03 .splide__slide img {
  border-radius: 20px;
}

.under-slider03 .splide__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.under-slider03 .splide__arrow--prev {
  left: -3% !important;
}

.under-slider03 .splide__arrow--next {
  right: -3% !important;
}

.under-slider03 .splide__pagination {
  margin: 10px 0 0;
}

@media (max-width: 800px) {
  .under-slider03 .splide__arrow--prev {
    left: -7% !important;
  }

  .under-slider03 .splide__arrow--next {
    right: -7% !important;
  }
}

/* gallery-slider01 */
.gallery-slider01 .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gallery-slider01 .splide__slide img {
  max-height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-slider01 .thumb-wrapper {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 8px;
  margin-top: 30px;
}

.gallery-slider01 .thumb-item {
  cursor: pointer;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.gallery-slider01 .thumb-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-slider01 .thumb-item.is-active {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

@media (max-width: 800px) {
  .gallery-slider01 .splide__slide img {
    max-height: 300px;
  }

  .gallery-slider01 .thumb-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-slider01 .thumb-item {
    cursor: pointer;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .gallery-slider01 .thumb-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
  }

  .gallery-slider01 .thumb-item.is-active {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

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

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

/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5%;
}

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

.l-imgR .l-img img,
.l-imgL .l-img img {
  border-radius: 20px;
}

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

.l-imgR .l-img.small-more,
.l-imgL .l-img.small-more {
  width: 205px;
}

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

.l-imgR {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.fl-wrap {
  display: flow-root;
}

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

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

.fl-imgR {
  float: right;
  margin: 0 0 15px 35px;
}

.fl-imgL {
  float: left;
  margin: 0 35px 15px 0;
}

.br0 {
  border-radius: 0 !important;
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    display: block;
  }

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

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

  .l-imgR .l-img.small-more,
  .l-imgL .l-img.small-more {
    margin-inline: auto;
  }

  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }

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

/* img-layout */
.img-layout01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.img-layout01 .l-img {
  width: 45%;
  position: relative;
  z-index: 2;
}

.img-layout01 .l-img img {
  border-radius: 50px;
  border: 10px solid #FEFBF3;
}

.img-layout01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 50px 50px 50px 250px;
  margin: 100px 0 0 -200px;
  background: #FEFBF3;
  border-radius: 50px;
  position: relative;
}

.img-layout01 .l-desc::before {
  content: "";
  background: url(../images/under/u_illust01@2x.png) no-repeat center/contain;
  width: 190px;
  height: 135px;
  position: absolute;
  right: 15px;
  top: -80px;
  z-index: 2;
}

.img-layout01.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.img-layout01.reverse .l-desc {
  margin: 100px -200px 0 0;
  padding: 50px 250px 50px 50px;
}

.img-layout01.reverse .l-desc::before {
  right: auto;
  left: 100px;
}

.img-layout01 .l-ttl,
.ttl-style01 {
  font-family: var(--font_jp);
  margin-bottom: 30px;
}

.img-layout01 .l-ttl [lang=en],
.ttl-style01 [lang=en] {
  font-size: 1.125rem;
  color: var(--color_primary);
}

.img-layout01 .l-ttl .jp,
.ttl-style01 .jp {
  font-size: 2rem;
}

.sec-bg01 .img-layout01 .l-img img {
  border-color: #fff;
}

.sec-bg01 .img-layout01 .l-desc {
  background: #fff;
}

@media (max-width: 800px) {
  .img-layout01 {
    display: block;
  }

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

  .img-layout01 .l-img img {
    border-width: 5px;
    border-radius: 30px;
  }

  .img-layout01 .l-desc,
  .img-layout01.reverse .l-desc {
    margin: 10px 0 0;
    border-radius: 30px;
    padding: 30px 5%;
  }

  .img-layout01 .l-desc::before,
  .img-layout01.reverse .l-desc::before {
    width: 130px;
    height: 90px;
    left: auto;
    right: 15px;
    top: -50px;
  }

  .img-layout01 .l-ttl .jp,
  .ttl-style01 .jp {
    font-size: 1.5625rem;
  }
}

.img-layout02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
  padding: 0 5% 50px 5%;
  position: relative;
  z-index: 1;
}

.img-layout02::before {
  content: "";
  background: #fff;
  inset: 80px 0 0 0;
  border-radius: 50px;
  position: absolute;
  z-index: -1;
}

.img-layout02 .l-img {
  width: 40%;
}

.img-layout02 .l-img img {
  border-radius: 30px;
  border: 5px solid #fff;
}

.img-layout02 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 130px;
  position: relative;
}

.img-layout02 .num {
  display: grid;
  place-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #E3F6E0;
  color: var(--color_primary);
  font-size: 1.25rem;
  text-align: center;
  font-family: var(--font_jp);
  margin-bottom: 15px;
}

.img-layout02 .l-ttl {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #FCF08F;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.img-layout02.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 800px) {
  .img-layout02 {
    display: block;
    padding: 0 5% 30px;
  }

  .img-layout02::before {
    inset: 100px 0 0 0;
    border-radius: 30px;
  }

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

  .img-layout02 .l-desc {
    margin-top: 30px;
  }

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

.img-layout03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 70px;
}

.img-layout03 .l-img {
  width: 50%;
  margin: 0 0 0 -10%;
}

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

.img-layout03 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 50px;
}

.img-layout03 .l-catch {
  font-family: var(--font_jp);
  margin-bottom: 40px;
}

.img-layout03 .l-catch .catch-main {
  font-size: 2.5rem;
  line-height: 1.5;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  position: relative;
  padding-right: 70px;
}

.img-layout03 .l-catch .catch-main::after {
  content: "";
  background: url(../images/under/u_illust02@2x.png) no-repeat center/contain;
  width: 60px;
  height: 70px;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

.img-layout03 .l-catch .catch-main.illust01::after {
  background: url(../images/under/u_illust03@2x.png) no-repeat center/contain;
  width: 88px;
  height: 56px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.img-layout03 .l-catch .catch-main.illust02::after {
  background: url(../images/under/u_illust04@2x.png) no-repeat center/contain;
  width: 106px;
  height: 50px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  right: -30px;
}

.img-layout03 .l-catch .catch-sub {
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  line-height: 1.5;
}

.img-layout03 .l-catch .catch-sub span::first-letter {
  font-size: 1.875rem;
}

.img-layout03 .l-catch .catch-sub .item01::first-letter {
  color: #8CC4C9;
}

.img-layout03 .l-catch .catch-sub .item02::first-letter {
  color: #F58E9F;
}

.img-layout03 .l-catch .catch-sub .item03::first-letter {
  color: #FBB03B;
}

.img-layout03 .l-catch .catch-sub .item04::first-letter {
  color: #56A333;
}

.img-layout03.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.img-layout03.reverse .l-img {
  margin: 0 -10% 0 0;
}

@media (max-width: 800px) {
  .img-layout03 {
    display: block;
  }

  .img-layout03 .l-img {
    width: 100%;
    margin: 0 0 30px !important;
  }

  .img-layout03 .l-catch {
    margin-bottom: 30px;
  }

  .img-layout03 .l-catch .catch-main {
    font-size: 1.5625rem;
    padding-right: 55px;
  }

  .img-layout03 .l-catch .catch-main::after {
    width: 40px;
    height: 55px;
  }

  .img-layout03 .l-catch .catch-main.illust01 {
    padding-right: 75px;
  }

  .img-layout03 .l-catch .catch-main.illust01::after {
    width: 70px;
    height: 45px;
  }

  .img-layout03 .l-catch .catch-main.illust02 {
    padding-right: 95px;
  }

  .img-layout03 .l-catch .catch-main.illust02::after {
    width: 85px;
    height: 40px;
    right: 0;
  }

  .img-layout03 .l-catch .catch-sub {
    font-size: 1.125rem;
    gap: 15px;
  }

  .img-layout03 .l-catch .catch-sub span::first-letter {
    font-size: 1.4375rem;
  }
}

/* ボックス */
.box-style01 {
  padding: 5%;
  background: #fff;
  border: 2px solid var(--color_primary);
  border-radius: 30px;
}

.box-style01 .box-ttl {
  font-size: 1.5rem;
  margin-bottom: 30px;
  padding-left: 50px;
  position: relative;
}

.box-style01 .box-ttl::before {
  content: "";
  background: url(../images/under/ttl_icon01.svg) no-repeat center/contain;
  width: 30px;
  height: 35px;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 25px 5%;
  }

  .box-style01 .box-ttl {
    font-size: 1.25rem;
    padding-left: 40px;
    margin-bottom: 20px;
  }

  .box-style01 .box-ttl::before {
    height: 30px;
  }
}

.box-style02 {
  position: relative;
  padding-top: 20px;
}

.box-style02 .box-label {
  font-family: var(--font_jp);
  display: block;
  padding: 5px 20px;
  background: #fff;
  border-radius: 50px;
  -webkit-box-shadow: 3px 3px 0px currentColor;
  box-shadow: 3px 3px 0px currentColor;
  color: var(--color_primary);
  text-align: center;
  font-size: 1.125rem;
  position: absolute;
  top: 0;
  left: 5%;
  line-height: 1.3;
}

.box-style02 .box-inner {
  padding: 5%;
  background: #E3F6E0;
  border-radius: 20px;
}

@media (max-width: 800px) {
  .box-style02 .box-inner {
    padding: 25px;
  }
}

.box-style03 {
  padding: 5%;
  background: #E3F6E0;
  border-radius: 30px;
}

.box-style03.brown {
  background: #F6ECE0;
}

.box-style03 .box-ttl {
  font-size: 1.75rem;
  line-height: 1.57;
  margin-bottom: 25px;
}

.box-style03 .box-ttl.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}

.box-style03 .box-ttl.icon::before {
  content: "";
  -webkit-mask: url(../images/share/icon_help.svg) no-repeat center/contain;
  mask: url(../images/share/icon_help.svg) no-repeat center/contain;
  background: currentColor;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-top: 9px;
}

@media (max-width: 800px) {
  .box-style03 {
    padding: 25px;
    border-radius: 20px;
  }

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

  .box-style03 .box-ttl.icon::before {
    width: 25px;
    height: 25px;
    margin-top: 5px;
  }
}

/* タブ */
[data-tab-content] {
  display: none;
}

[data-tab-content].is-active {
  display: block;
  -webkit-animation: tabFadeIn 0.7s ease 0s 1 normal;
  animation: tabFadeIn 0.7s ease 0s 1 normal;
}

.tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.tab-nav-item {
  display: inline-block;
  cursor: pointer;
  background-color: var(--color_bg);
  border-radius: 2px 2px 0 0;
  color: var(--color_primary);
  padding: 5px 50px;
  border-radius: 10px;
  border: 1px solid var(--color_primary);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: var(--font_jp);
}

.tab-nav-item.is-active {
  background: var(--color_primary);
  color: #FFF;
}

@media (any-hover: hover) {
  .tab-nav-item:hover {
    background: var(--color_primary);
    color: #FFF;
  }
}

.tab-nav-item:focus-visible {
  background: var(--color_primary);
  color: #FFF;
}

@-webkit-keyframes tabFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
  }
}

@keyframes tabFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 800px) {
  .tab-list {
    border-bottom: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-nav-item {
    padding: 10px;
  }
}

/* フロー */
.flow-layout01 {
  max-width: 900px;
  margin-inline: auto;
  position: relative;
}

.flow-layout01::before {
  content: "";
  background: var(--color_primary);
  width: 2px;
  position: absolute;
  top: 30px;
  left: 50%;
  bottom: 30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.flow-layout01 .l-item {
  width: 50%;
  background: #E3F6E0;
  border-radius: 10px;
  padding: 20px 15px;
  position: relative;
}

.flow-layout01 .l-item::before {
  content: "";
  background: var(--color_primary);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  right: -8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flow-layout01 .l-item:nth-of-type(even) {
  margin-left: auto;
  padding-left: 40px;
}

.flow-layout01 .l-item:nth-of-type(even)::before {
  right: auto;
  left: -8px;
}

@media (max-width: 800px) {
  .flow-layout01::before {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .flow-layout01 .l-item {
    width: 100%;
  }

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

  .flow-layout01 .l-item::before {
    right: auto;
    left: -8px;
  }

  .flow-layout01 .l-item:nth-of-type(even) {
    padding-left: 15px;
  }
}

.dl-history {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 20px;
}

.dl-history dt,
.dl-history dd {
  line-height: 1.5;
}

.dl-history dd {
  padding-top: 3px;
}

.dl-history dt {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  color: var(--color_primary);
}

@media (max-width: 800px) {
  .dl-history dt {
    font-size: 0.9375rem;
  }

  .dl-history dd {
    padding-top: 0;
  }
}

.flow-layout02 .l-item {
  padding-left: 100px;
  position: relative;
  padding-bottom: 60px;
}

.flow-layout02 .l-item::before {
  content: "";
  background: var(--color_primary);
  width: 2px;
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 20px;
}

.flow-layout02 .l-item::after {
  content: "";
  background: var(--color_primary);
  width: 12px;
  height: 10px;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: 15px;
  left: 35px;
}

.flow-layout02 .l-item:last-of-type {
  padding-bottom: 0;
}

.flow-layout02 .l-item:last-of-type::before,
.flow-layout02 .l-item:last-of-type::after {
  display: none;
}

.flow-layout02 .num {
  width: 80px;
  display: block;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  color: var(--color_primary);
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  line-height: 1.3;
  padding: 0 0 10px;
}

.flow-layout02 .num::before {
  content: attr(data-en);
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--font_en);
  font-weight: 600;
}

.flow-layout02 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 40px;
}

.flow-layout02 .l-img {
  width: 40%;
}

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

.flow-layout02 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flow-layout02 .l-ttl {
  font-size: 1.25rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  margin-bottom: 20px;
  padding-bottom: 3px;
  font-family: var(--font_jp);
}

@media (max-width: 800px) {
  .flow-layout02 .l-item {
    padding-left: 80px;
  }

  .flow-layout02 .l-item::before {
    left: 32px;
  }

  .flow-layout02 .l-item::after {
    left: 27px;
  }

  .flow-layout02 .num {
    width: 65px;
    font-size: 0.9375rem;
  }

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

  .flow-layout02 .l-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .flow-layout02 .l-ttl {
    font-size: 1.125rem;
  }
}

/* カード */
.card-layout01>.l-item {
  padding: 25px 5%;
  background: var(--color_bg);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-layout01.bg01>.l-item {
  background: #fff;
  border: 2px solid #F6ECE0;
}

.card-layout01 .num {
  display: block;
  text-align: center;
  color: var(--color_primary);
  line-height: 1.2;
  font-size: 1.125rem;
  margin-bottom: 15px;
  font-family: var(--font_jp);
}

.card-layout01 .num::before {
  content: attr(data-en);
  display: block;
  font-size: 0.625rem;
  line-height: 1.3;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: var(--font_en);
  font-weight: 600;
}

.card-layout01 .item-ttl {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.card-layout01 .item-img {
  margin-bottom: 15px;
}

.card-layout01 .item-img img {
  margin-inline: auto;
  border-radius: 10px;
}

.card-layout01 .desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.card-layout01 .item-btn {
  text-align: center;
  margin-top: 15px;
}

.card-layout01 .btn-more {
  min-width: 0;
  width: 100%;
  font-size: 0.9375rem;
}

@media (max-width: 800px) {
  .card-layout01>.l-item {
    padding: 25px;
  }
}

.card-layout02>.col2 {
  gap: 50px;
}

.card-layout02>.l-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px 30px 90px;
  background: #fff;
  border: 2px solid var(--color_primary);
  border-radius: 30px;
  position: relative;
  height: 100%;
}

.card-layout02>.l-item a::before,
.card-layout02>.l-item a::after {
  content: "";
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.card-layout02>.l-item a::before {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color_primary);
  background: #fff;
  -webkit-box-shadow: 4px 4px 0px var(--color_primary);
  box-shadow: 4px 4px 0px var(--color_primary);
  border-radius: 50%;
  right: 30px;
  bottom: 30px;
}

.card-layout02>.l-item a::after {
  -webkit-mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  background: var(--color_primary);
  width: 6px;
  height: 10px;
  right: 49px;
  bottom: 47px;
}

@media (any-hover: hover) {
  .card-layout02>.l-item a:hover::before {
    background: #E3F6E0;
  }
}

.card-layout02 .l-ttl {
  padding: 0 0 15px 45px;
  border-bottom: 1px solid var(--color_text);
  margin-bottom: 20px;
  position: relative;
}

.card-layout02 .l-ttl .num {
  display: grid;
  place-content: center;
  width: 35px;
  height: 35px;
  background: var(--color_secondary);
  border-radius: 50%;
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  padding-bottom: 3px;
}

.card-layout02 .l-ttl .ttl {
  font-size: 1.25rem;
  line-height: 1.6;
}

.card-layout02 .l-img {
  margin-bottom: 20px;
  text-align: center;
}

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

@media (max-width: 800px) {
  .card-layout02>.col2 {
    gap: 20px;
  }

  .card-layout02>.l-item a {
    padding: 25px 25px 65px;
  }

  .card-layout02>.l-item a::before {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }

  .card-layout02>.l-item a::after {
    right: 36px;
    bottom: 35px;
  }
}

.list-card01>li {
  background: var(--color_bg);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px;
  position: relative;
}

.list-card01>li+li::before {
  content: "";
  width: 12px;
  height: 24px;
  background: var(--color_primary);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  left: -5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.list-card01 .list-img {
  text-align: center;
  margin-bottom: 25px;
}

.list-card01 .list-img img {
  border-radius: 10px;
}

.list-card01 .num {
  background: var(--color_primary);
  border-radius: 50px;
  display: table;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 15px;
}

.list-card01 .list-ttl {
  display: block;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 15px;
}

.list-card01 .list-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
}

.list-card01 .btn-more {
  min-width: 0;
  width: 100%;
}

.list-card01.col3 li+li::before {
  left: -6%;
}

.list-card01.col2 {
  grid-gap: 40px;
}

.list-card01.col3 {
  grid-gap: 30px;
}

.list-card01.col4 {
  grid-gap: 20px;
}

@media (max-width: 800px) {

  .list-card01.col2,
  .list-card01.col3,
  .list-card01.col4 {
    grid-gap: 15px;
  }

  .list-card01 {
    grid-gap: 30px !important;
  }

  .list-card01>li+li::before {
    left: 50% !important;
    top: -27px;
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
  }

  .list-card01.sp-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: 0 !important;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0 -5vw 30px 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }

  .list-card01.sp-scroll>li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }

  .list-card01.sp-scroll>li+li::before {
    top: 50%;
    left: -9px !important;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.list-card02>li {
  position: relative;
}

.list-card02 .num {
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid currentColor;
  text-align: center;
  line-height: 1;
  padding-bottom: 2px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 1.25rem;
  font-family: var(--font_en);
  font-weight: 600;
}

.list-card02 .list-img {
  text-align: center;
  margin-bottom: 15px;
}

.list-card02 .list-img img {
  border-radius: 20px;
}

.list-card02 .list-txt {
  line-height: 1.5;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  text-align: center;
}

@media (max-width: 800px) {
  .list-card02.col2 {
    gap: 30px;
  }

  .list-card02 .list-txt {
    font-size: 1.125rem;
  }
}

/* FAQ */
.faq-style {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-style .item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.faq-style dt .faq-icon {
  top: 20px;
  left: 0;
  font-family: var(--font_jp);
}

.faq-style dd {
  display: none;
  padding: 0 50px 30px;
  position: relative;
}

.faq-style dd .faq-icon {
  border: 1px solid var(--color_border);
  background-color: var(--color_bg);
  top: 0;
  left: 0;
  color: var(--color_text);
}

.faq-style .faq-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
}

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

.faq-style .faq-open-icon {
  -webkit-mask: url(../images/share/faq_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/faq_arrow.svg) no-repeat center/contain;
  background: var(--color_primary);
  width: 27px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 24px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.faq-style .item>dt:hover .faq-icon {
  background-color: #E3F6E0;
}

.faq-style .is-open .faq-icon {
  background-color: #E3F6E0;
}

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

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

  .faq-style dt {
    padding: 18px 30px 18px 50px;
  }

  .faq-style dt .faq-icon {
    top: 12px;
  }

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

  .faq-style .faq-open-icon {
    width: 11px;
    height: 15px;
    right: 10px;
    top: 25px;
  }
}

/* お問い合わせ */
.tel-layout {
  background: var(--color_bg);
  max-width: 900px;
  padding: 50px;
  margin-inline: auto;
  border-radius: 30px;
}

.tel-layout .l-ttl {
  font-size: 1.5rem;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--color_border);
  margin: 0 auto 30px;
}

.tel-layout .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 120px;
}

.tel-layout .wrap .col+.col {
  position: relative;
}

.tel-layout .wrap .col+.col::before {
  content: "";
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #8D652A 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
  background-repeat: repeat-y;
  background-size: 2px 9px;
  position: absolute;
  top: 0;
  left: -60px;
}

.tel-layout .col-ttl {
  font-family: var(--font_jp);
  text-align: center;
  margin-bottom: 10px;
}

.tel-layout .wrap-center {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.time-dl {
  display: grid;
  grid-gap: 5px;
  line-height: 1.5;
}

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

.time-dl dt {
  background: #E3F6E0;
  border-radius: 5px;
  text-align: center;
  font-weight: 700;
  font-size: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color_primary);
}

@media (max-width: 800px) {
  .tel-layout {
    padding: 35px 25px;
  }

  .tel-layout .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 60px;
  }

  .tel-layout .wrap .col+.col::before {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #8D652A 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
    background-repeat: repeat-x;
    background-size: 10px 2px;
    top: -30px;
    left: 0;
  }
}

/* ボタンリスト */
.list-anchor-btn li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 30px 20px 60px;
  height: 100%;
  background: #fff;
  -webkit-box-shadow: 4px 4px 0px currentColor;
  box-shadow: 4px 4px 0px currentColor;
  border: 1px solid currentColor;
  position: relative;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  border-radius: 20px;
  line-height: 1.3;
}

.list-anchor-btn li a::before {
  content: attr(data-en);
  display: grid;
  place-content: center;
  width: 35px;
  height: 35px;
  border: 3px solid currentColor;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  line-height: 1;
  font-size: 1.125rem;
  padding-bottom: 1px;
  font-family: var(--font_en);
  font-weight: 600;
}

.list-anchor-btn li a::after {
  content: "";
  -webkit-mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow_right.svg) no-repeat center/contain;
  background: currentColor;
  width: 6px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .list-anchor-btn li a:hover::after {
    right: 10px;
  }
}

.list-anchor-btn li a:focus-visible::after {
  right: 10px;
}

.btn-color01 {
  color: #FBB100;
}

.btn-color02 {
  color: #29ABE2;
}

.btn-color03 {
  color: #C0CF3D;
}

.btn-color04 {
  color: #A67C52;
}

.btn-color05 {
  color: #ED5879;
}

.btn-color06 {
  color: #DC81E2;
}

.btn-color07 {
  color: #3FB19D;
}

.btn-color08 {
  color: #7B78E6;
}

.btn-color09 {
  color: #F4A23B;
}

.btn-color10 {
  color: #72AE2D;
}

.btn-color11 {
  color: #EF90A0;
}

.list-anchor-btn02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.list-anchor-btn02 li a {
  display: inline-block;
  padding: 12px 40px;
  background: #fff;
  -webkit-box-shadow: 4px 4px 0px currentColor;
  box-shadow: 4px 4px 0px currentColor;
  min-width: 260px;
  border-radius: 20px;
  border: 1px solid currentColor;
  position: relative;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1.35;
  text-align: center;
}

.list-anchor-btn02 li a::after {
  content: "";
  -webkit-mask: url(../images/share/btn_arrow_down.svg) no-repeat center/contain;
  mask: url(../images/share/btn_arrow_down.svg) no-repeat center/contain;
  background: currentColor;
  width: 10px;
  height: 6px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 800px) {
  .list-anchor-btn02 {
    display: block;
  }

  .list-anchor-btn02 li a {
    min-width: 0;
    width: 100%;
    font-size: 0.9375rem;
    border-radius: 10px;
  }

  .list-anchor-btn02 li+li {
    margin-top: 15px;
  }
}

/* リンクカード */
.list-card-link li a {
  display: block;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid currentColor;
  position: relative;
}

.list-card-link .list-img img {
  aspect-ratio: 40/23;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.list-card-link .num {
  display: grid;
  place-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: var(--font_en);
  line-height: 1px;
  padding-bottom: 3px;
  font-size: 1.5625rem;
}

.list-card-link li a.bg01 {
  color: #8CC4C9;
}

.list-card-link li a.bg01 .num {
  background: #8CC4C9;
}

.list-card-link li a.bg02 {
  color: #8D652A;
}

.list-card-link li a.bg02 .num {
  background: #8D652A;
}

.list-card-link li a.bg03 {
  color: #56A333;
}

.list-card-link li a.bg03 .num {
  background: #56A333;
}

@media (any-hover: hover) {
  .list-card-link li a:hover .list-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.list-card-link li a:focus-visible .list-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* 見出し */
.ttl-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.375rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.ttl-num .num {
  border-radius: 50%;
  background-color: #fff;
  color: var(--color_primary);
  border: 2px solid currentColor;
  font-size: 0.9375rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 38px;
  flex: 0 0 38px;
  height: 38px;
  margin-top: -2px;
  text-align: center;
  display: grid;
  place-content: center;
}

@media (max-width: 800px) {
  .ttl-num {
    font-size: 1.25rem;
  }
}

/*------------
Add
--------------*/
.privacy-ttl {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.dl-privacy {
  display: grid;
  gap: 3rem;
}

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-size: 1.25rem;
  padding-top: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  font-family: var(--font_jp);
  font-weight: normal;
}

.dl-privacy dd {
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: justify;
}

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

.sp-only {
  display: none;
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.bold,
.strong {
  font-weight: bold;
}

.color-red {
  color: #F44336;
}

.color-brown {
  color: var(--color_brown) !important;
}

.color-blue {
  color: var(--color_secondary) !important;
}

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

.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #FCF08F;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.marker-br {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.marker-br::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 0.5em;
  background: #FCF08F;
  border-radius: 5px;
  z-index: -1;
}

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 0.5rem;
}

.mbS {
  margin-bottom: 1.5rem;
}

.mbM {
  margin-bottom: 3rem;
}

.mbXM {
  margin-bottom: 5rem;
}

.mbL {
  margin-bottom: 6rem;
}

.mbXL {
  margin-bottom: 10rem;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

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

.col1 {
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
}

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

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

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

.gap15 {
  grid-gap: 15px;
}

.gap20 {
  grid-gap: 20px;
}

.gap25 {
  grid-gap: 25px;
}

.gap30 {
  grid-gap: 30px;
}

.gap35 {
  grid-gap: 35px;
}

.gap40 {
  grid-gap: 40px;
}

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

  .sp-only {
    display: block;
  }

  .marker-br::before {
    bottom: 2px;
  }

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

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

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

  .mbL {
    margin-bottom: 3rem;
  }

  .mbXL {
    margin-bottom: 5rem;
  }

  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }

  .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-gap15 {
    grid-gap: 15px;
  }

  .sp-gap20 {
    grid-gap: 20px;
  }

  .sp-gap25 {
    grid-gap: 25px;
  }

  .sp-gap30 {
    grid-gap: 30px;
  }

  .sp-gap35 {
    grid-gap: 35px;
  }

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

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

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

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

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

.splide__pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  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 {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
  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;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-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 {
  -webkit-mask: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
  mask: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
  background-color: var(--color_primary);
}

.splide__arrow--next {
  -webkit-mask: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
  mask: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
  background-color: var(--color_primary);
}

.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 {
  -webkit-transform: scaleX(-1);
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: 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;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: var(--color_primary);
  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 {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__toggle {
  cursor: pointer;
  background: var(--color_primary);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  height: 30px;
  width: 30px;
}

.splide__toggle:hover {
  background: #D3D3D3;
}

.splide__toggle svg {
  fill: #fff;
  -webkit-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

@media (max-width: 800px) {
  .splide__toggle {
    width: 20px;
    height: 20px;
  }

  .splide__toggle img {
    width: 8px;
    height: 8px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

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

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

/*------------
Add
-------------*/
.no-post {
  white-space: nowrap;
}
