@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: #CBCCCC;
  --color_primary: #294B7D;
  --color_secondary: #C39000;
  --color_bg: #EEF1F6;
  --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"), local("Noto Sans CJK JP Regular");
}

:root {
  --font_base:
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    sans-serif;
  --font_jp: "Noto Serif JP", serif;
  --font_en: "Allura", cursive;
  --font_weight: 300;
  --font-weight-medium: 500;
  --font_size: 1.125rem;
  --line_height: 2;
  --letter_spacing: .1em;
}

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

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
body {
  background-color: var(--color_base);
  color: var(--color_text);
  font-family: var(--font_base);
  font-size: var(--font_size);
  font-weight: var(--font_weight);
  letter-spacing: var(--letter_spacing);
  line-height: var(--line_height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
}

th,
dt {
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  text-align: left;
}

.link {
  display: inline-block;
  color: var(--color_primary);
  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: 110px;
}

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

.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;
  table-layout: fixed;
  width: 100%;
}

.time-table thead th {
  padding: 12px 0;
  border-bottom: 1px solid var(--color_border);
}

.time-table tr:not(:last-child) {
  border-bottom: 1px solid var(--color_border);
}

.time-table th,
.time-table td {
  text-align: center;
  padding: 15px 0;
  color: var(--color_primary);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
}

@media (max-width: 800px) {

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

.time-table th:first-child {
  width: 28%;
  border-right: 1px solid var(--color_border);
}

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

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

.time-table-note {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 15px;
}

@media (max-width: 800px) {
  .time-table-note {
    font-size: 0.875rem;
  }
}

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event01: #7B7B7B;
  --event02: #F587A4;
}

.business-calendar-box-wrap {
  background-color: var(--color_white);
  border: 1px solid #E1E1E3;
  padding: 30px 40px 50px;
}

.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.business-calendar-box-wrap .business-calendar caption {
  font-size: 1.25rem;
  font-family: var(--font_jp);
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #D3DBE2;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.business-calendar-box-wrap .business-calendar caption span {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 1;
  font-size: 1.5625rem;
  vertical-align: -5px;
}

.business-calendar-box-wrap .business-calendar-past {
  margin-right: 15px;
}

.business-calendar-box-wrap .business-calendar-future {
  margin-left: 15px;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}

.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-past a::after,
.business-calendar-box-wrap .business-calendar-future a::before,
.business-calendar-box-wrap .business-calendar-future a::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 9px;
  width: 6px;
  height: 1px;
  border-radius: 9999px;
  background-color: #575858;
  transform-origin: calc(100% - 0.5px) 50%;
}

.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(45deg);
}

.business-calendar-box-wrap .business-calendar-past a::after,
.business-calendar-box-wrap .business-calendar-future a::after {
  transform: rotate(-45deg);
}

.business-calendar-box-wrap .business-calendar-past a {
  transform: rotate(180deg);
}

.business-calendar-box-wrap .business-calendar th {
  text-align: center;
  font-weight: normal;
  font-size: 1rem;
  padding: 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: var(--color_white);
  position: relative;
  font-family: var(--font_jp);
  font-size: 0.875rem;
  padding: 5px 5px 15px;
  z-index: 0;
}

.business-calendar-box-wrap .business-calendar td::before {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0;
}

.business-calendar-box-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 0.9375rem;
}

.business-calendar-box-wrap.col2 {
  grid-template-columns: 1fr;
}

.business-calendar-box-wrap.col2 .business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3%;
}

.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
}

.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before {
  opacity: 1;
}

.business-calendar-box-wrap .business-calendar .attr0::before {
  content: "●";
  color: var(--event01);
}

.business-calendar-box-wrap .business-calendar .attr1::before {
  content: "▲";
  color: var(--event02);
}

.list-event {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 25px 0 0 20px;
}

.list-event li {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
}

.list-event .event01::before {
  content: "●";
  color: var(--event01);
}

.list-event .event02::before {
  content: "▲";
  color: var(--event02);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap {
    padding: 20px;
  }

  .business-calendar-box-wrap.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .list-event {
    display: block;
    margin: 15px 0 0 15px;
  }

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

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

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

.btn-out::after {
  content: "";
  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-flex;
  align-items: center;
  min-width: 278px;
  min-height: 60px;
  background-color: var(--color_white);
  border: 1px solid var(--color_secondary);
  border-radius: 100px;
  color: var(--color_secondary);
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: 1.0625rem;
  text-align: left;
  line-height: 1.5;
  padding: 10px 55px 10px 40px;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
}

.btn-more::before {
  content: "";
  -webkit-mask: url(../images/share/icon_arrow_btn.svg) no-repeat center right/contain;
  mask: url(../images/share/icon_arrow_btn.svg) no-repeat center right/contain;
  background-color: var(--color_secondary);
  width: 25px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.btn-more.small {
  min-width: 187px;
}

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

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

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

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

.btn-wrap.right {
  justify-content: flex-end;
}

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

/*電話番号*/
.tel-style01-wrap .ttl {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #F0EEE7;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  text-align: center;
  padding: 0 12px;
  margin-bottom: 4px;
}

.tel-style01 {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.6875rem;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  line-height: 1;
}

.tel-style01 img {
  padding-top: 5px;
  flex-shrink: 0;
}

.tel-style01.center {
  justify-content: center;
}

.tel-style01.large {
  font-size: 1.9375rem;
}

.tel-style01.large img {
  width: 21px;
}

.tel-style02 {
  color: var(--color_white);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.875rem;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  line-height: 1;
}

.tel-style02 img {
  padding-top: 5px;
}

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

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

/*カテゴリーリスト*/
.list-category-links {
  display: grid;
  gap: 5px;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  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_secondary);
  border-right: 1px solid var(--color_secondary);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 8px;
  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 {
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .list-category-links a:hover {
    color: var(--color_secondary);
  }
}

/*症例紹介*/
.case-layout {
  border: 1px solid var(--color_border);
  padding: 6%;
}

.case-layout .post-data {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.case-layout time {
  display: block;
  flex-shrink: 0;
  color: #868686;
  font-family: var(--font_jp);
  font-weight: normal;
  font-size: 0.9375rem;
  line-height: 1;
  margin-right: 15px;
}

.case-layout .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.case-layout .category {
  display: inline-block;
  background-color: #6F8EB4;
  color: #fff;
  font-family: var(--font_jp);
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 2px 10px;
}

.case-layout .l-ttl {
  font-size: 1.875rem;
  border-bottom: 1px solid #CAD4D9;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.case-layout .before-after {
  margin-bottom: 60px;
}

.case-layout .l-table {
  background-color: var(--color_white);
}

.case-layout .l-table th,
.case-layout .l-table td {
  border: 1px solid #DCDCDC;
  font-size: 1rem;
  line-height: 1.5;
  padding: 15px;
}

.case-layout .l-table th {
  background-color: #B49C76;
  color: var(--color_white);
  text-align: center;
  width: 28%;
}

.case-layout .l-btn {
  text-align: center;
  margin-top: 60px;
}

.case-layout .item-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-size: 1.8rem;
  position: relative;
  padding: 0 0 12px;
  margin: 0 0 25px;
}

.case-layout .item-ttl::after {
  content: "";
  width: 25px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.case-layout+.case-layout {
  margin-top: 60px;
}


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

  .case-layout .l-ttl {
    font-size: 1.25rem;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }

  .case-layout .before-after {
    margin-bottom: 30px;
  }

  .case-layout .l-table {
    border-bottom: 1px solid #DCDCDC;
  }

  .case-layout .l-table th,
  .case-layout .l-table td {
    display: block;
    border-bottom: none;
    padding: 10px;
  }

  .case-layout .l-table th {
    width: 100%;
  }

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

  .case-layout .item-ttl {
    border-bottom: 1px solid var(--color_primary);
    font-size: 1.8rem;
    position: relative;
    padding: 0 0 12px;
    margin: 0 0 25px;
  }

  .case-layout .item-ttl::after {
    content: "";
    width: 25px;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
  }

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

}

/*新着情報*/
.post-under-blog {
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}

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

@media (any-hover: hover) {
  .post-under-blog a:hover {
    background-color: rgba(195, 144, 0, 0.05);
  }
}

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

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

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

.post-under-blog time {
  display: block;
  flex-shrink: 0;
  color: #9D9D9D;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 1;
}

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

.post-under-blog .category {
  display: inline-block;
  background-color: #6F8EB4;
  color: #fff;
  font-family: var(--font_jp);
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 2px 10px;
}

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

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

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

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

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

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

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

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

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

  .post-under-blog .post-ttl {
    font-size: 0.875rem;
  }

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

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

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

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  color: #9D9D9D;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 1;
}

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

.layout-single-post .category {
  display: inline-block;
  background-color: #6F8EB4;
  color: #fff;
  font-family: var(--font_jp);
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 2px 10px;
}

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

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

/*ページャー*/
.post-number {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  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;
}

@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: 80px;
  padding-top: 80px;
}

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

.post-number-single .all {
  background: var(--color_primary);
  color: var(--color_white);
  border: 1px solid var(--color_primary);
  font-size: 0.8125rem;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  line-height: 2.2;
  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;
}

/*投稿本文用CSS*/
.postdata {
  overflow-wrap: break-word;
  line-height: 1.8;
}

.postdata .screen-reader-text {
  border: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.postdata .screen-reader-text:focus {
  background-color: #eee;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.postdata iframe {
  max-width: 100%;
}

.wp-block-button__link {
  border: 1px solid var(--color_secondary) !important;
  background-color: var(--color_secondary) !important;
  color: var(--color_white) !important;
  border-radius: 100px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  text-align: left;
  line-height: 1 !important;
  min-width: 200px;
  padding: 10px 45px !important;
  line-height: 1.5;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

.wp-block-button__link::after {
  content: "";
  background-color: var(--color_white);
  -webkit-mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  mask: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 18px;
  height: 11px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.wp-block-button__link:hover {
  opacity: 1;
  background-color: var(--color_white) !important;
  color: var(--color_secondary) !important;
}

.wp-block-button__link:hover::after {
  background-color: var(--color_secondary);
}

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

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata sub {
  font-size: 1.1rem;
  position: relative;
  bottom: -0.1em;
}

.postdata sup {
  font-size: 1.1rem;
  position: relative;
  top: -0.1em;
}

ul[class=wp-block-list] {
  display: grid;
  grid-gap: 5px;
}

ul[class=wp-block-list] li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
}

ul[class=wp-block-list] li::marker {
  color: var(--color_secondary);
}

ol[class=wp-block-list] {
  display: grid;
  grid-gap: 5px;
  counter-reset: number;
}

ol[class=wp-block-list] li {
  padding-left: 30px;
  position: relative;
}

ol[class=wp-block-list] li::before {
  background-color: var(--color_secondary);
  border-radius: 15px;
  color: var(--color_white);
  counter-increment: number;
  content: counter(number);
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: 0.6875rem;
  position: absolute;
  top: 7px;
  left: 0;
  line-height: 1.8;
  width: 20px;
  height: 20px;
  text-align: center;
  padding-left: 2px;
}

@media (max-width: 800px) {
  ol[class=wp-block-list] li::before {
    top: 4px;
  }
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  width: 100%;
  height: 92px;
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 155px 15px 50px;
  transition: background-color 0.3s ease;
}

.header.is-fixed::before {
  opacity: 1;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.h-utility {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .header {
    height: 70px;
    justify-content: center;
    position: absolute;
    padding: 10px 2.5%;
  }

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

  .h-utility {
    display: none;
  }
}

/*------------
Gnavi Drawer
--------------*/
html.is-open {
  height: 100%;
  overflow: hidden;
}

.gnavi-menu-btn {
  cursor: pointer;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  width: 110px;
  height: 110px;
  background-color: var(--color_primary);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
}

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

.gnavi-menu-btn-line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color_white);
  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) {
  bottom: 0;
}

.gnavi-menu-btn-txt {
  display: block;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-weight: normal;
  font-size: 1.0625rem;
  line-height: 1;
  text-align: center;
}

.gnavi-menu-btn-txt::before {
  content: "MENU";
}

.gnavi-menu-btn.is-open {
  gap: 18px;
}

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

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

.gnavi-menu-btn.is-open .gnavi-menu-btn-txt::before {
  content: "CLOSE";
}

.gnavi-drawer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  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: #F5F5F5;
  display: flex;
  width: 100%;
  height: 100%;
}

.gnavi-drawer-left {
  width: 50%;
}

.gnavi-drawer-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gnavi-drawer-right {
  width: 50%;
  padding: 160px 5% 100px 155px;
  overflow-y: auto;
}

.gnavi-drawer-head {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 50px;
  margin-bottom: 45px;
}

.drawer-links {
  display: flex;
  gap: 50px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  line-height: 1.5;
  font-weight: var(--font-weight-medium);
  font-size: 0.9375rem;
}

.drawer-links .ttl {
  display: block;
  min-width: 214px;
  padding-bottom: 12px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--color_border);
}

.drawer-links a {
  transition: color 0.3s;
}

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

.drawer-links .sub-links {
  display: grid;
  gap: 18px;
}

.dl-time {
  display: grid;
  grid-template-columns: 70px 1fr;
  font-size: 0.875rem;
}

.dl-time dt {
  font-family: var(--font_base);
  font-weight: var(--font_weight);
}

@media (max-width: 1600px) {
  .gnavi-drawer-right {
    padding: 120px 5% 50px;
  }
}

@media (max-width: 1200px) {
  .drawer-links .ttl {
    min-width: auto;
  }
}

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

  .drawer-links {
    gap: 15px;
    font-size: 0.9375rem;
  }

  .drawer-links .ttl {
    margin-bottom: 15px;
  }

  .drawer-links .sub-links {
    gap: 12px;
  }
}

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

.footer::before {
  content: "";
  background-color: var(--color_bg);
  position: absolute;
  inset: 180px 0 0 0;
  z-index: -1;
}

.f-layout01 {
  max-width: 1720px;
  width: 95.555vw;
  margin: 0 auto;
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 95px 0 120px;
}

.f-layout01 .t-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 8.055vw;
}

.f-layout02 {
  padding: 110px 0 60px;
}

.f-contents {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: min(90%, 1100px);
  margin: 0 auto 30px;
}

.f-contents .col:first-child {
  max-width: 496px;
}

.f-contents .col:last-child {
  flex-shrink: 0;
}

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

.f-tel {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.f-tel .txt {
  font-size: 1rem;
  line-height: 1.7;
}

.f-tel img {
  width: 21px;
}

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

.f-address {
  margin-bottom: 20px;
}

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

.site-map {
  display: flex;
  gap: 50px;
}

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

.f-bottom-links {
  display: flex;
  align-items: center;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 0.8125rem;
  font-weight: normal;
  line-height: 1;
}

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

.f-bottom-links a {
  transition: color 0.3s;
}

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

.copyright small {
  color: var(--color_primary);
  font-size: 0.75rem;
}

.pagetop {
  position: absolute;
  bottom: 65px;
  right: 20px;
  transition: transform 0.5s;
}

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

@media (max-width: 1200px) {
  .drawer-links .ttl {
    min-width: 180px;
  }
}

@media (max-width: 1024px) {
  .drawer-links .ttl {
    min-width: auto;
  }

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

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

  .f-layout01 {
    width: 95%;
    padding: 50px 0;
  }

  .f-layout02 {
    padding: 50px 0 30px;
  }

  .f-tel {
    gap: 15px;
  }

  .f-tel .txt {
    font-size: 0.875rem;
  }

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

  .f-contents {
    flex-direction: column;
  }

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

  .pagetop {
    display: none;
  }
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  :root {
    --navi-background: var(--color_primary);
    --navi-border-color: var(--color_white);
    --navi-text-color: var(--color_white);
    --svg-stroke: var(--color_white);
    --menu-btn: var(--color_white);
  }

  .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(--font_jp);
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
    border-right: 1px solid var(--navi-border-color);
  }

  .sp-navi-btns .item:last-child {
    border-right: none;
  }

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

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

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

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

  .sp-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 5px;
    border-right: 1px solid var(--navi-border-color);
  }

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

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

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

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

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

  .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: translate(-50%, 6px) 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%, -6px) 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 {
    max-width: 180px;
    margin: 0 auto 30px;
  }

  .sp-navi-list {
    border-top: 1px solid var(--color_gray);
    font-family: var(--font_jp);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    margin-bottom: 30px;
  }

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

  .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: 80px;
  align-items: flex-start;
  margin-inline: auto;
  width: min(90%, 1024px);
}

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

.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: 15px;
  margin-bottom: 20px;
}

.layout-sidebar .l-label [lang=en] {
  color: var(--color_secondary);
  font-size: 1rem;
}

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

.layout-sidebar .l-label p+p {
  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";
  }

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

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  margin-top: 92px;
  position: relative;
}

.hero::before {
  content: "";
  background: url(../images/hero_bg_pc.png) no-repeat bottom center/cover;
  width: 100%;
  aspect-ratio: 1800/242;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.hero::after {
  content: "";
  background: url(../images/hero_gradation_pc.png) no-repeat center/cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

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

.hero .splide__controls {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

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

.hero .splide__pagination__page {
  background: var(--color_white);
}

.hero .splide__pagination__page.is-active {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid var(--color_primary);
}

.hero .splide__toggle {
  background: var(--color_white);
  transition: opacity 0.3s;
}

.hero .splide__toggle:hover {
  background: var(--color_white);
  opacity: 0.5;
}

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

.hero-content {
  display: flex;
  gap: 13.5vw;
  position: absolute;
  bottom: 186px;
  left: min(100px, 5.555vw);
  z-index: 3;
}

.hero-icon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-icon>li {
  width: clamp(160px, 12.352vw, 210px);
  height: clamp(160px, 12.352vw, 210px);
  display: grid;
  grid-template-rows: 1fr 1fr;
  justify-items: center;
  align-items: center;
  gap: 15px;
  background-color: #003656;
  color: var(--color_white);
  padding: min(35px, 1.944vw) min(25px, 1.388vw);
  position: relative;
}

.hero-icon>li::before,
.hero-icon>li::after {
  position: absolute;
  width: 47px;
  height: 47px;
  content: "";
}

.hero-icon>li::before {
  border-left: solid 1px;
  border-top: solid 1px;
  top: 14px;
  left: 14px;
}

.hero-icon>li::after {
  border-right: solid 1px;
  border-bottom: solid 1px;
  bottom: 14px;
  right: 14px;
}

.hero-icon .txt {
  font-family: var(--font_jp);
  font-size: clamp(0.625rem, 0.833vw, 0.9375rem);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  text-align: center;
}

.hero-icon .txt.large {
  font-size: clamp(0.625rem, 1vw, 1.125rem);
}

.hero-icon img {
  width: clamp(40px, 3.571vw, 50px);
}

.hero-catch {
  color: var(--color_white);
}

.hero-catch .txt01 {
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: clamp(1.5rem, 2.333vw, 2.625rem);
  line-height: 1.6;
  text-shadow: 0px 0px 11px #294b7d;
  margin-bottom: 30px;
}

.hero-catch .txt02 {
  font-family: var(--font_jp);
  font-weight: normal;
  font-size: clamp(0.625rem, 0.833vw, 0.9375rem);
  line-height: 1;
  letter-spacing: 0.2em;
}

@media (max-width: 1400px) {
  .hero .splide__slide img {
    height: 650px;
  }

  .hero .splide__controls {
    right: 15px;
  }

  .hero-content {
    gap: 10.714vw;
    bottom: 120px;
    left: 5%;
    right: 5%;
  }

  .hero-icon>li {
    gap: 10px;
    padding: min(35px, 1.944vw) 10px;
  }

  .hero-icon>li::before {
    top: 6px;
    left: 6px;
  }

  .hero-icon>li::after {
    bottom: 6px;
    right: 6px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    gap: 30px;
  }
}

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

  .hero::after {
    background: url(../images/hero_gradation_sp.png) no-repeat center/cover;
  }

  .hero .splide__slide img {
    height: 500px;
  }

  .hero .splide__controls {
    display: none;
  }

  .hero-content {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }

  .hero-icon {
    gap: 5px;
    margin: 0 auto;
    padding-top: 40px;
    position: relative;
  }

  .hero-icon::before {
    content: "";
    background: url(../images/hero_deco_sp.png) no-repeat top right/contain;
    width: 100%;
    height: 45px;
    position: absolute;
    top: 0;
    right: -5%;
    z-index: -1;
  }

  .hero-icon>li {
    width: max(80px, 30vw);
    height: max(80px, 30vw);
    grid-template-rows: 1fr 1fr;
    align-items: center;
    gap: 5px;
    padding: 7px 10px 10px;
  }

  .hero-icon>li::before,
  .hero-icon>li::after {
    width: 25px;
    height: 25px;
  }

  .hero-icon>li::before {
    top: 4px;
    left: 4px;
  }

  .hero-icon>li::after {
    bottom: 4px;
    right: 4px;
  }

  .hero-icon .txt {
    font-size: max(0.625rem, 2.5vw);
  }

  .hero-icon .txt.large {
    font-size: max(0.6875rem, 2.75vw);
  }

  .hero-icon img {
    width: 25px;
  }

  .hero-catch {
    padding: 0 15px;
  }

  .hero-catch .txt01 {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 5px;
  }

  .hero-catch .txt02 {
    font-size: 0.75rem;
  }
}

/*------------
Components
--------------*/
.t-container {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

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

.t-ttl01 {
  text-align: center;
  margin-bottom: 80px;
}

.t-ttl01 [lang=en] {
  color: #AABDDD;
  font-size: 5.625rem;
  padding-bottom: 5px;
  margin-bottom: 10px;
  position: relative;
}

.t-ttl01 [lang=en]::before {
  content: "";
  width: 24px;
  border-bottom: solid 1px var(--color_secondary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.t-ttl01 .jp {
  font-size: 1.875rem;
}

.t-ttl02 [lang=en] {
  color: #AABDDD;
  font-size: 5.625rem;
  margin-bottom: 20px;
  position: relative;
}

.t-ttl02 [lang=en]::before {
  content: "";
  width: 24px;
  border-bottom: solid 1px var(--color_secondary);
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.t-ttl03 {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.t-ttl03 [lang=en] {
  color: var(--color_secondary);
  font-size: 15.1875rem;
  transform: rotate(-6deg);
}

.t-ttl03 .jp {
  color: var(--color_white);
  font-size: 1.875rem;
  width: 100%;
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.t-ttl04 {
  font-size: 1.875rem;
  text-align: center;
  border-bottom: solid 1px #9F9F9F;
  padding-bottom: 12px;
  margin-bottom: 25px;
}

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

  .t-ttl01 [lang=en] {
    font-size: 4.375rem;
  }

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

  .t-ttl02 [lang=en] {
    font-size: 3.75rem;
    margin-bottom: 10px;
  }

  .t-ttl02 .jp {
    font-size: 1.25rem;
  }

  .t-ttl03 [lang=en] {
    font-size: 6.25rem;
  }

  .t-ttl03 .jp {
    font-size: 1.25rem;
    bottom: 0;
  }

  .t-ttl04 {
    font-size: 1.5rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
}

/*------------
sec01
--------------*/
.sec01_sec02_bg {
  margin-top: -145px;
  position: relative;
  z-index: 3;
}

.sec01_sec02_bg::before {
  content: "";
  background: url(../images/sec01_sec02_bg_pc.png) no-repeat top center/cover;
  position: absolute;
  inset: 145px 0 0 0;
  z-index: -1;
}

.sec01_sec02_bg::after {
  content: "";
  background: url(../images/sec01_deco.png) no-repeat top right/contain;
  max-width: 947px;
  width: 52.611vw;
  max-height: 96px;
  height: 5.333vw;
  position: absolute;
  top: -5.333vw;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.sec01 {
  background-color: var(--color_white);
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

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

  .sec01_sec02_bg::before {
    inset: 80px 0 0 0;
  }
}

@media (max-width: 800px) {
  .sec01_sec02_bg {
    margin-top: 0;
    padding-top: 30px;
  }

  .sec01_sec02_bg::before {
    inset: 0;
  }

  .sec01_sec02_bg::after {
    content: none;
  }

  .sec01 {
    padding: 50px 0;
  }
}

/*------------
sec02
--------------*/
.sec02 {
  padding: 120px 0 200px;
}

.sec02-txt {
  max-width: 848px;
  margin-inline: auto;
  color: var(--color_white);
  text-align: center;
  margin: 0 auto 50px;
}

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

  .sec02-txt {
    text-align: left;
    margin: 0 auto 30px;
  }
}

/*------------
sec03
--------------*/
.sec03 {
  padding: 140px 0 160px;
}

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

/*------------
sec04
--------------*/
.sec04 {
  padding: 0 0 200px;
}

.sec04 .top-card01 {
  margin-top: 215px;
}

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

  .sec04 .top-card01 {
    margin-top: 80px;
  }
}

/*------------
sec05
--------------*/
.sec05 {
  padding: 0 0 200px;
}

.sec05 .top-layout03 .l-img {
  padding: 50px 92px 74px 0;
}

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

  .sec05 .top-layout03 .l-img {
    padding: 30px 30px 50px 0;
  }
}

/*------------
sec06
--------------*/
.sec06 {
  background-color: #F4F1ED;
  padding: 140px 0 200px;
  margin-bottom: 80px;
}

.sec06 .case-layout {
  border: none;
  padding: 0;
}

.sec06 .case-layout time {
  font-size: 1.125rem;
}

.sec06 .case-layout .category {
  display: inline-block;
  background-color: #6F8EB4;
  color: #fff;
  font-family: var(--font_jp);
  font-weight: normal;
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 5px 17px;
}

.sec06 .case-layout .l-table th,
.sec06 .case-layout .l-table td {
  font-size: 1.125rem;
  padding: 20px 30px;
}

.sec06 .case-layout .l-table th {
  width: 23%;
}

.sec06 .case-layout .l-btn {
  margin-top: 70px;
}

.sec06 .before-after figure {
  max-height: 365px;
}

.sec06 .before-after figure img {
  max-height: 365px;
}

.sec06 .before-after p {
  width: 100px;
  height: 40px;
}

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

  .sec06 .case-layout time {
    font-size: 1rem;
  }

  .sec06 .case-layout time {
    font-size: 0.9375rem;
  }

  .sec06 .case-layout .category {
    font-size: 0.75rem;
    padding: 2px 15px;
  }

  .sec06 .case-layout .l-table th,
  .sec06 .case-layout .l-table td {
    padding: 10px;
    font-size: 1rem;
  }

  .sec06 .case-layout .l-table th {
    width: 100%;
  }

  .sec06 .case-layout p {
    font-size: 1rem;
  }

  .sec06 .case-layout .l-btn {
    margin-top: 30px;
  }
}

/*------------
sec07
--------------*/
.sec07 {
  padding: 215px 0 200px;
}

.sec07 .time-table-note {
  margin-bottom: 0;
}

.sec07-layout {
  display: grid;
  grid-template-columns: minmax(0, 496px) minmax(0, 492px);
  gap: 6.222vw;
  margin-bottom: 110px;
}

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

  .sec07-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/*------------
sec08
--------------*/
.sec08 {
  background: linear-gradient(to bottom right, #eef1f6 0%, #f9f9f9 50.77%, #eef1f6 100%);
  padding: 200px 0;
}

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

/*------------
sec09
--------------*/
.sec09 {
  padding: 150px 0 0;
}

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

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

  .sec09-bg {
    padding: 50px 0;
  }
}

/*------------
sec10
--------------*/
.sec10 {
  padding: 180px 0 200px;
}

.sec10 .top-layout03 .l-img::before {
  width: 145px;
  aspect-ratio: 145/185;
  left: -72px;
}

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

  .sec10 .top-layout03 .l-img::before {
    width: 80px;
    left: -5%;
  }
}

/*------------
Layout
--------------*/
.top-layout01 {
  padding: 60px 0 84px;
  position: relative;
}

.top-layout01::before {
  content: "";
  background-color: #EEF1F6;
  position: absolute;
  inset: 140px 24.555vw 0 0;
  z-index: -1;
}

.top-layout01::after {
  content: "";
  background-color: rgba(126, 147, 177, 0.18);
  width: 161px;
  aspect-ratio: 161/192;
  position: absolute;
  top: 0;
  left: 60px;
  z-index: -1;
}

.top-layout01 .inner {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 5.388vw;
}

.top-layout01 .l-img {
  width: 47%;
  padding-bottom: 40px;
  position: relative;
}

.top-layout01 .l-img::before {
  content: "";
  width: 280px;
  aspect-ratio: 280/261;
  background-color: rgba(126, 147, 177, 0.6);
  position: absolute;
  bottom: 0;
  right: -40px;
  z-index: -1;
}

.top-layout01 .l-desc {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 4.555vw;
}

.top-layout01 .l-ttl {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
}

.top-layout01 .l-ttl .txt01 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color_secondary);
  font-size: 1.0625rem;
  margin-left: 12px;
}

.top-layout01 .l-ttl .txt01::before {
  content: "";
  width: 1px;
  height: 34px;
  background-color: var(--color_secondary);
}

.top-layout01 .l-ttl .txt02 {
  display: block;
  color: var(--color_primary);
  font-size: 1.625rem;
}

.top-layout02 {
  display: flex;
  align-items: flex-start;
}

.top-layout02 .l-img,
.top-layout02 .l-box {
  width: 57%;
}

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

.top-layout02 .l-box {
  background-color: var(--color_bg);
  padding: 54px 133px 54px 70px;
}

.top-layout02 .l-before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 15px;
}

.top-layout02 .l-before-after .item .ttl {
  font-family: var(--font_jp);
  font-weight: normal;
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  padding: 10px;
  margin-bottom: 10px;
}

.top-layout02 .l-before-after .item:first-child .ttl {
  background-color: #F0EEE7;
}

.top-layout02 .l-before-after .item:last-child .ttl {
  background-color: #6F8EB4;
  color: var(--color_white);
}

.top-layout02 .l-before-after .item+.item .item-img {
  position: relative;
}

.top-layout02 .l-before-after .item+.item .item-img::before {
  content: "";
  background: url(../images/share/icon_arrow_before_after.svg) no-repeat center left/contain;
  width: 60px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
}

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

.top-layout02 .l-desc {
  color: var(--color_white);
  background-color: rgba(41, 75, 125, 0.6);
  padding: 65px 80px 80px 80px;
  margin: 50px 0 0 -65px;
  position: relative;
  flex: 1;
  z-index: 1;
}

.top-layout02.reverse {
  flex-direction: row-reverse;
}

.top-layout02.reverse .l-desc {
  padding: 65px 80px 80px 80px;
  margin: 50px -65px 0 0;
}

.top-layout02.reverse .l-box {
  padding: 54px 70px 54px 133px;
}

.top-layout02 [lang=en] {
  display: inline-block;
  color: #D0B594;
  font-size: 5.625rem;
  position: absolute;
  top: -57px;
  left: 40px;
}

.top-layout02 .l-ttl {
  font-size: 1.875rem;
  margin-bottom: 30px;
}

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

.top-layout03 {
  padding-bottom: 85px;
  position: relative;
}

.top-layout03::before {
  content: "";
  background-color: var(--color_bg);
  position: absolute;
  inset: 206px 0 0 24.555vw;
  z-index: -1;
}

.top-layout03 .inner {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4.777vw;
}

.top-layout03.reverse .inner {
  flex-direction: row-reverse;
}

.top-layout03 .l-img {
  width: 56%;
  padding: 50px 0 74px 0;
  position: relative;
}

.top-layout03 .l-img::before {
  content: "";
  background-color: rgba(126, 147, 177, 0.18);
  width: 106px;
  aspect-ratio: 106/185;
  position: absolute;
  top: 0;
  left: -54px;
  z-index: -1;
}

.top-layout03 .l-img .img02 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.top-layout03 .l-desc {
  flex: 1;
}

.top-layout03 .l-ttl {
  margin-bottom: 40px;
}

.top-layout03 .l-ttl [lang=en] {
  color: #AABDDD;
  font-size: 5.625rem;
  margin: 0 0 40px -30px;
  position: relative;
}

.top-layout03 .l-ttl [lang=en]::before {
  content: "";
  width: 24px;
  border-bottom: solid 1px var(--color_secondary);
  position: absolute;
  bottom: 0;
  left: 30px;
}

.top-layout03 .l-ttl .jp {
  font-size: 1.875rem;
  color: var(--color_primary);
}

.top-layout04 {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 115px 5% 70px;
}

.top-layout04 .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 5%;
}

.top-layout04 .l-img {
  width: 35.5%;
}

.top-layout04 .l-desc {
  flex: 1;
}

.top-layout04 .l-ttl {
  color: var(--color_primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.top-layout04 .l-ttl span {
  background: linear-gradient(transparent 70%, rgba(170, 189, 221, 0.5) 70%);
}

@media (max-width: 1200px) {
  .top-layout01 .l-desc {
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .top-layout02 {
    flex-direction: column;
    gap: 0;
  }

  .top-layout02.reverse {
    flex-direction: column;
  }

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

  .top-layout02 .l-box {
    padding: 30px 20px;
  }

  .top-layout02 .l-desc {
    padding: 150px 5vw 30px;
    margin: -80px -5vw 0;
    z-index: -1;
  }

  .top-layout02.reverse {
    flex-direction: column;
  }

  .top-layout02.reverse .l-desc {
    padding: 150px 5vw 30px;
    margin: -80px -5vw 0;
  }

  .top-layout02.reverse .l-box {
    padding: 30px 20px;
  }

  .top-layout02 [lang=en] {
    font-size: 3.75rem;
    top: 95px;
    left: 15px;
  }

  .top-layout02 .l-ttl {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .top-layout02+.top-layout02 {
    margin-top: 50px;
  }
}

@media (max-width: 800px) {
  .top-layout01 {
    padding: 30px 0;
  }

  .top-layout01::before {
    inset: 200px 100px 0 0;
  }

  .top-layout01::after {
    width: 100px;
    left: 0;
  }

  .top-layout01 .inner {
    flex-direction: column;
    gap: 15px;
  }

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

  .top-layout01 .l-img::before {
    width: 200px;
  }

  .top-layout01 .l-desc {
    flex-direction: column;
    gap: 15px;
  }

  .top-layout01 .l-ttl {
    writing-mode: horizontal-tb;
  }

  .top-layout01 .l-ttl .txt01 {
    font-size: 0.9375rem;
    margin-left: 0;
    margin-bottom: 5px;
  }

  .top-layout01 .l-ttl .txt01::before {
    width: 20px;
    height: 1px;
  }

  .top-layout01 .l-ttl .txt02 {
    font-size: 1.25rem;
  }

  .top-layout02 .l-before-after {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .top-layout02 .l-before-after .item+.item .item-img::before {
    width: 45px;
    top: -85px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .top-layout03 {
    padding-bottom: 60px;
  }

  .top-layout03::before {
    inset: 150px 0 0 50px;
  }

  .top-layout03 .inner {
    flex-direction: column;
    gap: 30px;
  }

  .top-layout03.reverse .inner {
    flex-direction: column;
  }

  .top-layout03 .l-img {
    width: 100%;
    padding: 30px 0 0 0;
  }

  .top-layout03 .l-img::before {
    width: 80px;
    left: -5%;
  }

  .top-layout03 .l-img .img02 {
    width: 45%;
  }

  .top-layout03 .l-ttl {
    margin-bottom: 30px;
  }

  .top-layout03 .l-ttl [lang=en] {
    font-size: 3.75rem;
    margin: 0 0 15px;
  }

  .top-layout03 .l-ttl [lang=en]::before {
    left: 0;
  }

  .top-layout03 .l-ttl .jp {
    font-size: 1.5rem;
  }

  .top-layout04 {
    padding: 30px 5%;
  }

  .top-layout04 .inner {
    flex-direction: column;
    gap: 15px;
  }

  .top-layout04 .l-img {
    width: 100%;
  }

  .top-layout04 .l-img img {
    width: 100%;
  }

  .top-layout04 .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}

/*------------
Card
--------------*/
.top-card01 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.top-card01>li {
  text-align: center;
  width: calc(25% - 15px);
}

.top-card01 a {
  display: block;
  background-color: var(--color_bg);
  height: 100%;
  padding: 50px 20px;
  position: relative;
  transition: transform 0.5s;
}

.top-card01 a::before {
  content: "";
  border-style: solid;
  border-width: 0 0 18px 18px;
  border-color: transparent transparent #6F8EB4 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}

.top-card01 a:hover {
  transform: translateY(-10px);
}

.top-card01 .card-img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 18px;
}

.top-card01 .card-ttl {
  font-family: var(--font_jp);
}

.top-card01 .card-ttl .txt01 {
  font-size: 1.5625rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
  margin-bottom: 8px;
}

.top-card01 .card-ttl .txt02 {
  color: #A57738;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1;
}

.top-card02 {
  display: grid;
  gap: 20px;
}

.top-card02>li>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background-color: var(--color_white);
  padding: 30px 60px;
  transition: background-color 0.3s;
}

@media (hover: hover) {
  .top-card02>li>a:hover {
    background-color: var(--color_bg);
  }
}

.top-card02 .card-ttl {
  font-size: 1.75rem;
  margin-bottom: 5px;
  padding-left: 18px;
  position: relative;
}

.top-card02 .card-ttl::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color_primary);
  border-radius: 50%;
  position: absolute;
  top: 19px;
  left: 0;
}

.top-card02 .card-txt {
  padding-left: 24px;
  position: relative;
}

.top-card02 .card-txt::before {
  content: "ー";
  position: absolute;
  top: 0;
  left: 0;
}

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

  .top-card01>li {
    width: calc(50% - 7.5px);
  }

  .top-card01 a {
    padding: 20px 10px;
  }

  .top-card01 .card-img {
    margin-bottom: 10px;
  }

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

  .top-card02 {
    gap: 15px;
  }

  .top-card02>li>a {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .top-card02 .card-ttl {
    font-size: 1.25rem;
  }

  .top-card02 .card-ttl::before {
    top: 12px;
  }
}

/*------------
Top Table
--------------*/
.top-table01 tr:first-child th,
.top-table01 tr:first-child td {
  padding-top: 0;
}

.top-table01 th,
.top-table01 td {
  padding: 15px 0;
  border-bottom: 1px solid var(--color_border);
  vertical-align: middle;
}

.top-table01 th {
  color: var(--color_primary);
  text-align: left;
}

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

  .top-table01.sp-block th,
  .top-table01.sp-block td {
    display: block;
    padding: 15px 0;
  }

  .top-table01.sp-block th {
    border-bottom: none;
    padding-bottom: 5px;
  }

  .top-table01.sp-block td {
    padding-top: 0;
  }
}

/*------------
Map
--------------*/
.map-layout {
  margin-bottom: 60px;
  position: relative;
}

.map-layout .l-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 550px;
}

.map-layout .l-desc {
  background-color: var(--color_white);
  padding: 40px 107px 55px 60px;
  position: absolute;
  top: 50%;
  right: 5vw;
  transform: translateY(-50%);
  z-index: 1;
}

.map-layout .l-ttl {
  margin-bottom: 15px;
}

.map-layout .l-ttl [lang=en] {
  color: #AABDDD;
  font-size: 3.75rem;
  line-height: 1;
  margin-bottom: 5px;
}

.map-layout .l-ttl .jp {
  font-size: 1.25rem;
  padding-bottom: 10px;
  position: relative;
}

.map-layout .l-ttl .jp::before {
  content: "";
  width: 24px;
  border-bottom: solid 1px var(--color_secondary);
  position: absolute;
  bottom: 0;
  left: 0;
}

.map-layout .l-txt {
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .map-layout .l-desc {
    padding: 30px;
    right: 30px;
  }
}

@media (max-width: 800px) {
  .map-layout {
    margin-bottom: 15px;
  }

  .map-layout .l-map iframe {
    height: 300px;
  }

  .map-layout .l-desc {
    position: static;
    transform: none;
    padding: 30px 5% 0;
  }
}

/*------------
Top DL
--------------*/
.top-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 15px;
}

.top-dl dt {
  color: var(--color_primary);
}

@media (max-width: 800px) {
  .top-dl {
    font-size: 0.875rem;
    gap: 0 10px;
  }
}

/*------------
  Topics
--------------*/
.t-news-layout {
  min-height: 180px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.t-news-layout .l-ttl {
  min-width: 187px;
  margin-top: -20px;
}

.t-news-layout .l-ttl [lang=en] {
  color: #AABDDD;
  font-size: 3.75rem;
  line-height: 1;
}

.t-news-layout .l-ttl .jp {
  font-size: 1.25rem;
  padding-bottom: 10px;
  position: relative;
}

.t-news-layout .l-ttl .jp::before {
  content: "";
  width: 24px;
  border-bottom: solid 1px var(--color_secondary);
  position: absolute;
  bottom: 0;
  left: 0;
}

.t-news-layout .l-body {
  max-width: 784px;
  width: 100%;
}

.t-news-layout .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.post-top-news {
  display: grid;
  border-top: 1px solid #EBEBEB;
}

.post-top-news a {
  display: flex;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid #EBEBEB;
  padding: 26px 18px;
}

.post-top-news time {
  display: inline-block;
  color: #9D9D9D;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
}

.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: 1.0625rem;
  line-height: 1;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .post-top-news a:hover .post-ttl {
    color: var(--color_secondary);
  }
}

@media (max-width: 800px) {
  .t-news-layout {
    min-height: auto;
    flex-direction: column;
    gap: 30px;
  }

  .t-news-layout .l-ttl {
    min-width: auto;
    margin-top: 0;
  }

  .t-news-layout .l-ttl [lang=en] {
    font-size: 3.125rem;
  }

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

  .t-news-layout .l-body {
    max-width: 100%;
  }

  .t-news-layout .l-btn {
    position: static;
  }

  .post-top-news a {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
  }

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

  .post-top-news .post-ttl {
    font-size: 1rem;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header {
  min-height: 250px;
  display: grid;
  align-items: center;
  background-color: var(--color_bg);
  padding: 50px 5%;
  margin-top: 110px;
  position: relative;
}

.page-ttl {
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
  font-size: 2.8125rem;
  text-align: center;
}

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

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

.breadcrumb ul li {
  display: inline;
}

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

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

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

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

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

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

.u-bg01 {
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 50px 0;
}

@media (max-width: 800px) {
  .page-header {
    min-height: 150px;
    padding: 30px 5%;
    margin-top: 70px;
  }

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

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

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

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

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

.u-h2,
.postdata h2 {
  font-size: 1.875rem;
  padding-bottom: 25px;
  margin-bottom: 50px;
  position: relative;
}

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

.u-h2.center,
.postdata h2.center {
  text-align: center;
}

.u-h2.center::before,
.postdata h2.center::before {
  left: 50%;
  transform: translateX(-50%);
}

.u-h2.white,
.postdata h2.white {
  color: var(--color_white);
}

.u-h2.white::before,
.postdata h2.white::before {
  background-color: var(--color_white);
}

.u-h3,
.postdata h3 {
  font-size: 1.375rem;
  border-bottom: 3px solid #EBEBEB;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
}

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

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

.u-h4::before,
.postdata h4::before {
  content: "";
  width: 10px;
  height: 30px;
  background-color: var(--color_primary);
  position: absolute;
  top: 1px;
  left: 0;
}

@media (max-width: 800px) {

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

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

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

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

.ttl-num {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.375rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.ttl-num .num {
  border-radius: 50px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.9375rem;
  flex: 0 0 38px;
  line-height: 38px;
  margin-top: -2px;
  padding-left: 1px;
  text-align: center;
}

.u-ttl-bg {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.4375rem;
  padding: 5px 15px;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .u-ttl-bg {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}

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

.list-disc li {
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
}

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

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

.list-disc.white li::before {
  background-color: var(--color_white);
}

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

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

.list-num>li:before {
  background-color: var(--color_secondary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: 0.6875rem;
  position: absolute;
  top: 9px;
  left: 0;
  line-height: 1.8;
  text-align: center;
  padding-left: 1px;
  width: 20px;
  height: 20px;
}

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

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

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

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

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

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

@media (max-width: 800px) {
  .list-disc li::before {
    top: 10px;
  }

  .list-num>li::before {
    top: 5px;
  }

  .list-check>li::before {
    top: 4px;
  }

  .list-check-square>li::before {
    top: 6px;
  }
}

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

.dl-style01 .item {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 10px 0;
}

.dl-style01 dt {
  background: var(--color_primary);
  color: var(--color_white);
  padding: 20px;
}

.dl-style01 dd {
  background: var(--color_bg);
  padding: 20px;
}

.dl-style02 {
  display: grid;
  gap: 30px;
}

.dl-style02 dt {
  border-bottom: 1px dashed var(--color_border);
  font-size: 1.125rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

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

.dl-style03 .item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 15px;
}

.dl-style03 dt {
  background: var(--color_primary);
  border-radius: 5px;
  color: var(--color_white);
  font-size: 0.9375rem;
  display: grid;
  place-content: center;
  text-align: center;
}

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

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

.card-style01 .btn-more,
.card-style02 .btn-more,
.card-style03 .btn-more,
.card-style04 .btn-more,
.card-style05 .btn-more {
  min-width: 100%;
}

.card-style01 {
  gap: 16px;
}

.card-style01.gap24 {
  gap: 24px;
}

.card-style01>li {
  background-color: var(--color_bg);
  padding: 25px;
}

.card-style01 .card-img {
  margin-bottom: 25px;
}

.card-style01 .card-num {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.8125rem;
  font-family: var(--font_jp);
  font-weight: bold;
  text-align: center;
  margin: 0 auto 15px;
  padding: 3px 20px;
}

.card-style01 .card-num02 {
  color: #AABDDD;
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 5px;
}

.card-style01 .card-ttl {
  font-size: 1.25rem;
  border-bottom: 1px solid var(--color_primary);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.card-style01 .card-ttl+.card-img {
  margin-top: 25px;
}

.card-style01 .card-ttl02 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 15px;
}

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

  .card-style01.gap24 {
    gap: 15px;
  }

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

  .card-style01 .card-ttl02 {
    font-size: 1.125rem;
  }
}

.card-style02 {
  gap: 16px;
}

.card-style02>li {
  border: 1px solid var(--color_primary);
  padding: 25px;
}

.card-style02 .card-img {
  margin-bottom: 25px;
}

.card-style02 .card-num {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 0.8125rem;
  font-family: var(--font_jp);
  font-weight: bold;
  text-align: center;
  margin: 0 auto 15px;
  padding: 3px 20px;
}

.card-style02 .card-num02 {
  color: #AABDDD;
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 5px;
}

.card-style02 .card-ttl {
  font-size: 1.25rem;
  border-bottom: 1px solid var(--color_primary);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

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

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

.card-style03>li {
  background-color: var(--color_bg);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.card-style03 .card-num {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.card-style03 .card-num span {
  font-size: 1.125rem;
  margin-left: 5px;
}

.card-style03 .card-ttl {
  font-size: 1.25rem;
  line-height: 1.5;
}

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

  .card-style03>li {
    border-radius: 15px;
    padding: 15px;
  }

  .card-style03 .card-num {
    font-size: 10px;
  }

  .card-style03 .card-num span {
    font-size: 16px;
  }

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

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

.card-style04>li {
  border: 3px solid var(--color_primary);
  background-color: var(--color_white);
  padding: 25px;
}

.card-style04 .card-ttl {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.125rem;
  text-align: center;
  padding: 10px;
  margin: -25px -25px 25px;
}

.card-style04 .card-img {
  margin-bottom: 30px;
}

.card-style04 .price {
  font-size: 1.875rem;
  text-align: center;
  line-height: 1;
}

.card-style04 .price em {
  background: linear-gradient(#fff 0%, #fff 50%, #fff980 50%, #fff980 100%);
}

.card-style04 .tax {
  font-size: 0.9375rem;
}

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

.card-style05 {
  gap: 20px;
}

.card-style05 .card-img {
  margin-bottom: 25px;
}

.card-style05 .card-ttl {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.card-style05 .card-ttl+.card-img {
  margin-top: 25px;
}

@media (max-width: 800px) {
  .card-style05 .card-img {
    margin-bottom: 15px;
  }

  .card-style05 .card-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}

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

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

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

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

@media (max-width: 800px) {
  .table-style01.sp-block {
    border-bottom: 1px solid var(--color_border);
  }

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

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

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

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

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

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

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

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

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

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

.list-anchor-link {
  display: flex;
  flex-wrap: wrap;
}

.list-anchor-link li {
  position: relative;
}

.list-anchor-link li::after {
  content: "";
  display: inline-block;
  background: var(--color_border);
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  padding-right: 25px;
}

.list-anchor-link a::before {
  content: "";
  background: url(../images/share/icon_anchor_link.svg) no-repeat 0 0/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  right: -3px;
  top: 8px;
}

.list-anchor-link a:hover {
  text-decoration: underline;
}

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

  .list-anchor-link li::after {
    display: none;
  }

  .list-anchor-link a::before {
    top: 3px;
  }
}

.box-style01 {
  background: var(--color_bg);
  padding: 5%;
}

.box-style01 .box-ttl {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 25px;
}

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

  .box-style01 .box-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}

.box-style02 {
  border: 1px solid var(--color_border);
  padding: 5%;
}

.box-style02:has(.box-sub-ttl) {
  position: relative;
}

.box-style02 .box-ttl {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 25px;
}

.box-style02 .box-ttl02 {
  font-size: 1.25rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.box-style02 .box-sub-ttl {
  color: #AABDDD;
  font-size: 3.75rem;
  font-family: var(--font_en);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  top: -30px;
  right: 53px;
  z-index: 1;
}

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

  .box-style02 .box-ttl {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }

  .box-style02 .box-ttl02 {
    font-size: 1.125rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .box-style02 .box-sub-ttl {
    font-size: 2.5rem;
    top: -18px;
    right: 5%;
  }
}

.box-style03 {
  background: var(--color_bg);
  padding: 40px;
}

.box-style03 .box-ttl {
  display: flex;
  gap: 15px;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

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

.box-style04 {
  background: var(--color_primary);
  color: var(--color_white);
  padding: 40px;
}

.box-style04 .box-ttl {
  display: flex;
  gap: 15px;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.box-style04 .box-ttl img {
  filter: brightness(0) invert(1);
}

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

.box-style05 {
  border: 1px solid var(--color_primary);
  background: var(--color_white);
}

.box-style05 .box-ttl {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.375rem;
  text-align: center;
  padding: 15px 40px;
}

.box-style05 .box-desc {
  padding: 50px 60px;
}

@media (max-width: 800px) {
  .box-style05 .box-ttl {
    font-size: 1.125rem;
    padding: 15px 30px;
  }

  .box-style05 .box-desc {
    padding: 25px 30px 30px;
  }
}

.box-style06 {
  border: 2px solid #D0B594;
  padding: 5%;
}

.box-style06 .box-ttl {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 25px;
}

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

  .box-style06 .box-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}

.box-style07 {
  background: rgba(195, 144, 0, 0.05);
  padding: 5%;
}

.box-style07 .box-ttl {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 25px;
}

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

  .box-style07 .box-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}

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

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

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

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

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

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

.under-slider01 .splide__pagination {
  margin-top: 20px;
}

.under-slider01 .splide__pagination__page.is-active {
  background: var(--color_primary);
}

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

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

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

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

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

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

.under-slider02 .splide__pagination__page.is-active {
  background: var(--color_primary);
}

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

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

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

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

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

.l-imgR .l-img.w30,
.l-imgL .l-img.w30 {
  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.w30,
  .l-imgL .l-img.w30 {
    width: 100%;
  }

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

.l-style01 {
  display: flex;
  gap: 7.5%;
  padding-bottom: 80px;
  margin: 0 0 0 -10%;
  position: relative;
}

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

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

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

.l-style01.reverse {
  flex-direction: row-reverse;
  margin: 0 -10% 0 0;
}

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

.l-style01 .l-num {
  display: inline-block;
  color: #D0B594;
  font-family: var(--font_en);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.l-style01 .l-ttl {
  font-size: 1.875rem;
  margin-bottom: 30px;
}

.l-style01 .l-sub-ttl {
  display: flex;
  gap: 25px;
  align-items: center;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: 1.125rem;
  margin-bottom: 30px;
}

.l-style01 .l-sub-ttl::before {
  content: "";
  flex: 0 0 30px;
  background: var(--color_primary);
  width: 30px;
  height: 2px;
}

@media (max-width: 800px) {
  .l-style01 {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 40px;
    margin: 0 -5vw;
  }

  .l-style01::before {
    inset: 0;
  }

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

  .l-style01.reverse {
    flex-direction: column;
    margin: 0 -5vw;
  }

  .l-style01.reverse::before {
    inset: 0;
  }

  .l-style01 .l-desc {
    padding: 0 5vw;
  }

  .l-style01 .l-num {
    font-size: 1.875rem;
    margin-bottom: 15px;
  }

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

  .l-style01 .l-sub-ttl {
    gap: 20px;
    font-size: 1.125rem;
    margin-bottom: 25px;
  }
}

.l-style02 {
  display: flex;
}

.l-style02 .l-img {
  position: relative;
  width: 45%;
  z-index: 1;
}

.l-style02 .l-desc {
  background: var(--color_bg);
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  flex: 1;
}

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

.l-style02.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
}

.l-style02 .l-num {
  display: inline-block;
  color: #D0B594;
  font-family: var(--font_en);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: 1.875rem;
  margin-bottom: 15px;
}

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

.l-style02 .l-sub-ttl {
  display: flex;
  gap: 25px;
  align-items: center;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.l-style02 .l-sub-ttl::before {
  content: "";
  flex: 0 0 30px;
  background: var(--color_primary);
  width: 30px;
  height: 2px;
}

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

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

  .l-style02 .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px -5vw 0;
  }

  .l-style02.reverse {
    flex-direction: column;
  }

  .l-style02.reverse .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px -5vw 0;
  }

  .l-style02 .l-num {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

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

  .l-style02 .l-sub-ttl {
    gap: 15px;
    font-size: 1.0625rem;
    margin-bottom: 15px;
  }

  .l-style02 .l-sub-ttl::before {
    flex: 0 0 20px;
    width: 20px;
  }
}

.flow-style01 {
  gap: 30px;
}

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

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

.flow-style01 .flow-num {
  background: var(--color_primary);
  border-radius: 50px;
  display: table;
  color: #fff;
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}

.flow-style01 .flow-img {
  margin-bottom: 15px;
}

.flow-style01 .flow-ttl {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .flow-style01 {
    gap: 35px;
  }

  .flow-style01>li:not(:last-child)::after {
    top: auto;
    bottom: -28px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

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

.flow-style02 {
  display: grid;
  gap: 40px;
}

.flow-style02>li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 50px;
  position: relative;
  min-height: 150px;
}

.flow-style02>li:not(:last-child)::before {
  content: "";
  background-color: var(--color_primary);
  width: 1px;
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 33px;
}

.flow-style02>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: var(--color_primary) transparent transparent transparent;
  position: absolute;
  bottom: -1px;
  left: 28px;
}

.flow-style02 .flow-num {
  color: var(--color_primary);
  font-size: 1.875rem;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.flow-style02 .flow-num::before {
  content: attr(data-en);
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.flow-style02 .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}

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

.flow-style02 .flow-desc {
  flex: 1;
  padding-top: 10px;
}

.flow-style02 .flow-ttl {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .flow-style02 {
    gap: 40px;
  }

  .flow-style02>li {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }

  .flow-style02>li:not(:last-child)::before {
    top: 55px;
    left: 24px;
  }

  .flow-style02>li:not(:last-child)::after {
    left: 20px;
  }

  .flow-style02 .flow-num {
    font-size: 1.5625rem;
  }

  .flow-style02 .flow-num::before {
    font-size: 0.75rem;
    margin-bottom: 5px;
  }

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

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

  .flow-style02 .flow-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .flow-style02 .flow-desc {
    padding-top: 0;
  }
}

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

.price-style .list-intro {
  border-bottom: 1px dotted var(--color_border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: space-between;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: 1.125rem;
  padding: 0 0 5px;
}

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

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

  .price-style .list-intro {
    align-items: flex-end;
    font-size: 1rem;
  }

  .price-style .list-intro.sp-column {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

.faq-style01 {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  transition: 0.3s;
}

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

.faq-style01 .faq-summary {
  display: block;
  cursor: pointer;
  padding: 18px 50px;
  position: relative;
}

.faq-style01 .faq-summary .faq-icon {
  top: 16px;
  left: 0;
}

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

.faq-style01 .faq-summary:hover .faq-icon {
  background-color: var(--color_primary);
  border-color: var(--color_primary);
  color: var(--color_white);
}

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

.faq-style01 .faq-inner {
  padding: 5px 50px 30px;
  position: relative;
}

.faq-style01 .faq-inner .faq-icon {
  border: 1px solid var(--color_secondary);
  background-color: var(--color_secondary);
  color: #fff;
  top: 4px;
  left: 0;
}

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

.faq-style01 .faq-desc {
  font-size: 1rem;
}

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

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

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

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

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

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

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

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

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

  .faq-style01 .faq-summary {
    padding: 18px 30px 18px 50px;
  }

  .faq-style01 .faq-open-icon {
    right: 0;
    top: 11px;
  }

  .faq-style01 .faq-inner {
    padding: 0 0 30px 50px;
  }

  .faq-style01 .faq-desc {
    padding-top: 10px;
  }
}

.faq-style02 .item+.item {
  border-top: 1px dashed var(--color_border);
  margin-top: 30px;
  padding-top: 30px;
}

.faq-style02 dt {
  font-size: 1.25rem;
  padding-left: 60px;
  margin-bottom: 15px;
  position: relative;
}

.faq-style02 dd {
  position: relative;
  padding-left: 60px;
}

.faq-style02 dd .faq-icon {
  background-color: var(--color_secondary);
}

.faq-style02 .faq-icon {
  color: var(--color_white);
  display: grid;
  place-items: center;
  background-color: var(--color_primary);
  border-radius: 3px;
  width: 35px;
  height: 35px;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: 1.125rem;
  line-height: 1;
  text-align: center;
  padding-left: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 800px) {
  .faq-style02 .item+.item {
    margin-top: 15px;
    padding-top: 15px;
  }

  .faq-style02 dt {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .faq-style02 dd {
    padding: 5px 0 0 60px;
  }
}

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

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

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

.staff-layout .job {
  display: inline-block;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: 1rem;
  line-height: 1;
  padding: 5px 15px;
  margin-bottom: 15px;
}

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

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

.staff-layout .kana {
  color: var(--color_secondary);
  font-size: 0.8125rem;
}

.staff-layout .card-profile {
  margin-top: 50px;
}

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

.card-profile .item {
  background-color: var(--color_bg);
  border-radius: 5px;
  padding: 30px;
}

.card-profile .card-ttl {
  color: var(--color_primary);
  border-bottom: 1px dashed var(--color_primary);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.dl-career {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px 0;
  line-height: 1.5;
}

.dl-career.large {
  grid-template-columns: 110px 1fr;
}

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

  .staff-layout .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .staff-layout .job {
    margin-bottom: 10px;
  }

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

  .staff-layout .kana {
    font-size: 0.75rem;
  }

  .card-profile {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card-profile .item {
    padding: 20px;
  }
}

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

.merit-demerit .item {
  background: var(--color_bg);
  border-top: 5px solid var(--color_primary);
  padding: 35px;
}

.merit-demerit .item:first-child .list-disc li::before {
  background-color: var(--color_primary);
}

.merit-demerit .item:nth-of-type(2) {
  background: rgba(195, 144, 0, 0.05);
  border-color: var(--color_secondary);
}

.merit-demerit .item-ttl {
  font-size: 1.375rem;
  line-height: 1;
  margin-bottom: 25px;
}

.merit-demerit .item-ttl::after {
  content: attr(data-en);
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  margin-left: 15px;
}

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

  .merit-demerit .item {
    padding: 35px 25px;
  }

  .merit-demerit .item-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .merit-demerit .item-ttl::after {
    font-size: 0.75rem;
  }
}

.tel-layout01 {
  background: var(--color_bg);
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

.tel-layout01 .l-ttl {
  border-bottom: 1px solid var(--color_text);
  margin-bottom: 30px;
  font-size: 1.125rem;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout01 .l-tel {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: 2.1875rem;
  line-height: 1;
  margin: 0 auto;
}

.tel-layout01 .l-tel img {
  padding-top: 5px;
}

.tel-layout01 .l-time {
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
  margin: 20px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

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

.tel-layout01 .l-time dt {
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  text-align: center;
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
  font-size: 0.8125rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-layout01 .l-ttl {
    font-size: 0.9375rem;
    margin: 0 auto 25px;
  }

  .tel-layout01 .l-tel {
    font-size: 1.875rem;
  }

  .tel-layout01 .l-tel img {
    width: 22px;
  }
}

.accordion-style+.accordion-style {
  margin-top: 20px;
}

.accordion-style summary {
  display: block;
  cursor: pointer;
  font-family: var(--font_jp);
  background-color: var(--color_primary);
  border: 2px solid var(--color_primary);
  color: var(--color_white);
  font-size: 1.25rem;
  padding: 20px 20px 20px 50px;
  position: relative;
  transition: 0.2s;
}

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

.accordion-style:not(.is-open) summary:is(:hover, :focus) {
  opacity: 0.5;
}

.accordion-style summary::before,
.accordion-style summary::after {
  content: "";
  display: block;
  background: var(--color_white);
  position: absolute;
  top: 50%;
  left: 20px;
}

.accordion-style summary::before {
  width: 16px;
  height: 1px;
}

.accordion-style summary::after {
  width: 16px;
  height: 1px;
  rotate: 90deg;
  transition: rotate 0.5s;
}

.accordion-style.is-open summary::after {
  rotate: 0deg;
}

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

.accordion-style .accordion-inner {
  background-color: var(--color_white);
  padding: 20px;
  border: 2px solid var(--color_primary);
}

.accordion-style .accordion-content:not([hidden=until-found]):target {
  display: revert;
}

@media (scripting: none) {
  .accordion-style .accordion-contentl:target {
    display: revert;
  }
}

.accordion-style.pc-block summary {
  pointer-events: none;
  cursor: default;
  padding: 20px;
}

.accordion-style.pc-block summary::before,
.accordion-style.pc-block summary::after {
  content: none;
}

@media (max-width: 800px) {
  .accordion-style+.accordion-style {
    margin-top: 15px;
  }

  .accordion-style summary {
    padding: 15px 15px 15px 50px;
    font-size: 1rem;
  }

  .accordion-style summary::before {
    width: 12px;
  }

  .accordion-style summary::after {
    width: 13px;
  }

  .accordion-style .accordion-inner {
    padding: 15px;
  }

  .accordion-style.pc-block summary {
    padding: 15px 15px 15px 50px;
    pointer-events: auto;
    cursor: pointer;
  }

  .accordion-style.pc-block summary::before,
  .accordion-style.pc-block summary::after {
    content: "";
  }
}

/*-----------------------------------------------------------
下層オリジナルパーツ
-----------------------------------------------------------*/
.concept-layout {
  background: url(../images/under/concept-layout_bg.jpg) no-repeat center/cover;
  padding: 100px 0;
}

.concept-layout .l-box {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 115px 50px;
}

.concept-layout .l-ttl {
  color: var(--color_primary);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
}

.concept-layout .l-ttl span {
  background: linear-gradient(transparent 70%, rgba(170, 189, 221, 0.5) 70%);
}

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

  .concept-layout .l-box {
    padding: 50px 25px;
  }

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

  .concept-layout p {
    line-height: 1.8;
  }
}

.contact-layout {
  background-color: var(--color_bg);
  padding: 50px 5%;
}

.contact-layout .l-box {
  background-color: var(--color_white);
  padding: 50px 5%;
}

.contact-layout .l-ttl {
  font-size: 1.5625rem;
  text-align: center;
  margin-bottom: 30px;
}

.contact-layout .l-sub-ttl {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
}

.contact-layout .l-sub-ttl::before {
  content: "";
  width: 10px;
  height: 30px;
  background-color: var(--color_primary);
  position: absolute;
  top: 1px;
  left: 0;
}

.contact-layout .l-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 32px;
}

.contact-layout .l-wrap>p {
  font-size: 0.875rem;
}

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

  .contact-layout .l-box {
    padding: 30px 5%;
  }

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

  .contact-layout .l-sub-ttl {
    font-size: 1.125rem;
    padding-left: 22px;
    margin-bottom: 15px;
  }

  .contact-layout .l-sub-ttl::before {
    width: 8px;
    height: 26px;
    top: 2px;
  }

  .contact-layout .l-wrap {
    flex-direction: column;
  }
}

.tel-layout02 {
  background: var(--color_primary);
  color: var(--color_white);
  max-width: 800px;
  padding: 50px;
  margin: 0 auto;
}

.tel-layout02 .l-ttl {
  font-size: 1.25rem;
  line-height: 1.2;
  text-align: center;
  border-bottom: 1px solid var(--color_white);
  padding-bottom: 15px;
  margin: 0 auto 30px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 514px;
}

.tel-layout02 .l-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.tel-layout02 .l-wrap>p {
  font-size: 0.875rem;
}

.tel-layout02 .tel-style01 img {
  filter: brightness(0) invert(1);
}

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

  .tel-layout02 .l-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
    min-width: auto;
  }

  .tel-layout02 .l-wrap {
    flex-direction: column;
    gap: 15px;
  }
}

.u-img-layout01 {
  padding: 20px;
  position: relative;
}

.u-img-layout01::before {
  content: "";
  background-color: rgba(41, 75, 125, 0.3);
  width: 161px;
  aspect-ratio: 161/192;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.u-img-layout01::after {
  content: "";
  background-color: var(--color_bg);
  position: absolute;
  inset: 180px 0 0 50%;
  z-index: -1;
}

@media (max-width: 800px) {
  .u-img-layout01 {
    padding: 10px;
  }

  .u-img-layout01::before {
    width: 80px;
  }

  .u-img-layout01::after {
    inset: 60px 0 0 50%;
  }
}

.privacy-ttl {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.dl-privacy {
  display: grid;
  gap: 50px;
}

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-size: 1.25rem;
  padding-top: 40px;
  margin-bottom: 15px;
  position: relative;
}

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

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

  .dl-privacy dt {
    font-size: 1.125rem;
    padding-top: 25px;
  }
}

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

.sp-only {
  display: none;
}

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

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

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

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.jp {
  font-family: var(--font_jp);
  font-weight: var(--font-weight-medium);
}

[lang=en] {
  font-family: var(--font_en);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
}

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

.c-red {
  color: #F44336;
}

.c-white {
  color: var(--color_white);
}

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

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

.mb0 {
  margin-bottom: 0 !important;
}

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

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

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

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

.col5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.gapXS {
  gap: 8px;
}

.gapS {
  gap: 16px;
}

.gapM {
  gap: 32px;
}

.gapXM {
  gap: 48px;
}

.gapL {
  gap: 64px;
}

.gapXL {
  gap: 96px;
}

@media (max-width: 1024px) {
  .br-tab-only {
    display: block;
    height: 0;
    margin: 0;
    padding: 0;
  }
}

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

  .sp-only {
    display: block;
  }

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

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

  .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 {
    gap: 4px;
  }

  .gapS {
    gap: 8px;
  }

  .gapM {
    gap: 16px;
  }

  .gapXM {
    gap: 32px;
  }

  .gapL {
    gap: 48px;
  }

  .gapXL {
    gap: 64px;
  }

  .sp-gapS {
    gap: 16px;
  }

  .sp-gapM {
    gap: 32px;
  }

  .sp-gapXM {
    gap: 48px;
  }

  .sp-gapL {
    gap: 64px;
  }

  .sp-gapXL {
    gap: 96px;
  }
}

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

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

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

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

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

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

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

.splide--rtl {
  direction: rtl;
}

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

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

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

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

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

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

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

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

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

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

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

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

.splide__pagination {
  gap: 8px;
}

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

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

.splide__pagination__page:hover {
  cursor: pointer;
}

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.splide__toggle:hover {
  background: #D3D3D3;
}

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

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

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.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: translateY(0);
  }
}
