@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #FCFAF5;
  --color_text: #494D55;
  --color_link: #494D55;
  --color_border: #D3D3D3;
  --color_primary: #80AFCC;
  --color_secondary: #334977;
  --color_tertiary: #BAA78C;
  --color_bg: #F7F3EA;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

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

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

:root {
  --font_base:
    "Local Noto Sans JP",
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  --font_jp: "LINE Seed JP", serif;
  --font_en: "Red Hat Text", serif;
  --font_weight: 500;
  --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.05em;
  line-height: 1.5;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  border-collapse: collapse;
  border-top: 1px solid var(--color_secondary);
  table-layout: fixed;
  width: 100%;
}

.time-table tr {
  border-bottom: 1px solid var(--color_secondary);
}

.time-table tr th:first-child {
  border-right: 1px solid var(--color_secondary);
}

.time-table th,
.time-table td {
  text-align: center;
  padding: 17px 0;
  line-height: 1.2;
}

.time-table thead th {
  background-color: var(--color_primary);
  color: var(--color_white);
}

.time-table th:first-child {
  width: 25%;
}

@media (max-width: 800px) {
  .time-table th:first-child {
    width: 70px;
  }

  .time-table thead th {
    font-size: 0.8125rem;
  }
}

.time-table .time {
  font-size: 0.9375rem;
}

.time-table td {
  padding: 30px 0;
}

.time-table img {
  margin-inline: auto;
}

@media (max-width: 800px) {

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

/*ボタン*/
.btn-more {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 34px;
  color: var(--color_white);
  font-weight: bold;
  line-height: 1.3;
  min-width: 280px;
  padding: 23px 70px 23px 30px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s, border-color 0.3s;
}

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

.btn-more.u-btn {
  min-width: 240px;
  padding: 15px 60px 15px 30px;
}

.btn-file {
  display: inline-block;
  background-color: var(--color_white);
  border: 1px solid var(--color_primary);
  border-radius: 34px;
  font-weight: bold;
  line-height: 1.3;
  min-width: 240px;
  padding: 15px 60px 15px 40px;
  position: relative;
  text-align: center;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.btn-file::before {
  content: "";
  background-color: var(--color_primary);
  mask: url(../images/share/icon-download.svg) no-repeat center/contain;
  width: 20px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.btn-file .label {
  border-radius: 3px;
  background-color: #bf2b2b;
  padding: 2px 5px;
  font-size: 0.5rem;
  line-height: 1;
  font-weight: bold;
  color: var(--color_white);
  vertical-align: 4px;
  margin-left: 10px;
}

.btn-file .label.word {
  background-color: #1f3275;
}

@media (any-hover: hover) {

  .btn-more:hover {
    background-color: var(--color_secondary);
    border-color: var(--color_secondary);
  }

  .btn-file:hover {
    background-color: var(--color_secondary);
    border-color: var(--color_secondary);
    color: var(--color_white);
  }

  .btn-file:hover::before {
    background-color: var(--color_white);
  }
}

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

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

@media (max-width: 800px) {
  .btn-more {
    padding: 15px 70px 15px 30px;
    min-width: auto;
  }

  .btn-more.u-btn {
    padding: 15px 60px 15px 30px;
    min-width: auto;
  }

  .btn-file {
    padding: 15px 60px 15px 30px;
    min-width: auto;
  }
}

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

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

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

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

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

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

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

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

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

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

.category-ttl {
  color: var(--color_secondary);
  font-size: 1.875rem;
  margin-bottom: 25px;
  padding-left: 31px;
  position: relative;
}

.category-ttl::before {
  content: "";
  background: url(../images/share/ttl-deco.svg) no-repeat center / contain;
  width: 20px;
  height: 14px;
  position: absolute;
  top: 0.5625rem;
  left: 0;
}

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

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

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

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

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

.post-under-blog .post-desc {
  margin-top: 10px;
}

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

.post-under-blog time,
.post-case-blog time {
  display: inline-block;
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

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

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

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

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

.post-case-blog a {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  border: 1px solid var(--color_border);
  border-radius: 10px;
  background: #fff;
  padding: 30px 70px 30px 20px;
  position: relative;
  transition: background-color 0.3s;
}

.post-case-blog a::after {
  content: "";
  background: var(--color_base);
  border-radius: 10px 0 0 10px;
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.post-case-blog a.dogs::after {
  background: #80afcc;
}

.post-case-blog a.cats::after {
  background: #baa78c;
}

.post-case-blog a.dogs.cats::after {
  background: linear-gradient(to bottom, #80afcc 50%, #baa78c 50%);
}

.post-case-blog .post-desc {
  margin-top: 3px;
}

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

.post-case-blog .category.dogs {
  border: 1px solid #A3C5DC;
  background-color: #E8F1F8;
  color: #2D5B79;
}

.post-case-blog .category.cats {
  border: 1px solid #CDBDA6;
  background-color: #F5F0E9;
  color: #6B5639;
}

@media (max-width: 800px) {

  .post-under-blog,
  .post-case-blog {
    gap: 10px 0;
    margin-bottom: 30px;
  }

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

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

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

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

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

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

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

  .post-case-blog a {
    padding: 20px 20px 15px;
  }
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .post-under-news .post-ttl {
    grid-column: 1/-1;
  }
}

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

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

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

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

/*詳細ページ*/
.layout-single-post {
  box-shadow: 0 3px 6px oklch(from #334977 l c h / 0.3);
  background-color: var(--color_white);
  border-radius: 20px;
  padding: 60px 50px 40px;
  width: min(90%, 800px);
  margin-inline: auto;
  position: relative;
  text-align: justify;
  z-index: 0;
}

.layout-single-post::before {
  content: "";
  background-color: var(--color_primary);
  height: 5px;
  position: absolute;
  top: 15px;
  left: 50px;
  right: 50px;
  border-radius: 10px;
}

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

.layout-single-post time {
  display: inline-block;
  font-family: var(--font_en);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;

}

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

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

.layout-single-post .category.dogs {
  border: 1px solid #A3C5DC;
  background-color: #E8F1F8;
  color: #2D5B79;
}

.layout-single-post .category.cats {
  border: 1px solid #CDBDA6;
  background-color: #F5F0E9;
  color: #6B5639;
}

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

@media (max-width: 800px) {
  .layout-single-post {
    padding: 50px 15px 20px;
  }

  .layout-single-post::before {
    left: 15px;
    right: 15px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
  padding: 14px 0 0 30px;
}

.h-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 170px;
}

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

.h-contact {
  display: flex;
  gap: 30px;
  font-family: var(--font_jp);
}

.h-contact .txt {
  display: flex;
  align-items: center;
  gap: 8px;
}

.h-contact .ttl {
  font-size: 0.75rem;
  font-weight: bold;
}

.h-contact .ttl span {
  color: #719FC1;
  font-size: 1rem;
  margin: 0 2px 0 0;
}

.h-contact .label {
  background-color: var(--color_primary);
  border-radius: 10px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 1px 10px;
}

.h-contact .item:nth-child(2) .ttl span {
  color: var(--color_tertiary);
}

.h-contact .item:nth-child(2) .label {
  background-color: var(--color_tertiary);
}

.h-btn {
  background: linear-gradient(to bottom, #98CCE2 0%, #8BACD6 100%);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  width: 140px;
  height: 140px;
  padding: 35px 10px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.h-btn::before {
  content: "";
  background: url(../images/share/icon_mail.svg) no-repeat center/contain;
  width: 28px;
  height: 21px;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
}

@media (any-hover: hover) {
  .h-btn:hover {
    background: #8BACD6;
  }
}

.h-utility {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 13px 0 0;
}

@media (max-width: 1350px) {
  .h-utility {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .header {
    height: 75px;
    padding: 8px 15px;
  }

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

  .h-inner {
    padding-right: 0;
  }

  .h-contact {
    display: none;
  }

  .h-btn {
    display: none;
  }

  .h-utility {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
.gnavi-links {
  display: flex;
  gap: 50px;
}

.gnavi-links>li>a {
  display: inline-block;
  font-family: var(--font_jp);
  font-weight: bold;
  padding-bottom: 11px;
  position: relative;
}

@media (any-hover: hover) {
  .gnavi-links>li>a:hover::after {
    content: "";
    background-color: var(--color_primary);
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 1200px) {
  .gnavi-links {
    gap: 20px;
  }
}

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

.f-contents01 {
  background: url(../images/share/footer_bg.jpg) no-repeat center/cover;
  color: #fff;
  overflow: hidden;
  padding: 120px 0 60px;
}

.f-contents01 .f-txt01 {
  margin-bottom: 30px;
  text-align: center;
}

.f-contents01 .l-means {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 36px;
}

.f-contents01 .l-means .item {
  background-color: var(--color_secondary);
  border-radius: 10px;
  padding: 20px 20px 30px;
}

.f-contents01 .l-means .item:nth-child(2) .label {
  background-color: var(--color_tertiary);
}

.f-contents01 .l-means .item:nth-child(3) {
  position: relative;
}

.f-contents01 .l-means .item:nth-child(3)::before {
  content: "";
  background: url(../images/share/f_deco01.png) no-repeat center / contain;
  width: 130px;
  height: auto;
  aspect-ratio: 130 / 100;
  position: absolute;
  top: -70px;
  right: 20px;
  z-index: 1;
}

.f-contents01 .l-means .l-img {
  margin-bottom: 15px;
}

.f-contents01 .l-means .l-img img {
  margin: auto;
}

.f-contents01 .l-means .l-ttl {
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

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

.f-contents01 .l-means .l-ttl02 {
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.f-contents01 .l-means .label {
  background-color: var(--color_primary);
  border-radius: 14px;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 auto 15px;
  padding: 0 16px 1px;
  width: -moz-fit-content;
  width: fit-content;
}

.f-contents01 .l-means .tel {
  font-size: 1.625rem;
  gap: 5px;
  justify-content: center;
}

.f-contents01 .l-means .l-btn {
  text-align: center;
}

.f-contents01 .l-means .btn-more {
  background-color: #fff;
  color: var(--color_secondary);
  font-size: 1.25rem;
  padding: 20px 70px 20px 30px;
  width: min(300px, 100%);
  min-width: auto;
  transition: background-color 0.3s, color 0.3s;
}

.f-contents01 .l-means .btn-more::before {
  background-color: var(--color_secondary);
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .f-contents01 .l-means .btn-more:hover {
    background-color: var(--color_primary);
    color: #fff;
  }

  .f-contents01 .l-means .btn-more:hover::before {
    background-color: #fff;
  }
}

.f-ttl {
  text-align: center;
  margin-bottom: 45px;
}

.f-ttl .jp {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 2.75rem;
  font-weight: bold;
}

.f-ttl [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 auto;
  padding-left: 32px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.f-ttl [lang=en]::before {
  content: "";
  background: url(../images/share/ttl-deco.svg) no-repeat center/contain;
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.f-contents02 {
  padding: 60px 0;
  position: relative;
}

.f-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11%;
  margin-bottom: 30px;
}

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

.f-txt {
  margin-bottom: 15px;
}

.f-time {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  align-items: flex-start;
}

.f-time dt {
  background-color: var(--color_primary);
  border-radius: 14px;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 5px;
  padding: 0 5px 1px;
  text-align: center;
}

.f-time dd {
  line-height: 1.8;
}

.site-map {
  display: flex;
  gap: 40px 90px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

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

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

.f-links [aria-current=page],
.f-links a:is(:hover, :focus) {
  background-position: 0 100%;
  background-size: 100% 1px;
}

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

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

.f-btn>a {
  display: block;
  background-color: var(--color_white);
  border: 1px solid var(--color_secondary);
  border-radius: 5px;
  font-family: var(--font_jp);
  font-weight: bold;
  min-width: 260px;
  padding: 16px 46px 10px 22px;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

.f-btn>a::before {
  content: "";
  background: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .f-btn>a:hover {
    background-color: var(--color_primary);
    color: var(--color_white);
  }
}

.f-btn .label {
  background-color: var(--color_secondary);
  border-radius: 14px;
  color: var(--color_white);
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 1px 11px 1px;
  width: -moz-fit-content;
  width: fit-content;
}

.f-btn .txt {
  font-size: 0.9375rem;
}

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

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

.pagetop {
  position: absolute;
  top: 60px;
  right: 26px;
}

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

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

  .f-contents01 .l-means {
    gap: 30px;
  }

  .f-contents01 .l-means .item:nth-child(3)::before {
    width: 92px;
    top: auto;
    bottom: -46px;
    right: -20px;
  }

  .f-contents01 .l-means .l-img img {
    width: 50px;
  }

  .f-contents01 .l-means .l-ttl {
    font-size: 0.9375rem;
  }

  .f-contents01 .l-means .l-ttl span {
    font-size: 1.375rem;
  }

  .f-contents01 .l-means .l-ttl02 {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .f-contents01 .l-means .label {
    font-size: 0.875rem;
    margin: 0 auto 10px;
  }

  .f-contents01 .l-means .btn-more {
    font-size: 1.125rem;
    padding: 15px 70px 15px 30px;
  }

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

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

  .f-ttl [lang=en] {
    font-size: 0.875rem;
  }

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

  .f-cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-map {
    gap: 30px 60px;
  }

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

.sp-navi {
  display: none;
}

@media (max-width: 1024px) {
  :root {
    --navi-background: linear-gradient(to bottom, #98CCE2 0%, #8BACD6 100%);
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
  }

  .sp-navi {
    display: block;
  }

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

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

  .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    font-size: 0.625rem;
    font-family: var(--font_jp);
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item a,
  .sp-navi-btns .item button {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 7px 0;
  }

  .sp-navi-btns .item button {
    width: 100%;
  }

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

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

  .sp-navi-btns .item .img img {
    height: 20px;
    margin-bottom: 7px;
  }

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

  .sp-tel-info {
    display: block;
    background-color: var(--color_primary);
    padding: 45px 5% 74px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    transition: 0.3s ease;
    z-index: 500;
  }

  .sp-tel-info.is-open {
    transform: translateY(0);
  }

  .sp-tel-link .item {
    background-color: var(--color_white);
    border-radius: 10px;
    padding: 11px 5%;
  }

  .sp-tel-link .item:nth-child(2) .ttl span {
    color: var(--color_tertiary);
  }

  .sp-tel-link .item:nth-child(2) .label {
    background-color: var(--color_tertiary);
  }

  .sp-tel-link .item+.item {
    margin-top: 10px;
  }

  .sp-tel-link .inner {
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
  }

  .sp-tel-link .txt {
    display: flex;
    align-items: center;
    gap: 0 8px;
    flex-wrap: wrap;
    margin: 0 0 3px 0;
  }

  .sp-tel-link .ttl {
    font-size: 0.75rem;
    font-weight: bold;
  }

  .sp-tel-link .ttl span {
    color: #719FC1;
    font-size: 1rem;
    margin: 0 2px 0 0;
  }

  .sp-tel-link .label {
    background-color: var(--color_primary);
    border-radius: 10px;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: bold;
    line-height: 1.5;
    padding: 1px 10px;
  }

  .sp-tel-info-close {
    position: absolute;
    top: 11px;
    right: 9px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero .hero-img {
  margin: 0 0 0 auto;
  width: 83%;
}

.hero .hero-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 800px;
}

.hero .hero-catch {
  position: absolute;
  left: 4%;
  bottom: 24%;
}

.hero .hero-catch .ttl {
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: clamp(1.875rem, 2.4vw, 2.75rem);
  font-weight: bold;
  letter-spacing: 0.05em;
}

.hero .hero-catch .ttl span {
  background-color: var(--color_secondary);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 2;
  padding: 10px 20px;
}

@media (max-width: 800px) {
  .hero .hero-img {
    width: 100%;
  }

  .hero .hero-catch {
    position: static;
    margin: -77px 0 0;
  }

  .hero .hero-catch .ttl {
    font-size: 1.3125rem;
  }

  .hero .hero-catch .ttl span {
    line-height: 3;
    padding: 15px 20px;
  }
}

/*------------
Components
--------------*/
.t-h2 {
  text-align: center;
  margin-bottom: 45px;
}

.t-h2 .jp {
  color: var(--color_secondary);
  font-size: 2.75rem;
}

.t-h2 [lang=en] {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 auto;
  padding-left: 32px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.t-h2 [lang=en]::before {
  content: "";
  background: url(../images/share/ttl-deco.svg) no-repeat center/contain;
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

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

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

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

/*------------
Section
--------------*/
.sec01 {
  overflow: hidden;
  padding: 80px 0;
}

.l-sec01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
}

.sec01-ttl {
  color: var(--color_secondary);
  font-size: 1.625rem;
  padding-bottom: 8px;
  position: relative;
  margin-bottom: 35px;
}

.sec01-ttl::before {
  content: "";
  background-color: var(--color_primary);
  width: 50px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.sec01-ttl.center {
  text-align: center;
}

.sec01-ttl.center::before {
  left: 50%;
  transform: translateX(-50%);
}

.sec01-box {
  background-color: var(--color_white);
  border: 2px solid var(--color_secondary);
  border-radius: 10px;
  padding: 60px;
  margin-top: 80px;
  position: relative;
}

.sec01-box::before {
  content: "";
  background: url(../images/sec01_deco01.png) no-repeat center/contain;
  width: 146px;
  height: auto;
  aspect-ratio: 146/141;
  position: absolute;
  bottom: -22px;
  right: -148px;
}

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

  .l-sec01 {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sec01-ttl {
    font-size: 1.375rem;
    margin-bottom: 25px;
  }

  .sec01-box {
    padding: 30px 5%;
    margin-top: 50px;
  }

  .sec01-box::before {
    content: none;
  }
}

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

.l-sec02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.l-sec02::before {
  content: "";
  background: url(../images/sec02_deco01.png) no-repeat center/contain;
  width: 108px;
  height: auto;
  aspect-ratio: 108/126;
  position: absolute;
  bottom: -53px;
  right: 60px;
}

.l-sec02 .l-img img {
  border-radius: 10px;
  margin-inline: auto;
}

.l-sec02 .l-desc {
  padding: 20px 0 0 12%;
}

.l-sec02 .l-ttl {
  color: #709ABF;
  font-size: 1.5rem;
  line-height: 1.75;
  margin-bottom: 25px;
}

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

@media (max-width: 1200px) {
  .l-sec02::before {
    bottom: -145px;
    right: 0;
  }
}

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

  .l-sec02 {
    grid-template-columns: 1fr;
  }

  .l-sec02::before {
    width: 79px;
    bottom: -30px;
  }

  .l-sec02 .l-desc {
    padding: 30px 0 0 0;
  }

  .l-sec02 .l-ttl {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.sec03 {
  overflow: hidden;
  padding: 120px 0;
}

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

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

.l-sec03 .l-img .img {
  padding-bottom: 40px;
  position: relative;
}

.l-sec03 .l-img .img::before {
  content: "";
  background: linear-gradient(to right, #98CCE2 0%, #8BACD6 100%);
  width: 77%;
  height: auto;
  aspect-ratio: 456/298;
  opacity: 0.35;
  position: absolute;
  bottom: 0;
  left: -40px;
  z-index: -1;
}

.l-sec03 .l-img img {
  border-radius: 10px;
  margin-inline: auto;
}

.l-sec03 .l-desc {
  grid-area: desc;
  padding: 40px 0 0 12%;
}

.l-sec03 .l-ttl {
  margin-bottom: 20px;
}

.l-sec03 .l-ttl .jp {
  color: var(--color_secondary);
  font-size: 2.125rem;
}

.l-sec03 .l-ttl [lang=en] {
  color: rgba(51, 73, 119, 0.08);
  font-family: var(--font_en);
  font-size: clamp(2.1875rem, 2.6vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  padding-left: 15px;
  margin: -35px 0 0;
}

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

.l-sec03.reverse {
  grid-template-areas: "desc img";
}

.l-sec03.reverse .l-img .img::before {
  left: auto;
  right: -40px;
}

.l-sec03.reverse .l-desc {
  padding: 40px 12% 0 0;
}

.l-sec03+.l-sec03 {
  margin-top: 60px;
}

@media (max-width: 1500px) {
  .l-sec03 .l-ttl [lang=en] {
    margin: -30px 0 0;
  }
}

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

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

  .l-sec03 .l-img .img {
    padding-bottom: 20px;
  }

  .l-sec03 .l-img .img::before {
    left: -20px;
  }

  .l-sec03 .l-desc {
    padding: 20px 0 0 0;
  }

  .l-sec03 .l-ttl {
    margin-bottom: 5px;
  }

  .l-sec03 .l-ttl .jp {
    font-size: 1.375rem;
  }

  .l-sec03 .l-ttl [lang=en] {
    font-size: 1.875rem;
    margin: -22px 0 0;
    padding-left: 10px;
  }

  .l-sec03 .l-btn {
    margin-top: 20px;
  }

  .l-sec03.reverse {
    grid-template-areas: "img""desc";
  }

  .l-sec03.reverse .l-img .img::before {
    right: -20px;
  }

  .l-sec03.reverse .l-desc {
    padding: 20px 0 0 0;
  }
}

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

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

.l-sec04 .item {
  border: 2px solid var(--color_secondary);
  border-radius: 10px;
  padding: 40px;
}

.l-sec04 .item:nth-child(1) {
  position: relative;
}

.l-sec04 .item:nth-child(1)::before {
  content: "";
  background: url(../images/sec04_deco01.png) no-repeat center/contain;
  width: 158px;
  height: auto;
  aspect-ratio: 158/81;
  position: absolute;
  top: -45px;
  left: -22px;
  z-index: 1;
}

.l-sec04 .item:nth-child(2) .l-ttl {
  color: var(--color_tertiary);
}

.l-sec04 .item:nth-child(2) .btn {
  background-color: var(--color_tertiary);
}

@media (any-hover: hover) {
  .l-sec04 .item:nth-child(2) .btn:hover {
    background-color: #6F6542;
  }
}

.l-sec04 .l-img {
  margin-bottom: 25px;
  text-align: center;
}

.l-sec04 .l-img img {
  border-radius: 10px;
  margin-inline: auto;
}

.l-sec04 .l-ttl {
  color: #719FC1;
  font-size: 1.75rem;
  margin-bottom: 25px;
}

.l-sec04 .l-desc {
  display: grid;
  grid-template-columns: 1fr 68px;
  align-items: flex-end;
  gap: 32px;
}

.l-sec04 .btn {
  display: block;
  place-content: center;
  background-color: #719FC1;
  border-radius: 50%;
  width: 68px;
  height: auto;
  aspect-ratio: 1;
  transition: background-color 0.3s;
}

.l-sec04 .btn img {
  margin-inline: auto;
}

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

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

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

  .l-sec04 .item {
    padding: 20px 5%;
  }

  .l-sec04 .item:nth-child(1)::before {
    width: 108px;
    top: -30px;
    left: -15px;
  }

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

  .l-sec04 .l-desc {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .l-sec04 .btn {
    margin: 0 0 0 auto;
    width: 50px;
  }

  .l-sec04 .btn img {
    width: 14px;
  }
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 500px;
}

.map-layout .l-desc {
  background-color: var(--color_primary);
  color: #fff;
  padding: 15% 14%;
}

.map-layout .l-access {
  margin-bottom: 56px;
}

.map-layout .l-access .item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 15px;
}

.map-layout .l-access .item img {
  margin: 5px auto 0;
}

.map-layout .l-access .item:nth-child(2) img {
  margin: 13px auto 0;
}

.map-layout .l-access .item:nth-child(2) p {
  font-family: var(--font_jp);
  font-size: 1.375rem;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 9px;
}

.map-layout .l-access .item+.item {
  margin-top: 20px;
}

.map-layout .l-btn {
  text-align: center;
}

.map-layout .btn-more {
  border: 1px solid #fff;
  transition: background-color 0.3s, color 0.3s;
}

.map-layout .btn-more::before {
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .map-layout .btn-more:hover {
    background-color: var(--color_white);
    color: var(--color_primary);
  }

  .map-layout .btn-more:hover::before {
    background-color: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-layout .l-desc {
    padding: 30px 5%;
  }

  .map-layout .l-access {
    margin-bottom: 40px;
  }

  .map-layout .l-access .item:nth-child(2) img {
    margin: 7px auto 0;
  }

  .map-layout .l-access .item:nth-child(2) p {
    font-size: 1.125rem;
  }

  .map-layout .l-access .item+.item {
    margin-top: 15px;
  }

  .map-layout .l-btn {
    text-align: left;
  }
}

.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: 18px 30px 18px 0;
  position: relative;
}

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

.post-top-news time {
  display: inline-block;
  color: var(--color_primary);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

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

@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 25px 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 {
  display: grid;
  align-items: center;
  background: url(../images/under/page-ttl_img.jpg) no-repeat center/cover;
  color: var(--color_white);
  padding: 220px 12%;
  position: relative;
}

.page-ttl {
  background-color: var(--color_secondary);
  font-family: var(--font_jp);
  font-size: 2.75rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 3px 25px;
  width: -moz-fit-content;
  width: fit-content;
}

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

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

.breadcrumb ul li {
  display: inline;
}

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

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

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

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

  .page-ttl {
    font-size: 1.625rem;
    padding: 3px 15px;
  }

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

.u-h2 {
  color: var(--color_secondary);
  font-size: 2.75rem;
  margin-bottom: 50px;
  text-align: center;
  padding-bottom: 18px;
  position: relative;
}

.u-h2::before {
  content: "";
  background: url(../images/share/ttl-deco.svg) no-repeat center/contain;
  width: 20px;
  height: 14px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.u-h3 {
  border-bottom: 2px solid var(--color_border);
  color: var(--color_secondary);
  font-size: 2.125rem;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

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

.u-h4::before,
.postdata h4::before {
  content: "";
  background-color: var(--color_primary);
  width: 50px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.num-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--color_border);
  color: var(--color_secondary);
  font-size: 2.125rem;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.num-ttl .num {
  background-color: var(--color_primary);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: bold;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.postdata h2 {
  color: var(--color_secondary);
  font-size: 1.625rem;
  margin-bottom: 25px;
  padding-left: 31px;
  position: relative;
}

.postdata h2::before {
  content: "";
  background: url(../images/share/ttl-deco.svg) no-repeat center / contain;
  width: 20px;
  height: 14px;
  position: absolute;
  top: 0.8125rem;
  left: 0;
}

.postdata h3 {
  border-bottom: 2px solid var(--color_border);
  color: var(--color_secondary);
  font-size: 1.5rem;
  padding-bottom: 3px;
  margin-bottom: 30px;
}

.postdata h4 {
  color: var(--color_secondary);
  font-size: 1.125rem;
  padding-bottom: 5px;
  position: relative;
  margin-bottom: 15px;
}

.postdata h4::before {
  content: "";
  background-color: var(--color_primary);
  width: 30px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

  .u-h3,
  .num-ttl {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

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

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

  .postdata h2::before {
    top: 0.75rem;
  }

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

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

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

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

.hidden {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-num02>li:before {
  color: var(--color_primary);
  counter-increment: number;
  content: counter(number) ".";
  font-size: 1.25rem;
  position: absolute;
  top: 6px;
  left: 0;
  line-height: 20px;
  text-align: center;
}

.list-style01 {
  display: grid;
  grid-gap: 10px;
}

.list-style01 li {
  background-color: #fff;
  border: 1px solid var(--color_border);
  border-left: 3px solid var(--color_primary);
  padding: 10px 15px;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .list-check li::before {
    top: 6px;
    width: 16px;
    height: 16px;
  }

  .list-num02>li:before {
    top: 3px;
  }
}

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

.table-style01 th {
  background-color: var(--color_primary);
  color: var(--color_white);
}

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

.google-calendar iframe {
  width: 100%;
}

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

  .google-calendar iframe {
    height: 350px;
  }
}

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

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

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

.l-imgR .l-img img,
.l-imgL .l-img img {
  border-radius: 10px;
  margin-inline: auto;
}

.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
--------------*/
.list-anchor-link {
  display: flex;
  gap: 0 30px;
  flex-wrap: wrap;
}

.list-anchor-link a {
  display: block;
  padding-right: 32px;
  position: relative;
  transition: border-color 0.3s;
}

.list-anchor-link a::before {
  content: "";
  background-color: var(--color_primary);
  border-radius: 10px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0.4rem;
  right: 0;
  transition: background-color 0.3s;
}

.list-anchor-link a::after {
  content: "";
  background: url(../images/share/btn_arrow03.svg) no-repeat center/contain;
  width: 10px;
  height: 8px;
  position: absolute;
  top: 0.75rem;
  right: 5px;
  rotate: 90deg;
}

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

.staff-layout {
  display: flex;
  gap: 6%;
}

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

.staff-layout .l-img img {
  border-radius: 10px;
  margin: auto;
}

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

.staff-layout .job {
  font-family: var(--font_jp);
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.staff-layout .l-ttl {
  color: var(--color_secondary);
  font-weight: bold;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
  margin-bottom: 35px;
}

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

.staff-layout .kana {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.25rem;
  font-weight: 600;
}

.staff-profile .item+.item {
  margin-top: 50px;
}

.staff-profile .u-h4 {
  font-size: 1.4375rem;
}

.staff-profile .dl-career {
  display: grid;
  grid-template-columns: 120px 1fr;
}

.staff-profile .dl-career dt,
.staff-profile .dl-career dd {
  padding: 5px 0;
}

.staff-profile .dl-career dt {
  color: var(--color_primary);
  font-weight: bold;
}

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

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

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

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

  .staff-layout .l-ttl .name {
    font-size: 1.625rem;
  }

  .staff-layout .l-ttl .kana {
    font-size: 1rem;
  }

  .staff-profile .item+.item {
    margin-top: 35px;
  }

  .staff-profile .u-h4 {
    font-size: 1.125rem;
  }

  .staff-profile .dl-career {
    grid-template-columns: 100px 1fr;
  }
}

.card-layout01.col3 {
  gap: 50px 30px;
}

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

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

.card-layout01 .l-ttl {
  color: var(--color_secondary);
  font-size: 1.125rem;
  margin-bottom: 5px;
}

.card-layout01 p {
  font-size: 0.875rem;
}

.card-layout02 .item {
  background-color: var(--color_bg);
  border-radius: 10px;
  padding: 30px 20px;
}

.card-layout02 .l-ttl {
  color: var(--color_secondary);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .card-layout01.col3 {
    gap: 30px;
  }

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

.box-style01 {
  background-color: var(--color_bg);
  border-radius: 10px;
  padding: 30px;
}

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

.box-style02 .list-check li {
  border-bottom: 1px dashed var(--color_border);
  font-size: 1.125rem;
  font-weight: 600;
}

.box-style02 .list-check li::before {
  top: 0.625rem;
}

.box-style03 {
  background: var(--color_bg);
  border-radius: 10px;
  padding: 20px;
}

.box-style03 .list-check li {
  border-bottom: 1px dashed var(--color_border);
  font-weight: 600;
}

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

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

  .box-style02 .list-check {
    grid-gap: 15px;
  }

  .box-style02 .list-check li {
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 5px;
  }

  .box-style02 .list-check li::before {
    top: 0.375rem;
  }
}

.price-style {
  display: grid;
  gap: 20px;
}

.price-style .list-intro {
  border-bottom: 1px dotted var(--color_secondary);
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  justify-content: space-between;
  font-size: 1.125rem;
  padding: 0 0 5px;
}

.price-style .ttl {
  font-weight: bold;
}

.price-style .list-desc {
  color: #747474;
  font-size: 13px;
  margin-top: 8px;
}

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

  .price-style .list-intro {
    flex-wrap: wrap;
    font-size: 1rem;
  }

  .price-style .price {
    margin: 0 0 0 auto;
    min-width: auto;
  }
}

.u-tel01 .ttl {
  font-weight: bold;
}

.u-tel01 .ttl span {
  font-size: 1.25rem;
  margin: 0 2px 0 0;
}

.u-tel01 .tel {
  font-size: 1.875rem;
}

.u-tel01 .tel img {
  width: 22px;
}

.u-tel01 .mail {
  font-family: var(--font_jp);
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 1.2;
}

.u-tel01.blue .ttl span {
  color: #719FC1;
}

.u-tel01.blown .ttl span {
  color: var(--color_tertiary);
}

@media (max-width: 800px) {
  .u-tel01 .ttl span {
    font-size: 1.125rem;
  }

  .u-tel01 .tel img {
    width: 17px;
  }

  .u-tel01 .tel {
    font-size: 1.5625rem;
  }

  .u-tel01 .mail {
    font-size: 1.25rem;
  }
}

.faq-style {
  transition: 0.3s;
}

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

.faq-style .faq-summary {
  display: block;
  cursor: pointer;
  padding: 35px 0 11px 52px;
  border-bottom: 1px solid #E6E8EA;
  position: relative;
}

.faq-style .faq-summary::before,
.faq-style .faq-summary::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50px;
  background-color: var(--color_primary);
}

.faq-style .faq-summary::before {
  width: 14px;
  height: 2px;
  margin-top: -1px;
}

.faq-style .faq-summary::after {
  width: 2px;
  height: 14px;
  margin-top: -7px;
  margin-right: 6px;
  transition: transform 0.3s;
}

.faq-style.is-open .faq-summary::after {
  transform: rotate(90deg);
}

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

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

.faq-style .faq-inner {
  padding: 20px 0 5px 50px;
  position: relative;
}

.faq-style .faq-inner .faq-icon {
  background-color: var(--color_white);
  color: var(--color_primary);
  top: 1.125rem;
}

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

.faq-style .faq-icon {
  display: grid;
  place-content: center;
  border: 1px solid var(--color_primary);
  background-color: var(--color_primary);
  border-radius: 50px;
  color: #fff;
  width: 36px;
  height: 36px;
  font-family: var(--font_en);
  font-size: 1.375rem;
  line-height: 36px;
  text-align: center;
  position: absolute;
  top: 1.9375rem;
  left: 0;
  transition: 0.3s;
}

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

  .faq-style .faq-summary {
    padding: 25px 35px 5px 40px;
  }

  .faq-style .faq-summary::before, .faq-style .faq-summary::after {
    top: 38px;
  }

  .faq-style .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 1.1875rem;
    top: 22px;
  }

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

  .faq-style .faq-inner {
    padding: 15px 0 30px 40px;
  }

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

.dl-privacy {
  display: grid;
  gap: 3rem;
}

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  color: var(--color_secondary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  font-weight: bold;
  padding-top: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.dl-privacy dd {
  line-height: 1.8;
  text-align: justify;
}

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

.sp-only {
  display: none;
}

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

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

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

.hidden {
  overflow: hidden;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

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

.c-red {
  color: #c17171;
}

.indent {
  text-indent: 1em;
  padding-left: 1em;
}

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

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.img-round img {
  border-radius: 10px;
}

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

.gap0 {
  grid-gap: 0;
}

.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: 3px;
  font-family: var(--font_jp);
  font-size: 1.4375rem;
  font-weight: 600;
  line-height: 1.2;
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-block: 1em;
}

.postdata a:not(.wp-block-button__link) {
  text-decoration: underline;
}

.postdata a:focus-visible {
  text-decoration: none;
}

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

.catch-layout .l-ttl {
  color: #334977;
  font-size: 1.125rem;
  margin: 0 auto 15px;
  padding-left: 24px;
  position: relative;
  text-align: center;
  width: fit-content;
}

.catch-layout .l-ttl::before {
  content: "";
  background: url(../images/share/alert-circle.svg) no-repeat center / contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0.1875rem;
  left: 0;
}

.catch-layout .catch {
  font-size: 1.5rem;
  font-family: var(--font_jp);
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}

.catch-layout .catch span {
  color: #d35d5d;
}

@media (max-width: 800px) {
  .catch-layout .l-ttl {
    text-align: left;
  }

  .catch-layout .catch {
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: left;
  }
}

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

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

.l-style01 .l-img .img {
  padding-bottom: 40px;
  position: relative;
}

.l-style01 .l-img .img::before {
  content: "";
  background: linear-gradient(to right, #98CCE2 0%, #8BACD6 100%);
  width: 77%;
  height: auto;
  aspect-ratio: 456/298;
  opacity: 0.35;
  position: absolute;
  bottom: 0;
  left: -40px;
  z-index: -1;
}

.l-style01 .l-img img {
  border-radius: 10px;
  margin-inline: auto;
}

.l-style01 .l-desc {
  grid-area: desc;
  padding: 40px 0 0 12%;
}

.l-style01 .l-ttl {
  color: var(--color_secondary);
  font-size: 2.125rem;
  margin-bottom: 20px;
}

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

  .l-style01 .l-img .img {
    padding-bottom: 20px;
  }

  .l-style01 .l-img .img::before {
    left: -20px;
  }

  .l-style01 .l-desc {
    padding: 20px 0 0 0;
  }

  .l-style01 .l-ttl {
    font-size: 1.375rem;
    margin-bottom: 5px;
  }
}
