@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #EAF3FF;
  --color_text: #333;
  --color_link: #333;
  --color_border: #dfdfdf;
  --color_primary: #0075C2;
  --color_secondary: #009FB9;
  --color_tertiary: #ABCD03;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #757575;
}

/* ====================================================
【アニメーション】
==================================================== */
: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:
    "FOT-筑紫A丸ゴシック Std M",
    "Local Noto Sans JP",
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B", serif;
  --font_thin: "FOT-筑紫A丸ゴシック Std R", serif;
  --font_en: "Quicksand", serif;
  --font_weight: normal;
  --font_size: 1rem;
  --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.4;
}

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

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

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

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

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

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

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

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

@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 {
  padding-right: 15px;
  position: relative;
}

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

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

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

.btn-more {
  display: inline-block;
  background-color: var(--color_tertiary);
  border-radius: 10px;
  color: var(--color_white);
  font-size: 1rem;
  font-family: var(--font_jp);
  line-height: 1.3;
  min-width: 210px;
  min-height: 50px;
  padding: 14px 35px 14px 25px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-more::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/arrow-btn.svg) no-repeat center/contain;
  mask: url(../images/share/arrow-btn.svg) no-repeat center/contain;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

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

  .btn-more:hover::before {
    animation: arrow-move-center 0.8s ease;
  }
}

.btn-more.btn-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

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

.btn-download {
  display: inline-block;
  background-color: var(--color_tertiary);
  border-radius: 10px;
  color: var(--color_white);
  font-size: 1rem;
  font-family: var(--font_jp);
  line-height: 1.3;
  min-width: 210px;
  min-height: 50px;
  padding: 14px 60px 14px 25px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-download::before {
  content: "";
  background: url(../images/share/icon_download.svg) no-repeat center/contain;
  width: 16px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 37px;
  transform: translateY(-50%);
}

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

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

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

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-select-area {
  margin-bottom: 50px;
}

.category-select-area .item {
  background-color: var(--color_white);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  padding: 40px;
}

.category-select-area .item .ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1rem;
  line-height: 1;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-links a {
  background-color: var(--color_base);
  border: 1px solid #96a7be;
  display: inline-flex;
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 2px 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media (any-hover: hover) {
  .category-links a:hover {
    background-color: var(--color_primary);
    color: var(--color_white);
  }
}

@media (max-width: 800px) {
  .category-select-area {
    margin-bottom: 35px;
  }

  .category-select-area .item {
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 10px;
    padding: 15px;
  }
}

.category-ttl {
  font-size: 1.125rem;
  margin-bottom: 17px;
}

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

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

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

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

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

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

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

.post-under-blog time {
  display: block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-box: trim-both cap alphabetic;
}

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

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

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

.post-under-blog .arrow {
  display: inline-block;
  border: 1px solid #c4c4c4;
  border-radius: 100px;
  width: 33px;
  height: 20px;
  overflow: hidden;
  position: relative;
  transition: background-color 0.35s ease;
}

.post-under-blog .arrow::before {
  content: "";
  background-color: currentColor;
  -webkit-mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 11px;
  height: 8px;
  transition: background-color 0.35s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

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

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

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

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

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

  .post-under-blog 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 .arrow {
    display: none;
  }

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

/*募集要項*/
.post-under-jobs {
  display: grid;
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}

.post-under-jobs a {
  border-bottom: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 120px 1fr 30px;
  align-items: center;
  gap: 15px;
  padding: 25px 15px;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .post-under-jobs a:hover {
    background-color: #D3E7F9;
  }

  .post-under-jobs a:hover .arrow {
    background-color: var(--color_primary);
  }

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

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

.post-under-jobs .category {
  display: inline-block;
  background-color: var(--color_base);
  border: 1px solid #96a7be;
  border-radius: 100px;
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 1px 5px;
  text-align: center;
  min-width: 120px;
}

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

.post-under-jobs .arrow {
  display: inline-block;
  border: 1px solid #c4c4c4;
  border-radius: 100px;
  width: 33px;
  height: 20px;
  overflow: hidden;
  position: relative;
  transition: background-color 0.35s ease;
}

.post-under-jobs .arrow::before {
  content: "";
  background-color: currentColor;
  -webkit-mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 11px;
  height: 8px;
  transition: background-color 0.35s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.post-under-jobs .no-post {
  padding: 15px 0;
}

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

  .post-under-jobs a {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 15px 0;
  }

  .post-under-jobs .category {
    font-size: 0.625rem;
    min-width: auto;
  }

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

  .post-under-jobs .arrow {
    display: none;
  }
}

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

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

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

.layout-single-post .category {
  display: inline-block;
  border: 1px solid #96a7be;
  background-color: var(--color_base);
  border-radius: 100px;
  font-size: 0.625rem;
  line-height: 1.5;
  padding: 2px 8px;
  text-align: center;
}

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

@media (max-width: 800px) {
  .layout-single-post {
    margin: 60px auto 0;
  }

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-number-single .all {
  background: var(--color_primary);
  color: var(--color_white);
  border: 1px solid var(--color_primary);
  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_primary);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  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_primary);
  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_primary);
}

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 17px 2.5%;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  width: 96%;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.header .logo-txt {
  display: block;
  font-family: var(--font_jp);
  font-size: 0.875rem;
  margin-bottom: 9px;
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.3s ease;
}

.header .logo-txt span {
  overflow: hidden;
}

.header.is-scroll .logo-txt {
  grid-template-rows: 0fr;
}

.h-left {
  flex: 1;
}

.h-logo a {
  display: block;
  width: fit-content;
}

.h-utility-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 54px;
  margin-bottom: 10px;
}

.size-change {
  display: flex;
  align-items: center;
  gap: 20px;
}

.size-change .l-txt {
  font-family: var(--font_jp);
  font-size: 1.125rem;
}

.size-change .l-btn-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.size-change .btn {
  display: inline-block;
  background-color: #757575;
  border-radius: 10px;
  color: var(--color_white);
  font-family: var(--font_jp);
  line-height: 1.5;
  height: 48px;
  width: 119px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.size-change .btn.normal {
  font-size: 1rem;
  padding: 8px 10px;
}

.size-change .btn.large {
  font-size: 1.375rem;
  padding: 2px 10px;
}

.size-change .btn.is-active {
  background-color: var(--color_secondary);
  pointer-events: none;
}

@media (any-hover: hover) {
  .size-change .btn:not(.is-active):hover {
    background-color: var(--color_primary);
  }
}

@media (max-width: 1400px) {
  .header {
    gap: 15px;
    padding: 15px 5%;
    background-color: var(--color_white);
    border-radius: 0 0 20px 20px;
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
  }

  .header .logo-txt {
    font-size: 0.5625rem;
  }

  .h-utility {
    margin-right: 20px;
  }

  .h-utility-item {
    margin-bottom: 0;
  }

  .h-utility-item .tel {
    display: none;
  }

  .gnavi {
    display: none;
  }
}

@media (max-width: 800px) {
  .h-logo {
    max-width: 150px;
  }

  .h-utility {
    display: none;
    margin-right: 0;
  }
}

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

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

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

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

.gnavi-links>li>button {
  cursor: auto;
}

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

.dropdown::after {
  content: "";
  display: block;
  background: url(../images/share/icon_plus_circle.svg) no-repeat center center/contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0.75rem;
  right: 0;
}

.dropdown.is-open::before {
  content: "";
  background-color: var(--color_primary);
  width: calc(100% - 20px);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.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.95);
  border-radius: 0 0 5px 5px;
  padding: 35px 30px 25px;
  position: absolute;
  top: 32px;
  right: calc(50% + 10px);
  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 {
  padding-left: 15px;
  position: relative;
}

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

.dropdown .sub-menu a {
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .dropdown .sub-menu a:hover {
    color: var(--color_secondary);
  }
}

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

.gnavi-menu-btn,
.gnavi-drawer {
  display: none;
}

@media (max-width: 1400px) {
  .gnavi-menu-btn {
    cursor: pointer;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 110;
  }

  .gnavi-menu-btn-line {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 10px;
  }

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

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

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

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

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

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

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

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

  .gnavi-drawer-container {
    background-color: var(--color_white);
    display: grid;
    align-items: start;
    margin-left: auto;
    padding: 80px 50px 50px 70px;
    width: min(640px, 90%);
    min-height: 100%;
  }

  .drawer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 60px 40px;
    line-height: 1.5;
    font-size: 0.875rem;
  }

  .drawer-links .drawer-col {
    display: grid;
    gap: 35px;
    align-content: start;
  }

  .drawer-links .link-ttl {
    font-family: var(--font_jp);
    font-size: 1.25rem;
  }

  .drawer-links .sub-menu {
    display: grid;
    gap: 13px;
    margin-top: 10px;
  }

  .drawer-links .sub-menu>li {
    padding-left: 15px;
    position: relative;
  }

  .drawer-links .sub-menu>li::before {
    content: "";
    background-color: var(--color_primary);
    border-radius: 50%;
    width: 7px;
    height: 7px;
    position: absolute;
    top: 0.625rem;
    left: 0;
  }

  .drawer-links .link-ttl.only-link {
    padding-right: 0;
  }

  .drawer-links .link-ttl.only-link::after {
    display: none;
  }


  .drawer-links .sub-menu a {
    font-size: 1rem;
    transition: color 0.5s ease;
  }

  .drawer-links .sub-menu a[aria-current="page"] {
    color: var(--color_secondary);
  }
}

@media (max-width: 1400px) and (any-hover: hover) {
  .drawer-links .sub-menu a:hover {
    color: var(--color_secondary);
  }
}

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

  .drawer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .drawer-links .drawer-col {
    gap: 30px;
  }

  /* SPでは見出しタップで小項目をドロップダウン表示（開閉アニメーションはJS側） */
  .drawer-links .link-ttl {
    font-size: 1.125rem;
    cursor: pointer;
    padding-right: 30px;
    position: relative;
  }

  .drawer-links .link-ttl::after {
    content: "";
    border-right: 2px solid var(--color_primary);
    border-bottom: 2px solid var(--color_primary);
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
  }

  .drawer-links .link-ttl[aria-expanded="true"]::after {
    transform: translateY(-30%) rotate(225deg);
  }

  .drawer-links .sub-menu {
    display: none;
    gap: 10px;
    margin-top: 0;
    overflow: hidden;
  }

  .drawer-links .drawer-col>li.is-open .sub-menu {
    display: grid;
  }

  .drawer-links .sub-menu>li:first-child {
    margin-top: 12px;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background: url(../images/share/f_bg.jpg) no-repeat center/cover;
  border-radius: 200px 200px 0 0;
  margin-top: auto;
  position: relative;
  padding: 100px 0 0;
}

.f-logo {
  /* ロゴ画像の表示幅と、SVG内でテキストが始まるx座標の比率 */
  --logo_w: 366px;
  --logo_text_x: 0.10; /* ← ここだけ調整すれば位置が動きます */
  margin-bottom: 40px;
}

.f-logo a {
  display: block;
  width: fit-content;
}

.f-logo a span {
  display: block;
  padding-left: calc(var(--logo_w) * var(--logo_text_x));
}

.f-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}

.f-top .item:nth-child(2) {
  text-align: right;
}

.f-info .l-item a,
.f-info .l-item span {
  display: flex;
  align-items: center;
  gap: 15px;
}

.f-info .l-item.l-access img {
  margin-top: 2px;
}

.f-info .l-item.l-tel, .f-info .l-item.l-fax {
  font-family: var(--font_jp);
  font-size: 1.375rem;
}

.f-info .l-info-inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* フッターバナー */
.f-bnr {
  margin-top: 25px;
}

.f-bnr a {
  display: inline-block;
  background-color: var(--color_white);
  border-radius: 10px;
  width: 210px;
  padding: 8px 15px; /* 上下を 12px → 8px */
  transition: opacity 0.3s ease;
}

.f-bnr img {
  width: 120px;        /* ← ここで高さが決まります */
  height: auto;
  margin-inline: auto; /* カード内で中央寄せ */
}

@media (any-hover: hover) {
  .f-bnr a:hover {
    opacity: 0.7;
  }
}

.site-map {
  display: flex;
  gap: 50px 8%;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

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

.f-links .link-ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
}

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

.f-links .sub-menu>li {
  padding-left: 15px;
  position: relative;
}

.f-links .sub-menu>li::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 0.625rem;
  left: 0;
}

.f-links .sub-menu a {
  font-size: 1rem;
  transition: color 0.5s ease;
}

.f-links .sub-menu a[aria-current="page"] {
  color: var(--color_secondary);
}



@media (any-hover: hover) {
  .f-links .sub-menu a:hover {
    color: var(--color_secondary);
  }
}

.f-bottom {
  background-color: var(--color_tertiary);
  color: var(--color_white);
}

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

.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 small {
  font-size: 0.75rem;
}

.pagetop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  transition: transform 0.3s ease;
  z-index: 9;
}

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

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

  .f-logo {
    --logo_w: 300px;
    margin-bottom: 25px;
  }

  .f-logo img {
    width: 300px;
  }

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

  .f-top .item:nth-child(2) {
    text-align: center;
  }

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

  .f-info .l-item.l-access {
    margin-bottom: 10px;
  }

  .f-info .l-item.l-tel, .f-info .l-item.l-fax {
    font-size: 1.25rem;
  }

  .f-info .l-info-inner {
    gap: 0;
  }

  .site-map {
    flex-direction: column;
    align-items: normal;
    gap: 35px;
    margin-bottom: 45px;
  }

  .f-links {
    gap: 30px;
  }

  .f-links .link-ttl {
    font-size: 1.125rem;
  }

  .f-links .sub-menu {
    gap: 10px;
  }

  .f-bottom-inner {
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 11px 0 8px;
  }

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

  .copyright {
    text-align: center;
  }

  .pagetop {
    bottom: 70px;
    right: 15px;
  }

  .pagetop img {
    width: 15px;
  }
}

.pc-fixed {
  color: var(--color_white);
  background-color: var(--color_secondary);
  border-radius: 10px 0 0 10px;
  display: flex;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(371px, -50%);
  transition: transform 0.5s ease;
  z-index: 99;
}

.pc-fixed .fixed-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font_jp);
  writing-mode: vertical-rl;
  font-feature-settings: "palt"0;
  padding: 20px;
  background: none;
  border: none;
  color: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.pc-fixed .fixed-txt svg {
  fill: var(--color_white);
}

.pc-fixed .fixed-inner {
  flex: 1;
  padding: 35px;
  width: 371px;
}

.pc-fixed .txt {
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

.pc-fixed .tel {
  font-size: 1.4375rem;
  justify-content: center;
  margin-bottom: 15px;
}

.pc-fixed .tel svg {
  fill: var(--color_white);
}

.pc-fixed .l-dl {
  display: grid;
  grid-template-columns: 4.375rem 1fr;
  gap: 10px;
  align-items: center;
  margin: 0 auto 10px;
  width: -moz-fit-content;
  width: fit-content;
}

.pc-fixed .l-dl dt {
  background-color: var(--color_white);
  border-radius: 2px;
  color: var(--color_secondary);
  font-size: 0.625rem;
  text-align: center;
  padding: 2px;
}

.pc-fixed .l-dl dd {
  font-family: var(--font_thin);
}

.pc-fixed .note {
  font-family: var(--font_thin);
  font-size: 0.875rem;
  text-align: center;
}

@media (any-hover: hover) {
  .pc-fixed:hover {
    transform: translate(0, -50%);
  }
}

.pc-fixed.is-open {
  transform: translate(0, -50%);
}

.sp-navi {
  display: none;
}

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

  .pc-fixed {
    display: none;
  }

  .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.625rem;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

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

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

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

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

.hero .splide__controls {
  position: absolute;
  bottom: 5px;
  left: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 0 15px;
}

.hero-catch {
  width: 90%;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-catch .catch-txt {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: clamp(1.375rem, 3vw, 3.4375rem);
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5),0 0 10px rgba(0, 0, 0, 0.5),0 0 10px rgba(0, 0, 0, 0.5),0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-catch .catch-subtxt {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: clamp(0.875rem, 2vw, 2.25rem);
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5),0 0 10px rgba(0, 0, 0, 0.5),0 0 10px rgba(0, 0, 0, 0.5),0 0 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1400px) {
  .hero {
    margin-top: 40px;
  }

  .hero .splide__controls {
    bottom: 135px;
  }
}

@media (max-width: 1024px) {
  .hero .splide__controls {
    bottom: 45px;
  }
}

@media (max-width: 800px) {
  .hero-catch {
    top: 45%;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  color: var(--color_primary);
  line-height: 1.5;
  margin-bottom: 75px;
  padding-top: 80px;
  position: relative;
  text-align: center;
}

.t-h2::before {
  content: "";
  background: url(../images/share/ttl_deco.svg) no-repeat center/contain;
  width: 105px;
  height: 66px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.t-h2 [lang=en] {
  font-family: var(--font_en);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  margin-bottom: 8px;
}

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

@media (max-width: 800px) {
  .t-h2 {
    margin-bottom: 40px;
    padding-top: 56px;
  }

  .t-h2::before {
    width: 75px;
    height: 47px;
  }

  .t-h2 [lang=en] {
    font-size: 1.125rem;
  }

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

/*------------
Section
--------------*/
.sec01 {
  background-color: #EAF3FF;
  margin: -124px 0 0;
}

.sec01-link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 27px 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
}

.sec01-link .item {
  padding: 5px 40px;
}

.sec01-link .item+.item {
  position: relative;
}

.sec01-link .item+.item::before {
  content: "";
  background-color: var(--color_primary);
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sec01-link .ttl {
  display: grid;
  grid-template-columns: 77px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 23px;
}

.sec01-link .ttl a {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  padding-right: 25px;
  position: relative;
}

.sec01-link .ttl a::after {
  content: "";
  background: url(../images/share/arrow01.svg) no-repeat center/contain;
  width: 24px;
  height: 13px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .sec01-link .ttl a:hover {
    color: var(--color_secondary);
  }

  .sec01-link .ttl a:hover::after {
    animation: arrow-move-center 1.2s ease;
  }
}

@media (max-width: 1024px) {
  .sec01 {
    margin-top: -40px;
  }

  .sec01-link {
    grid-template-columns: 1fr;
    border-radius: 12px;
    padding: 20px;
  }

  .sec01-link .item {
    padding: 20px 8px;
  }

  .sec01-link .item+.item::before {
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
  }

  .sec01-link .ttl {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    margin-bottom: 12px;
  }

  .sec01-link .ttl a {
    font-size: 1.125rem;
    padding-right: 22px;
  }

  .sec01-link .ttl a::after {
    width: 20px;
  }
}

.sec02 {
  background-color: #EAF3FF;
  border-radius: 0 0 0 200px;
  padding: 120px 0;
}

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

.sec02-tab-list .tab-btn {
  background-color: #757575;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 11px 20px;
  text-align: center;
  transition: background-color 0.3s;
}

.sec02-tab-list .tab-btn:nth-child(1) {
  border-radius: 20px 0 0 0;
}

.sec02-tab-list .tab-btn:nth-child(2) {
  border-radius: 0 20px 0 0;
}

.sec02-tab-list .tab-btn.is-active {
  background-color: var(--color_secondary);
  pointer-events: none;
}

@media (any-hover: hover) {
  .sec02-tab-list .tab-btn:hover {
    background-color: var(--color_primary);
  }
}

.sec02-tab-content {
  background-color: var(--color_white);
  border-radius: 0 0 20px 20px;
  padding: 60px;
  position: relative;
  z-index: 1;
}

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

  .sec02-tab-list .tab-btn {
    font-size: 1.0625rem;
    padding: 12px 10px;
  }

  .sec02-tab-list .tab-btn:nth-child(1) {
    border-radius: 12px 0 0 0;
  }

  .sec02-tab-list .tab-btn:nth-child(2) {
    border-radius: 0 12px 0 0;
  }

  .sec02-tab-content {
    border-radius: 0 0 12px 12px;
    padding: 30px 5%;
  }
}

.sec03 {
  margin: -200px 0 0;
  padding: 350px 0 150px;
  position: relative;
}

.sec03::before {
  content: "";
  background: url(../images/sec03_bg.jpg) no-repeat center/cover;
  border-radius: 0 0 200px 0;
  inset: 0;
  position: absolute;
  z-index: -1;
}

.sec03 .t-h2 {
  color: var(--color_white);
}

.sec03-card {
  display: grid;
  gap: 40px 17px;
  margin-bottom: 40px;
}

.sec03-card .item {
  background-color: var(--color_white);
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
  padding: 40px 5%;
}

.sec03-card .item:nth-child(1) {
  grid-area: 1/1/2/3;
}

.sec03-card .item:nth-child(2) {
  grid-area: 1/3/2/5;
}

.sec03-card .item:nth-child(3) {
  grid-area: 1/5/2/7;
}

.sec03-card .item:nth-child(4) {
  grid-area: 2/2/3/4;
}

.sec03-card .item:nth-child(5) {
  grid-area: 2/4/3/6;
}

.sec03-card .item:nth-child(6) {
  grid-area: 3/2/4/4;
}

.sec03-card .item:nth-child(7) {
  grid-area: 3/4/4/6;
}

.sec03-card .card-img {
  margin-bottom: 22px;
}

.sec03-card .card-img img {
  margin-inline: auto;
}

.sec03-card .card-ttl {
  color: var(--color_primary);
  font-size: 1.3125rem;
  margin-bottom: 22px;
  text-align: center;
}

.sec03-card .card-check {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.sec03-card .card-check li {
  font-family: var(--font_jp);
  padding-left: 20px;
  position: relative;
}

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

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

.sec03-box {
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 50px;
}

.sec03-box .box-ttl {
  color: var(--color_primary);
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 35px;
  padding-top: 160px;
  position: relative;
}

.sec03-box .box-ttl::before {
  content: "";
  background: url(../images/sec03_icon08@2x.png) no-repeat center/contain;
  width: 270px;
  height: auto;
  aspect-ratio: 270/168;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.sec03-box .txt {
  text-align: center;
}

.sec03-box .txt.txt {
  margin-top: 1em;
}

.sec03-box .box-link-wrap {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 32px;
}

.sec03-box .box-link-wrap .item {
  display: inline-block;
  background-color: var(--color_tertiary);
  border-radius: 10px;
  color: var(--color_white);
  padding: 22px 30px 30px;
  position: relative;
  width: 355px;
  transition: background-color 0.3s ease;
}

.sec03-box .box-link-wrap .item::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/arrow-btn.svg) no-repeat center/contain;
  mask: url(../images/share/arrow-btn.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 13px;
  right: 10px;
}

@media (any-hover: hover) {
  .sec03-box .box-link-wrap .item:hover {
    background-color: oklch(from var(--color_tertiary) calc(l - 0.2) c h);
  }

  .sec03-box .box-link-wrap .item:hover::before {
    animation: arrow-move 0.8s ease;
  }
}

.sec03-box .box-link-wrap .ttl {
  font-size: 1.25rem;
  margin-bottom: 5px;
  padding-left: 30px;
  position: relative;
}

.sec03-box .box-link-wrap .ttl::before {
  content: "";
  background-color: var(--color_white);
  width: 20px;
  height: 2px;
  position: absolute;
  top: 1.25rem;
  left: 0;
}

@media (max-width: 800px) {
  .sec03 {
    margin-top: -120px;
    padding: 180px 0 80px;
  }

  .sec03::before {
    border-radius: 0 0 80px 0;
  }

  .sec03-card {
    gap: 20px;
    margin-bottom: 30px;
  }

  .sec03-card .item {
    padding: 30px 24px;
  }

  .sec03-card .item:nth-child(n) {
    grid-area: auto;
  }

  .sec03-card .card-ttl {
    font-size: 1.1875rem;
  }

  .sec03-card .card-check li::before {
    top: 0.5rem;
  }

  .sec03-box {
    padding: 30px 24px;
  }

  .sec03-box .box-ttl {
    font-size: 1.375rem;
    padding-top: 110px;
  }

  .sec03-box .box-ttl::before {
    width: 180px;
  }

  .sec03-box .txt {
    text-align: left;
  }

  .sec03-box .box-link-wrap {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .sec03-box .box-link-wrap .item {
    width: 100%;
    max-width: 355px;
  }

  .sec03-box .box-link-wrap .ttl {
    font-size: 1.125rem;
  }

  .sec03-box .box-link-wrap .ttl::before {
    top: 0.9375rem;
  }
}

.sec04 {
  margin: -200px 0 0;
  padding: 350px 0 150px;
  position: relative;
}

.sec04::before {
  content: "";
  background: url(../images/sec04_bg.jpg) no-repeat center/cover;
  inset: 0;
  position: absolute;
  z-index: -2;
}

.l-sec04 {
  margin: 0 0 0 auto;
  max-width: 1500px;
  padding: 0 0 62px;
  width: 83%;
}

.l-sec04 .l-img {
  margin: 0 0 0 auto;
  position: relative;
  width: 76%;
}

.l-sec04 .l-img::before {
  content: "";
  background: url(../images/sec04_img02@2x.png) no-repeat center/contain;
  width: 23%;
  height: auto;
  aspect-ratio: 263/385;
  position: absolute;
  right: 37px;
  bottom: -112px;
  z-index: 1;
}

.l-sec04 .l-img img {
  border-radius: 140px 0 0 0;
}

.l-sec04 .l-desc {
  margin: -32% 0 0 0;
  position: relative;
}

.l-sec04 .l-inner {
  background-color: var(--color_white);
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
  max-width: 772px;
  padding: 50px 50px 60px;
}

.l-sec04 .l-ttl {
  color: var(--color_primary);
  font-size: 1.875rem;
  margin-bottom: 35px;
  padding-bottom: 10px;
  position: relative;
}

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

.l-sec04 .l-btn {
  margin-top: 30px;
  text-align: right;
}

.l-sec04 .btn-more {
  background-color: var(--color_primary);
}

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

.sec04-card-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 7%;
}

.sec04-card-wrap .item:nth-child(1) {
  margin: 197px 0 0 0;
}

.sec04-card-wrap .card-img {
  margin: 0 0 -80px;
}

.sec04-card-wrap .card-img img {
  margin-inline: auto;
}

.sec04-card-wrap .card-desc {
  background-color: var(--color_white);
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
  padding: 100px 50px 60px;
}

.sec04-card-wrap .card-ttl {
  color: var(--color_primary);
  font-size: 1.875rem;
  margin-bottom: 35px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
}

.sec04-card-wrap .card-ttl::before {
  content: "";
  background-color: var(--color_tertiary);
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sec04-card-wrap .l-btn {
  margin-top: 30px;
  text-align: center;
}

.sec04-card-wrap .btn-more {
  background-color: var(--color_primary);
}

@media (any-hover: hover) {
  .sec04-card-wrap .btn-more:hover {
    background-color: oklch(from var(--color_primary) calc(l - 0.2) c h);
  }
}

@media (max-width: 1400px) {
  .l-sec04 {
    width: 100%;
  }

  .l-sec04 .l-img::before {
    width: 19%;
    bottom: -40px;
  }

  .l-sec04 .l-desc {
    margin: -9% 0 0 0;
  }

  .sec04-card-wrap .card-img img {
    width: 35%;
  }
}

@media (max-width: 800px) {
  .sec04 {
    margin-top: -120px;
    padding: 180px 0 80px;
  }

  .l-sec04 {
    width: 100%;
    padding-bottom: 40px;
  }

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

  .l-sec04 .l-img::before {
    width: 20%;
    right: 10px;
    bottom: -40px;
  }

  .l-sec04 .l-img img {
    border-radius: 60px 0 0 0;
  }

  .l-sec04 .l-desc {
    margin-top: 0;
  }

  .l-sec04 .l-inner {
    border-radius: 0 0 20px 20px;
    padding: 30px 24px 40px;
  }

  .l-sec04 .l-ttl {
    font-size: 1.375rem;
    margin-bottom: 24px;
  }

  .l-sec04 .l-btn {
    text-align: center;
  }

  .sec04-card-wrap {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

  .sec04-card-wrap .item:nth-child(1) {
    margin-top: 0;
  }

  .sec04-card-wrap .card-img {
    margin: 0 auto -40px;
    width: 20%;
  }

  .sec04-card-wrap .card-img img {
    width: 100%;
  }

  .sec04-card-wrap .card-desc {
    padding: 50px 20px 30px;
  }

  .sec04-card-wrap .card-ttl {
    font-size: 1.375rem;
    margin-bottom: 24px;
  }
}

.sec05 {
  padding: 150px 0 140px;
  position: relative;
}

.sec05::before {
  content: "";
  background: url(../images/sec05_bg.jpg) no-repeat center/cover;
  border-radius: 0 0 0 200px;
  inset: 0;
  position: absolute;
  z-index: -1;
}

.sec05 .t-h2 {
  color: var(--color_white);
}

.sec05 .txt {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  text-align: center;
}

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

  .sec05::before {
    border-radius: 0 0 0 60px;
  }

  .sec05 .txt {
    font-size: 1.125rem;
    text-align: left;
  }

  .sec05 .txt+.txt {
    margin-top: 1em;
  }
}

.sec06 {
  padding: 150px 0;
}

.sec06-box {
  background-color: var(--color_white);
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 30px;
  padding: 6%;
}

.sec06-box .box-inner {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 10%;
}

.sec06-box .l-ttl {
  color: var(--color_primary);
  line-height: 1.5;
  padding-top: 80px;
  position: relative;
}

.sec06-box .l-ttl::before {
  content: "";
  background: url(../images/share/ttl_deco.svg) no-repeat center/contain;
  width: 105px;
  height: 66px;
  position: absolute;
  left: 0;
  top: 0;
}

.sec06-box .l-ttl [lang=en] {
  font-family: var(--font_en);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  margin-bottom: 12px;
}

.sec06-box .l-ttl .jp {
  font-size: 2.1875rem;
  letter-spacing: 0.05em;
}

.sec06-box .l-btn {
  margin-top: 40px;
  text-align: right;
}

.sec06-box .btn-more {
  background-color: var(--color_primary);
}

@media (any-hover: hover) {
  .sec06-box .btn-more:hover {
    background-color: oklch(from var(--color_primary) calc(l - 0.2) c h);
  }
}

.sec06-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 32px;
}

.sec06-links .item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  background-color: var(--color_tertiary);
  border-radius: 10px;
  padding: 19px 60px 19px 40px;
  position: relative;
  transition: background-color 0.3s ease;
}

.sec06-links .item::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/arrow-btn.svg) no-repeat center/contain;
  mask: url(../images/share/arrow-btn.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .sec06-links .item:hover {
    background-color: oklch(from var(--color_tertiary) calc(l - 0.2) c h);
  }

  .sec06-links .item:hover::before {
    animation: arrow-move-center 0.8s ease;
  }
}

.sec06-links .item-img img {
  width: auto;
  height: 37px;
}

.sec06-links .item-txt {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.sec06_slider .splide__slide img {
  border-radius: 30px;
}

.sec06_slider .splide__slide:nth-child(even) {
  margin-top: 50px;
}

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

  .sec06-box {
    padding: 30px 24px;
  }

  .sec06-box .box-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sec06-box .l-ttl {
    padding-top: 56px;
  }

  .sec06-box .l-ttl::before {
    width: 75px;
    height: 47px;
  }

  .sec06-box .l-ttl [lang=en] {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }

  .sec06-box .l-ttl .jp {
    font-size: 1.625rem;
  }

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

  .sec06-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sec06-links .item {
    padding: 16px 50px 16px 24px;
  }

  .sec06_slider .splide__slide:nth-child(even) {
    margin-top: 24px;
  }

  .sec06_slider .splide__slide img {
    border-radius: 20px;
  }
}

.sec07 {
  padding: 150px 0;
}

.l-sec07 {
  display: grid;
  grid-template-columns: 62% 1fr;
  align-items: center;
  margin: 0 16% 0 6%;
}

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

.l-sec07 .l-desc {
  margin: 0 0 0 -113px;
}

.l-sec07 .l-inner {
  background-color: var(--color_white);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 70px;
}

.l-sec07 .l-ttl {
  color: var(--color_primary);
  line-height: 1.5;
  margin-bottom: 40px;
  padding-top: 80px;
  position: relative;
}

.l-sec07 .l-ttl::before {
  content: "";
  background: url(../images/share/ttl_deco.svg) no-repeat center/contain;
  width: 105px;
  height: 66px;
  position: absolute;
  left: 0;
  top: 0;
}

.l-sec07 .l-ttl [lang=en] {
  font-family: var(--font_en);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  margin-bottom: 12px;
}

.l-sec07 .l-ttl .jp {
  font-size: 2.1875rem;
  letter-spacing: 0.05em;
}

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

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

  .l-sec07 {
    grid-template-columns: 1fr;
    margin: 0;
  }

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

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

  .l-sec07 .l-inner {
    padding: 30px 24px;
  }

  .l-sec07 .l-ttl {
    margin-bottom: 24px;
    padding-top: 56px;
  }

  .l-sec07 .l-ttl::before {
    width: 75px;
    height: 47px;
  }

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

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

.sec08 {
  padding: 0 0 150px;
}

.l-sec08 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "ttl btn""body body";
  gap: 56px 20px;
}

.l-sec08 .l-ttl {
  grid-area: ttl;
}

.l-sec08 .l-body {
  grid-area: body;
}

.l-sec08 .l-btn {
  grid-area: btn;
  display: flex;
}

.l-sec08 .l-btn .btn-more {
  margin: auto 0 0 auto;
}

.sec08-ttl {
  color: var(--color_primary);
  line-height: 1.5;
  padding-top: 80px;
  position: relative;
}

.sec08-ttl::before {
  content: "";
  background: url(../images/share/ttl_deco.svg) no-repeat center/contain;
  width: 105px;
  height: 66px;
  position: absolute;
  left: 0;
  top: 0;
}

.sec08-ttl [lang=en] {
  font-family: var(--font_en);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  margin-bottom: 12px;
}

.sec08-ttl .jp {
  font-size: 2.1875rem;
  letter-spacing: 0.05em;
}

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

  .l-sec08 {
    grid-template-columns: 1fr;
    grid-template-areas: "ttl""body""btn";
    gap: 24px;
  }

  .l-sec08 .l-btn .btn-more {
    margin: 0 auto;
  }

  .sec08-ttl {
    padding-top: 56px;
  }

  .sec08-ttl::before {
    width: 75px;
    height: 47px;
  }

  .sec08-ttl [lang=en] {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }

  .sec08-ttl .jp {
    font-size: 1.625rem;
  }
}

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

.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-weight: bold;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  margin-bottom: 4px;
}

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

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

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

.t-news-layout .btn-more {
  background-color: var(--color_secondary);
  min-width: 180px;
}

@media (any-hover: hover) {
  .t-news-layout .btn-more:hover {
    background-color: oklch(from var(--color_secondary) calc(l - 0.2) c h);
  }
}

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

  .t-news-layout .l-btn {
    margin-top: 20px;
    text-align: center;
  }
}

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

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

.post-top-news time {
  display: inline-block;
  color: var(--color_primary);
  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;
}

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

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

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

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

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

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

.page-ttl {
  font-family: var(--font_jp);
  font-size: 2.8125rem;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

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

.breadcrumb ul {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
  font-size: 0.875rem;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  background-color: var(--color_tertiary);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin: 0 11px 0 9px;
  vertical-align: 3px;
}

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

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

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

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

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

.u-h2 {
  color: var(--color_primary);
  font-size: 2.1875rem;
  margin-bottom: 50px;
  padding-top: 73px;
  position: relative;
  text-align: center;
}

.u-h2::before {
  content: "";
  background: url(../images/share/ttl_deco.svg) no-repeat center/contain;
  width: 105px;
  height: 66px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.postdata h2 {
  background-color: #D3E7F9;
  border-radius: 4px;
  font-size: 1.625rem;
  margin-bottom: 30px;
  padding: 5px 10px;
}

.u-h3,
.postdata h3 {
  color: var(--color_primary);
  font-size: 1.875rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.u-h3::before,
.postdata h3::before {
  content: "";
  background-color: var(--color_tertiary);
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.postdata h3::before {
  width: 40px;
}

.u-h4,
.postdata h4 {
  color: var(--color_secondary);
  font-size: 1.3125rem;
  margin-bottom: 15px;
  padding-left: 12px;
  position: relative;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background: url(../images/share/ttl_deco02.svg) no-repeat center/contain;
  width: 7px;
  height: 18px;
  position: absolute;
  top: 0.4375rem;
  left: 0;
}

.num-ttl {
  font-size: 1.875rem;
  margin-bottom: 30px;
  padding-left: 55px;
  position: relative;
}

.num-ttl span {
  background-color: var(--color_secondary);
  border-radius: 20px;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  top: 0.125rem;
  left: 0;
  line-height: 40px;
  letter-spacing: 0.1em;
  text-align: center;
  width: 40px;
  height: 40px;
}

@media (max-width: 800px) {

  .u-h2 {
    font-size: 1.625rem;
    margin-bottom: 30px;
    padding-top: 48px;
  }

  .u-h2::before {
    width: 75px;
    height: 47px;
  }

  .postdata h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

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

  .u-h3::before,
  .postdata h3::before {
    width: 42px;
  }

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

  .u-h4::before,
  .postdata h4::before {
    top: 5px;
  }

  .num-ttl {
    font-size: 1.375rem;
    margin-bottom: 20px;
    padding-left: 40px;
  }

  .num-ttl span {
    font-size: 0.875rem;
    line-height: 30px;
    width: 30px;
    height: 30px;
    top: -0.125rem;
  }
}

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

.tall.bg-style01 {
  background: url(../images/under/u_bg01.jpg) no-repeat center/cover;
  padding: 80px 0;
}

.tall.bg-style01:has(.l-style01) {
  padding: 100px 0 130px;
}

.tall.bg-style02 {
  background-color: #D3E7F9;
  padding: 80px 0;
}

.tall.deco-style01 {
  position: relative;
  z-index: 0;
}

.tall.deco-style01::before, .tall.deco-style01::after {
  content: "";
  height: auto;
  position: absolute;
  z-index: -1;
}

.tall.deco-style01::before {
  background: url(../images/under/design_parts02.svg) no-repeat center/contain;
  aspect-ratio: 178/176;
  width: min(9.9%, 178px);
  top: -43px;
  left: 10%;
}

.tall.deco-style01::after {
  background: url(../images/under/design_parts04.svg) no-repeat center/contain;
  aspect-ratio: 196/214;
  width: min(11%, 196px);
  bottom: -40px;
  right: 5%;
}

.tall.deco-style02 {
  position: relative;
  z-index: 0;
}

.tall.deco-style02::before, .tall.deco-style02::after {
  content: "";
  height: auto;
  position: absolute;
  z-index: -1;
}

.tall.deco-style02::before {
  background: url(../images/under/design_parts05.svg) no-repeat center/contain;
  aspect-ratio: 234/209;
  width: min(13%, 234px);
  position: absolute;
  top: -15px;
  right: 4%;
}

.tall.deco-style02::after {
  background: url(../images/under/design_parts03.svg) no-repeat center/contain;
  aspect-ratio: 246/187;
  width: min(13.7%, 246px);
  bottom: -66px;
  left: 9%;
}

.tall.deco-style02 .container {
  position: relative;
  z-index: 0;
}

.tall.deco-style02 .container::before {
  content: "";
  background: url(../images/under/design_parts01.svg) no-repeat center/contain;
  aspect-ratio: 197/107;
  width: min(16.5%, 197px);
  position: absolute;
  top: -133px;
  left: -3%;
}

.tall.deco-style03 {
  position: relative;
  z-index: 0;
}

.tall.deco-style03::before, .tall.deco-style03::after {
  content: "";
  height: auto;
  position: absolute;
  z-index: -1;
}

.tall.deco-style03::before {
  background: url(../images/under/design_parts06.svg) no-repeat center/contain;
  aspect-ratio: 197/107;
  width: min(10.9%, 197px);
  top: -53px;
  left: 13.6%;
}

.tall.deco-style03::after {
  background: url(../images/under/design_parts02.svg) no-repeat center/contain;
  aspect-ratio: 190/188;
  width: min(10.6%, 190px);
  bottom: -82px;
  right: 11%;
}

.tall.deco-style04 {
  position: relative;
  z-index: 0;
}

.tall.deco-style04::before {
  content: "";
  background: url(../images/under/design_parts10.svg) no-repeat center/contain;
  width: min(3.6%, 66px);
  height: auto;
  aspect-ratio: 66/64;
  position: absolute;
  top: 56px;
  right: 5.3%;
  z-index: -1;
}

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

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

.hidden {
  overflow: hidden;
}

@media (max-width: 1400px) {
  .tall.deco-style01::after {
    bottom: -90px;
  }

  .tall.deco-style04::before {
    right: 2%;
  }
}

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

  .tall.bg-style01, .tall.bg-style02 {
    padding: 50px 0;
  }

  .tall.bg-style01:has(.l-style01) {
    padding: 50px 0;
  }

  .tall.deco-style01::before {
    width: 22%;
    top: -25px;
  }

  .tall.deco-style01::after {
    width: 24%;
    bottom: -45px;
  }

  .tall.deco-style02::before {
    width: 29%;
    top: -35px;
  }

  .tall.deco-style02::after {
    width: 30%;
    bottom: -38px;
  }

  .tall.deco-style02 .container::before {
    width: 27%;
    top: -85px;
  }

  .tall.deco-style03::before {
    width: 26%;
    top: -34px;
    left: 5%;
  }

  .tall.deco-style03::after {
    width: 23%;
    bottom: -45px;
    right: 5%;
  }

  .tall.deco-style04::before {
    width: 8%;
    top: -20px;
  }

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

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

.list-anchor-link {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 30px;
}

.list-anchor-link a {
  display: block;
  border-bottom: 1px dashed var(--color_secondary);
  color: var(--color_primary);
  font-family: var(--font_jp);
  line-height: 1.5;
  padding: 0 20px 2px 0;
  position: relative;
  transition: color 0.3s ease;
}

.list-anchor-link a::after {
  content: "";
  background-color: var(--color_primary);
  -webkit-mask: url(../images/share/arrow-btn.svg) no-repeat center/10px 10px;
  mask: url(../images/share/arrow-btn.svg) no-repeat center/10px 10px;
  width: 11px;
  height: 11px;
  position: absolute;
  top: 0.5rem;
  right: 0;
  rotate: 90deg;
}

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

  .list-anchor-link a:hover::after {
    animation: arrow-move 0.8s ease;
  }
}

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

.list-payment {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
}

.list-payment .img {
  background: var(--color_white);
  border: 1px solid var(--color_border);
  border-radius: 2px;
  display: grid;
  place-items: center;
  padding: 5px 10px;
}

.list-payment .img img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 50px;
}

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

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

.list-check {
  display: grid;
}

.list-check.col2, .list-check.col3 {
  gap: 0 5px;
}

.list-check li {
  font-family: var(--font_jp);
  position: relative;
  padding-left: 20px;
}

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

.list-check .small {
  font-family: var(--font_base);
  font-size: 0.875rem;
  color: var(--color_gray);
}

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

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

.list-num>li:before,
.postdata ol>li:before {
  color: var(--color_primary);
  counter-increment: number;
  content: counter(number) ".";
  font-family: var(--font_en);
  position: absolute;
  top: 6px;
  left: 0;
  line-height: 20px;
  text-align: center;
  width: 20px;
  height: 20px;
}

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

.list-num02>li {
  border-bottom: 1px dashed var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  line-height: 1.6;
  padding: 0 0 11px 42px;
  position: relative;
}

.list-num02>li::before {
  background-color: var(--color_secondary);
  border-radius: 20px;
  color: var(--color_white);
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: bold;
  position: absolute;
  top: -0.15em;
  left: 0;
  line-height: 32px;
  text-align: center;
  width: 32px;
  height: 32px;
}

@media (max-width: 800px) {
  .list-check li::before {
    top: 0.5625rem;
  }

  .list-num02 {
    gap: 15px;
  }

  .list-num02>li {
    font-size: 1.125rem;
    padding: 0 0 10px 39px;
  }

  .list-num02>li::before {
    font-size: 0.875rem;
    line-height: 30px;
    top: 0;
    width: 30px;
    height: 30px;
  }
}

.table-style01 th,
.table-style01 td {
  border-bottom: 1px solid var(--color_primary);
  padding: 10px;
  vertical-align: middle;
}

.table-style01 th {
  font-family: var(--font_jp);
  text-align: left;
}

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

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

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

.table-style02 .bg01 {
  background-color: #bddce1;
  color: var(--color_text);
}

.table-style02 .bg02 {
  background-color: #07606f;
  color: var(--color_white);
}

.table-style02.staff-schedule th,
.table-style02.staff-schedule td {
  text-align: center;
}

.table-style02.staff-schedule .is-fixed {
  position: sticky;
  left: 0;
}

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

  .table-scroll .staff-schedule {
    width: 250%;
  }

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

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

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

.under-slider01 .splide__slide:not(.is-active) {
  opacity: 0.2;
  transition: opacity 0.5s ease-in-out;
}

.under-slider01 .splide__slide.is-active {
  opacity: 1;
}

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

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

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

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

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

.under-slider01 .item-ttl {
  color: var(--color_primary);
  font-size: 1.125rem;
  margin-bottom: 5px;
}

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

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

.zoom-img {
  display: block;
  position: relative;
}

.zoom-img::before {
  content: "";
  background: var(--color_secondary) url(../images/share/icon_zoom.svg) no-repeat center/22px auto;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 1;
}

@media (max-width: 800px) {
  .zoom-img {
    pointer-events: none;
  }

  .zoom-img::before {
    display: none;
  }
}

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

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

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

.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
--------------*/
.faq-style {
  border-bottom: 1px solid #ccc;
  transition: 0.3s;
}

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

.faq-style .faq-summary {
  display: block;
  cursor: pointer;
  padding: 33px 60px 45px 50px;
  position: relative;
  transition: 0.3s;
}

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

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

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

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

.faq-style .faq-inner {
  padding: 2px 0 24px 50px;
  position: relative;
}

.faq-style .faq-inner .faq-icon {
  background-color: var(--color_tertiary);
  padding: 7px 12px;
  top: 0;
  left: 0;
}

.faq-style .faq-desc {
  font-size: 0.9375rem;
}

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

.faq-style .faq-icon {
  background-color: var(--color_primary);
  border-radius: 50%;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  line-height: 1;
  padding: 6px 10px;
  width: 36px;
  height: 36px;
  position: absolute;
  transition: 0.3s;
}

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

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

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

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

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

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

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

.faq-style.l-accordion .faq-summary {
  padding: 33px 60px 45px 0;
}

.faq-style.l-accordion .faq-inner {
  padding: 2px 0 24px;
}

.faq-style02 {
  border-top: 1px dashed var(--color_secondary);
}

.faq-style02>.item {
  border-bottom: 1px dashed var(--color_secondary);
  padding: 50px 0;
}

.faq-style02>.item>dt {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  padding: 0 0 20px 50px;
  position: relative;
}

.faq-style02>.item>dt::before {
  content: "Q";
  background-color: var(--color_primary);
  border-radius: 50%;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  padding: 7px 11px;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 3px;
  left: 0;
  transition: 0.3s;
}

.faq-style02>.item>dd {
  padding: 0 0 0 50px;
}

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

  .faq-style .faq-summary {
    padding: 14px 36px 24px 50px;
  }

  .faq-style .faq-summary .faq-icon {
    padding: 6px 8px;
    top: 10px;
    left: 10px;
  }

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

  .faq-style .faq-open-icon {
    right: 2px;
    top: 9px;
    width: 30px;
    height: 30px;
  }

  .faq-style .faq-open-icon::before, .faq-style .faq-open-icon::after {
    width: 13px;
  }

  .faq-style .faq-inner {
    padding: 12px 16px 18px 50px;
  }

  .faq-style .faq-inner .faq-icon {
    padding: 7px 10px;
    top: 12px;
    left: 10px;
  }

  .faq-style .faq-desc {
    font-size: 0.875rem;
  }

  .faq-style .faq-icon {
    font-size: 0.875rem;
    padding: 5px 8px;
    width: 30px;
    height: 30px;
  }

  .faq-style.l-accordion .faq-summary {
    padding: 14px 36px 24px 0;
  }

  .faq-style.l-accordion .faq-inner {
    padding: 2px 0 24px;
  }

  .faq-style02>.item {
    padding: 20px 0;
  }

  .faq-style02>.item>dt {
    font-size: 1.125rem;
    padding: 0 0 20px 40px;
  }

  .faq-style02>.item>dt::before {
    font-size: 0.875rem;
    padding: 6px 9px;
    width: 30px;
    height: 30px;
  }

  .faq-style02>.item>dd {
    padding: 0 0 0 40px;
  }
}

.box-style01 {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 10px;
  padding: 30px 50px;
}

.box-style01 .box-ttl {
  font-size: 1.75rem;
  margin: 0 0 30px;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}

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

.box-style01 .dl-style01 .item>dt,
.box-style01 .dl-style01 .item>dd {
  border: 1px solid var(--color_secondary);
}

.box-style02 {
  background-color: #D3E7F9;
  border: 1px solid var(--color_primary);
  border-radius: 20px;
  padding: 30px;
}

.box-style02 .box-ttl {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color_primary);
  font-size: 1.5rem;
  margin: 0 0 25px;
}

.box-style02 .box-ttl img {
  width: 30px;
  padding: 3px 0 0;
}

.box-style03 {
  background: url(../images/under/u_bg01.jpg) no-repeat center/cover;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 5% 4%;
}

.box-style04-wrap {
  padding-top: 7.8%;
  position: relative;
}

.box-style04-wrap::before {
  content: "";
  background: url(../images/under/design_parts11.svg) no-repeat center/contain;
  width: min(19%, 197px);
  height: auto;
  aspect-ratio: 197/92;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.box-style04 {
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 20px;
  padding: 5% 10%;
}

.box-style04 .box-ttl {
  color: var(--color_primary);
  font-size: 1.875rem;
  margin-bottom: 40px;
  padding-bottom: 16px;
  position: relative;
  text-align: center;
}

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

.box-style04.pad-thin {
  padding: 5% 6%;
}

.box-style05-wrap {
  padding-top: 21px;
  position: relative;
}

.box-style05-wrap .label {
  color: var(--color_tertiary);
  font-family: var(--font_en);
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: absolute;
  top: 0;
  left: 60px;
}

.box-style05 {
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 7% 6%;
}

.box-style05 .box-ttl {
  color: var(--color_primary);
  font-size: 1.875rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
}

.box-style05 .box-ttl::before {
  content: "";
  background-color: var(--color_tertiary);
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.box-style05 .u-h3 {
  margin-bottom: 15px;
}

.box-style05 .u-h4 {
  border-bottom: 1px dashed var(--color_secondary);
  color: var(--color_primary);
  padding-bottom: 15px;
}

.box-style05 .l-imgR .l-img,
.box-style05 .l-imgL .l-img {
  width: 38.6%;
}

.box-style05 .l-imgR .img,
.box-style05 .l-imgL .img {
  position: relative;
}

.box-style05 .l-imgR .img::before,
.box-style05 .l-imgL .img::before {
  content: "";
  display: block;
  background: url(../images/under/design_parts07.svg) no-repeat center/contain;
  width: min(25%, 82px);
  height: auto;
  aspect-ratio: 82/83;
  position: absolute;
  bottom: -20px;
  right: -12%;
}

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

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

  .box-style02 {
    padding: 20px 5%;
  }

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

  .box-style02 .box-ttl img {
    width: 25px;
    padding: 4px 0 0;
  }

  .box-style03 {
    padding: 5%;
  }

  .box-style04-wrap {
    padding-top: 9.8%;
  }

  .box-style04-wrap::before {
    width: 24%;
  }

  .box-style04 {
    padding: 20px 5%;
  }

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

  .box-style04 .box-ttl::before {
    width: 45px;
  }

  .box-style05-wrap .label {
    font-size: 1.5625rem;
    left: 22px;
  }

  .box-style05 {
    padding: 20px 5%;
  }

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

  .box-style05 .box-ttl::before {
    width: 42px;
  }

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

  .box-style05 .l-imgR .img::before,
  .box-style05 .l-imgL .img::before {
    width: 18%;
    bottom: -12px;
    right: -7%;
  }

  .box-style05 .u-h4 {
    padding-bottom: 7px;
  }

  .box-style05.pad-thin {
    padding: 20px 5%;
  }
}

.dl-style01 .item {
  display: grid;
  grid-template-columns: 30% 1fr;
}

.dl-style01 .item+.item {
  margin-top: 10px;
}

.dl-style01 .item>dt,
.dl-style01 .item>dd {
  padding: 15px;
}

.dl-style01 .item>dt {
  background-color: var(--color_secondary);
  border-radius: 10px 0 0 10px;
  color: var(--color_white);
  font-family: var(--font_jp);
}

.dl-style01 .item>dd {
  background-color: var(--color_white);
  border-radius: 0 10px 10px 0;
}

.dl-style03 {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
  gap: 15px;
}

.dl-style03>dt {
  padding: 5px 10px;
  background-color: var(--color_secondary);
  border-radius: 4px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  line-height: 1.5;
  text-align: center;
}

.dl-style03.wide {
  grid-template-columns: 9.375rem 1fr;
}

.dl-style03.wide02 {
  grid-template-columns: 12.5rem 1fr;
}

.dl-style03.bg01>dt {
  background-color: var(--color_primary);
}

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

  .dl-style01>.item>dt,
  .dl-style01>.item>dd {
    padding: 10px;
  }

  .dl-style01>.item>dt {
    border-radius: 10px 10px 0 0;
  }

  .dl-style01>.item>dd {
    border-radius: 0 0 10px 10px;
  }

  .dl-style01.wide {
    grid-template-columns: 1fr;
  }

  .dl-style03>dt {
    font-size: 0.9375rem;
  }

  .dl-style03.wide,
  .dl-style03.wide02 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dl-style03.wide>dd+dt,
  .dl-style03.wide02>dd+dt {
    margin-top: 5px;
  }
}

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

.dl-history>.item {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 15px;
  border-bottom: 1px dashed var(--color_primary);
  padding: 0 0 5px;
}

.dl-history>.item+.item {
  position: relative;
}

.dl-history dt {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  color: var(--color_primary);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

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

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

  .dl-history>.item+.item::before {
    height: 11px;
    top: -11px;
    left: 27px;
  }

  .dl-history dt {
    font-size: 1.125rem;
  }

  .dl-history dd {
    padding: 2px 0 0;
  }
}

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

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

.staff-layout .l-img .img {
  margin-bottom: 5px;
  position: relative;
}

.staff-layout .l-img .img::before {
  content: "";
  display: block;
  background: url(../images/under/design_parts06.svg) no-repeat center/contain;
  width: min(44%, 146px);
  height: auto;
  aspect-ratio: 146/94;
  position: absolute;
  top: -36px;
  left: -41px;
}

.staff-layout .l-img .img::after {
  content: "";
  display: block;
  background: url(../images/under/design_parts07.svg) no-repeat center/contain;
  width: min(25%, 82px);
  height: auto;
  aspect-ratio: 82/83;
  position: absolute;
  bottom: -12px;
  right: -14%;
}

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

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

.staff-layout .l-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.875rem;
  margin-bottom: 30px;
}

.staff-name {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0 15px;
  flex-wrap: wrap;
  color: var(--color_secondary);
  font-family: var(--font_jp);
}

.staff-name .job {
  font-size: 0.875rem;
}

.staff-name .jp {
  font-size: 1.25rem;
}

.staff-name .en {
  font-family: var(--font_en);
  font-size: 0.6875rem;
}

.staff-name02 {
  display: flex;
  align-items: baseline;
  gap: 4px 15px;
  flex-wrap: wrap;
  color: var(--color_secondary);
  font-family: var(--font_jp);
  margin-bottom: 15px;
}

.staff-name02 .job {
  font-size: 1.3125rem;
}

.staff-name02 .jp {
  font-size: 1.875rem;
}

.staff-name02 .en {
  font-family: var(--font_en);
  font-size: 1rem;
}

.staff-name02.align-right {
  justify-content: flex-end;
}

.staff-name03 {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px 15px;
  flex-wrap: wrap;
  color: var(--color_secondary);
  font-family: var(--font_jp);
  margin-bottom: 15px;
}

.staff-name03 .job {
  font-size: 0.875rem;
}

.staff-name03 .jp {
  font-size: 1.25rem;
}

.staff-name03 .en {
  font-family: var(--font_en);
  font-size: 0.6875rem;
}

.staff-card>.item {
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 25px 30px;
}

.staff-card .card-ttl {
  border-bottom: 1px dashed var(--color_primary);
  color: var(--color_primary);
  font-size: 1.3125rem;
  margin-bottom: 11px;
  padding-bottom: 5px;
}

.staff-card .item-s+.item-s {
  margin-top: 25px;
}

.dl-career {
  display: grid;
  gap: 10px;
}

.dl-career>.item {
  display: grid;
  grid-template-columns: 4.7rem 1fr;
  gap: 15px;
}

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

  .staff-layout .l-img {
    margin: auto;
    width: 80%;
  }

  .staff-layout .l-img .img::before {
    width: 30%;
    top: -20px;
    left: -8%;
  }

  .staff-layout .l-img .img::after {
    width: 18%;
    right: -10%;
  }

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

  .staff-name02 {
    margin-bottom: 10px;
  }

  .staff-name02 .job {
    font-size: 1.125rem;
  }

  .staff-name02 .jp {
    font-size: 1.5rem;
  }

  .staff-name02 .en {
    font-size: 0.875rem;
  }

  .staff-card>.item {
    border-radius: 10px;
    padding: 20px 5%;
  }

  .staff-card .card-ttl {
    font-size: 1.125rem;
  }
}

.tall.l-vision {
  padding: 120px 0 150px;
}

.tall.l-vision p {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  text-align: center;
}

.tall.l-vision.top-contents {
  margin-top: -100px;
}

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

  .tall.l-vision p {
    font-size: 1.125rem;
    text-align: left;
  }

  .tall.l-vision.top-contents {
    margin-top: -50px;
  }
}

.l-style01 {
  display: flex;
  gap: 4%;
  margin: 0 calc((100% - 1200px) / 2) 0 11%;
}

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

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

.l-style01 .img {
  position: relative;
  z-index: 0;
}

.l-style01 .img::before, .l-style01 .img::after {
  content: "";
  height: auto;
  position: absolute;
  z-index: 1;
}

.l-style01 .img::before {
  background: url(../images/under/design_parts08.svg) no-repeat center/contain;
  width: min(25.6%, 178px);
  aspect-ratio: 178/176;
  top: -75px;
  left: -30px;
}

.l-style01 .img::after {
  background: url(../images/under/design_parts09.svg) no-repeat center/contain;
  width: min(33%, 230px);
  aspect-ratio: 230/86;
  bottom: -28px;
  right: 15px;
}

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

.l-style01 .l-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 2.1875rem;
  line-height: 2;
  margin-bottom: 45px;
}

.l-style02 {
  display: flex;
  margin: 0 11% 0 calc((100% - 1024px) / 2);
}

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

.l-style02 .img {
  position: relative;
}

.l-style02 .img::before {
  content: "";
  background: url(../images/under/design_parts12.svg) no-repeat center/contain;
  width: min(24%, 156px);
  height: auto;
  aspect-ratio: 156/214;
  position: absolute;
  bottom: -80px;
  left: -12%;
}

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

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

.l-style02 .l-inner {
  background-color: var(--color_white);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin: 60px 0 0 -70px;
  padding: 11% 12%;
  position: relative;
}

.l-style02 .l-inner::before {
  content: "";
  background: url(../images/under/design_parts13.svg) no-repeat center/contain;
  width: min(21%, 135px);
  height: auto;
  aspect-ratio: 135/94;
  position: absolute;
  top: -60px;
  right: -3%;
}

.l-style02 .l-ttl {
  color: var(--color_primary);
  font-size: 2.1875rem;
  line-height: 1.5;
  margin-bottom: 35px;
}

.l-style03-wrap {
  padding: 120px 0 110px;
  position: relative;
  z-index: 0;
}

.l-style03-wrap::before {
  content: "";
  background-color: var(--color_white);
  border-radius: 0 200px 0 0;
  width: 72%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.l-style03-wrap .l-num {
  color: var(--color_tertiary);
  font-family: var(--font_en);
  font-size: 3.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: -45px;
  left: calc((100% - 1200px) / 2);
  z-index: 1;
}

.l-style03 {
  display: flex;
  flex-direction: row-reverse;
  gap: 5%;
  margin: 0 calc((100% - 1200px) / 2) 0 calc((100% - 1024px) / 2);
}

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

.l-style03 .img {
  position: relative;
}

.l-style03 .img::before {
  content: "";
  background: url(../images/under/design_parts10.svg) no-repeat center/contain;
  width: min(16.3%, 88px);
  height: auto;
  aspect-ratio: 66/64;
  position: absolute;
  bottom: -43px;
  right: 3%;
}

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

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

.l-style03 .l-ttl {
  color: var(--color_primary);
  font-size: 2.1875rem;
  margin-bottom: 30px;
}

.l-style03 .btn-more {
  font-size: 1.25rem;
  min-width: 320px;
  min-height: 70px;
  padding: 21px 35px 21px 25px;
}

.l-style04 {
  display: flex;
}

.l-style04 .l-img {
  width: 52.6%;
}

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

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

.l-style04 .l-inner {
  background-color: var(--color_white);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin: 60px 0 0 -70px;
  padding: 11% 12%;
  position: relative;
}

.l-style04 .l-ttl {
  color: var(--color_primary);
  font-size: 1.875rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

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

@media (max-width: 1400px) {
  .l-style01 {
    margin: auto;
    width: 90%;
  }

  .l-style03-wrap .l-num {
    left: 5%;
  }

  .l-style03 {
    margin: 0 5%;
  }
}

@media (max-width: 1200px) {
  .l-style02 {
    margin: 0 5%;
  }

  .l-style02 .img::before {
    left: -5%;
  }
}

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

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

  .l-style01 .img::before {
    width: 22%;
    top: -30px;
    left: -4%;
  }

  .l-style01 .img::after {
    width: 29%;
    bottom: -11px;
    right: 8px;
  }

  .l-style01 .l-ttl {
    font-size: 1.625rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .l-style02 {
    flex-direction: column;
    margin: 0;
  }

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

  .l-style02 .img::before {
    left: 0;
    bottom: auto;
    top: -40px;
  }

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

  .l-style02 .l-inner {
    margin: -20px 5% 0;
    padding: 20px 5%;
  }

  .l-style02 .l-inner::before {
    top: auto;
    bottom: -30px;
  }

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

  .l-style03-wrap {
    padding: 60px 0;
  }

  .l-style03-wrap::before {
    border-radius: 0 60px 0 0;
    width: 100%;
  }

  .l-style03-wrap .l-num {
    font-size: 2.8125rem;
    top: -32px;
  }

  .l-style03 {
    flex-direction: column;
    gap: 20px;
  }

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

  .l-style03 .img::before {
    width: 11%;
    bottom: -3px;
    right: -3%;
  }

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

  .l-style04 {
    flex-direction: column;
  }

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

  .l-style04 .l-inner {
    margin: -20px 5% 0;
    padding: 20px 5%;
  }

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

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

.flow-style>li:not(:last-child)::before {
  content: "";
  border-left: 2px dotted var(--color_primary);
  position: absolute;
  top: 115px;
  bottom: 15px;
  left: 40px;
}

.flow-style .flow-num {
  background-color: var(--color_secondary);
  border-radius: 100px;
  text-align: center;
  display: grid;
  place-items: center;
  line-height: 1;
  width: 80px;
  height: 80px;
  margin-top: 20px;
  position: relative;
}

.flow-style .flow-num img {
  height: 38px;
  width: auto;
}

.flow-style .flow-num::before {
  content: attr(data-en);
  color: var(--color_secondary);
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: bold;
  width: 80px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-style .flow-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.875rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.flow-style .flow-ttl::before {
  content: "";
  background-color: var(--color_tertiary);
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.flow-style .l-flow-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.flow-style .l-flow-card .item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 5px;
}

.flow-style .l-flow-card .card-txt {
  font-family: var(--font_jp);
  font-size: 0.875rem;
  text-align: center;
}

.flow-style .l-flow-card .card-img {
  background-color: var(--color_white);
  border-radius: 10px;
  display: grid;
  place-content: center;
  padding: 20px;
}

.flow-style .l-dl {
  max-width: 600px;
}

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

.flow-style02>li {
  display: grid;
  padding-top: 60px;
  position: relative;
}

.flow-style02 .flow-num {
  background-color: var(--color_secondary);
  border-radius: 100px;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 0.625rem;
  font-weight: bold;
  text-align: center;
  display: grid;
  place-items: center;
  line-height: 1;
  width: 80px;
  height: 80px;
  margin: 0 0 -20px;
  padding: 20px 5px;
  position: absolute;
  z-index: 1;
}

.flow-style02 .flow-num .num {
  font-size: 1.75rem;
}

.flow-style02 .flow-content {
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 35px 20px 25px;
}

.flow-style02 .flow-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.375rem;
  margin-bottom: 8px;
  padding-bottom: 8px;
  position: relative;
}

.flow-style02 .flow-ttl::before {
  content: "";
  background-color: var(--color_tertiary);
  width: 50px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.flow-style02 .flow-img {
  margin-bottom: 15px;
}

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

@media (max-width: 800px) {
  .flow-style>li {
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding-bottom: 30px;
  }

  .flow-style>li:not(:last-child)::before {
    top: 85px;
    bottom: 10px;
    left: 24px;
  }

  .flow-style .flow-num {
    width: 50px;
    height: 50px;
  }

  .flow-style .flow-num img {
    height: 28px;
  }

  .flow-style .flow-num::before {
    font-size: 0.75rem;
    top: -14px;
    width: 50px;
  }

  .flow-style .flow-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .flow-style .flow-ttl::before {
    width: 35px;
  }

  .flow-style .l-flow-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-style .l-flow-card .card-txt {
    margin: auto;
  }

  .flow-style .l-flow-card .card-img {
    border-radius: 5px;
    padding: 5%;
  }

  .flow-style02 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .flow-style02>li {
    padding-top: 0;
  }

  .flow-style02 .flow-num {
    width: 50px;
    height: 50px;
    padding: 10px;
    position: relative;
  }

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

  .flow-style02 .flow-content {
    margin: 0;
  }

  .flow-style02 .flow-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .flow-style02 .flow-ttl::before {
    width: 35px;
  }
}

.list-card01 .item {
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 5%;
  display: flex;
  flex-direction: column;
}

.list-card01 .item .list-ttl {
  color: var(--color_primary);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

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

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

.list-card01 .item .list-desc {
  margin-bottom: auto;
}

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

.list-card02 .item {
  display: grid;
  place-content: center;
  background-color: #D3E7F9;
  border-radius: 10px;
  padding: 30px 20px 20px;
  position: relative;
}

.list-card02 .label {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-weight: bold;
  line-height: 1.5;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.list-card02 .label .num {
  font-size: 1.875rem;
}

.list-card02 .list-ttl {
  font-family: var(--font_jp);
  font-size: 1.3125rem;
  line-height: 1.6;
  text-align: center;
}

.list-card02 .note {
	font-size: 1rem;
}

.list-card02 p+p {
  margin-top: 0;
}

.list-card03 .item {
  display: flex;
  flex-direction: column;
  background-color: #D3E7F9;
  border-radius: 20px;
  padding: 5%;
}

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

.list-card03 .item .card-img img {
  border-radius: 10px;
}

.list-card03 .card-ttl {
  background-color: #07606f;
  border-radius: 5px;
  color: var(--color_white);
  padding: 5px 10px;
  margin-bottom: 10px;
  text-align: center;
}

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

.list-card03 .card-desc {
  color: var(--color_primary);
  font-family: var(--font_jp);
  line-height: 1.6;
  margin-top: auto;
}

.list-card04 .item {
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 30px;
}

.list-card04 .item .ttl-wrap {
  display: grid;
  grid-template-columns: 67px 1fr;
  gap: 10px;
  align-items: center;
  border-bottom: 1px dashed var(--color_secondary);
  padding-bottom: 10px;
}

.list-card04 .item .ttl-wrap:has(+ *) {
  margin-bottom: 15px;
}

.list-card04 .item .ttl-wrap .ttl-img {
  display: grid;
  place-content: center;
  background-color: var(--color_base);
  border-radius: 50%;
  width: 67px;
  height: 67px;
}

.list-card04 .item .ttl-wrap .ttl-img img {
  height: 36px;
  width: auto;
}

.list-card04 .item .ttl-wrap .ttl {
  color: var(--color_primary);
  font-size: 1.3125rem;
}

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

  .list-card02.col2, .list-card02.col3 {
    gap: 25px;
  }

  .list-card02 .item {
    padding: 25px 5% 15px;
  }

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

  .list-card03 .item {
    padding: 25px 5%;
  }

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

  .list-card04 .item .ttl-wrap {
    grid-template-columns: 50px 1fr;
    gap: 10px;
  }

  .list-card04 .item .ttl-wrap .ttl-img {
    width: 50px;
    height: 50px;
  }

  .list-card04 .item .ttl-wrap .ttl-img img {
    height: 28px;
  }

  .list-card04 .item .ttl-wrap .ttl {
    font-size: 1.125rem;
  }
}

.link-card01 {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 32px;
}

.link-card01 .item {
  display: inline-block;
  background-color: var(--color_tertiary);
  border-radius: 10px;
  color: var(--color_white);
  padding: 22px 30px 30px;
  position: relative;
  width: 355px;
  transition: background-color 0.3s ease;
}

.link-card01 .item::before {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/arrow-btn.svg) no-repeat center/contain;
  mask: url(../images/share/arrow-btn.svg) no-repeat center/contain;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 13px;
  right: 10px;
}

@media (any-hover: hover) {
  .link-card01 .item:hover {
    background-color: oklch(from var(--color_tertiary) calc(l - 0.2) c h);
  }

  .link-card01 .item:hover::before {
    animation: arrow-move 0.8s ease;
  }
}

.link-card01 .ttl {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 5px;
  padding-left: 30px;
  position: relative;
}

.link-card01 .ttl::before {
  content: "";
  background-color: var(--color_white);
  width: 20px;
  height: 2px;
  position: absolute;
  top: 0.875rem;
  left: 0;
}

.link-card01 .ttl+p {
  margin-top: 0;
}

@media (max-width: 800px) {
  .link-card01 {
    flex-direction: column;
    gap: 20px;
  }

  .link-card01 .item {
    width: 100%;
  }
}

.tel-layout {
  background-color: #D3E7F9;
  border-radius: 20px;
  padding: 5%;
  margin-right: auto;
  margin-left: auto;
  max-width: 50rem;
}

.tel-layout .l-ttl {
  font-size: 1.375rem;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 30px;
}

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

.tel-layout .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}

.tel-layout .tel {
  justify-content: center;
}

.tel-layout .l-dl {
  display: grid;
  grid-template-columns: 8.125rem 1fr;
  gap: 15px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .l-dl dt {
  display: flex;       
  align-items: center; 
  justify-content: center;
  padding: 5px 10px;
  background-color: var(--color_secondary);
  border-radius: 4px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  line-height: 1.5;
  text-align: center;
}

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

  .tel-layout .wrap {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .tel-layout .tel {
    font-size: 1.5rem;
  }

  .tel-layout .l-dl {
    grid-template-columns: 7.5rem 1fr;
  }

  .tel-layout .l-dl dt {
    font-size: 0.9375rem;
  }
}

.dl-privacy {
  display: grid;
  gap: 45px;
}

.dl-privacy dt {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.875rem;
  line-height: 1.4;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.dl-privacy dt::before {
  content: "";
  background-color: var(--color_tertiary);
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 800px) {
  .dl-privacy {
    gap: 30px;
  }

  .dl-privacy dt {
    font-size: 1.375rem;
    margin-bottom: 20px;
    padding-bottom: 7px;
  }

  .dl-privacy dt::before {
    width: 44px;
  }
}

/*-----------------------------------------------------------
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-family: var(--font_jp);
  font-weight: bold;
}

.c-red {
  color: #F44336;
}

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

.notice {
  color: var(--color_gray);
  font-size: 0.8125rem;
}

.catch01 {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  text-align: center;
}

.catch01.align-left {
  text-align: left;
}

.catch02 {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 6px;
}

@media (max-width: 800px) {
  .catch01 {
    font-size: 1rem;
  }
}

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

.img-round-20 img {
  border-radius: 20px;
}

.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_jp);
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.tab-content {
  display: none;
}

.tab-content.is-active {
  display: block;
}

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

/*-----------------------------------------------------------
Arrow hover animation
矢印が右へ消え、左から出現するホバーアニメーション。
-----------------------------------------------------------*/
@keyframes arrow-move {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(100%);
    opacity: 0;
  }

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

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

@keyframes arrow-move-center {
  0% {
    transform: translate(0, -50%);
    opacity: 1;
  }

  49% {
    transform: translate(100%, -50%);
    opacity: 0;
  }

  50% {
    transform: translate(-100%, -50%);
    opacity: 0;
  }

  100% {
    transform: translate(0, -50%);
    opacity: 1;
  }
}

/*------------
Lenis
-------------*/
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: 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: 8px;
}

.splide__pagination__page {
  background: var(--color_white);
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: 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: var(--color_primary);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 20px;
  width: 20px;
}

.splide__toggle:hover {
  background: #0075c2;
}

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

/*------------
Fancybox
-------------*/
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

.list-card05 .item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 15px;
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 20px;
}

.list-card05 .item:has(.card-desc) {
  grid-row: span 4;
}

.list-card05 .item .card-ttl {
  display: grid;
  place-content: center;
  color: var(--color_primary);
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
}

.list-card05 .item .card-img {
  display: grid;
  place-content: center;
}

.list-card05 .item .card-img img {
  width: auto;
  max-height: 90px;
}

.arrow-down {
  background-color: #D3E7F9;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 240px;
  height: 60px;
  margin: 30px auto;
}

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

  .list-card05 .item {
    padding: 20px 5%;
  }

  .list-card05 .item .card-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .list-card05 .item .card-img img {
    max-height: 60px;
  }

  .list-card05 .item p {
    margin-top: 10px;
  }

  .arrow-down {
    width: 160px;
    height: 40px;
    margin: 20px auto;
  }
}
