@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #F9F0E6;
  --color_text: #333;
  --color_link: #333;
  --color_border: #D4D2D2;
  --color_border02: #ddca9c;
  --color_primary: #FDAE2A;
  --color_secondary: #534C43;
  --color_tertiary: #FEE3B7;
  --color_bg: #F0DFCB;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

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

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

:root {
  --font_base:
    "Local Noto Sans JP",
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  --font_jp: "FOT-筑紫明朝 Pr6N D", "TsukuMinPr6N-D", serif;
  --font_en: "Cormorant Garamond", serif;
  --font_en_deco: "Oooh Baby", cursive;
  --font_weight: normal;
  --font_size: 1.0625rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

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

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

html {
  scroll-behavior: 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);
  letter-spacing: 0.1em;
  line-height: 1.7;
}

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

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

.link {
  display: inline-block;
  color: #B89860;
  text-decoration: underline;
  text-underline-offset: 3px;
  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: 100px;
}

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

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

/*ボタン*/
.btn-out {
  display: inline-block;
  font-family: var(--font_jp);
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding: 16px 70px 16px 0;
  position: relative;
  transition: color 0.3s;
}

.btn-out::before {
  content: "";
  background: linear-gradient(to bottom right, #FECC3A, #FEAF2A);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.btn-out::after {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 16px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .btn-out:hover {
    color: #B89860;
  }
}

.btn-more {
  display: inline-block;
  font-family: var(--font_jp);
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding: 16px 87px 16px 0;
  position: relative;
}

.btn-more::before {
  content: "";
  background: linear-gradient(to bottom right, #FECC3A, #FEAF2A);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.btn-more::after {
  content: "";
  background: url(../images/share/btn-arrow.svg) no-repeat center/contain;
  width: 47px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .btn-more:hover::after {
    animation: arrowSlide 0.6s var(--ease);
  }
}

@keyframes arrowSlide {
  0% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }

  40% {
    transform: translateY(-50%) translateX(20px);
    opacity: 0;
  }

  41% {
    transform: translateY(-50%) translateX(-20px);
    opacity: 0;
  }

  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}

.btn-more02 {
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 5px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 15px;
  text-align: center;
  min-width: 221px;
  min-height: 61px;
  transition: background-color 0.3s;
}

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

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color_primary);
  border-radius: 5px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 9px 20px 10px 15px;
  min-width: 252px;
  min-height: 61px;
  transition: background-color 0.3s;
}

.tac .btn-icon img {
  margin-inline: inherit;
}

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

.btn-more02 {
  cursor: pointer;
  display: inline-block;
  background-color: var(--color_primary);
  border-radius: 5px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 15px;
  text-align: center;
  min-width: 252px;
  min-height: 61px;
  transition: background-color 0.3s;
}

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

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

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

@media (max-width: 800px) {
  .btn-more02 {
    font-size: 1.0625rem;
  }
}

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

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

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

.list-category-links>li::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 8px;
  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: var(--color_secondary);
  font-size: 0.625rem;
}

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

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

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

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

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

@media (any-hover: hover) {
  .post-under-blog a:hover {
    background-color: #f9f2ea;
    border-color: var(--color_secondary);
  }
}

.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 #ddd;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}

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

.post-under-blog time {
  display: block;
  color: #888;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

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

.post-under-blog .category {
  display: inline-block;
  font-size: 0.625rem;
  color: #B89860;
  font-weight: 500;
  line-height: 1.5;
  padding: 1px 5px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.layout-single-post .category {
  display: inline-block;
  color: #B89860;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1.5;
  text-align: center;
}

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

@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: var(--color_secondary);
}

.post-number .current {
  color: var(--color_secondary);
  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: var(--color_secondary);
  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 {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  height: 94px;
  padding: 13px 30px;
  position: fixed;
  transition: background-color 0.3s;
  z-index: 10;
  width: 100%;
}

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

.header.is-fixed .h-logo img {
  filter: brightness(0);
}

@media (any-hover: hover) {
  .header.is-fixed .gnavi-links>li>a:hover {
    color: var(--color_primary);
  }
}

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

.h-logo img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

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

.h-btn {
  background-color: transparent;
  border: 1px solid var(--color_white);
  display: grid;
  place-content: center;
  width: 50px;
  height: 50px;
  transition: border-color 0.3s;
}

.h-btn img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.is-fixed .h-btn {
  border-color: var(--color_primary);
}

.is-fixed .h-btn img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(58%) saturate(1015%) hue-rotate(347deg) brightness(101%) contrast(98%);
}

@media (any-hover: hover) {
  .h-btn:hover {
    border-color: var(--color_clack);
  }

  .h-btn:hover img {
    filter: brightness(0);
  }
}

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

.gnavi-links>li>a,
.gnavi-links>li .link-ttl {
  display: inline-block;
  color: var(--color_white);
  font-family: var(--font_jp);
  text-shadow: 0 0 4px rgb(0, 0, 0);
  transition: color 0.3s, text-shadow 0.3s;
}

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

.header.is-fixed .gnavi-links>li>a,
.header.is-fixed .gnavi-links>li .link-ttl {
  color: var(--color_black);
  text-shadow: none;
}

/*dropdown*/
.dropdown {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}

.dropdown::after {
  content: "";
  display: block;
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 9px;
  height: 9px;
  margin: 4px 0 0 0;
}

@media (any-hover: hover) {
  .dropdown:hover .link-ttl {
    border-bottom: 1px solid var(--color_primary);
  }
}

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

.dropdown .sub-menu {
  display: grid;
  grid-gap: 5px;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  position: absolute;
  top: 45px;
  right: 50%;
  width: -moz-max-content;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

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

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

.dropdown .sub-menu>li::before {
  content: "";
  background-color: var(--color_primary);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 16px;
  left: 0;
}

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

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

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

@media (max-width: 1300px) {
  .header {
    padding: 13px 15px;
  }

  .gnavi-links {
    font-size: 0.9375rem;
    gap: 20px;
  }

  .dropdown::after {
    margin: 2px 0 0 0;
  }

  .h-utility {
    gap: 15px;
  }
}

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

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

  .h-utility {
    display: none;
  }
}

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

.f-contents01 {
  background: url(../images/share/f_bg.jpg) no-repeat center/cover;
  padding: 100px 0;
  position: relative;
  z-index: 0;
}

.f-contents01::before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  inset: 0;
  position: absolute;
  z-index: -1;
}

.f-contents01 .l-ttl {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 70px;
}

.f-contents01 .l-ttl [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-bottom: 45px;
  position: relative;
}

.f-contents01 .l-ttl [lang=en]::before {
  content: "";
  background-color: #FECC3A;
  width: 1px;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.f-contents01 .l-ttl .jp {
  font-family: var(--font_jp);
  font-size: 2.5rem;
}

.f-contents01 .l-txt {
  font-family: var(--font_jp);
  font-size: 1.4375rem;
  margin-bottom: 50px;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 12px;
  text-decoration-color: rgba(254, 175, 42, 0.4);
  text-underline-offset: -5px;
}

.f-contents01 .f-btn {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.f-contents01 .f-btn a {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  min-width: 210px;
  min-height: 50px;
  transition: background-color 0.3s;
}

.f-contents01 .f-btn a img {
  max-width: 17px;
  max-height: 17px;
}

@media (any-hover: hover) {
  .f-contents01 .f-btn a:hover {
    background-color: #fff6e6;
  }
}

.f-contents01 .f-btn a:nth-of-type(2) img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(58%) saturate(1015%) hue-rotate(347deg) brightness(101%) contrast(98%);
}

.f-contents01 .f-btn a:nth-of-type(3) {
  border: 1px solid #4CC764;
}

@media (any-hover: hover) {
  .f-contents01 .f-btn a:nth-of-type(3):hover {
    background-color: #ecf9ee;
  }
}

.f-contents02 {
  margin: 74px 0 55px;
}

.f-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 53px;
}

.f-number {
  display: flex;
  gap: 30px;
}

.f-number>* {
  display: flex;
  align-items: center;
  gap: 8px;
}

.f-sns {
  display: flex;
  gap: 15px;
}

.f-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  margin-bottom: 50px;
}

.f-info .item {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color_primary);
  padding: 13px 13px 15px;
}

.f-info .ttl {
  border-bottom: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1.5;
  padding-bottom: 5px;
  margin-bottom: 15px;
  text-align: center;
}

.f-info .ttl .small {
  font-size: 0.9375rem;
}

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

.site-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 60px;
}

.site-map .link-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  border-bottom: 1px solid var(--color_primary);
  padding-bottom: 7px;
  margin-bottom: 13px;
}

.f-links {
  display: grid;
  line-height: 1.5;
}

.f-links a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  font-family: var(--font_jp);
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
}

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

.f-links-list {
  display: grid;
  gap: 12px;
}

.f-links-list>li {
  padding: 0 0 0 15px;
  position: relative;
}

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

.f-bottom {
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 5px 0 8px;
}

.f-bottom .container {
  display: flex;
  justify-content: space-between;
}

.f-bottom-links {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1;
}

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

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

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

.copyright {
  line-height: 1;
}

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

.pagetop {
  position: absolute;
  bottom: 55px;
  right: 25px;
}

@media (max-width: 1024px) {
  .f-info {
    gap: 20px;
  }

  .site-map {
    gap: 20px;
  }
}

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

  .f-contents01 {
    padding: 50px 0;
  }

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

  .f-contents01 .l-ttl [lang=en] {
    font-size: 1rem;
    padding-bottom: 32px;
  }

  .f-contents01 .l-ttl [lang=en]::before {
    height: 20px;
  }

  .f-contents01 .l-ttl .jp {
    font-size: 1.5rem;
  }

  .f-contents01 .l-txt {
    font-size: 1.0625rem;
    margin-bottom: 30px;
  }

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

  .f-contents01 .f-btn a {
    width: 100%;
    max-width: 280px;
  }

  .f-contents02 {
    margin: 40px 0 30px;
  }

  .f-logo-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }

  .f-number {
    flex-direction: column;
    gap: 0;
  }

  .f-info {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .f-info .ttl {
    font-size: 1.0625rem;
  }

  .site-map {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .f-links-list {
    gap: 8px;
  }

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

  .f-bottom-links {
    font-size: 0.75rem;
  }

  .f-bottom-links li+li::before {
    margin: 0 10px;
  }

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

  .pagetop {
    display: none;
  }
}

.sp-navi {
  display: none;
}

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

  .sp-navi {
    display: block;
  }

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

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

  .sp-navi-btns .item {
    font-size: 0.8125rem;
    font-family: var(--font_en);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 4px 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: 5px;
    stroke: var(--svg-stroke);
  }

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

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

  .sp-navi-btns .item:not(:last-child) {
    border-right: 1px solid var(--color_white);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-sidebar .l-label {
  border-bottom: 1px solid var(--color_border02);
  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.375rem;
}

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

.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 {
  position: relative;
  z-index: 0;
}

.hero .splide__slide::before {
  content: "";
  background-color: rgba(51, 51, 51, 0.25);
  inset: 0;
  position: absolute;
}

.hero .splide__slide img {
  width: 100%;
  height: auto;
}

.hero .splide__pagination {
  flex-direction: column;
}

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

.hero .splide__controls {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin-top: 0;
}

.hero-catch {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
}

.hero-catch .txt {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: clamp(1.75rem, 3vw, 3.4375rem);
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgb(0, 0, 0);
}

@media (max-width: 800px) {
  .hero .splide__controls {
    bottom: 16px;
    right: 16px;
  }

  .hero-catch {
    bottom: 50px;
  }

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

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

.t-h2 [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-bottom: 45px;
  position: relative;
}

.t-h2 [lang=en]::before {
  content: "";
  background-color: #FECC3A;
  width: 1px;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.t-h2 .jp {
  font-size: clamp(2rem, 2.3vw, 2.5rem);
}

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

  .t-h2 [lang=en] {
    font-size: 1rem;
    padding-bottom: 32px;
  }

  .t-h2 [lang=en]::before {
    height: 20px;
  }

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

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

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

.l-sec02 {
  display: grid;
  grid-template-columns: 21% 37% 34%;
  grid-template-areas: "img01 desc img02";
  align-items: center;
  gap: 4%;
  margin: 0 auto;
  max-width: 1760px;
  width: calc(100% - 20px);
}

.l-sec02 .l-img01 {
  grid-area: img01;
}

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

.l-sec02 .l-img02 {
  grid-area: img02;
}

.l-sec02 .img-wrap01 {
  padding: 10px;
  position: relative;
}

.l-sec02 .img-wrap01 .img01 {
  margin: 0 53px 0 0;
}

.l-sec02 .img-wrap01 .img02 {
  margin: -32px 0 0 75px;
}

.l-sec02 .img-wrap01::before, .l-sec02 .img-wrap01::after {
  content: "";
  background: url(../images/share/img_deco01.svg) no-repeat center/contain;
  position: absolute;
}

.l-sec02 .img-wrap01::before {
  width: 42px;
  height: auto;
  aspect-ratio: 42/64;
  top: 0;
  left: 0;
}

.l-sec02 .img-wrap01::after {
  width: 42px;
  height: auto;
  aspect-ratio: 42/64;
  bottom: 0;
  right: 0;
  rotate: -180deg;
}

.l-sec02 .img-wrap02 {
  padding: 10px;
  position: relative;
}

.l-sec02 .img-wrap02::before, .l-sec02 .img-wrap02::after {
  content: "";
  background: url(../images/share/img_deco01.svg) no-repeat center/contain;
  position: absolute;
}

.l-sec02 .img-wrap02::before {
  width: 60px;
  height: auto;
  aspect-ratio: 42/64;
  bottom: -17px;
  left: 15px;
  rotate: -90deg;
}

.l-sec02 .img-wrap02::after {
  width: 60px;
  height: auto;
  aspect-ratio: 42/64;
  top: -17px;
  right: 15px;
  rotate: 90deg;
}

.l-sec02 .img01 img,
.l-sec02 .img02 img,
.l-sec02 .img03 img {
  width: 100%;
}

.l-sec02 .l-btn {
  margin-top: 80px;
  text-align: center;
}

@media (max-width: 1400px) {
  .l-sec02 {
    grid-template-columns: 20% 1fr 25%;
  }
}

@media (max-width: 1024px) {
  .l-sec02 {
    grid-template-columns: 1fr;
    grid-template-areas: "img02""desc""img01";
    gap: 50px;
    width: 90%;
  }

  .l-sec02 .img-wrap01 {
    max-width: 384px;
    margin: 0 auto 0 0;
    width: 80%;
  }

  .l-sec02 .img-wrap02 {
    max-width: 586px;
    margin: 0 0 0 auto;
    width: 80%;
  }
}

@media (max-width: 800px) {
  .l-sec02 {
    gap: 30px;
    width: 90%;
  }

  .l-sec02 .img-wrap01 .img01 {
    margin: 0 30px 0 0;
  }

  .l-sec02 .img-wrap01 .img02 {
    margin: -20px 0 0 40px;
  }

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

.sec03 {
  padding: 140px 0 168px;
  position: relative;
  z-index: 0;
}

.sec03::before {
  content: "";
  background: url(../images/sec03_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.sec03 .t-h2 {
  margin-bottom: 75px;
}

.sec03-link {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 55px;
}

.sec03-link .item {
  display: block;
}

.sec03-link .l-img {
  aspect-ratio: 350/434;
  background-color: var(--color_white);
  padding: 10px;
  position: relative;
  min-width: 310px;
  height: auto;
  transition: background-color 0.3s;
}

.sec03-link .l-img::before, .sec03-link .l-img::after {
  content: "";
  background: url(../images/share/img_deco01.svg) no-repeat center/contain;
  position: absolute;
}

.sec03-link .l-img::before {
  width: 42px;
  height: auto;
  aspect-ratio: 42/64;
  bottom: -22px;
  left: 0;
  rotate: -90deg;
}

.sec03-link .l-img::after {
  width: 42px;
  height: auto;
  aspect-ratio: 42/64;
  top: -22px;
  right: 0;
  rotate: 90deg;
}

.sec03-link .img-inner {
  border: 1px solid #FEAF2A;
  display: grid;
  place-content: center;
  padding: 34px 0 25px;
  position: relative;
  height: 100%;
}

.sec03-link .num {
  display: grid;
  place-content: center;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.625rem;
  line-height: 1;
  background-color: rgba(254, 175, 42, 0.7);
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
}

.sec03-link .txt {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 40px;
  padding: 0 0 45px;
  position: relative;
  text-align: center;
}

.sec03-link .txt span {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.sec03-link .txt::before {
  content: "";
  background: linear-gradient(to bottom right, #FECC3A, #FEAF2A);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sec03-link .txt::after {
  content: "";
  background: url(../images/share/btn-arrow.svg) no-repeat center/contain;
  width: 28px;
  height: 4px;
  position: absolute;
  bottom: 15px;
  left: calc(50% - 11px);
  transform: translateX(-50%);
}

@media (any-hover: hover) {
  .sec03-link .item:hover .l-img {
    background-color: #fff7e8;
  }
}

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

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

  .sec03-link {
    gap: 40px;
  }

  .sec03-link .l-img {
    min-width: auto;
  }

  .sec03-link .txt {
    font-size: 1.375rem;
    margin-top: 25px;
    padding-bottom: 45px;
  }

  .sec03-link .txt span {
    font-size: 1rem;
  }
}

.sec04 {
  background-color: var(--color_secondary);
  padding: 140px 0;
}

.l-sec04 {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 55px;
  color: var(--color_white);
  margin: auto;
  width: min(1720px, 100% - 40px);
}

.l-sec04 .img {
  padding: 10px;
  position: relative;
}

.l-sec04 .img::before, .l-sec04 .img::after {
  content: "";
  background: url(../images/share/img_deco01.svg) no-repeat center/contain;
  position: absolute;
}

.l-sec04 .img::before {
  width: 60px;
  height: auto;
  aspect-ratio: 42/64;
  bottom: -17px;
  left: 15px;
  rotate: -90deg;
}

.l-sec04 .img::after {
  width: 60px;
  height: auto;
  aspect-ratio: 42/64;
  top: -17px;
  right: 14px;
  rotate: 90deg;
}

.l-sec04 .l-inner {
  max-width: 546px;
}

.l-sec04 .t-h2 {
  text-align: left;
}

.l-sec04 .t-h2 [lang=en] {
  color: var(--color_white);
}

.l-sec04 .t-h2 [lang=en]::before {
  left: 40px;
  transform: none;
}

.l-sec04 .l-btn {
  margin-top: 80px;
}

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

  .l-sec04 {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 90%;
  }

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

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

  .l-sec04 .t-h2 [lang=en]::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .l-sec04 .l-btn {
    margin-top: 25px;
    text-align: center;
  }
}

.sec05 {
  padding: 140px 0;
}

.sec05-link {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px;
  margin-bottom: 64px;
}

.sec05-link .item {
  margin: auto;
  padding-top: 22px;
}

.sec05-link .item:nth-child(2) {
  margin-top: 60px;
}

.sec05-link .item:nth-child(3) {
  margin-top: 20px;
}

.sec05-link a {
  display: block;
  background-color: var(--color_white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 10px 10px 15px;
  position: relative;
  transition: transform 0.3s;
}

.sec05-link a::before {
  content: "";
  background-color: var(--color_primary);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 22px;
  height: 22px;
  position: absolute;
  bottom: 0;
  right: 0;
}

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

.sec05-link .label {
  color: var(--color_primary);
  font-family: var(--font_en_deco);
  font-size: 3.75rem;
  line-height: 1;
  position: absolute;
  top: -22px;
  left: 15px;
}

.sec05-link .l-img {
  margin-bottom: 10px;
}

.sec05-link .txt {
  font-family: var(--font_jp);
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.l-sec05 {
  display: grid;
  grid-template-columns: 1fr 205px;
  grid-template-rows: 90px 1fr;
  grid-template-areas: "ttl btn""faq faq";
  gap: 60px;
}

.l-sec05 .l-ttl {
  grid-area: ttl;
  font-size: 2.5rem;
  font-family: var(--font_jp);
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  position: relative;
}

.l-sec05 .l-ttl::before {
  content: "";
  background-color: var(--color_primary);
  width: 45px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.l-sec05 .sec05-faq {
  grid-area: faq;
}

.l-sec05 .l-btn {
  grid-area: btn;
  margin: 16px 0 0 auto;
}

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

  .sec05-link {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .sec05-link .item:nth-child(2), .sec05-link .item:nth-child(3) {
    margin-top: 0;
  }

  .sec05-link .label {
    font-size: 2.8125rem;
  }

  .sec05-link .txt {
    font-size: 1.375rem;
  }

  .l-sec05 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "ttl""faq""btn";
    gap: 30px;
  }

  .l-sec05 .l-ttl {
    font-size: 1.5rem;
  }

  .l-sec05 .l-btn {
    margin: 0;
  }
}

.sec06 {
  background: url(../images/sec06_bg.jpg) no-repeat center/cover;
  color: var(--color_white);
  padding: 140px 0;
  position: relative;
  z-index: 0;
}

.sec06::before {
  content: "";
  background-color: rgba(83, 76, 67, 0.75);
  inset: 0;
  position: absolute;
  z-index: -1;
}

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

.sec06 .l-btn {
  margin-top: 80px;
  text-align: center;
}

.sec06_slider {
  margin-top: 20px;
}

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

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

.sec07 {
  padding: 140px 0 110px;
}

.l-sec07 {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 55px;
  grid-template-areas: "desc img";
  margin: auto;
  width: min(1720px, 100% - 40px);
}

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

.l-sec07 .img {
  padding: 10px;
  position: relative;
}

.l-sec07 .img::before, .l-sec07 .img::after {
  content: "";
  background: url(../images/share/img_deco01.svg) no-repeat center/contain;
  position: absolute;
}

.l-sec07 .img::before {
  width: 60px;
  height: auto;
  aspect-ratio: 42/64;
  bottom: -17px;
  right: 15px;
  rotate: 90deg;
  transform: scale(-1, 1);
}

.l-sec07 .img::after {
  width: 60px;
  height: auto;
  aspect-ratio: 42/64;
  top: -18px;
  left: 14px;
  rotate: -90deg;
  transform: scale(-1, 1);
}

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

.l-sec07 .l-inner {
  margin: 0 0 0 auto;
  max-width: 546px;
}

.l-sec07 .t-h2 {
  text-align: left;
}

.l-sec07 .t-h2 [lang=en]::before {
  left: 40px;
  transform: none;
}

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

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

  .l-sec07 {
    grid-template-columns: 1fr;
    grid-template-areas: "img""desc";
    gap: 30px;
    width: 90%;
  }

  .l-sec07 .l-inner {
    margin: 0;
    max-width: none;
  }

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

  .l-sec07 .t-h2 [lang=en]::before {
    left: 50%;
    transform: translateX(-50%);
  }

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

.sec08 {
  background: url(../images/sec08_bg.jpg) no-repeat center/cover;
  padding: 140px 0;
  position: relative;
  z-index: 0;
}

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

.sec08 .l-btn {
  margin-top: 80px;
  text-align: center;
}

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

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

.sec09 {
  padding: 140px 0 115px;
  position: relative;
  z-index: 0;
}

.sec09::before {
  content: "";
  background-color: var(--color_bg);
  width: 100%;
  height: 44%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}

.l-sec09 {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 96px;
  margin: auto;
  width: min(1480px, 100% - 320px);
}

.l-sec09 .img {
  padding: 10px;
  position: relative;
}

.l-sec09 .img::before, .l-sec09 .img::after {
  content: "";
  background: url(../images/share/img_deco01.svg) no-repeat center/contain;
  position: absolute;
}

.l-sec09 .img::before {
  width: 60px;
  height: auto;
  aspect-ratio: 42/64;
  bottom: -17px;
  left: 15px;
  rotate: -90deg;
}

.l-sec09 .img::after {
  width: 60px;
  height: auto;
  aspect-ratio: 42/64;
  top: -17px;
  right: 14px;
  rotate: 90deg;
}

.l-sec09 .l-inner {
  max-width: 504px;
}

.l-sec09 .t-h2 {
  text-align: left;
}

.l-sec09 .t-h2 [lang=en]::before {
  left: 37px;
  transform: none;
}

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

@media (max-width: 1200px) {
  .l-sec09 {
    gap: 50px;
    width: 90%;
  }
}

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

  .l-sec09 {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 90%;
  }

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

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

  .l-sec09 .t-h2 [lang=en]::before {
    left: 50%;
    transform: translateX(-50%);
  }

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

.sec10 {
  padding: 140px 0;
}

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

.sec11 {
  background: url(../images/sec11_bg.jpg) no-repeat center/cover;
  color: var(--color_white);
  padding: 140px 0;
  position: relative;
  z-index: 0;
}

.sec11::before {
  content: "";
  background-color: rgba(83, 76, 67, 0.75);
  inset: 0;
  position: absolute;
  z-index: -1;
}

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

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

.sec12-link {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.sec12-link>a {
  display: block;
  position: relative;
  z-index: 0;
}

.sec12-link>a::before {
  content: "";
  background: rgba(83, 76, 67, 0.6);
  inset: 0;
  position: absolute;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .sec12-link>a:hover::before {
    background-color: rgba(83, 76, 67, 0.8);
  }
}

.sec12-link .img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec12-link .txt {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: -moz-max-content;
  width: max-content;
}

.sec12-link .txt span {
  font-size: 0.8125rem;
}

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

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

  .sec12-link .txt {
    font-size: 0.875rem;
  }

  .sec12-link .txt span {
    font-size: 0.625rem;
  }
}

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

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

.t-news-layout .l-ttl [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.9375rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-bottom: 50px;
  position: relative;
}

.t-news-layout .l-ttl [lang=en]::before {
  content: "";
  background-color: #FECC3A;
  width: 1px;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 20px;
}

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

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

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

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

.t-blog-layout {
  display: grid;
  grid-template-columns: 1fr 195px;
  grid-template-rows: 142px 1fr;
  grid-template-areas: "ttl btn""body body";
  gap: 70px;
}

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

.t-blog-layout .l-ttl [lang=en] {
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-bottom: 50px;
  position: relative;
}

.t-blog-layout .l-ttl [lang=en]::before {
  content: "";
  background-color: #FECC3A;
  width: 1px;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: 20px;
}

.t-blog-layout .l-ttl .jp {
  font-size: 2.5rem;
}

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

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

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

  .t-blog-layout .l-ttl .jp {
    font-size: 1.5rem;
  }
}

.post-top-news {
  display: grid;
  border-top: 1px solid var(--color_border);
}

.post-top-news a {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--color_border);
  font-size: 0.9375rem;
  padding: 29px 0;
}

.post-top-news time {
  color: #888;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline-block;
  white-space: nowrap;
}

.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_jp);
  letter-spacing: 0.1em;
}

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

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

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

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

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

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

.post-top-blog .post-img img {
  aspect-ratio: 241/165;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s;
}

.post-top-blog time {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1;
  margin-bottom: 10px;
}

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

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

.post-top-blog .category {
  text-box: trim-both cap alphabetic;
  display: inline-block;
  color: #FEAF2A;
  font-size: 0.8125rem;
}

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

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  display: grid;
  align-items: center;
  background: url(../images/under/page_ttl_bg.jpg) no-repeat center/cover;
  color: var(--color_white);
  padding: 250px 5% 210px;
  position: relative;
  z-index: 0;
}

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

.page-ttl {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 3.4375rem;
  line-height: 1.5;
  text-align: center;
}

.breadcrumb {
  margin-inline: auto;
  max-width: min(1024px, 90%);
}

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

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 10px 0 7px;
  vertical-align: 2px;
  background-color: var(--color_primary);
  border-radius: 50%;
}

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

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

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

  .page-ttl {
    font-size: 1.5rem;
  }

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

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

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

.postdata h2 {
  font-size: 1.625rem;
  padding-bottom: 8px;
  text-align: left;
}

.postdata h2::before {
  width: 45px;
  left: 0;
  transform: none;
}

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

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

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

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

.postdata h4 {
  font-size: 1.25rem;
}

.postdata h4::before {
  top: 11px;
}

.num-ttl {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--color_primary);
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.num-ttl .num {
  display: grid;
  place-content: center;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1;
  background-color: rgba(254, 175, 42, 0.7);
  margin: -4px 0 0 0;
  width: 50px;
  height: 50px;
}

.num-ttl .ttl {
  flex: 1;
  font-size: 1.5rem;
}

@media (max-width: 800px) {

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

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

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

  .u-h4,
  .postdata h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    padding-left: 17px;
  }

  .u-h4::before,
  .postdata h4::before {
    width: 8px;
    height: 8px;
    top: 12px;
  }

  .num-ttl {
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 4px;
  }

  .num-ttl .num {
    font-size: 0.9375rem;
    margin: 0;
    width: 35px;
    height: 35px;
  }

  .num-ttl .ttl {
    font-size: 1.25rem;
  }
}

.l-catch {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.l-catch .c-blown {
  font-weight: bold;
}

.l-catch+.l-catch {
  margin-top: 0;
}

.l-catch02 {
  background-color: var(--color_bg);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  padding: 20px;
  position: relative;
  text-align: center;
  z-index: 0;
}

.l-catch02::before {
  content: "";
  border: 1px solid var(--color_white);
  inset: 5px;
  position: absolute;
  z-index: -1;
}

@media (max-width: 800px) {
  .l-catch {
    font-size: 1.125rem;
    text-align: left;
  }

  .l-catch02 {
    font-size: 1.25rem;
  }
}

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

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

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

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

.hidden {
  overflow: hidden;
}

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

  .tall.bg01 {
    padding: 40px 0;
  }

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

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

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

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

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

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

.list-check.col2 {
  gap: 10px 20px;
}

.list-check>li {
  border-bottom: 1px solid var(--color_border02);
  position: relative;
  padding-left: 30px;
}

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

.list-check02 {
  display: grid;
  gap: 15px;
}

.list-check02>li {
  background-color: var(--color_white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  position: relative;
  padding: 8px 10px 8px 55px;
}

.list-check02>li::before {
  content: "";
  background-color: #B89860;
  -webkit-mask: url(../images/share/icon_check.svg) no-repeat center/contain;
  mask: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 17px;
  left: 15px;
  width: 25px;
  height: 25px;
}

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

  .list-check02>li {
    font-size: 1.0625rem;
    padding: 5px 10px 5px 35px;
  }

  .list-check02>li::before {
    top: 13px;
    left: 10px;
    width: 15px;
    height: 15px;
  }
}

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

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

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

.list-num02 {
  counter-reset: number;
  display: grid;
  gap: 20px;
}

.list-num02>li {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  padding-left: 55px;
  position: relative;
}

.list-num02>li::before {
  display: grid;
  place-content: center;
  background-color: var(--color_primary);
  color: #fff;
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 20px;
  text-align: center;
  width: 40px;
  height: 40px;
}

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

.list-content>li {
  border-bottom: 1px solid var(--color_border02);
  font-weight: 500;
  line-height: 1.8;
}

.list-content .num {
  color: var(--color_primary);
  font-family: var(--font_en_deco);
  font-size: 1.375rem;
  font-weight: bold;
  padding: 0 20px 0 0;
}

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

.list-anchor-link a {
  display: grid;
  align-items: center;
  background-color: #EDE3CB;
  font-size: 0.875rem;
  font-weight: bold;
  height: 100%;
  padding: 20px 65px 20px 20px;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

.list-anchor-link a::before {
  content: "";
  border-left: 1px solid var(--color_secondary);
  width: 2px;
  height: calc(100% - 40px);
  position: absolute;
  right: 60px;
  top: auto;
  bottom: auto;
  transition: border-color 0.3s;
}

.list-anchor-link a::after {
  content: "";
  background-color: var(--color_secondary);
  -webkit-mask: url(../images/share/icon_arrow_anchor.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow_anchor.svg) no-repeat center/contain;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .list-anchor-link a:hover {
    background-color: var(--color_secondary);
    color: var(--color_white);
  }

  .list-anchor-link a:hover::before {
    border-color: var(--color_white);
  }

  .list-anchor-link a:hover::after {
    background-color: var(--color_white);
  }
}

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

  .list-anchor-link a {
    padding: 10px 25px 10px 10px;
  }

  .list-anchor-link a::before {
    content: none;
  }

  .list-anchor-link a::after {
    right: 10px;
  }
}

.layout-access .l-desc {
  margin-top: 40px;
}

.dl-style01 {
  background: var(--color_white);
  padding: 30px;
}

.dl-style01 .item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  border-bottom: 1px solid #EDE3CB;
  padding: 12px 0;
}

.dl-style01 dt {
  display: grid;
  place-content: center;
  background-color: var(--color_bg);
  color: #6c5f47;
  font-size: 0.875rem;
}

.dl-style01 dd {
  line-height: 1.8;
}

.dl-style01 dd .small {
  color: #888;
  font-size: 0.875rem;
}

.dl-style02 {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  line-height: 1.5;
}

.dl-style02.center {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.dl-style02 dt {
  display: grid;
  place-content: center;
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  font-family: var(--font_jp);
  font-size: 0.875rem;
  padding: 3px 5px;
  text-align: center;
}

.dl-access {
  display: grid;
  gap: 20px;
}

.dl-access .item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--color_border02);
  line-height: 1.5;
  padding: 0 0 5px;
}

.dl-access dt {
  color: #6c5f47;
  font-size: 0.875rem;
}

.dl-access .wrap {
  display: flex;
  gap: 10px;
  padding-top: 2px;
}

.dl-access img {
  width: 22px;
  height: 22px;
}

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

  .dl-access .item {
    grid-template-columns: 120px 1fr;
  }
}

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

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

.table-style01 td {
  padding: 15px 0 15px 15px;
}

.table-style02 {
  border-top: 1px solid #C9A961;
}

.table-style02 th,
.table-style02 td {
  border-bottom: 1px solid #C9A961;
  padding: 15px 20px;
  vertical-align: middle;
}

.table-style02 th {
  background-color: var(--color_bg);
}

.table-style02 .bg01 {
  background-color: #EDE3CB;
}

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

@media (max-width: 800px) {

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

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

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

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

  .table-style01.sp-block.sp-block th {
    border-bottom: none;
    padding: 10px 0 0;
  }

  .table-style01.sp-block.sp-block td {
    padding: 10px 0;
  }

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

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

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

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

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

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

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

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

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

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

.under-slider01 .splide__arrow {
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

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

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

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

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

.under-slider01 .item-ttl {
  font-size: 1.125rem;
}

.under-slider01 .item-ttl+p {
  margin-top: 10px;
}

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

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

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

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

@media (max-width: 800px) {

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

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

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

/*------------
Add
--------------*/
.l-style01 {
  display: grid;
  grid-template-columns: 49% 1fr;
  grid-template-areas: "img desc";
  gap: 6%;
  padding-bottom: 80px;
  position: relative;
}

.l-style01::before {
  content: "";
  background-color: var(--color_bg);
  position: absolute;
  inset: 185px -100% 0 7%;
  z-index: -1;
}

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

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

.l-style01 .l-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-size: 1.875rem;
  padding-bottom: 5px;
  margin: 30px 0 80px;
}

.l-style01 .l-ttl02 {
  margin: 30px 0 80px;
}

.l-style01 .l-ttl02 .label {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-bottom: 5px;
}

.l-style01 .l-ttl02 .ttl {
  border-bottom: 1px solid var(--color_primary);
  font-size: 1.875rem;
  padding-bottom: 5px;
}

.l-style01:has(.l-ttl02)::before {
  inset: 210px -100% 0 7%;
}

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

.l-style01.reverse::before {
  inset: 185px 7% 0 -100%;
}

@media (max-width: 800px) {
  .l-style01 {
    grid-template-columns: 1fr;
    grid-template-areas: "img""desc";
    gap: 0;
    padding-bottom: 50px;
  }

  .l-style01::before {
    inset: auto;
    width: 110%;
    height: 80%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .l-style01 .l-ttl {
    font-size: 1.25rem;
    margin: 40px 0 15px;
    padding-bottom: 2px;
  }

  .l-style01 .l-ttl02 {
    margin: 40px 0 15px;
  }

  .l-style01 .l-ttl02 .label {
    font-size: 1rem;
  }

  .l-style01 .l-ttl02 .ttl {
    font-size: 1.25rem;
    padding-bottom: 2px;
  }

  .l-style01:has(.l-ttl02)::before {
    inset: auto;
    width: 110%;
    height: 80%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

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

  .l-style01.reverse::before {
    inset: auto;
    width: 110%;
    height: 80%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.l-style02 {
  display: flex;
}

.l-style02 .l-img {
  width: 50%;
}

.l-style02 .l-desc {
  background-color: var(--color_white);
  padding: 5%;
  margin: 60px 0 0 -40px;
  flex: 1;
  position: relative;
  z-index: 0;
}

.l-style02 .num {
  color: var(--color_bg);
  font-family: var(--font_en_deco);
  font-size: 5.375rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: -40px;
  right: 0;
}

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

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

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

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

  .l-style02 .num {
    font-size: 3.75rem;
    top: -35px;
  }

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

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

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

.flow-style>li:not(:last-child)::before {
  content: "";
  background-color: #FEAF2A;
  width: 1px;
  position: absolute;
  top: 44px;
  bottom: 0;
  left: 98px;
  z-index: -1;
}

.flow-style .flow-num {
  padding: 8px 0 0 0;
  position: relative;
}

.flow-style .flow-num::after {
  content: "";
  background-color: var(--color_primary);
  border: 5px solid var(--color_white);
  width: 20px;
  height: 20px;
  border-radius: 100px;
  position: absolute;
  top: 12px;
  right: -9px;
}

.flow-style .num {
  font-family: var(--font_jp);
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}

.flow-style .list-ttl {
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  margin-bottom: 20px;
}

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

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

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

.flow-style02 {
  background-color: var(--color_white);
  padding: 40px;
}

.flow-style02>li {
  padding-left: 30px;
  position: relative;
}

.flow-style02>li::after {
  content: "";
  background-color: var(--color_primary);
  border: 5px solid var(--color_white);
  width: 20px;
  height: 20px;
  border-radius: 100px;
  position: absolute;
  top: 12px;
  left: 0;
}

.flow-style02>li:not(:last-child) {
  padding-bottom: 45px;
  z-index: 0;
}

.flow-style02>li:not(:last-child)::before {
  content: "";
  background-color: #FEAF2A;
  width: 1px;
  position: absolute;
  top: 22px;
  bottom: -22px;
  left: 10px;
  z-index: -1;
}

.flow-style02 .flow-ttl {
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  margin-bottom: 15px;
}

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

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

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

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

  .flow-style>li {
    grid-template-columns: 70px 1fr;
    gap: 20px;
  }

  .flow-style>li:not(:last-child)::before {
    left: 68px;
  }

  .flow-style .flow-num {
    padding: 7px 0 0 0;
  }

  .flow-style .flow-num::after {
    top: 10px;
  }

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

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

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

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

  .flow-style02 {
    padding: 30px 5%;
  }

  .flow-style02>li::after {
    top: 9px;
  }

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

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

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

.list-card01 .item {
  background-color: var(--color_bg);
  padding: 25px;
  position: relative;
}

.list-card01 .list-img {
  margin-bottom: 15px;
}

.list-card01 .list-ttl {
  border-bottom: 1px solid var(--color_secondary);
  font-size: 1.25rem;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.list-card02 .item {
  background-color: var(--color_white);
  padding: 15px;
  position: relative;
}

.list-card02 .item::before, .list-card02 .item::after {
  content: "";
  background: url(../images/share/img_deco01.svg) no-repeat center/contain;
  position: absolute;
}

.list-card02 .item::before {
  width: 42px;
  height: auto;
  aspect-ratio: 42/64;
  bottom: -22px;
  left: 0;
  rotate: -90deg;
}

.list-card02 .item::after {
  width: 42px;
  height: auto;
  aspect-ratio: 42/64;
  top: -22px;
  right: 0;
  rotate: 90deg;
}

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

.list-card02 .list-ttl {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.list-card03 {
  gap: 30px;
  padding-top: 20px;
}

.list-card03.col3, .list-card03.col4 {
  gap: 30px;
}

.list-card03>li {
  background-color: var(--color_bg);
  padding: 25px;
  position: relative;
}

.list-card03>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent var(--color_secondary);
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
}

.list-card03 .label {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: -33px;
  left: 25px;
}

.list-card03 .num {
  font-size: 2.5rem;
}

.list-card03 .list-img {
  margin-bottom: 15px;
}

.list-card03 .list-ttl {
  font-size: 1.25rem;
  margin-bottom: 7px;
}

.list-card04 .item {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  display: grid;
  place-content: center;
  padding: 70px 15px;
}

.list-card04 .card-txt {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.list-card05 .item {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  padding: 30px;
}

.list-card05 .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.list-card05 .l-btn {
  margin-top: 16px;
  text-align: right;
}

.list-card06 .item {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  padding: 15px 13px 20px;
}

.list-card06 .card-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1.5;
  padding-bottom: 5px;
  margin-bottom: 15px;
  text-align: center;
}

.list-card06 .card-ttl .small {
  font-size: 0.9375rem;
}

.list-card06 .l-btn {
  margin-bottom: 20px;
  text-align: center;
}

.list-card06 .btn-more02 {
  width: 100%;
}

.list-card06 .l-dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  line-height: 1.5;
}

.list-card06 .l-dl dt {
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  font-family: var(--font_jp);
  font-size: 0.625rem;
  padding: 3px 5px 0;
  text-align: center;
}

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

.list-card07 .item {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  padding: 25px 15px 30px;
}

.list-card07 .card-txt {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 20px;
  text-align: center;
}

.list-card07 .card-txt .num {
  font-size: 2.5rem;
  line-height: 0.5;
}

.list-card07 .btn-more02 {
  display: grid;
  place-content: center;
  line-height: 1.2;
  min-width: auto;
  padding: 6px 15px;
}

.list-card08 .wrap {
  background-color: var(--color_white);
  border-radius: 50%;
  margin-bottom: 30px;
  padding: 60px;
}

.list-card08 .list-ttl {
  font-size: 1.875rem;
  margin-bottom: 10px;
  text-align: center;
}

.list-card08 .list-img img {
  margin-inline: auto;
  height: 190px;
  width: auto;
}

.list-card08 .list-desc {
  padding: 0 25px;
}

@media (max-width: 800px) {
  .list-card01 .item {
    padding: 20px 5%;
  }

  .list-card02.col3 {
    gap: 40px;
  }

  .list-card03.col3, .list-card03.col4 {
    gap: 45px;
  }

  .list-card03>li {
    padding: 20px 5%;
  }

  .list-card03>li:not(:last-child)::after {
    top: auto;
    bottom: -36px;
    right: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .list-card04 .item {
    padding: 20px 15px;
  }

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

  .list-card08.col2 {
    gap: 40px;
  }

  .list-card08 .wrap {
    margin-bottom: 15px;
    padding: 35px 20px;
  }

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

  .list-card08 .list-img img {
    height: 130px;
  }

  .list-card08 .list-desc {
    padding: 0;
  }
}

.box-style01 {
  background-color: var(--color_white);
  padding: 5%;
  position: relative;
  z-index: 0;
}

.box-style01::before {
  content: "";
  border: 1px solid var(--color_primary);
  inset: 10px;
  position: absolute;
  z-index: -1;
}

.box-style01.bg01 {
  background-color: var(--color_bg);
}

.box-style01.bg01::before {
  border-color: var(--color_white);
}

.box-style01 .box-ttl {
  font-size: 1.875rem;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}

.box-style01 .box-ttl::before {
  content: "";
  background-color: var(--color_primary);
  width: 55px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.box-style03 {
  background-color: var(--color_white);
  padding: 20px;
}

.contact-box {
  background-color: var(--color_secondary);
  color: var(--color_white);
  max-width: 800px;
  margin: auto;
  padding: 5% 8%;
  position: relative;
  z-index: 0;
}

.contact-box::before {
  content: "";
  border: 1px solid var(--color_primary);
  inset: 10px;
  position: absolute;
  z-index: -1;
}

.contact-box .box-ttl {
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}

.contact-box .box-ttl::before {
  content: "";
  background-color: var(--color_primary);
  width: 55px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.contact-box .box-ttl .label {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.contact-box .box-ttl .ttl {
  font-size: 1.875rem;
}

.contact-box .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--color_border02);
  padding-bottom: 25px;
}

.contact-box .item-ttl {
  font-family: var(--font_jp);
  font-size: 1rem;
  margin-bottom: 10px;
  text-align: center;
}

.contact-box .l-btn {
  text-align: center;
}

.contact-box .l-dl {
  display: grid;
  grid-template-columns: 50px 1fr;
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px auto 0;
}

.contact-box02 {
  background-color: var(--color_secondary);
  color: var(--color_white);
  max-width: 800px;
  margin: auto;
  padding: 5% 8%;
  position: relative;
  z-index: 0;
}

.contact-box02::before {
  content: "";
  border: 1px solid var(--color_primary);
  inset: 10px;
  position: absolute;
  z-index: -1;
}

.contact-box02 .box-ttl {
  font-size: 1.375rem;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}

.contact-box02 .box-ttl::before {
  content: "";
  background-color: var(--color_primary);
  width: 55px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.contact-box02 .wrap {
  border-bottom: 1px solid var(--color_border02);
  text-align: center;
  padding-bottom: 25px;
}

.contact-box02 .l-dl {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 15px auto 0;
}

.contact-box02 .l-dl .item {
  display: flex;
  gap: 10px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 30px calc(5% + 10px);
  }

  .box-style01 .box-ttl {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .contact-box {
    width: 100%;
    padding: 30px calc(5% + 10px);
  }

  .contact-box .box-ttl {
    margin-bottom: 30px;
  }

  .contact-box .box-ttl .ttl {
    font-size: 1.5rem;
  }

  .contact-box .wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 20px;
  }

  .contact-box .item-ttl {
    font-size: 0.875rem;
    margin-bottom: 5px;
  }

  .contact-box02 {
    width: 100%;
    padding: 30px calc(5% + 10px);
  }

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

  .contact-box02 .wrap {
    padding-bottom: 20px;
  }

  .contact-box02 .l-dl {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
}

.layout-history {
  position: relative;
}

.layout-history::before {
  content: "";
  background-color: var(--color_primary);
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.layout-history .item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  padding: 25px 40px;
  position: relative;
  margin: 0 auto 0 0;
  width: 50%;
}

.layout-history .item::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  z-index: 1;
}

.layout-history .item:nth-child(even) {
  margin: 0 0 0 auto;
}

.layout-history .item:nth-child(even)::before {
  right: auto;
  left: -12px;
}

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

.layout-history dt {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  line-height: 1;
  padding: 5px 0 0;
}

@media (max-width: 800px) {
  .layout-history::before {
    left: 0;
    transform: none;
  }

  .layout-history .item {
    grid-template-columns: 75px 1fr;
    margin: 0;
    padding: 10px 15px 10px 20px;
    width: 100%;
  }

  .layout-history .item::before {
    width: 10px;
    height: 10px;
    right: auto;
    left: -5px;
  }

  .layout-history .item dt {
    font-size: 1rem;
    padding: 6px 0 0;
  }

  .layout-history .item:nth-child(even) {
    margin: 0;
  }

  .layout-history .item:nth-child(even)::before {
    left: -5px;
  }

  .layout-history .item+.item {
    margin-top: 10px;
  }
}

.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_border02);
  font-family: var(--font_jp);
  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;
}

.br-pc-only {
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
}

.br-sp-only {
  display: none;
  height: 0;
  margin: 0;
  padding: 0;
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

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

.c-blown {
  color: #B89860;
}

.font01 {
  font-family: var(--font_jp);
}

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

.col1 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.col2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.col3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

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

@media (max-width: 800px) {

  .col1,
  .col2,
  .col3,
  .col4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
}

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

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

  .sp-only {
    display: block;
  }

  .br-pc-only {
    display: none;
  }

  .br-sp-only {
    display: block;
  }

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

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

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

  .mbXS {
    margin-bottom: 4px;
  }

  .mbS {
    margin-bottom: 8px;
  }

  .mbM {
    margin-bottom: 16px;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

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

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

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

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

  .gapXS {
    grid-gap: 4px;
  }

  .gapS {
    grid-gap: 8px;
  }

  .gapM {
    grid-gap: 16px;
  }

  .gapXM {
    grid-gap: 32px;
  }

  .gapL {
    grid-gap: 48px;
  }

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

.tel {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font_en);
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.faq-style {
  transition: 0.3s;
}

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

.faq-style .faq-summary {
  display: block;
  cursor: pointer;
  border-bottom: 1px solid var(--color_black);
  padding: 10px 25px 10px 52px;
  position: relative;
  transition: 0.3s;
}

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

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

@media (any-hover: hover) {
  .faq-style .faq-summary:hover .faq-icon {
    background-color: transparent;
    color: var(--color_black);
  }
}

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

.faq-style .faq-inner {
  padding: 10px 0 10px 52px;
  position: relative;
}

.faq-style .faq-inner .faq-icon {
  border: 1px solid var(--color_primary);
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 4px 0 0 2px;
  top: 8px;
  left: 0;
}

.faq-style .faq-ttl {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.faq-style .faq-icon {
  background-color: var(--color_black);
  border: 1px solid var(--color_black);
  border-radius: 50%;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  padding: 4px 0 0;
  position: absolute;
  transition: 0.3s;
}

.faq-style .faq-open-icon {
  display: inline-block;
  background: url(../images/share/icon_close.svg) no-repeat center/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  right: 0;
  top: 23px;
  transition: 0.3s;
}

.faq-style.is-open .faq-summary .faq-icon {
  background-color: var(--color_secondary);
  border-color: var(--color_secondary);
  color: var(--color_white);
}

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

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

  .faq-style .faq-summary {
    padding: 15px 30px 15px 45px;
  }

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

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

  .faq-style .faq-icon {
    font-size: 1.125rem;
    width: 32px;
    height: 32px;
  }

  .faq-style .faq-open-icon {
    right: 0;
    top: 16px;
    width: 23px;
    height: 23px;
  }

  .faq-style .faq-inner {
    padding: 15px 0 20px 45px;
  }

  .faq-style .faq-inner .faq-icon {
    top: 10px;
    left: 0;
  }
}

.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: none;
  }
}

/*------------
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: 10px;
}

.splide__pagination__page {
  background: #fff;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 30px;
  width: 3px;
}

.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 {
  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: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  opacity: 0.7;
}

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