@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: #e9e9e9;
  --color_primary: #7FBA69;
  --color_secondary: #FDF64B;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
  --gradient_primary: linear-gradient(to right, #9EC167, #5C9F76);
}

/* ====================================================
【アニメーション】
==================================================== */
: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",
    sans-serif;
  --font_jp: "Zen Old Mincho", serif;
  --font_en: "Lato", serif;
  --font_weight: normal;
  --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;
  box-sizing: border-box;
}

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
body {
  background-color: var(--color_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-family: var(--font_jp);
  font-weight: 500;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*ボタン*/
.btn-out {
  padding-right: 15px;
  position: relative;
}

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

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

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

.btn-more {
  display: inline-block;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.9375rem;
  line-height: 1;
  padding: 10px 25px;
}

@media (any-hover: hover) {
  .btn-more:hover {
    background-color: var(--color_secondary);
  }
}

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

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

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

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

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

.list-category-links>li::before {
  content: "";
  border-top: 1px solid var(--color_black);
  border-right: 1px solid var(--color_black);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 0;
  rotate: 45deg;
}

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

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

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

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

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

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

/*ブログ*/
.post-under-blog {
  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: 10px 70px 10px 10px;
  position: relative;
  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: "";
  background: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
}

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

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

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

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

.post-under-blog .category {
  display: inline-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: 1px 5px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

/*お知らせ*/
.post-under-news {
  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;
  align-items: center;
  padding: 20px 70px 20px 10px;
  position: relative;
  transition: background-color 0.3s;
}

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

@media (any-hover: hover) {
  .post-under-news a:hover {
    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;
  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: flex;
  flex-wrap: wrap;
  gap: 5px;
}

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

@media (max-width: 800px) {
  .post-under-news .category {
    width: auto;
  }
}

.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 .post-ttl {
    grid-column: 1/-1;
  }
}

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

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

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

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

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

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

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

.layout-single-post .category {
  display: inline-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 8px;
  text-align: center;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-right: 2.5%;
  position: fixed;
  top: 0;
  width: 100%;
  transition: .3s;
  z-index: 10;
}

.h-logo {
  transition: .3s;
  max-width: 387px;
}

.header.is-fixed {
  background-color: var(--color_white);
  padding: 10px;
}

.header.is-fixed .h-logo {
  max-width: 200px;
}

.header.is-fixed .h-tel {
  color: var(--color_black);
}

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

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

  .header.is-fixed {
    background-color: var(--color_white);
    padding: 10px;
  }

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

}

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

.h-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.h-tel {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 1.625rem;
  letter-spacing: 0.05em;
}

.h-tel::before {
  content: "";
  background: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 15px;
  height: 20px;
}

.h-btn {
  display: grid;
  place-items: center;
  gap: 1rem;
  background-color: var(--color_black);
  border-radius: 100px;
  color: var(--color_white);
  font-size: 1rem;
  font-family: var(--font_jp);
  text-align: center;
  padding: 0 25px;
  height: 60px;
  min-width: 220px;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .h-btn:hover {
    scale: 0.95;
  }
}

.h-btn.entry {
  background: var(--gradient_primary);
}

.h-btn.official {
  background-color: #B4B9AE;
}

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

  .h-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color_white);
    padding: 10px;
    z-index: 10;
  }

  .h-btn {
    border-radius: 5px;
    font-size: 0.9375rem;
    line-height: 1;
    letter-spacing: 0;
    padding: 5px;
    height: 50px;
    min-width: 0;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  margin-top: auto;
  position: relative;
}

.f-message {
  background: url(../images/share/f_bg.jpg) no-repeat center/cover;
  color: var(--color_white);
  display: grid;
  place-content: center;
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 1.7;
  text-align: center;
  padding: 50px 5%;
  min-height: 460px;
}

@media (max-width: 800px) {
  .f-message {
    font-size: 1.25rem;
    padding: 35px 5%;
    min-height: 300px;
  }
}

.f-access {
  display: grid;
  grid-template-columns: 1fr 400px;
  grid-template-areas: "map desc";
}

.f-access iframe {
  width: 100%;
}

.f-access .map {
  grid-area: map;
}

.f-access .desc {
  grid-area: desc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 50px 5%;
  text-align: center;
}

.f-access .logo {
  font-size: 2rem;
  line-height: 1.5;
  font-family: var(--font_jp);
  margin-bottom: 20px;
}

.f-access .address {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.f-access .tel {
  border-bottom: 1px dotted var(--color_white);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 1.625rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 25px;
}

.f-access .tel::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 15px;
  height: 20px;
}

.f-access .time {
  display: grid;
  gap: 10px;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.f-access .time .item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1;
  align-items: center;
}

.f-access .time .item dt {
  border: 1px solid var(--color_white);
  border-radius: 2px;
  padding: 5px;
  font-size: 0.8125rem;
  text-align: center;
}

@media (max-width: 800px) {
  .f-access {
    grid-template-columns: 1fr;
    grid-template-areas: "desc""map";
    gap: 0;
  }

  .f-access iframe {
    height: 300px;
  }
}

.copyright {
  background-color: #4A4E44;
  color: var(--color_white);
  text-align: center;
  font-size: 0.875rem;
  padding: 5px;
}

@media (max-width: 1200px) {
  .copyright {
    padding: 5px 5px 80px;
  }
}

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
}

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

.hero .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.hero .splide__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: -50px;
  padding: 15px;
  z-index: 1;
  position: relative;
}

.hero-catch {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-family: var(--font_jp);
  font-size: 3.125rem;
  line-height: 1.8;
  writing-mode: vertical-rl;
}

.hero-catch span {
  background-color: var(--color_white);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.3em 0;
}

@media (max-width: 800px) {
  .hero .splide__slide img {
    height: calc(100svh - 70px);
  }

  .hero-catch {
    font-size: 2rem;
    top: 45%;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  line-height: 1.5;
  margin-bottom: 70px;
}

.t-h2 [lang=en] {
  text-box: trim-both cap alphabetic;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 20px;
  padding-left: 15px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.t-h2 [lang=en]::before {
  content: "";
  display: block;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  background-color: var(--color_primary);
  position: absolute;
  left: 0;
  top: -5px;
}

.t-h2 .jp {
  font-size: 2.625rem;
  line-height: 1.5;
}

.t-h2 .sub {
  font-size: 1.5rem;
  font-family: var(--font_jp);
  line-height: 1.5;
  margin-top: 20px;
}

.t-h2 .sub span {
  background-color: var(--color_secondary);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.3em 0.5em;
}

.t-h2.center {
  text-align: center;
}

.t-h2.center [lang=en] {
  margin-inline: auto;
}

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

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

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

.t-h3 {
  background: url(../images/share/ttl_line.svg) repeat-x bottom left;
  font-size: 1.75rem;
  line-height: 1.5;
  padding-bottom: 15px;
  margin-bottom: 35px;
  position: relative;
}

.t-h3::before {
  content: "";
  background-color: var(--color_primary);
  width: 50px;
  height: 4px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

/*------------
Section
--------------*/
.sec01 {
  background: url(../images/sec01_bg.jpg) no-repeat center/cover;
  padding: 200px 0;
}

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

.sec01-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "desc img";
}

.sec01-layout .l-desc {
  grid-area: desc;
}

.sec01-layout .l-img {
  grid-area: img;
  padding-left: 5%;
}

.sec01-layout .l-img .img01 {
  padding: 0 7% 0 0;
}

.sec01-layout .l-img .img02 {
  margin: -42px 0 0 0;
  padding: 0 0 0 23%;
}

.sec01-layout .l-img .img02 img {
  margin: 0 0 0 auto;
}

.sec01-layout .l-ttl-wrap {
  font-family: var(--font_jp);
  margin-bottom: 70px;
}

.sec01-layout .l-ttl {
  font-size: 4rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.sec01-layout .l-catch {
  font-size: 1.625rem;
  line-height: 1.5;
}

.sec01-layout p {
  line-height: 2.1111111111;
}

@media (max-width: 800px) {
  .sec01-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "img""desc";
    gap: 35px;
  }

  .sec01-layout .l-img {
    padding-left: 0;
  }

  .sec01-layout .l-ttl-wrap {
    margin-bottom: 35px;
  }

  .sec01-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .sec01-layout .l-catch {
    font-size: 1.25rem;
  }
}

.sec02 {
  background: url(../images/sec02_bg.jpg) no-repeat center/cover;
  padding: 160px 0;
}

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

.sec02-intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
  margin-bottom: 80px;
}

.sec02-intro .l-desc {
  padding-top: 50px;
  font-size: 1.125rem;
}

@media (max-width: 800px) {
  .sec02-intro {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 35px;
  }

  .sec02-intro .l-desc {
    padding-top: 0;
    font-size: 1rem;
  }
}

.sec02-box {
  background-color: var(--color_white);
  padding: 70px 80px;
}

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

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

.sec02-list .list-ttl {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 10px 20px;
  text-align: center;
}

.sec02-list .list-img img {
  width: 100%;
}

@media (max-width: 800px) {
  .sec02-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec02-list .list-ttl {
    font-size: 1.25rem;
    padding: 10px;
  }
}

.sec03 {
  padding: 160px 0;
}

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

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

.sec03-list .item {
  display: grid;
  grid-template-columns: 40% 1fr;
}

.sec03-list .item dt {
  display: grid;
  align-items: center;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.625rem;
  line-height: 1.5;
  padding: 40px;
}

.sec03-list .item dd {
  display: grid;
  align-items: center;
  background-color: #F4F1E6;
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 10px 30px;
}

@media (max-width: 800px) {
  .sec03-list {
    gap: 25px;
  }

  .sec03-list .item {
    grid-template-columns: 1fr;
  }

  .sec03-list .item dt {
    font-size: 1.25rem;
    padding: 20px;
  }

  .sec03-list .item dd {
    font-size: 1.25rem;
    padding: 10px 20px;
  }
}

.sec04 {
  background-color: #F4F1E6;
  background: url(../images/sec04_bg.jpg) no-repeat center/cover;
  padding: 160px 0;
}

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

.sec04-layout {
  display: grid;
  grid-template-columns: 1fr 52%;
  grid-template-areas: "desc img";
  gap: 5%;
}

.sec04-layout .l-img {
  grid-area: img;
}

.sec04-layout .l-desc {
  grid-area: desc;
}

@media (max-width: 800px) {
  .sec04-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "img""desc";
    gap: 45px;
  }
}

.sec04-list {
  counter-reset: number;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 25px;
}

.sec04-list li {
  display: inline-block;
  background-color: var(--color_white);
  color: var(--color_primary);
  font-size: 1.625rem;
  font-family: var(--font_jp);
  line-height: 1.5;
  padding: 10px 20px;
  margin-left: 55px;
  border: 1px solid var(--color_primary);
  position: relative;
}

.sec04-list li:before {
  color: var(--color_primary);
  counter-increment: number;
  content: "0"counter(number);
  font-size: 3.375rem;
  font-family: var(--font_en);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: -50px;
}

.sec04-list li span {
  background: linear-gradient(transparent 80%, var(--color_secondary) 20%);
}

@media (max-width: 800px) {
  .sec04-list {
    gap: 20px;
  }

  .sec04-list li {
    font-size: 1.375rem;
    padding: 10px 20px;
    margin-left: 30px;
  }

  .sec04-list li:before {
    font-size: 2.1875rem;
    top: -20px;
    left: -30px;
  }
}

.sec05 {
  background: url(../images/sec05_bg.jpg) no-repeat center/cover;
  padding: 160px 0;
}

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

.sec05-box {
  background-color: #EFF5E9;
  padding: 70px 80px;
}

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

.sec05-list {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 30px;
}

.sec05-list li {
  position: relative;
  padding-left: 110px;
  padding-bottom: 40px;
}

.sec05-list li::before {
  content: "";
  background-color: #969B8F;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 5px;
  z-index: 5;
}

.sec05-list li::after {
  content: "";
  background-color: #DBE6CD;
  width: 6px;
  position: absolute;
  left: 9px;
  top: 5px;
  bottom: -5px;
  z-index: 1;
}

.sec05-list li:last-child::after {
  display: none;
}

.sec05-list .time {
  display: inline-block;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.3125rem;
  font-family: var(--font_en);
  font-weight: bold;
  line-height: 1;
  padding: 5px 15px;
  margin-bottom: 15px;
  position: relative;
}

.sec05-list .time::before {
  content: "";
  background: url(../images/share/ttl_line.svg) repeat-x center local;
  width: 70px;
  height: 3px;
  position: absolute;
  left: -90px;
  top: 15px;
}

.sec05-list .text {
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
}

.sec05-list .img {
  margin-top: 20px;
}

@media (max-width: 800px) {
  .sec05-list {
    margin-bottom: 0;
  }

  .sec05-list li {
    padding-left: 50px;
    padding-bottom: 40px;
  }

  .sec05-list .time::before {
    width: 50px;
    left: -50px;
  }

  .sec05-list .text {
    font-size: 1.375rem;
  }
}

.sec06 {
  background: url(../images/sec06_bg.jpg) no-repeat center/cover;
  padding: 160px 0;
}

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

.sec06-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "img desc";
  gap: 5%;
}

.sec06-layout .l-img {
  grid-area: img;
  padding-left: 8%;
}

.sec06-layout .l-img img {
  box-shadow: 20px 20px 0 0 var(--color_primary);
}

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

@media (max-width: 800px) {
  .sec06-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "img""desc";
    gap: 75px;
  }

  .sec06-layout .l-img {
    padding-left: 0;
  }
}

.sec07 {
  padding: 160px 0;
}

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

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

.sec07-list li {
  background-color: #EFF5E9;
  padding: 30px;
}

.sec07-list .list-ttl {
  font-size: 1.5625rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

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

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

.sec08 {
  background: url(../images/sec08_bg.jpg) no-repeat center/cover;
  padding: 160px 0;
}

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

[data-tab-content] {
  display: none;
}

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

.tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.tab-nav-item {
  display: inline-block;
  cursor: pointer;
  background-color: #B4B9AE;
  border-radius: 5px 5px 0 0;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  padding: 10px;
  text-align: center;
  transition: all 0.2s ease;
  min-width: 220px;
}

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

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

.tab-panel-area {
  background-color: var(--color_white);
  padding: 80px;
}

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

  100% {
    opacity: 1;
  }
}

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

  .tab-nav-item {
    border-radius: 2px;
    padding: 10px;
    min-width: auto;
    width: 100%;
  }

  .tab-panel-area {
    padding: 15px;
  }
}

.sec09 {
  background: url(../images/sec09_bg.jpg) no-repeat center/cover;
  padding: 160px 0;
}

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

.layout-cta {
  background-color: #DBE6CD;
  padding: 40px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  min-width: 720px;
}

.layout-cta .text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.layout-cta .tel {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-family: var(--font_en);
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
}

.layout-cta .tel::before {
  content: "";
  background: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 20px;
  height: 27px;
}

@media (max-width: 800px) {
  .layout-cta {
    min-width: 100%;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  display: grid;
  align-items: center;
  background-color: var(--color_black);
  color: var(--color_white);
  padding: 300px 5% 50px;
  position: relative;
}

.page-ttl {
  line-height: 1.5;
  margin-bottom: 35px;
}

.page-ttl [lang=en] {
  text-box: trim-both cap alphabetic;
  font-size: 4.75rem;
  margin-bottom: 20px;
}

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

.breadcrumb {
  position: relative;
  z-index: 1;
}

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

.breadcrumb ul li {
  display: inline;
}

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

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

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

  .page-header::before {
    top: -100px;
    right: -100px;
    width: 80vw;
  }

  .page-ttl {
    margin-bottom: 20px;
  }

  .page-ttl [lang=en] {
    font-size: 3.125rem;
    line-height: 1;
  }

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

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

.u-h2 {
  margin-bottom: 50px;
}

.u-h3 {
  margin-bottom: 30px;
}

.u-h4 {
  margin-bottom: 50px;
}

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

  .u-h3 {
    margin-bottom: 20px;
  }

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

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

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

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

.hidden {
  overflow: hidden;
}

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

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

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

.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: #BFA581;
  font-size: 0.9375rem;
}

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

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

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

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

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

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

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

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

.table-style01 th {
  font-family: var(--font_jp);
  background-color: #F4F1E6;
  text-align: left;
  vertical-align: top;
}

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

/*------------
Add
--------------*/
.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.0625rem;
  padding-top: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.dl-privacy dd {
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: justify;
}

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

.sp-only {
  display: none;
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.bold,
.strong {
  font-weight: bold;
}

.c-red {
  color: #F44336;
}

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

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: grid;
}

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

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

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

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

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

  .sp-only {
    display: block;
  }

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

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

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

  .mbXS {
    margin-bottom: 4px;
  }

  .mbS {
    margin-bottom: 8px;
  }

  .mbM {
    margin-bottom: 16px;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

  .sp-col1 {
    grid-template-columns: 1fr;
  }

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

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

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

  .gapXS {
    grid-gap: 4px;
  }

  .gapS {
    grid-gap: 8px;
  }

  .gapM {
    grid-gap: 16px;
  }

  .gapXM {
    grid-gap: 32px;
  }

  .gapL {
    grid-gap: 48px;
  }

  .gapXL {
    grid-gap: 64px;
  }
}

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

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

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

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

.splide__pagination li {
  display: flex;
  align-items: center;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow--prev,
.splide__arrow--next {
  display: block;
  width: 30px;
  height: 30px;
}

.splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
}

.splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 6rem;
}

@media (max-width: 800px) {
  .splide__controls {
    margin-top: 3rem;
  }
}

.splide__pagination {
  gap: 8px;
}

.splide__pagination__page {
  background: #D0D0C9;
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #707070;
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__toggle {
  cursor: pointer;
  background: #ccc;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  background: #D3D3D3;
}

.splide__toggle svg {
  fill: #fff;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

body:has(.confirm-layout) {
  background: url(../images/sec09_bg.jpg) no-repeat center / cover;
}

.confirm-layout {
  background: #fff;
  padding: 50px;
  margin: 70px auto;
  max-width: 900px;
  width: 90%;
}

.confirm-layout .l-ttl {
  font-size: 2.0rem;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .confirm-layout {
    padding: 30px;
  }

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

body:has(.thanks-layout) {
  background: url(../images/sec09_bg.jpg) no-repeat center / cover;
}

.thanks-layout {
  padding: 50px;
  border-radius: 10px;
  background-color: #fff;
  margin: 70px auto;
  max-width: 800px;
  width: 90%;
}

.thanks-layout .l-ttl {
  text-align: center;
  font-size: 2.2rem;
  position: relative;
}

.thanks-layout .l-ttl::after {
  content: "";
  display: block;
  background-color: var(--color_primary);
  width: 50px;
  height: 2px;
  margin: 1rem auto 2rem;
}

.thanks-layout p {
  text-align: center;
}

@media (max-width: 800px) {
  .thanks-layout p {
    text-align: left;
  }
}

.cf-turnstile {
  text-align: center;
  margin-bottom: 40px;
}
