@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #555;
  --color_link: #333;
  --color_border: #DFDFDF;
  --color_primary_light: #68C1D7;
  --color_primary: #BF922B;
  --color_secondary: #ED9318;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
  --color_bg_light: #F1EEE9;
  --color_text_dark: #1A1A1A;
}

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

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

@font-face {
  font-family: "Local Noto Serif JP";
  src: local("Noto Serif JP");
}

:root {
  --font_base:
    "Noto Serif JP",
    "Local Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "MS PMincho",
    serif;
  --font_jp: "Noto Serif JP", serif;
  --font_en: "Cinzel", serif;
  --font_weight: normal;
  --font_size: 0.9375rem;
  --line_height: 2.0;
  --letter_spacing: .05em;
}

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

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

html {
  -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%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

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

:where(a, input, button, textarea, select) {
  -ms-touch-action: manipulation;
  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;
  -webkit-border-before: 1px solid;
  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: 600;
  letter-spacing: 0.05em;
}

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

.link {
  display: inline-block;
  text-decoration: underline;
  word-break: break-all;
  position: relative;
  font-weight: 600;
  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: 130px;
}

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

.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 {
  background-color: var(--color_gray_light);
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

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

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

@media (max-width: 800px) {

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

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

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

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

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

.time-table-note {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 5px 1fr;
  grid-template-columns: auto 1fr;
  gap: 5px;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 10px;
}

.time-table-note img {
  margin-top: 4px;
}

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
:root {
  --event01: #EF866B;
  --event02: #F7B46B;
  --event03: #A8DBA8;
  --event04: #B0D7D5;
}

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

.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: 1rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}

.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 1.5625rem;
  vertical-align: -1px;
}

.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-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}

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

.business-calendar-box-wrap .business-calendar th {
  background: #f1f3f4;
  border: 1px solid #dfdfdf;
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
  padding: 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid #dfdfdf;
  position: relative;
  font-size: 0.8125rem;
  padding: 5px;
  z-index: 0;
}

.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -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 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.business-calendar-box-wrap.col2 .business-calendar-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3% 1fr;
  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,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: #fff;
}

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

.business-calendar-box-wrap .business-calendar .attr0::before {
  background: var(--event01);
}

.business-calendar-box-wrap .business-calendar .attr1::before {
  background: var(--event02);
}

.business-calendar-box-wrap .business-calendar .attr2::before {
  background: var(--event03);
}

.business-calendar-box-wrap .business-calendar .attr3::before {
  background: var(--event04);
}

.list-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-event li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  line-height: 1;
}

.list-event li::before {
  content: "";
  background-color: var(--color_black);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.list-event .event01::before {
  background-color: var(--event01);
}

.list-event .event02::before {
  background-color: var(--event02);
}

.list-event .event03::before {
  background-color: var(--event03);
}

.list-event .event04::before {
  background-color: var(--event04);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .list-event {
    display: block;
  }

  .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: "";
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

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

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

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

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-under-blog a::before {
  content: "";
  background: url(../images/share/post_arrow.svg) no-repeat center/contain;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*詳細ページ*/
.layout-single-post .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

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

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

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

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

.layout-single-post .l-sub-ttl {
  border-bottom: 1px solid;
  font-size: 1.375rem;
  line-height: 1.5;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

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

  .layout-single-post .l-sub-ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}

/*投稿詳細*/
.postdata p,
.postdata ul,
.postdata dl,
.postdata ol {
  margin-bottom: 1em;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ul ul,
.postdata ol ol {
  margin-left: 15px;
}

.postdata table {
  margin: 15px 0;
}

.postdata pre {
  white-space: pre-wrap;
  word-break: break-all;
  overflow-wrap: break-word;
}

/*ページャー*/
.post-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px auto 0;
  width: -webkit-fit-content;
  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;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
選択ボタン付きカテゴリーリスト
-----------------------------------------------------------*/
/*セレクト式カテゴリー*/
.select-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.select-area .select-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 15px;
}

.select-area .select-ttl {
  display: inline-block;
  white-space: nowrap;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
  background: #fff url(../images/share/ico_arrow_down.svg) no-repeat right 10px center/20px auto;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--color_border);
  vertical-align: middle;
  min-width: 150px;
  padding: 5px 30px 5px 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.select-area .select-category::-ms-expand {
  display: none;
}

.select-area .select-category-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  display: inline-block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid;
  color: var(--color_primary);
  background: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8125rem;
  line-height: 1;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

@media (hover: hover) {
  .select-area .select-category-button:is(:hover, :focus) {
    background: var(--color_primary);
    color: #fff;
  }
}

@media (max-width: 800px) {
  .select-area {
    display: block;
    margin: 0 0 30px;
  }

  .select-area .select-item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
  }

  .select-area .select-item+.select-item {
    margin-top: 40px;
  }

  .select-area .select-ttl {
    width: 100%;
  }
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header a:hover {
  opacity: 0.6;
}

.header a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.header {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  height: 120px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

@media (max-width: 800px) {
  .header {
    display: block;
    height: auto;
    padding: 10px 4%;
    position: relative;
  }
}

.h-logo {
  margin-left: 4%;
  width: 336px;
}

@media (max-width: 800px) {
  .h-logo {
    margin-left: 0;
    width: 230px;
  }
}

.h-utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 30px;
}

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

.h-linebtn:hover {
  opacity: 0.6;
}

.h-linebtn {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: block;
}

.h-info .h-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 24px;
  margin-bottom: 5px;
}

.h-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  background-color: var(--color_black);
  color: var(--color_white);
  font-size: 0.9375rem;
  padding: 0 25px 0 20px;
  height: 50px;
}

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

.h-tel span {
  background: url(../images/share/tel_w.svg) no-repeat left center/auto;
  padding-left: 18px;
}

.h-tel {
  background: var(--color_primary);
  border-radius: 60px;
  color: #fff;
  font-weight: bold;
  padding: 4px 15px;
  text-align: center;
  width: 210px;
}

/*------------
Gnavi
--------------*/
.gnavi-links li {
  position: relative;
}

.gnavi-links {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 28px;
}

.gnavi-links>li>a:hover {
  text-decoration: underline;
}

.gnavi-links>li>a {
  display: inline-block;
}

/*dropdown*/
.dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.dropdown::after {
  background: url(../images/share/gnavi-plus.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
}

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

.dropdown .sub-menu>li>a {
  font-weight: bold;
}

.dropdown .sub-menu a:hover {
  text-decoration: underline;
}

.dropdown .sub-menu a {
  padding-left: 20px;
}

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

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

.dropdown .child-menu li a {
  background: none;
  padding-left: 0;
}

.dropdown .child-menu {
  margin-left: 20px;
}

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

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

.gnavi-menu-btn {
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}

.gnavi-menu-btn-line {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35px;
  height: 15px;
}

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

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

.gnavi-menu-btn-line span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

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

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

.gnavi-menu-btn.is-open .gnavi-menu-btn-line span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(-50%) scaleX(0);
  transform: translateY(-50%) scaleX(0);
}

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

.gnavi-drawer {
  backdrop-filter: blur(5px);
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  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: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5%;
  margin-left: auto;
  padding: 50px 2.5%;
  width: 350px;
  height: 100%;
  overflow-y: auto;
}

.drawer-links {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  line-height: 1.5;
  font-size: 1.125rem;
}

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

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

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

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

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background: rgba(28, 43, 53, 0.85);
  color: #fff;
  padding: 80px 0 40px;
  position: relative;
  margin-top: auto;
}

.f-contents .site-info {
  width: 40%;
}

.f-contents .site-link {
  padding-top: 18px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.f-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 6%;
  margin-bottom: 50px;
}

.f-logo>a:hover {
  opacity: 0.6;
}

.f-logo>a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: inline-block;
  width: 348px;
}

.f-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

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

.mapbtn span {
  background: url("../images/share/marker_w.svg") left center no-repeat;
  padding-left: 22px;
}

.mapbtn {
  border: 1px solid;
  color: #fff;
  display: inline-block;
  padding: 8px 0;
  text-align: center;
  width: 150px;
}

.webbtn span {
  background: url("../images/share/mail_w.svg") left center no-repeat;
  padding-left: 32px;
}

.webbtn {
  border: 1px solid;
  color: #fff;
  display: inline-block;
  padding: 8px 0;
  text-align: center;
  width: 180px;
}

.site-link .linebtn {
  width: 320px;
}

.site-link .f-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 23px;
  margin: 20px 0;
}

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

.site-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
}

.f-links .sub-menu>li::before {
  background: #68C1D7;
  border-radius: 50%;
  content: "";
  display: block;
  height: 7px;
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  z-index: 1;
}

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

.f-links .sub-menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 5px;
}

.f-links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 8px;
  font-size: 0.875rem;
}

.f-links a::before {
  background: #D4A643;
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  top: 15px;
  left: 0;
  width: 7px;
}

.f-links a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentcolor), to(currentcolor));
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  display: inline-block;
  -webkit-transition: background-size 0.5s ease;
  transition: background-size 0.5s ease;
  padding-bottom: 0.02rem;
  padding-left: 15px;
  position: relative;
}

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

.f-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 80px auto 0;
}

.f-bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1;
}

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

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

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

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

  .f-contents .site-info {
    margin: 0 auto 30px;
    width: 100%;
  }

  .f-contents .site-link {
    padding: 0;
  }

  .f-contents {
    display: block;
    margin-bottom: 50px;
  }

  .f-logo>a {
    width: 80%;
  }

  .f-logo {
    gap: 15px;
  }

  .webbtn span {
    background: 20px auto;
    padding-left: 24px;
  }

  .webbtn {
    font-size: 0.8125rem;
    padding: 8px 10px;
    width: auto;
  }

  .site-link .linebtn {
    width: 100%;
  }

  .site-link .f-contact .webbtn {
    width: 100%;
  }

  .site-link .f-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
  }

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

  .site-map {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0 4%;
    margin-top: 30px;
  }

  .f-links .sub-menu>li::before {
    top: 7px;
  }

  .f-links {
    font-size: 0.875rem;
  }

  .f-bottom {
    display: block;
    margin: 0 auto 10px;
  }
}

.copyright {
  font-size: 0.8125rem;
}

@media (max-width: 800px) {
  .copyright {
    text-align: center;
  }
}

#pagetop a:hover {
  opacity: 0.6;
}

#pagetop a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

#pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: none;
  z-index: 90;
}

@media (max-width: 800px) {
  #pagetop {
    display: none;
  }
}

#fixnavi_pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
  width: 116px;
}

@media (max-width: 800px) {
  #fixnavi_pc {
    display: none;
  }
}

.fixed-menu.type01 {
  background: #26659A;
  color: #fff;
  padding-top: 28px;
}

.fixed-menu.type02 {
  padding-top: 24px;
}

.fixed-menu .icon img {
  margin-inline: auto;
}

.fixed-menu .icon {
  margin-bottom: 3px;
}

.fixed-menu:hover {
  opacity: 0.6;
}

.fixed-menu {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: #fff;
  height: 116px;
  border-radius: 10px 0 0 10px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  width: 100%;
}

.sp-navi {
  display: none;
}

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

  .sp-navi {
    display: block;
  }

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

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

  .sp-navi-btns .item+.item {
    border-left: 1px solid #fff;
  }

  .sp-navi-btns .item.pagetop .img {
    top: 15px;
  }

  .sp-navi-btns .item {
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding-bottom: 5px;
  }

  .sp-navi-btns .item .img img {
    margin-inline: auto;
  }

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

  .sp-navi-btns .item .img {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
  }

  .sp-navi-btns .item.instagram .img img {
    width: 18px;
  }

  .sp-navi-btns .item.instagram .img {
    margin-bottom: 8px;
  }

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

  .sp-menu-btn {
    border: none;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 5px;
    z-index: 99;
  }

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

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

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

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

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

  .sp-menu-btn.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 6px) rotate(-45deg);
    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) {
    -webkit-transform: translate(-50%, -6px) rotate(45deg);
    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: 15px 25px 100px;
    position: fixed;
    inset: 0;
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
    -webkit-transition: 0.5s var(--ease);
    transition: 0.5s var(--ease);
    opacity: 0;
    z-index: 1000;
  }

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

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

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

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

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

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

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

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

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

  .sp-details-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    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;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform-origin: 50% 0;
    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;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

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

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

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

  .child-menu {
    margin-left: 1em;
  }
}

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

.layout-sidebar .l-sidebar {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: sidebar;
  position: sticky;
  top: 140px;
}

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

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

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

.layout-sidebar .l-body {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: body;
}

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

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

  .layout-sidebar .l-sidebar {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .layout-sidebar .l-body {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.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 {
  -webkit-transition: opacity 0.5s;
  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;
}

.fs20 {
  font-size: 1.25rem;
  font-family: var(--font_jp);
}

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

.c-red {
  color: #F44336;
}

.black {
  color: #000000;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #bf922b40));
  background: linear-gradient(transparent 50%, #bf922b40 50%);
}

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: -ms-grid;
  display: grid;
}

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

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

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

.gapXS {
  grid-gap: 8px;
}

.gapS {
  grid-gap: 16px;
}

.gapM {
  grid-gap: 32px;
}

.gapXM {
  grid-gap: 48px;
}

.gapL {
  grid-gap: 64px;
}

.gapXL {
  grid-gap: 96px;
}

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

  .sp-only {
    display: inline;
  }

  .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 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

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

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

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

  .gapXS {
    grid-gap: 4px;
  }

  .gapS {
    grid-gap: 8px;
  }

  .gapM {
    grid-gap: 16px;
  }

  .gapXM {
    grid-gap: 32px;
  }

  .gapL {
    grid-gap: 48px;
  }

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

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

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

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

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

.splide__pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  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 {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
  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;
}

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

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

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

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

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-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 {
  -webkit-transform: scaleX(-1);
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: 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;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-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 {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

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

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

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

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

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

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

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

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

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

.splide__toggle:hover {
  background: #D3D3D3;
}

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

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

.splide__container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

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

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

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

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  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 {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
  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% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

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

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-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 {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

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

.splide__arrow:disabled {
  opacity: 0.3;
}

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

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

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

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

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

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.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 {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

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

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

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

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

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

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

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

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
#main {
  margin-top: 120px;
}

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

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

.hero .splide__slide.slide01 {
  background-image: url("../images/hero01_pc.jpg");
}

.hero .splide__slide.slide02 {
  background-image: url("../images/hero02_pc.jpg");
}

.hero .splide__slide.slide03 {
  background-image: url("../images/hero03_pc.jpg");
}

.hero .splide__slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 780px;
}

.hero .hero_ttl {
  position: absolute;
  right: 185px;
  bottom: 50%;
  z-index: 1;
  transform: translateY(50%);
  width: 800px;
}

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

.hero .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.hero .splide__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 0 15px;
}

@media (max-width: 800px) {
  .hero .splide__slide img {
    opacity: 1;
  }

  .hero .splide__slide.slide01,
  .hero .splide__slide.slide02,
  .hero .splide__slide.slide03 {
    background: none;
  }

  .hero .splide__slide {
    height: auto;
  }

  .hero .hero_ttl {
    left: 0;
    right: 0;
    bottom: 35px;
    transform: translateY(0);
    width: 100%;
  }

  .hero .splide__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .hero .splide__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 0 15px;
  }
}

.fixed_btn {
  position: fixed;
  right: 46px;
  bottom: 100px;
  z-index: 999;
  width: 267px;
}

@media (max-width: 800px) {
  .fixed_btn {
    right: 15px;
    bottom: 65px;
    width: 115px;
  }
}

/*------------
Components
--------------*/
.t-h2 .txt01 {
  color: var(--color_primary);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
}

.t-h2 .txt02 {
  color: var(--color_text_dark);
  font-size: 2.8125rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.t-h2 {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 60px;
}

@media (max-width: 800px) {
  .t-h2 .txt01 {
    font-size: 1.75rem;
  }

  .t-h2 .txt02 {
    font-size: 1.125rem;
  }

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

.t-h2_02.left {
  text-align: left;
}

.t-h2_02 .en {
  color: var(--color_primary);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.t-h2_02 .jp {
  color: var(--color_text_dark);
  font-size: 2.8125rem;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.t-h2_02 {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 60px;
}

@media (max-width: 800px) {
  .t-h2_02.left {
    text-align: center;
  }

  .t-h2_02 .en {
    font-size: 1.125rem;
  }

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

  .t-h2_02 {
    margin-bottom: 40px;
  }
}

.t-h3_lined .lined::before {
  background: #fff;
  content: "";
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
}

.t-h3_lined .lined::after {
  background: #fff;
  content: "";
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  margin-left: 20px;
}

.t-h3_lined .lined {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}

.t-h3_lined {
  color: var(--color_text_dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
  font-size: 2.8125rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 800px) {
  .t-h3_lined {
    font-size: 1.625rem;
  }
}

.t-btn-wrap {
  margin-top: 30px;
}

.t-btn.small {
  min-width: 160px;
}

.t-btn::after {
  background: url("../images/share/btn_arrow.svg") center/cover no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  right: -20px;
  height: 6px;
  width: 40px;
}

.t-btn:hover {
  opacity: 0.6;
}

.t-btn {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: var(--color_primary);
  color: #fff;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: center;
  padding: 12px 35px;
  position: relative;
  min-width: 260px;
}

@media (max-width: 800px) {
  .t-btn.small {
    width: 100%;
    min-width: none;
  }

  .t-btn::after {
    right: -10px;
  }

  .t-btn {
    width: 100%;
    min-width: none;
  }
}

/*------------
Section
--------------*/
@-webkit-keyframes loop-word {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop-word {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.sec01::before {
  background: #F8F6F2;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 94%;
}

.sec01 .copy .txt01 {
  -webkit-animation: loop-word 30s linear infinite;
  animation: loop-word 30s linear infinite;
}

.sec01 .copy .txt02 {
  -webkit-animation: loop-word 30s linear infinite;
  animation: loop-word 30s linear infinite;
}

.sec01 .copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  color: #3D4A53;
  opacity: 0.3;
  font-size: 10rem;
  line-height: 1;
  position: absolute;
  top: -60px;
  left: 0;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  z-index: 1;
}

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

.sec01 .btn {
  margin-top: 35px;
}

.sec01 {
  margin-top: 160px;
  padding: 150px 0 100px;
  position: relative;
  z-index: 1;
}

/* .sec01-layout::before {
  background: rgba(28, 43, 53, 0.85);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 20%;
} */
.sec01-layout .l-ttl {
  color: var(--color_text_dark);
  font-size: 3.125rem;
  /* letter-spacing: 0.1em; */
  margin-bottom: 50px;
}

.sec01-layout .in-container .l-img {
  padding-top: 10px;
  width: 40%;
}

.sec01-layout .in-container .l-desc .inner {
  margin-left: auto;
  padding-right: 80px;
  max-width: 600px;
}

.sec01-layout .in-container .l-desc {
  width: 50%;
}

.sec01-layout .in-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
  margin: auto;
  width: min(90%, 1600px);
  justify-content: space-around;
}

.sec01-layout {
  padding: 20px 0 100px;
  position: relative;
  z-index: 1;
}

.sec01-subtitle .lined {
  border-bottom: 1px solid var(--color_text_dark);
}

.sec01-subtitle .mini {
  font-size: 1.5625rem;
}

.sec01-subtitle {
  color: var(--color_text_dark);
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 2.8125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 25px;
}

.sec01-merit .item {
  background: #fff;
  border-top: 2px solid #3C4951;
  padding: 40px;
  position: relative;
}

.sec01-merit .en {
  background: #3C4951;
  color: #fff;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  padding: 10px 20px;
  position: absolute;
  top: -52px;
  left: 0;
  width: 143px;
  z-index: 1;
}

.sec01-merit .item-ttl {
  background: #F8F6F2;
  color: #303538;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 6px 20px;
  margin-bottom: 25px;
}

.sec01-merit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4%;
  margin-top: 100px;
  margin-bottom: 40px;
}

.sec02 {
  background: #3D4A53;
  color: #fff;
  padding: 120px 0;
}

.sec02 .t-h2 .txt02 {
  color: #fff;
}


.sec02-list .item:hover {
  opacity: 0.6;
}

.sec02-list .item {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: block;
}

.sec02-list .list-desc .num {
  color: #fff;
  font-size: 3.9375rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 12px;
  opacity: 0.2;
  z-index: 1;
}

.sec02-list .list-desc .arrow {
  position: absolute;
  right: 14px;
  bottom: 15px;
}

.sec02-list .list-desc {
  background: #BF922B;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 10px 30px 10px 40px;
  height: 102px;
}

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

.sec02-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3% 1fr 3% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 3%;
}

.sec03::before {
  background: #1C2B35;
  content: "";
  opacity: 0.85;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 33%;
  z-index: -1;
}

.sec03 {
  padding: 130px 0;
  position: relative;
}

.sec03-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 8%;
  padding-left: calc((90% - 1200px)/2);
  padding-right: 10%;
  margin-left: 5%;
}

.sec03-layout .l-img .name {
  position: absolute;
  left: -28px;
  bottom: 15px;
  z-index: 1;
}

.sec03-layout .l-img .txt01 {
  background: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  padding: 3px 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.sec03-layout .l-img .txt02 {
  background: #fff;
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  padding: 3px 15px;
  margin-top: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.sec03-layout .l-img {
  color: var(--color_text_dark);
  position: relative;
  width: 45%;
}

.sec03-layout .l-img img {
  width: 100%;
}

.sec03-layout .l-desc {
  padding-top: 10px;
  flex: 1;
}

.sec03-layout .sec03-ttl .en {
  color: var(--color_primary);
  font-size: 4.625rem;
  letter-spacing: 0.15em;
}

.sec03-layout .sec03-ttl .jp {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

.sec03-layout .sec03-ttl {
  line-height: 1.5;
  margin-bottom: 40px;
}

.sec03-layout .btn {
  margin-top: 45px;
}

.sec04 .sec04-en {
  opacity: 0.25;
  font-size: 10rem;
  line-height: 1;
  position: absolute;
  top: 110px;
  left: 5%;
  z-index: -1;
}

.sec04 .sec04-bg img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.sec04 .sec04-bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.sec04 {
  clip-path: inset(0);
  position: relative;
  color: #fff;
  padding: 220px 0 0;
  z-index: 1;
}

.sec04-intro .l-ttl .txt {
  font-size: 2.8125rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.sec04-intro .l-ttl .btn {
  margin-top: 50px;
}

.sec04-intro .l-ttl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec04-intro .l-desc {
  padding-top: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec04-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8%;
  position: relative;
  z-index: 1;
}

.sec04-three .l-ttl span {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid;
  display: inline-block;
  padding: 4px 20px;
}

.sec04-three .l-ttl {
  font-size: 2.25rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 50px;
}

.sec04-three .sec04-circles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px 18px;
}

.sec04-three {
  margin: 80px auto 120px;
}

.sec04-layout .t-h3_lined {
  color: #fff;
  margin-bottom: 30px;
}

.sec04-layout {
  padding: 120px 0;
  position: relative;
}

.sec04-flex.reverse .l-img img {
  margin-left: auto;
}

.sec04-flex.reverse .l-desc .inner {
  margin-left: 0;
  margin-right: auto;
}

.sec04-flex.reverse .l-desc {
  padding: 60px 30px 70px 176px;
  margin-left: -88px;
  margin-right: 0;
}

.sec04-flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.sec04-flex .l-img {
  width: 50%;
}

.sec04-flex .l-desc .inner {
  margin-left: auto;
  max-width: 512px;
}

.sec04-flex .l-desc {
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 176px 70px 30px;
  margin: 80px -88px 0 0;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 1;
}

.sec04-flex .l-ttl {
  color: #6D5E40;
  font-size: 1.875rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.sec04-flex .btn {
  margin-top: 20px;
}

.sec04-flex {
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0;
}

.sec04-box .box-ttl {
  font-size: 1.625rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}

.sec04-box .inlist li::before {
  background: var(--color_secondary);
}

.sec04-box .inlist li {
  background: url("../images/icon_check.svg") top 13px left no-repeat;
  padding-left: 30px;
}

.sec04-box .inlist {
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sec04-box {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid;
  padding: 40px 80px 50px;
  margin-top: 70px;
}

.sec05 {
  background: #F8F6F2;
  padding: 120px 0 140px;
}

.sec05-intro .sec05-ttl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec05-intro .txt {
  padding-top: 50px;
  width: 50%;
}

.sec05-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 4%;
  margin-bottom: 40px;
}

.sec05-ttl .en {
  color: var(--color_primary);
  font-size: 1.25rem;
}

.sec05-ttl .jp {
  color: var(--color_text_dark);
  font-size: 2.8125rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.sec05-list .effect {
  position: absolute;
  bottom: -95px;
  right: -85px;
  z-index: -1;
}

.sec05-list .item.item01 {
  background: #3D4A53;
  color: #fff;
}

.sec05-list .item.item02 {
  background: #728397;
  color: #fff;
  margin-top: 25px;
}

.sec05-list .item.item03 {
  background: #65AAD1;
  color: #fff;
  margin-top: 50px;
}

.sec05-list .item.item04 {
  background: #fff;
  margin-top: 75px;
}

.sec05-list .item {
  background: #E8FAFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  padding: 50px 2%;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec05-list .list-ttl .en {
  font-size: 2.25rem;
}

.sec05-list .list-ttl .jp {
  font-size: 1.3125rem;
  margin-top: 3px;
}

.sec05-list .list-ttl {
  line-height: 1.5;
  margin-bottom: 30px;
}

.sec05-list .txt {
  font-size: 1.0625rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.sec05-list .price .txt01 {
  margin-bottom: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec05-list .price .txt02 {
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  line-height: 1.5;
}

.sec05-list .price .txt03 {
  font-size: 1.25rem;
}

.sec05-list .price .txt04 {
  font-size: 1.5rem;
}

.sec05-list .price {
  border-top: 1px solid;
  border-bottom: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 5px;
  padding: 20px 0 8px;
  margin-top: auto;
}

.sec05-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
  position: relative;
  z-index: 1;
  margin: 80px auto;
  width: min(94%, 1600px);
}

.sec06::before {
  background: rgba(248, 246, 242, 0.85);
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 55%;
  width: 100%;
  z-index: -1;
}

.sec06 .t-h3_lined .lined::before {
  background: var(--color_text_dark);
}

.sec06 .t-h3_lined .lined::after {
  background: var(--color_text_dark);
}

.sec06 {
  position: relative;
  padding: 100px 0 120px;
  z-index: 1;
}

.sec06-layout .l-img {
  width: 45%;
}

.sec06-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec06-layout .inprice .single {
  border-bottom: 1px solid rgba(112, 112, 112, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 15px;
  padding: 20px 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.sec06-layout .inprice .type {
  font-size: 1.25rem;
}

.sec06-layout .inprice .price {
  text-align: right;
  font-size: 2.25rem;
}

.sec06-layout .inprice .caption {
  width: 100%;
}

.sec06-layout .inprice+.type-ttl {
  margin-top: 40px;
}

.sec06-layout .inprice .effect {
  margin-right: -15px;
}

.sec06-layout .inprice {
  line-height: 1.5;
}

.sec06-layout .type-ttl {
  background: #3D4A53;
  color: #fff;
  font-size: 1.625rem;
  line-height: 1.5;
  padding: 8px 15px;
  margin-bottom: 15px;
}

.sec06-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
  gap: 0 8%;
  margin-top: 30px;
}

.sec06-list .item:hover {
  opacity: 0.6;
}

.sec06-list .item {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.09);
  display: block;
  text-align: center;
}

.sec06-list .inner {
  padding: 20px 10px;
}

.sec06-list .l-ttl {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 5px;
}

.sec06-list .price .txt {
  margin-right: 10px;
}

.sec06-list .price {
  font-size: 1.25rem;
  line-height: 1.5;
}

.sec06-list .caption {
  font-size: 0.875rem;
  line-height: 1.5;
}

.sec06-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr 4% 1fr 4% 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 4%;
  margin: 80px auto 60px;
}

.sec07 .t-h2_02 .jp {
  color: #fff;
}

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

.sec07 {
  background: #3D4A53;
  color: #fff;
  padding: 120px 0;
  z-index: 1;
}

.sec07-ttl .en {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--color_primary);
}

.sec07-ttl .jp {
  font-size: 2.8125rem;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.sec07-ttl {
  line-height: 1.5;
  margin-bottom: 60px;
}

.sec07_slider_frame .sec07_slider {}

.sec07_slider_frame {
  margin-bottom: 40px;
}

.sec07-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.sec07-list li {
  background-color: #F9F7F4;
  color: #333;
  padding: 20px 10px 10px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  /* aspect-ratio: 1/1; */
  min-height: 220px;
}

.sec07-list .list-img {
  margin: 0 auto 15px;
  width: fit-content;
}

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

  .sec07-list li {
    display: grid;
    place-content: center;
    padding: 15px;
    font-size: 15px;
    aspect-ratio: 1/1;
    min-height: auto;
  }

  .sec07-list .list-img {
    margin: 0 auto 10px;
    width: 40%;
  }
}

.sec08 {
  position: relative;
  margin: 120px auto;
}

.sec08-tabs .tab-item.is-active,
.sec08-tabs .tab-item:hover {
  background: var(--color_primary);
  color: #fff;
}

.sec08-tabs .tab-item {
  background: #fff;
  border: 1px solid;
  color: #333;
  cursor: pointer;
  font-size: 1.625rem;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  width: min(48%, 400px);
}

.sec08-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 20px;
  margin-bottom: 50px;
}

.sec08-tab-contents .tab-content:first-child {
  display: block;
}

.sec08-tab-contents .tab-content {
  display: none;
}

.sec08-tab-contents .btn {
  text-align: center;
  margin-top: 50px;
}

.tab-content-list .list-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.tab-content-list .list-img {
  height: 480px;
  margin-bottom: 10px;
}

.tab-content-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sec09 {
  background: #F8F6F2;
  padding: 120px 0;
}

.sec09-faq .single+.single {
  margin-top: 25px;
}

.sec09-faq .single {
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.09);
  padding: 30px 50px;
}

.sec09-faq .faq-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 15px;
  cursor: pointer;
  position: relative;
}

.sec09-faq .faq-q {
  background: url("../images/t_que.svg") center/contain no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 54px;
  width: 54px;
}

.sec09-faq dt {
  font-size: 1.625rem;
  line-height: 1.5;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
}

.sec09-faq .faq-toggle {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.sec09-faq .faq-toggle::before,
.sec09-faq .faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color_black);
  -webkit-transition: -webkit-transform 0.2s var(--ease);
  transition: -webkit-transform 0.2s var(--ease);
  transition: transform 0.2s var(--ease);
  transition: transform 0.2s var(--ease), -webkit-transform 0.2s var(--ease);
}

.sec09-faq .faq-toggle {
  /* 縦線（プラスの縦 → 開いたとき90degで横線になりマイナスに） */
}

.sec09-faq .faq-toggle::before {
  width: 2px;
  height: 14px;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.sec09-faq .faq-toggle {
  /* 横線（プラスの横 / 開いたときはマイナス） */
}

.sec09-faq .faq-toggle::after {
  width: 14px;
  height: 2px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.sec09-faq .single.is-open .faq-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.sec09-faq dd {
  display: none;
  padding: 0 0 0 69px;
  line-height: 1.5;
  margin-top: 20px;
}

.sec09-faq {
  margin-bottom: 50px;
}

.sec10 {
  margin: 120px auto 100px;
}

.sec10-layout .l-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec10-layout .l-ttl .en {
  color: var(--color_primary);
  font-size: 1.875rem;
  letter-spacing: 0.15em;
}

.sec10-layout .l-ttl .jp {
  color: var(--color_text_dark);
  font-size: 1.125rem;
  margin-top: 8px;
}

.sec10-layout .l-ttl {
  line-height: 1.5;
  margin-bottom: 50px;
}

.sec10-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 50px;
}

.sec11 {
  background: url("../images/sec11_bg.jpg") center/cover no-repeat;
  padding: 120px 0;
}

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

.sec11-item .l-img {
  width: 34%;
}

.sec11-item .l-desc {
  padding: 40px 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec11-item .item-ttl .en {
  color: var(--color_primary);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
}

.sec11-item .item-ttl .jp {
  color: var(--color_text_dark);
  font-size: 1.625rem;
  margin-top: 3px;
}

.sec11-item .item-ttl {
  line-height: 1.5;
  margin-bottom: 30px;
}

.sec11-item {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px 0;
}

.sec12 {
  padding: 110px 0;
}

.sec12-layout {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 50px;
  padding: 0 0 0 5%;
}

.sec12-layout .l-img {}

.sec12-layout .l-img img {
  width: 100%;
}

.sec12-layout .inner {
  max-width: 686px;
}

.sec12-layout .t-h2 {
  text-align: left;
  margin-bottom: 50px;
}

.sec12-layout .l-box {
  border: 1px solid #1A1A1A;
  padding: 40px 20px;
  margin-bottom: 50px;
}

.sec12-layout .l-btn {
  margin: 50px 0;
}

.sec12-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  font-size: 1.25rem;
}

.sec12-list li {
  background: url(../images/icon_check.svg) top 13px left no-repeat;
  padding-left: 30px;
}

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

  .sec12-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 5%;
  }

  .sec12-layout .l-img {}

  .sec12-layout .l-img img {
    width: 100%;
  }

  .sec12-layout .inner {
    max-width: 686px;
  }

  .sec12-layout .t-h2 {
    text-align: left;
    margin-bottom: 30px;
  }

  .sec12-layout .l-box {
    border: 1px solid #1A1A1A;
    padding: 20px;
    margin-bottom: 30px;
  }

  .sec12-layout .l-btn {
    margin: 30px 0;
  }

  .sec12-list {
    gap: 10px;
    flex-direction: column;
    font-size: 1.1rem;
  }

  .sec12-list li {
    background: url(../images/icon_check.svg) top 9px left no-repeat;
  }
}


@media (max-width: 800px) {
  .sec01 .copy {
    font-size: 5rem;
    top: -40px;
  }

  .sec01 .btn {
    margin-top: 20px;
  }

  .sec01 {
    margin-top: 120px;
    padding: 80px 0;
  }

  .sec01-layout::before {
    display: none;
  }

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

  .sec01-layout .in-container .l-img {
    padding: 0;
    width: 100%;
  }

  .sec01-layout .in-container .l-desc .inner {
    margin: 30px auto 0;
    padding: 0;
    max-width: none;
  }

  .sec01-layout .in-container .l-desc {
    width: 100%;
  }

  .sec01-layout .in-container {
    display: block;
    margin: auto;
    width: 90%;
  }

  .sec01-layout {
    padding: 30px 0;
  }

  .sec01-subtitle .mini {
    font-size: 1rem;
  }

  .sec01-subtitle {
    font-size: 1.5625rem;
    margin: 15px auto 0;
    width: 90%;
  }

  .sec01-merit .item+.item {
    margin-top: 60px;
  }

  .sec01-merit .item {
    padding: 30px 5%;
  }

  .sec01-merit .en {
    padding: 8px 50px 8px 20px;
    top: -43px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .sec01-merit .item-ttl {
    font-size: 1.25rem;
    padding: 3px 15px;
    margin-bottom: 15px;
  }

  .sec01-merit {
    display: block;
    margin: 80px auto 30px;
  }

  .sec02 {
    padding: 60px 0;
  }

  .sec02-list .list-desc .num {
    font-size: 3.125rem;
  }

  .sec02-list .list-desc {
    padding: 20px 30px 20px 40px;
    height: auto;
  }

  .sec02-list .list-ttl {
    font-size: 1.125rem;
  }

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

  .sec03::before {
    display: none;
  }

  .sec03 {
    padding: 60px 0;
  }

  .sec03-layout .l-img .name {
    left: -15px;
  }

  .sec03-layout .l-img .txt01 {
    font-size: 1rem;
    padding: 3px 15px;
  }

  .sec03-layout .l-img .txt02 {
    font-size: 1.25rem;
    padding: 3px 15px;
    margin-top: 3px;
  }

  .sec03-layout .l-img {
    width: 100%;
  }

  .sec03-layout .l-desc {
    padding: 25px 5% 0;
    width: 100%;
  }

  .sec03-layout .sec03-ttl .en {
    font-size: 3.125rem;
  }

  .sec03-layout .sec03-ttl .jp {
    font-size: 1.25rem;
    margin-top: 5px;
  }

  .sec03-layout .sec03-ttl {
    margin-bottom: 30px;
  }

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

  .sec03-layout {
    display: block;
    padding: 0;
    margin: 0;
  }

  .sec04 .sec04-en {
    font-size: 5rem;
    top: 80px;
    left: 5%;
  }

  .sec04 {
    padding: 130px 0 0;
  }

  .sec04-intro .l-ttl .txt {
    font-size: 1.625rem;
  }

  .sec04-intro .l-desc {
    margin: 30px auto 30px;
    padding: 0;
  }

  .sec04-intro {
    display: block;
  }

  .sec04-three .l-ttl span {
    padding: 3px 15px;
  }

  .sec04-three .l-ttl {
    font-size: 1.625rem;
    margin-bottom: 40px;
  }

  .sec04-three .circle {
    width: 60%;
  }

  .sec04-three .sec04-circles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 15px 0;
  }

  .sec04-three {
    margin: 50px auto;
  }

  .sec04-layout .t-h3_lined {
    margin: 0 auto 30px;
    width: 90%;
  }

  .sec04-layout {
    padding: 60px 0;
  }

  .sec04-flex.reverse .l-img img {
    margin: auto;
  }

  .sec04-flex.reverse .l-desc .inner {
    margin: auto;
  }

  .sec04-flex.reverse .l-desc {
    padding: 30px 5%;
    margin: auto;
  }

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

  .sec04-flex .l-desc .inner {
    margin: auto;
    max-width: none;
  }

  .sec04-flex .l-desc {
    padding: 30px 5%;
    margin: auto;
  }

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

  .sec04-flex .btn {
    margin-top: 15px;
  }

  .sec04-flex {
    display: block;
  }

  .sec04-box .box-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .sec04-box .inlist li {
    background-position: top 9px left;
  }

  .sec04-box .inlist {
    font-size: 1.125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 0.5em 0;
  }

  .sec04-box {
    padding: 30px 5%;
    margin-top: 40px;
  }

  .sec05 {
    padding: 60px 0;
  }

  .sec05-intro .txt {
    padding: 0;
    width: 100%;
  }

  .sec05-intro {
    display: block;
    margin-bottom: 30px;
  }

  .sec05-ttl .en {
    font-size: 1.25rem;
  }

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

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

  .sec05-list .effect {
    position: absolute;
    bottom: -95px;
    right: -85px;
    z-index: -1;
  }

  .sec05-list .item.item01,
  .sec05-list .item.item02,
  .sec05-list .item.item03,
  .sec05-list .item.item04 {
    margin-top: 0;
  }

  .sec05-list .item {
    gap: 15px 0;
    padding: 30px 12%;
  }

  .sec05-list .list-ttl .en {
    font-size: 1.875rem;
  }

  .sec05-list .list-ttl .jp {
    font-size: 1.125rem;
  }

  .sec05-list .list-ttl {
    margin-bottom: 20px;
  }

  .sec05-list .txt {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .sec05-list .price .txt01 {
    margin-bottom: 0;
  }

  .sec05-list .price {
    padding: 10px 0 15px;
  }

  .sec05-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 0;
    margin: 0 auto 30px;
    width: 90%;
  }

  .sec06::before {
    height: 33%;
  }

  .sec06 {
    padding: 60px 0;
  }

  .sec06-layout .l-img {
    margin: 0 auto 30px;
    width: 100%;
  }

  .sec06-layout .inprice .single {
    gap: 0 5px;
    padding: 15px 0;
  }

  .sec06-layout .inprice .type {
    font-size: 1.125rem;
  }

  .sec06-layout .inprice .price {
    font-size: 1.875rem;
  }

  .sec06-layout .inprice .effect {
    margin: 0 0 0 auto;
    width: 70%;
  }

  .sec06-layout .type-ttl {
    font-size: 1.25rem;
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  .sec06-layout {
    display: block;
  }

  .sec06-list .inner {
    padding: 15px 5px;
  }

  .sec06-list .l-ttl {
    font-size: 1rem;
  }

  .sec06-list .price {
    font-size: 1.125rem;
  }

  .sec06-list .caption {
    font-size: 0.8125rem;
  }

  .sec06-list {
    -ms-grid-columns: 1fr 4% 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 4%;
    margin: 50px auto;
  }

  .sec07::before {
    display: none;
  }

  .sec07 .btn {
    margin-top: 30px;
  }

  .sec07 {
    background: #3D4A53;
    padding: 60px 0;
  }

  .sec07_slider {
    margin-bottom: 30px;
  }

  .sec08 {
    margin: 60px auto;
  }

  .sec08-tabs .tab-item {
    font-size: 0.8125rem;
    padding: 5px 10px;
    width: 48%;
  }

  .sec08-tabs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 0;
  }

  .sec08-tab-contents .btn {
    margin-top: 30px;
  }

  .tab-content-list .list-img {
    height: 200px;
  }

  .tab-content-list .item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    padding-bottom: 10px;
    width: 240px;
  }

  .tab-content-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    gap: 0 4%;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .sec09 {
    padding: 60px 0;
  }

  .sec09-faq .single {
    padding: 30px 5%;
  }

  .sec09-faq .faq-q {
    height: 34px;
    width: 34px;
  }

  .sec09-faq dt {
    font-size: 1.25rem;
  }

  .sec09-faq dd {
    padding: 0 0 0 45px;
  }

  .sec09-faq {
    margin-bottom: 30px;
  }

  .sec10 {
    margin: 60px auto;
  }

  .sec10-layout .l-body {
    margin: 30px auto;
  }

  .sec10-layout .l-ttl .en {
    font-size: 1.375rem;
  }

  .sec10-layout .l-ttl .jp {
    font-size: 1rem;
  }

  .sec10-layout .l-ttl {
    margin-bottom: 0;
  }

  .sec10-layout {
    display: block;
  }

  .sec11 {
    padding: 60px 0;
  }

  .sec11-item .l-img {
    width: 100%;
  }

  .sec11-item .l-desc {
    padding: 30px 5%;
  }

  .sec11-item .item-ttl .en {
    font-size: 1.125rem;
  }

  .sec11-item .item-ttl .jp {
    font-size: 1.375rem;
  }

  .sec11-item .item-ttl {
    margin-bottom: 20px;
  }

  .sec11-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 0;
  }
}

/*------------
Posts
--------------*/
.post-top-news a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--color_border);
  padding: 15px 0;
}

.post-top-news time {
  color: #aaa;
  font-size: 0.9375rem;
  display: inline-block;
  white-space: nowrap;
}

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

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

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

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

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

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

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

.post-top-blog .post-img {
  border: 1px solid #BF922B;
  overflow: hidden;
  margin-bottom: 10px;
}

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

.post-top-blog time {
  color: #778086;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1;
  margin-bottom: 8px;
}

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

.post-top-blog .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
}

.post-top-blog .category {
  text-box: trim-both cap alphabetic;
  color: #3D4A53;
  display: inline-block;
  font-size: 0.6875rem;
  line-height: 1;
}

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

@media (max-width: 800px) {
  .post-top-blog .single {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    padding-bottom: 15px;
  }

  .post-top-blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-header::before {
  background: url(../images/share/page-ttl.png) center/cover no-repeat;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
  z-index: -1;
}

.page-header .page-ttl {
  margin: auto;
  text-shadow: 2px 2px 1px #fff;
  width: 80%;
}

.page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0 60px;
  line-height: 1.5;
  margin-top: 120px;
  height: 650px;
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .page-header::before {
    background-size: cover;
    height: 180px;
    margin: auto;
    position: relative;
    width: 90%;
  }

  .page-header .page-ttl {
    margin: 30px auto;
    width: 90%;
  }

  .page-header {
    display: block;
    padding: 0;
    margin-top: 0;
    height: auto;
  }
}

.page-ttl [lang=en] {
  color: var(--color_primary);
  text-box: trim-both cap alphabetic;
  text-transform: capitalize;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
}

.page-ttl .jp {
  font-size: 3.125rem;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.page-ttl {
  line-height: 1.5;
}

@media (max-width: 800px) {
  .page-ttl [lang=en] {
    font-size: 1.25rem;
  }

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

.breadcrumb {
  margin: 10px auto;
  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;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

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

.u-contents {
  line-height: 2;
  position: relative;
  padding: 100px 0;
  word-break: break-all;
  z-index: 1;
}

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

.u-h2.nomargin,
.postdata h2.nomargin {
  margin-bottom: 0;
}

.u-h2::after,
.postdata h2::after {
  background: var(--color_primary);
  content: "";
  display: block;
  height: 2px;
  margin: 20px auto 0;
  width: 60px;
}

.u-h2,
.postdata h2 {
  color: var(--color_text_dark);
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 50px;
}

.u-h3,
.postdata h3 {
  border-bottom: 1px solid #39464F;
  color: var(--color_text_dark);
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

.u-h4::before,
.postdata h4::before {
  background: #3D4A53;
  content: "";
  display: block;
  height: 28px;
  width: 4px;
  position: absolute;
  top: 13px;
  left: 0;
}

.u-h4,
.postdata h4 {
  color: var(--color_text_dark);
  font-size: 1.5625rem;
  margin-bottom: 20px;
  padding-left: 14px;
  position: relative;
}

.u-h4.nomargin,
.postdata h4.nomargin {
  margin-bottom: -80px;
}

@media (max-width: 800px) {

  .u-h2::after,
  .postdata h2::after {
    margin-top: 5px;
    width: 50px;
  }

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

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

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

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

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

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

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

.hidden {
  overflow: hidden;
}

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

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

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

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

.list-disc li::before {
  content: "";
  display: block;
  height: 8px;
  background: var(--color_primary);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  z-index: 1;
}

.list-disc li {
  list-style-type: none;
  padding-left: 1em;
  line-height: 1.5;
  position: relative;
}

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

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

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

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

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

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

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

.list-price li+li {
  margin-top: 10px;
}

.list-price li .intro {
  border-bottom: 1px dotted var(--color01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 0 5px;
}

.list-price li .desc {
  font-size: 0.8125rem;
  padding: 5px 0 0;
}

.list-price .ttl {
  font-family: var(--font01);
}

@media (max-width: 800px) {
  .list-price li+li {
    margin-top: 5px;
  }

  .list-price li .intro span+span {
    text-align: right;
  }

  .list-price li .intro {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-price li .desc {
    color: #747474;
    font-size: 0.8125rem;
    padding: 5px 0 0;
  }
}

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

@media (max-width: 800px) {
  .table-scroll-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.l-imgR {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.l-imgL.autoimg .l-img,
.l-imgR.autoimg .l-img {
  width: auto;
}

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

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

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

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

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

@media (max-width: 800px) {

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

  .l-imgR,
  .l-imgL {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

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

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

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

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

/*------------
Add
--------------*/
.u-em02 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F8F6F2));
  background: linear-gradient(transparent 60%, #F8F6F2 60%);
  font-weight: bold;
}

.u-btn::after {
  background: url("../images/share/btn_arrow.svg") center/cover no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  right: -20px;
  height: 6px;
  width: 40px;
}

.u-btn:hover {
  opacity: 0.6;
}

.u-btn {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: var(--color_primary);
  color: #fff;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: center;
  padding: 12px 35px;
  position: relative;
}

@media (max-width: 800px) {
  .u-btn::after {
    right: -10px;
  }

  .u-btn {
    width: 100%;
  }
}

.list-anchor-link.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

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

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

.list-anchor-link a::before {
  background: var(--color_primary);
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  height: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 10px;
}

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

.list-anchor-link a {
  display: inline-block;
  line-height: 1.5;
  position: relative;
  padding-right: 25px;
}

.list-anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

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

  .list-anchor-link {
    display: block;
  }
}

.list-anchor-link02.col2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.list-anchor-link02.col3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.list-anchor-link02.col4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

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

.list-anchor-link02 a:hover {
  -webkit-box-shadow: 0 0 10px var(--color01);
  box-shadow: 0 0 10px var(--color01);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.list-anchor-link02 a {
  background: url(../images/share/anchor_arrow.svg) center right 18px/auto no-repeat var(--color_u02);
  border-radius: 5px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: var(--font01);
  letter-spacing: 0.1em;
  display: block;
  font-weight: bold;
  padding: 20px 15px;
  position: relative;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  text-align: left;
}

.list-anchor-link02 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}

@media (max-width: 800px) {
  .list-anchor-link02 li+li {
    margin-top: 15px;
  }

  .list-anchor-link02 a {
    background-position: center right 8px;
    padding: 20px 40px;
    width: 100%;
  }

  .list-anchor-link02 {
    display: block;
  }
}

.u-intro-bg::after {
  background: #F8F6F2;
  content: "";
  display: block;
  height: 64%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 74%;
}

.u-intro-bg {
  padding-bottom: 140px;
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .u-intro-bg::after {
    width: 88%;
  }

  .u-intro-bg {
    padding-bottom: 50px;
  }
}

.u-intro-layout .l-img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.u-intro-layout .l-desc {
  width: 50%;
}

.u-intro-layout .l-ttl::after {
  background: var(--color_primary);
  content: "";
  display: block;
  height: 2px;
  margin: 10px auto 0 0;
  width: 60px;
}

.u-intro-layout .l-ttl {
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 40px;
}

.u-intro-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  gap: 55px;
  position: relative;
}

@media (max-width: 800px) {
  .u-intro-layout .l-img {
    padding: 0;
  }

  .u-intro-layout .l-desc {
    margin: 30px auto 0;
    width: 100%;
  }

  .u-intro-layout .l-ttl {
    font-size: 1.5625rem;
    margin-bottom: 30px;
  }

  .u-intro-layout {
    display: block;
  }
}

.u-caption-layout+.u-caption-layout {
  margin-top: 80px;
}

.u-caption-layout .num {
  color: #68C1D7;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: -30px;
  right: 40px;
  z-index: 1;
}

.u-caption-layout .en {
  color: #fff;
  opacity: 0.6;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  bottom: -15px;
  left: 20px;
  z-index: 1;
}

.u-caption-layout .inlayout .l-img {
  width: 34%;
}

.u-caption-layout .inlayout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.u-caption-layout .inlayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.u-caption-layout .l-ttl {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}

.u-caption-layout {
  background: var(--color_bg_light);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

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

  .u-caption-layout .num {
    font-size: 1.875rem;
    top: -15px;
    right: 20px;
  }

  .u-caption-layout .en {
    font-size: 3.125rem;
    bottom: -10px;
    left: 10px;
  }

  .u-caption-layout .inlayout .l-img {
    margin: 0 auto 30px;
    width: 100%;
  }

  .u-caption-layout .inlayout {
    display: block;
  }

  .u-caption-layout .l-ttl {
    font-size: 1.25rem;
  }

  .u-caption-layout {
    padding: 8% 8% 15%;
    margin-top: 30px;
  }
}

.u-faq .single:last-child {
  border-bottom: 1px solid var(--color_border);
}

.u-faq .single {
  border-top: 1px solid var(--color_border);
  padding: 30px 40px;
}

.u-faq dt {
  background: url(../images/share/que.svg) no-repeat;
  background-position: top 3px left;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 5px 0 0 50px;
  position: relative;
  min-height: 40px;
  margin-bottom: 15px;
}

.u-faq dd {
  background: url(../images/share/ans.svg) no-repeat;
  background-position: top 3px left;
  padding: 5px 0 0 50px;
}

@media (max-width: 800px) {
  .u-faq .single {
    padding: 20px 15px;
  }

  .u-faq dt {
    background-position: top 6px left;
    font-size: 1.125rem;
  }
}

.list-grid.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.list-grid.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

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

.list-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (max-width: 800px) {

  .list-grid.col2,
  .list-grid.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-grid.col4 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .list-grid {
    gap: 20px;
  }
}

.list-card.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}

.list-card.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

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

.list-card.flow .item:not(:last-child)::after {
  background: var(--color01);
  content: "";
  display: block;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -6.5%;
  margin: auto;
  width: 12px;
}

.list-card .num span {
  color: var(--color01);
  display: inline-block;
  font-size: 1.875rem;
  line-height: 1;
  font-family: var(--font02);
  letter-spacing: 0;
  font-optical-sizing: none;
  letter-spacing: 0;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}

.list-card .num {
  position: relative;
}

.list-card .item.numbered .num {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
  font-family: var(--font02);
  letter-spacing: 0;
  font-optical-sizing: none;
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 1;
}

.list-card .item.numbered {
  position: relative;
  padding-bottom: 160px;
}

.list-card .item.fill {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.list-card .item {
  background: var(--color_bg_light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding: 25px;
  gap: 15px;
}

.list-card .btn {
  margin-top: auto;
}

.list-card .u-btn {
  width: 100%;
}

.list-card .list-img {
  text-align: center;
}

.list-card .list-ttl {
  font-size: 1.25rem;
  text-align: center;
}

.list-card .list-btn {
  text-align: center;
  margin-top: auto;
}

.list-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (max-width: 800px) {

  .list-card.col2,
  .list-card.col3,
  .list-card.col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-card.col3.spcol2 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .list-card.col5 .item {
    padding: 10px;
  }

  .list-card.col5 .list-ttl {
    font-size: 1.3rem;
  }

  .list-card.col5 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .list-card.flow .item:not(:last-child)::after {
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    height: 12px;
    position: absolute;
    top: auto;
    bottom: -30px;
    right: 0;
    left: 0;
    width: 24px;
  }

  .list-card.flow {
    gap: 50px 0;
  }

  .list-card.spsmall .list-img {
    margin-left: auto;
    margin-right: auto;
    width: 60%;
  }

  .list-card .item.fill {
    grid-column: auto;
  }

  .list-card .item.numbered .num {
    font-optical-sizing: none;
    font-size: 3.75rem;
    right: 15px;
    bottom: 15px;
  }

  .list-card .item.numbered {
    padding-bottom: 100px;
  }

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

.list-card02.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}

.list-card02.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

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

.list-card02 .item {
  background: #fff;
  border: 1px solid var(--color_primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
}

.list-card02 .num span {
  background: var(--color01);
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-family: var(--font01);
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 3px 20px;
}

.list-card02 .num {
  margin-bottom: 10px;
  text-align: center;
}

.list-card02 .list-ttl {
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: var(--font01);
  letter-spacing: 0.05em;
  text-align: center;
}

.list-card02 .list-logo {
  background: #fff;
  padding: 20px 15px;
  margin-bottom: 15px;
  text-align: center;
}

.list-card02 .list-img {
  text-align: center;
}

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

.list-card02 .list-txt {
  margin-inline: auto;
  width: 84%;
}

.list-card02 .list-btn {
  text-align: center;
  margin-top: auto;
}

.list-card02 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (max-width: 800px) {

  .list-card02.col2,
  .list-card02.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-card02 .num span {
    display: inline-block;
    background: var(--color01);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.5;
    font-family: var(--font02);
    letter-spacing: 0;
    font-optical-sizing: none;
    padding: 0 15px;
  }

  .list-card02 .num {
    text-align: center;
  }

  .list-card02 .list-logo {
    margin-bottom: 0;
  }

  .list-card02 .list-txt {
    width: 100%;
  }
}

.list-card03.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}

.list-card03.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

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

.list-card03 .item {
  background: #fff;
  border: 1px solid var(--color_primary);
}

.list-card03 .inner {
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.list-card03 .list-ttl {
  background: var(--color_primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}

.list-card03 .list-logo {
  background: #fff;
  padding: 20px 15px;
  margin-bottom: 15px;
  text-align: center;
}

.list-card03 .list-img {
  text-align: center;
}

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

.list-card03 .list-txt {
  margin-inline: auto;
  width: 84%;
}

.list-card03 .list-btn {
  text-align: center;
  margin-top: auto;
}

.list-card03 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (max-width: 800px) {

  .list-card03.col2,
  .list-card03.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-card03 .num span {
    display: inline-block;
    background: var(--color01);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.5;
    font-family: var(--font02);
    letter-spacing: 0;
    font-optical-sizing: none;
    padding: 0 15px;
  }

  .list-card03 .num {
    text-align: center;
  }

  .list-card03 .list-logo {
    margin-bottom: 0;
  }

  .list-card03 .list-txt {
    width: 100%;
  }
}

.list-card04 .item {
  background: var(--color_bg_light);
  border-radius: 15px;
  padding: 25px;
}

.list-card04 .num span {
  font-size: 1.125rem;
}

.list-card04 .num {
  color: var(--color_primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  gap: 5px;
  margin-bottom: 8px;
}

.list-card04 .list-ttl {
  font-size: 1.25rem;
  text-align: center;
}

.list-card04 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}

@media (max-width: 800px) {
  .list-card04 .item {
    padding: 5% 8% 6%;
  }

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

  .list-card04 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.list-flow-01.noarrow .item::after {
  display: none;
}

.list-flow-01.col2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.list-flow-01.col3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.list-flow-01 .item::after {
  background: var(--color_secondary);
  content: "";
  clip-path: polygon(0% 0%, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  right: -22px;
  height: 24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
}

.list-flow-01 .item {
  background: var(--color_bg_light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 15px;
  padding: 25px;
  position: relative;
}

.list-flow-01 .item:last-child::after {
  display: none;
}

.list-flow-01 .num span {
  color: var(--color_primary);
  display: inline-block;
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1;
}

.list-flow-01 .num {
  position: absolute;
  top: -15px;
  left: 25px;
  z-index: 1;
}

.list-flow-01 .list-ttl {
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
}

.list-flow-01 .list-img {
  text-align: center;
}

.list-flow-01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3% 1fr 3% 1fr 3% 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 3%;
  padding-top: 20px;
}

@media (max-width: 800px) {

  .list-flow-01.col2,
  .list-flow-01.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-flow-01 .num {
    top: -18px;
    left: 25px;
  }

  .list-flow-01 .item::after {
    clip-path: polygon(0% 0%, 100% 0, 50% 100%);
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: -40px;
    margin: auto;
    height: 12px;
    width: 25px;
  }

  .list-flow-01 .item {
    padding: 20px;
  }

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

.list-flow-02 .flow+.flow {
  margin-top: 30px;
}

.list-flow-02 .flow:not(:last-child)::before {
  background: var(--color_primary);
  content: "";
  display: block;
  position: absolute;
  top: 70px;
  left: 34px;
  bottom: 0;
  margin: auto;
  width: 1px;
  z-index: -1;
}

.list-flow-02 .flow: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: 30px;
}

.list-flow-02 .flow {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px 50px 1fr;
  grid-template-columns: 70px 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  padding-bottom: 50px;
  min-height: 150px;
}

.list-flow-02 .num .txt01 {
  font-optical-sizing: none;
  font-size: 0.75rem;
  line-height: 1;
}

.list-flow-02 .num .txt02 {
  font-size: 1.875rem;
  line-height: 1;
  font-weight: bold;
  margin-top: 3px;
}

.list-flow-02 .num {
  color: var(--color_primary);
  position: relative;
  text-align: center;
  z-index: 1;
}

.list-flow-02 .wrap .flow-img {
  width: 35%;
}

.list-flow-02 .wrap .flow-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 10px;
}

.list-flow-02 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
  gap: 50px;
}

.list-flow-02 .flow-ttl {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.list-flow-02 .inbox {
  background: var(--color_bg_light);
  border-radius: 15px;
  padding: 25px;
  margin-top: 15px;
}

@media (max-width: 800px) {
  .list-flow-02 .flow:not(:last-child)::before {
    top: 50px;
    left: 24px;
  }

  .list-flow-02 .flow:not(:last-child)::after {
    left: 20px;
  }

  .list-flow-02 .flow {
    -ms-grid-columns: 50px 15px 1fr;
    grid-template-columns: 50px 1fr;
    gap: 15px;
    padding-bottom: 30px;
  }

  .list-flow-02 .num .txt01 {
    font-size: 0.75rem;
  }

  .list-flow-02 .num .txt02 {
    font-size: 1.875rem;
  }

  .list-flow-02 .num {
    padding-top: 5px;
  }

  .list-flow-02 .wrap .flow-img img {
    margin-inline: auto;
  }

  .list-flow-02 .wrap .flow-img {
    width: 100%;
  }

  .list-flow-02 .wrap .flow-desc {
    padding: 0;
  }

  .list-flow-02 .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 20px;
  }

  .list-flow-02 .flow-ttl {
    margin-bottom: 10px;
  }

  .list-flow-02 .inbox {
    padding: 15px;
  }
}

.list-flow-03 .flow:not(:last-child)::after {
  background: url("../images/share/flow_down.svg") center/cover no-repeat;
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  height: 45px;
  width: 45px;
}

.list-flow-03 .flow:not(:first-child) {
  padding-top: 50px;
}

.list-flow-03 .flow {
  border-bottom: 1px solid var(--color_primary);
  position: relative;
  padding-bottom: 50px;
}

.list-flow-03 .flow-ttl .step {
  background: var(--color_primary);
  font-size: 0.75rem;
  color: #fff;
  padding: 0 10px;
  margin-top: 8px;
  white-space: nowrap;
}

.list-flow-03 .flow-ttl {
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.list-flow-03 .wrap .flow-img {
  width: 35%;
}

.list-flow-03 .wrap .flow-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 10px;
}

.list-flow-03 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
  gap: 50px;
}

.list-flow-03 {
  border: 1px solid var(--color_primary);
  border-radius: 15px;
  padding: 50px;
}

@media (max-width: 800px) {
  .list-flow-03 .flow {
    border-bottom: 1px solid var(--color_primary);
    position: relative;
    padding-bottom: 50px;
  }

  .list-flow-03 .flow-ttl .step {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }

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

  .list-flow-03 .wrap .flow-img img {
    margin-inline: auto;
  }

  .list-flow-03 .wrap .flow-img {
    width: 100%;
  }

  .list-flow-03 .wrap .flow-desc {
    margin: 15px auto 0;
    padding: 0;
  }

  .list-flow-03 .wrap {
    display: block;
  }

  .list-flow-03 {
    padding: 30px;
  }
}

.list-flow-04 .flow:not(:last-child)::before {
  background: url("../images/share/arrow_down.svg") center/cover no-repeat #fff;
  content: "";
  height: 50px;
  width: 10px;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

.list-flow-04 .flow+.flow {
  margin-top: 60px;
}

.list-flow-04 .flow {
  border: 1px solid var(--color_primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 20px 40px 0;
  position: relative;
}

.list-flow-04 .num .txt01 {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.5;
}

.list-flow-04 .num .txt02 {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.5;
}

.list-flow-04 .num {
  color: var(--color_primary);
  padding: 0 30px;
  text-align: center;
  position: relative;
  white-space: nowrap;
  width: 120px;
}

.list-flow-04 .flow-content {
  border-left: 1px solid #ccc;
  padding-left: 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.list-flow-04 .inlayout.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
}

.list-flow-04 .inlayout .l-img.small {
  width: 25%;
}

.list-flow-04 .inlayout .l-img {
  text-align: center;
  width: min(250px, 30%);
}

.list-flow-04 .inlayout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.list-flow-04 .inlayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 50px;
}

.list-flow-04 .flow-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .list-flow-04 .flow {
    padding: 20px 15px 40px 0;
  }

  .list-flow-04 .num .txt02 {
    font-size: 1.25rem;
  }

  .list-flow-04 .num {
    padding: 0 20px;
    width: 70px;
  }

  .list-flow-04 .flow-content {
    padding-left: 20px;
  }

  .list-flow-04 .inlayout .l-img.small {
    width: 100%;
  }

  .list-flow-04 .inlayout .l-img {
    width: 100%;
  }

  .list-flow-04 .inlayout .l-desc {
    margin: 30px auto 0;
  }

  .list-flow-04 .inlayout {
    display: block;
  }

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

.l-box01 .box-ttl {
  font-size: 1.875rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
}

.l-box01 .indl dt {
  font-weight: bold;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.l-box01 .indl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
}

.l-box01 {
  background: #fff;
  border: 1px solid #CACACA;
  padding: 3% 5%;
  position: relative;
}

@media (max-width: 800px) {
  .l-box01 .large-ttl {
    font-size: 1.25rem;
  }

  .l-box01 .box-ttl {
    font-size: 1rem;
  }

  .l-box01 .indl dd+dt {
    margin-top: 10px;
  }

  .l-box01 .indl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .l-box01 .inlist.col2,
  .l-box01 .inlist.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .l-box01 .inlist .list-ttl {
    font-size: 1.125rem;
  }

  .l-box01 {
    padding: 30px;
  }
}

.l-box02.has-icon {
  margin-top: 100px;
}

.l-box02 .box-icon {
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 103px;
}

.l-box02 .box-ttl {
  color: var(--color01);
  font-size: 1.6875rem;
  line-height: 1.8;
  font-family: var(--font01);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.l-box02 {
  background: var(--color_bg_light);
  padding: 50px;
  position: relative;
}

@media (max-width: 800px) {
  .l-box02.has-icon {
    margin-top: 50px;
  }

  .l-box02 .box-icon {
    top: -30px;
    width: 50px;
  }

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

  .l-box02 {
    padding: 30px;
  }
}

.l-box03 .box-ttl {
  background: url("../images/share/caution.svg") top 3px left/25px auto no-repeat;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 35px;
  margin-bottom: 15px;
}

.l-box03 .list-disc li::before {
  background: #fff;
}

.l-box03 {
  background: var(--color_primary);
  color: #fff;
  padding: 30px;
}

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

.u-box01 .en {
  color: #3C84C2;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 40px;
  z-index: 1;
}

.u-box01 .box-ttl {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}

.u-box01 {
  background: -webkit-gradient(linear, left bottom, right top, from(#fff), color-stop(25.56%, #eefbfa), color-stop(44.89%, #e5faf3), color-stop(66.67%, #cff3f4), to(#beedf8));
  background: linear-gradient(to top right, #fff 0%, #eefbfa 25.56%, #e5faf3 44.89%, #cff3f4 66.67%, #beedf8 100%);
  border-radius: 30px;
  padding: 50px;
  position: relative;
}

@media (max-width: 800px) {
  .u-box01 .en {
    font-size: 1.875rem;
    top: -15px;
    left: 20px;
  }

  .u-box01 .box-ttl {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .u-box01 {
    padding: 8%;
  }
}

.contact-box .box-ttl {
  border-bottom: 1px solid var(--color_primary);
  display: table;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: bold;
  padding-bottom: 12px;
  margin: 0 auto 20px;
  text-align: center;
}

.contact-box .inlayout::before {
  border-left: 2px dotted #707070;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
  width: 1px;
}

.contact-box .inlayout .item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.contact-box .inlayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 4%;
  position: relative;
}

.contact-box .centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-box {
  background: var(--color_bg_light);
  padding: 40px 30px 50px;
  position: relative;
  margin-inline: auto;
  width: min(100%, 800px);
}

@media (max-width: 800px) {
  .contact-box .box-ttl {
    font-size: 1rem;
  }

  .contact-box .inlayout::before {
    display: none;
  }

  .contact-box .inlayout .item+.item {
    border-top: 1px dotted #ccc;
  }

  .contact-box .inlayout .item {
    padding: 15px 0;
  }

  .contact-box .inlayout {
    display: block;
  }

  .contact-box {
    padding: 30px 20px 40px;
    width: 100%;
  }
}

.accordion-content .accordion-title::before {
  background: #fff;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 0;
  right: 30px;
  margin: auto;
  bottom: 0;
  width: 16px;
}

.accordion-content .accordion-title::after {
  background: #fff;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 0;
  right: 30px;
  margin: auto;
  bottom: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  width: 16px;
}

.accordion-content .accordion-title.is-open::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.accordion-content .accordion-title {
  background: #BF922B;
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 20px 30px;
  position: relative;
}

.accordion-content .accordion-inner {
  border: 1px solid #BF922B;
  border-top: none;
  display: none;
  padding: 20px 30px;
}

.u-arrow .list-img img {
  margin-inline: auto;
}

.u-arrow .arrow-ttl span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #F2DCA9));
  background: linear-gradient(transparent 80%, #F2DCA9 80%);
}

.u-arrow .arrow-ttl {
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  margin-top: 30px;
}

.u-arrow {
  text-align: center;
  margin: 50px auto;
}

.staff-layout .l-img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.staff-layout .l-desc {
  width: 50%;
}

.staff-layout .inbox .en {
  color: #3D4A53;
  opacity: 0.26;
  font-size: 2.5rem;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 0;
  z-index: 1;
}

.staff-layout .inbox {
  background: #F8F6F2;
  padding: 30px;
  position: relative;
  margin-top: 50px;
}

.staff-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
  position: relative;
  gap: 0 55px;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .staff-layout .l-desc {
    margin: 30px auto 0;
    width: 100%;
  }

  .staff-layout {
    display: block;
    margin-bottom: 40px;
  }
}

.staff-name .job {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.staff-name .name .ruby {
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 0.875rem;
  margin-left: 15px;
}

.staff-name .name {
  border-bottom: 1px solid #39464F;
  padding-bottom: 5px;
  font-size: 1.875rem;
}

.staff-name {
  margin-bottom: 30px;
  position: relative;
}

@media (max-width: 800px) {
  .staff-name .job {
    font-size: 0.9375rem;
  }

  .staff-name .name .ruby {
    font-optical-sizing: none;
    font-size: 0.875rem;
  }

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

.staff-profile .item {
  background: var(--color_bg_light);
  border-radius: 15px;
  padding: 25px 30px 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.staff-profile .l-ttl {
  border-bottom: 1px dashed #ccc;
  font-size: 1.125rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.staff-profile .staff-dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
}

.staff-profile {
  font-size: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 30px 4%;
}

@media (max-width: 800px) {
  .staff-profile .item {
    padding: 20px;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    width: 100%;
  }

  .staff-profile .staff-dl {
    gap: 8px 15px;
  }
}

.u-features-box .anchor+.single {
  margin-top: 30px;
}

.u-features-box .anchor {
  height: 50px;
}

.u-features-box .single+.single {
  margin-top: 80px;
}

.u-features-box .single .en span {
  font-size: 5.625rem;
}

.u-features-box .single .en {
  font-family: var(--font_en);
  font-size: 3.3125rem;
  line-height: 1;
  position: absolute;
  top: -50px;
  left: 50px;
  opacity: 1;
  color: var(--color_primary);
}

.u-features-box .single .box-ttl {
  font-size: 1.875rem;
  margin-bottom: 30px;
}

.u-features-box .single {
  background: #3D4A53;
  padding: 60px 70px 50px;
  position: relative;
  color: #fff;
}

.u-features-box .inlayout .l-img {
  width: 38%;
}

.u-features-box .inlayout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.u-features-box .inlayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
  gap: 0 4%;
}

.u-features-box .inbox {
  background: #fff;
  padding: 20px 40px 30px;
  margin-top: 20px;
}

.u-features-box {
  padding-top: 80px;
}

@media (max-width: 800px) {
  .u-features-box .single+.single {
    margin-top: 50px;
  }

  .u-features-box .single .en span {
    font-size: 2.8125rem;
  }

  .u-features-box .single .en {
    font-size: 1.875rem;
    top: -30px;
    left: 15px;
  }

  .u-features-box .single .box-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #fff;
  }

  .u-features-box .single {
    padding: 8% 8% 30px;
  }

  .u-features-box .inlayout .l-img {
    margin: 0 auto 30px;
    width: 100%;
  }

  .u-features-box .inlayout {
    display: block;
  }

  .u-features-box .inbox {
    background: #fff;
    padding: 20px 40px 30px;
    margin-top: 20px;
  }

  .u-features-box {
    padding-top: 50px;
  }
}

.course-box .box-ttl {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 20px;
}

.course-box .sub-ttl {
  background: #3D4A53;
  color: #fff;
  padding: 10px 15px;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 30px;
}

.course-box {
  background: url("../images/share/course_bg.svg") right 50px bottom 25px/auto no-repeat #F8F6F2;
  border: 1px solid #3D4A53;
  padding: 60px 70px 70px;
}

@media (max-width: 800px) {
  .course-box .box-ttl {
    font-size: 1.375rem;
    margin-bottom: 15px;
  }

  .course-box .sub-ttl {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .course-box {
    background-position: right 15px bottom 15px;
    background-size: 120px auto;
    padding: 8%;
  }
}

.list-merit .item {
  background: var(--color_bg_light);
  border-top: 3px solid var(--color_primary);
  padding: 30px 40px;
  position: relative;
}

.list-merit .list-ttl {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.list-merit {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}

@media (max-width: 800px) {
  .list-merit .item {
    padding: 25px;
  }

  .list-merit .list-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .list-merit {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.pediatric-list .item {
  border: 1px solid var(--color_primary);
  position: relative;
}

.pediatric-list .list-ttl {
  background: var(--color_primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
}

.pediatric-list .inner {
  padding: 25px;
}

.pediatric-list .list-img img {
  margin: auto;
}

.pediatric-list .list-img {
  margin-bottom: 10px;
}

.pediatric-list .indl dt {
  border-bottom: 1px solid var(--color_primary);
  padding: 3px 10px 3px 0;
}

.pediatric-list .indl dd {
  border-bottom: 1px solid var(--color_border);
  padding: 3px 0 3px 10px;
}

.pediatric-list .indl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0 1fr;
  grid-template-columns: auto 1fr;
  gap: 3px 0;
}

.pediatric-list {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}

@media (max-width: 800px) {
  .pediatric-list .item {
    padding: 25px;
  }

  .pediatric-list .list-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .pediatric-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.contact-items .item {
  background: #F8F6F2;
  border-top: 2px solid #3C4951;
  padding: 40px 50px;
  position: relative;
}

.contact-items .item-ttl {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.contact-items .serif {
  position: absolute;
  top: -44px;
  left: 56px;
  z-index: 1;
}

.contact-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 4%;
}

@media (max-width: 800px) {
  .contact-items .item {
    padding: 30px;
  }

  .contact-items .item-ttl {
    margin-bottom: 20px;
  }

  .contact-items .serif {
    top: -15px;
    left: 15px;
    width: 100px;
  }

  .contact-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px 4%;
  }
}

.linebtn span {
  background: url("../images/share/line_w.svg") top left no-repeat;
  display: inline-block;
  height: 38px;
  padding-left: 55px;
}

.linebtn {
  background: #07C756;
  color: #fff;
  display: inline-block;
  padding: 18px 30px 14px;
  text-align: center;
}

.u-postcase-list .category-wrap .category {
  background: var(--color_primary);
  text-box: trim-both cap alphabetic;
  color: #fff;
  display: inline-block;
  font-size: 0.6875rem;
  padding: 5px 10px;
  line-height: 1;
}

.u-postcase-list .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.u-postcase-list .single {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.u-postcase-list .list-ttl {
  border-bottom: 1px solid #3D4A53;
  color: var(--color_text_dark);
  font-size: 1.25rem;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.u-postcase-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 4%;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .u-postcase-list .list-ttl {
    font-size: 1.25rem;
    padding-bottom: 15px;
  }

  .u-postcase-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.before-after .item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.before-after .list-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.before-after .list-img {
  height: 250px;
}

.before-after .list-txt {
  background: rgba(61, 74, 83, 0.9);
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 2px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  text-align: center;
  width: 120px;
}

.before-after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 10px;
  margin-bottom: 18px;
}

@media (max-width: 800px) {
  .before-after .list-img img {
    margin: auto;
  }

  .before-after .list-img {
    height: auto;
  }

  .before-after .list-txt {
    font-size: 0.8125rem;
    padding: 2px 10px;
    width: 80px;
  }

  .before-after {
    gap: 0 10px;
  }
}

.case-table tr {
  border-bottom: 1px solid #CACACA;
}

.case-table th {
  padding: 15px 15px 15px 0;
  vertical-align: middle;
  text-align: left;
}

.case-table td {
  padding: 15px 0;
  vertical-align: middle;
}

.case-table .data01 {
  font-weight: bold;
}

.case-table .data03 {
  color: #FF0000;
  font-size: 1.0625rem;
}

.case-table {
  background: #fff;
  border-collapse: collapse;
  color: #1A1A1A;
  table-layout: fixed;
  line-height: 1.6;
  width: 100%;
}

@media (max-width: 800px) {
  .case-table .data03 {
    text-align: right;
  }

  .case-table colgroup {
    display: none;
  }
}

.u-voice-list .list-ttl {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.u-voice-list .post-img img {
  margin: auto;
}

.u-voice-list .category-wrap span.category {
  background: var(--color_primary);
  color: #fff;
  padding: 5px 12px;
  font-size: 0.75rem;
  line-height: 1;
}

.u-voice-list .category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 5px 10px;
}

.u-voice-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr 4% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 4%;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .u-voice-list .list-ttl {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .u-voice-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.post-related {
  margin-top: 60px;
}

@media (max-width: 800px) {
  .post-related {
    margin-top: 40px;
  }
}

.post-related-list .single {
  text-align: center;
}

.post-related-list .l-img img {
  margin: auto;
}

.post-related-list .list-ttl {
  margin-top: 0.5em;
}

.post-related-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2% 1fr 2% 1fr 2% 1fr 2% 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 2%;
}

@media (max-width: 800px) {
  .post-related-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.overflow_hidden {
  overflow: hidden;
}

.u_slider .splide__track {
  overflow: visible;
}

.u_slider .splide__slide:not(.is-active) {
  opacity: 0.2;
}

.u_slider .splide__slide {
  padding-bottom: 30px;
}

.u_slider {
  margin-inline: auto;
  width: min(800px, 100%);
  position: relative;
}

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

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

/*投稿詳細*/
.privacy-ttl {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.dl-privacy dt {
  border-top: 1px solid var(--color_border);
  font-size: 1.0625rem;
  padding-top: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

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

.map iframe,
.f-map iframe,
.u-map iframe {
  height: 100%;
  width: 100%;
}

.map,
.f-map,
.u-map {
  height: 400px;
}

.u-map {
  height: 400px;
}

@media (max-width: 800px) {
  .u-map {
    height: 250px;
  }
}

.f-map {
  height: 290px;
}

@media (max-width: 800px) {
  .f-map {
    height: 250px;
  }
}

table th,
table td {
  font-weight: inherit;
}

.table-style01 th,
.postdata table th,
table.has-fixed-layout th {
  background: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 15px;
  vertical-align: middle;
  text-align: left;
}

.table-style01 td,
.postdata table td,
table.has-fixed-layout td {
  border: 1px solid #D1D1D1;
  padding: 12px 15px;
  vertical-align: top;
  word-break: break-all;
}

.table-style01,
.postdata table,
table.has-fixed-layout {
  background: #fff;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.9375rem;
  line-height: 1.6;
  width: 100%;
}

.table-style01.center_ttl th,
.postdata table.center_ttl th,
table.has-fixed-layout.center_ttl th {
  text-align: center;
  vertical-align: middle;
}

.table-style01.th-middle th,
.postdata table.th-middle th,
table.has-fixed-layout.th-middle th {
  vertical-align: middle;
}

.table-style01.td-middle td,
.postdata table.td-middle td,
table.has-fixed-layout.td-middle td {
  vertical-align: middle;
}

.table-style01.price td,
.postdata table.price td,
table.has-fixed-layout.price td {
  text-align: right;
}

.table-style01 .first th,
.postdata table .first th,
table.has-fixed-layout .first th {
  background: var(--color01);
  color: #fff;
}

@media (max-width: 800px) {

  .table-style01 th,
  .postdata table th,
  table.has-fixed-layout th {
    border: none;
  }

  .table-style01 th,
  .postdata table th,
  .table-style01 td,
  .postdata table td,
  table.has-fixed-layout th,
  table.has-fixed-layout td {
    display: block;
    padding: 10px;
    line-height: 1.5;
  }
}

@media (max-width: 800px) {

  .table-scroll .table-style02,
  .table-scroll .table-style03 {
    width: 200%;
  }
}

.table-style02 th {
  background: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 15px;
  vertical-align: middle;
  text-align: left;
}

.table-style02 td {
  border: 1px solid #D1D1D1;
  padding: 12px 15px;
  vertical-align: top;
  word-break: break-all;
}

.table-style02 {
  background: #fff;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.9375rem;
  line-height: 1.6;
  width: 100%;
}

.table-style02 .first th,
.table-style02 .first th:first-child {
  background: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
}

.table-style02 th {
  background: var(--color_bg_light);
  border: 1px solid #D1D1D1;
  color: inherit;
}

.table-style02 td,
.table-style02 td {
  vertical-align: middle;
}

@media (max-width: 800px) {
  .table-style02.sp-sticky th.fixcell {
    border-right: 1px solid #D1D1D1;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    width: 20%;
  }
}

.dl-opentime.small dt {
  font-size: 0.625rem;
  font-weight: 700;
}

.dl-opentime.small dd {
  font-size: 0.9375rem;
}

.dl-opentime.small {
  gap: 10px;
  white-space: nowrap;
}

.dl-opentime dt {
  border: 1px solid;
  color: var(--color_primary);
  font-size: 0.625rem;
  font-weight: bold;
  padding: 0 12px;
  text-align: center;
}

.dl-opentime dd {
  font-size: 0.8125rem;
}

.dl-opentime {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 10px 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px 10px;
}

.dl-simple dt {
  background: var(--color_primary);
  border-radius: 5px;
  color: #fff;
  font-size: 0.8125rem;
  padding: 3px 15px;
  text-align: center;
}

.dl-simple {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 15px 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px 15px;
}

.dl-normal.large {
  -ms-grid-columns: 20% 1fr;
  grid-template-columns: 20% 1fr;
}

.dl-normal dt .num {
  font-size: 0.8125rem;
  margin-bottom: 10px;
}

.dl-normal dt {
  background: var(--color_primary);
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  padding: 20px;
}

.dl-normal dd {
  background: var(--color_bg_light);
  padding: 20px;
}

.dl-normal {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0 1fr;
  grid-template-columns: auto 1fr;
  gap: 15px 0;
}

@media (max-width: 800px) {
  .dl-normal.large {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .dl-normal dd+dt {
    margin-top: 20px;
  }

  .dl-normal {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.time-table th,
.time-table td {
  text-align: center;
  vertical-align: middle;
}

.time-table th:nth-child(1) {
  width: 25%;
}

.time-table th:last-child {
  width: 15%;
}

.time-table th {
  background: #26659A;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  padding: 13px 5px;
  text-align: center;
}

.time-table tr:not(:last-child) td {
  border-bottom: 1px solid #DFDFDF;
}

.time-table td:first-child {
  background: #81A8C9;
  border-right: 1px solid #DFDFDF;
  color: #fff;
  padding: 5px 0;
}

.time-table td.on::before {
  background: var(--color_primary);
  border-radius: 50%;
  content: "";
  display: block;
  height: 13px;
  margin: 5px auto;
  width: 13px;
}

.time-table td.off::before {
  background: #333;
  content: "";
  display: block;
  height: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 2px auto;
  width: 1px;
}

.time-table td {
  border-bottom: 1px solid #DFDFDF;
  font-weight: bold;
  line-height: 1.5;
  padding: 15px 0;
}

.time-table table {
  background: #fff;
  border: 1px solid #DFDFDF;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
  table-layout: fixed;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 800px) {
  .time-table th:nth-child(1) {
    width: 30%;
  }

  .time-table th:last-child {
    width: auto;
  }

  .time-table th {
    font-size: 0.6875rem;
    padding: 10px 0;
  }

  .time-table td.on::before {
    height: 8px;
    width: 8px;
  }

  .time-table td.off::before {
    height: 14px;
  }

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

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

.time-table-caption {
  font-size: 0.9375rem;
  margin-top: 10px;
}

.tel_number.white span {
  background: url("../images/share/tel_w.svg") no-repeat left top 8px/18px auto;
}

.tel_number.white {
  color: #fff;
}

.tel_number.large span {
  background-size: 20px auto;
  background-position: top 13px left;
  padding-left: 28px;
}

.tel_number.large {
  font-size: 2rem;
}

.tel_number span {
  background: url("../images/share/tel.svg") no-repeat left top 8px/18px auto;
  padding-left: 23px;
}

.tel_number {
  font-size: 1.4375rem;
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .tel_number.white span {
    background-position: top 8px left;
    background-size: 16px auto;
  }

  .tel_number span {
    background-position: top 8px left;
    background-size: 16px auto;
    padding-left: 20px;
  }

  .tel_number {
    padding-bottom: 2px;
    font-size: 1.25rem;
  }
}

.js-fadein {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.js-fadein-right {
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.rotate {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  opacity: 0;
  -webkit-transition: 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rotate.is-show {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 1;
}

.ta span {
  display: inline-block;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  opacity: 0;
}

.ta.is-show span {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.js-fadein-list>li {
  will-change: transform;
  opacity: 0;
  -webkit-transition: 2.5s cubic-bezier(0.19, 1, 0.435, 0.99);
  transition: 2.5s cubic-bezier(0.19, 1, 0.435, 0.99);
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
}

.js-fadein-list>li:nth-of-type(1) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.js-fadein-list>li:nth-of-type(2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.js-fadein-list>li:nth-of-type(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.js-fadein-list>li:nth-of-type(4) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.js-fadein-list>li:nth-of-type(5) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.js-fadein-list>li:nth-of-type(6) {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}

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

.business-calendar-box .business-calendar caption {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding: 0;
  margin-bottom: 15px;
}

.business-calendar-box .business-calendar .business-calendar-past,
.business-calendar-box .business-calendar .business-calendar-future {
  color: var(--color_primary);
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1;
}

.business-calendar-box .business-calendar .business-calendar-past {
  float: left;
}

.business-calendar-box .business-calendar .business-calendar-future {
  float: right;
}

.business-calendar-box .business-calendar th {
  background: var(--color_primary);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 5px 0 8px;
  text-align: center;
}

.business-calendar-box .business-calendar td::before {
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  height: 25px;
  width: 25px;
}

.business-calendar-box .business-calendar td {
  border: 1px solid #DFDFDF;
  font-size: 0.8125rem;
  font-weight: bold;
  padding: 6px 0;
  position: relative;
  vertical-align: top;
  z-index: 1;
}

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

.business-calendar-box .business-calendar .attr0::before {
  background: #26659A;
  opacity: 1;
}

.business-calendar-box .business-calendar .attr0 {
  color: #fff;
}

.business-calendar-box .business-calendar .attr1::before {
  background: #68C1D7;
  opacity: 1;
}

.business-calendar-box .business-calendar .attr1 {
  color: #fff;
}

.business-calendar-box .business-calendar .attr2::before {
  background: #ED9318;
  opacity: 1;
}

.business-calendar-box .business-calendar .attr2 {
  color: #fff;
}

.business-calendar-box .business-calendar {
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  table-layout: fixed;
  overflow: hidden;
  width: 100%;
}

.business-calendar-box .business-calendar-attribute li::before {
  border-radius: 50%;
  content: "";
  height: 12px;
  display: inline-block;
  margin: 0 6px 0 0;
  vertical-align: -2px;
  width: 12px;
}

.business-calendar-box .business-calendar-attribute li {
  line-height: 1;
  margin-right: 15px;
  margin-bottom: 10px;
}

.business-calendar-box .business-calendar-attribute .attr0::before {
  background: #26659A;
}

.business-calendar-box .business-calendar-attribute .attr1::before {
  background: #68C1D7;
}

.business-calendar-box .business-calendar-attribute .attr2::before {
  background: #ED9318;
}

.business-calendar-box .business-calendar-attribute {
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 20px 0 0;
}

.post-type03 .single .time {
  margin-right: 1.5em;
}

.post-type03 .single .l-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-decoration: underline;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 3px;
}

.post-type03 .single:hover .l-ttl {
  text-decoration: none;
}

.post-type03 .single:hover {
  opacity: 0.6;
}

.post-type03 .single {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border-bottom: 1px dotted var(--color01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
}

/*投稿詳細*/
