@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_bg: #F2F2F2;
  --color_bg_primary: #FFF3F3;
  --color_text: #4C0000;
  --color_border: #DFDFDF;
  --color_primary: #820000;
  --color_secondary: #F15149;
  --color_white: #fff;
  --color_black: #000;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

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

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

:root {
  --font_base:
    "Noto Sans JP",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    sans-serif;
  --font_jp: "FOT-キアロ Std B";
  --font_en: "FOT-キアロ Std B";
  --font_weight: normal;
  --font_size: 0.9375rem;
  --line_height: 2;
  --letter_spacing: .05em;
}

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

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_jp);
  line-height: 1.5;
  letter-spacing: 0.1em;
}

th,
dt {
  font-family: var(--font_jp);
}

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

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

.wp-block-flexible-table-block-table a:is(:hover, :focus),
.link:is(:hover, :focus) {
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

.btn-more {
  min-width: 280px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color_white);
  border-radius: 3px;
  border: 1px solid var(--color_secondary);
  color: var(--color_secondary);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
  padding: 10px 30px;
  position: relative;
  transition: 0.3s;
}

.btn-more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color_secondary);
  border-right: 1px solid var(--color_secondary);
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s;
}

.btn-more.w170 {
  min-width: 170px;
}

.btn-more.w360 {
  min-width: 360px;
}

.btn-more.large {
  min-width: 310px;
  min-height: 60px;
  font-size: 1.5rem;
  padding: 10px 30px 10px 40px;
}

.btn-more.color01 {
  background-color: var(--color_secondary);
  color: var(--color_white);
  border-radius: 100px;
}

.btn-more.color01::before {
  border-top-color: var(--color_white);
  border-right-color: var(--color_white);
}

.btn-more.color02 {
  background-color: var(--color_secondary);
  color: var(--color_white);
}

.btn-more.color02::before {
  border-top-color: var(--color_white);
  border-right-color: var(--color_white);
}

.btn-more.design01 {
  border-radius: 100px;
  border-color: #BFBFBF;
}

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

  .btn-more:hover::before {
    border-top-color: var(--color_white);
    border-right-color: var(--color_white);
  }

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

  .btn-more:hover.color01::before {
    border-top-color: var(--color_secondary);
    border-right-color: var(--color_secondary);
  }

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

  .btn-more:hover.color02::before {
    border-top-color: var(--color_secondary);
    border-right-color: var(--color_secondary);
  }

  .btn-more:hover.design01 {
    background-color: #BFBFBF;
  }
}

.btn-style01 {
  min-height: 50px;
  width: 100% mbL;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color_white);
  color: var(--color_black);
  border-radius: 3px;
  border: 1px solid #AEAEAE;
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
  padding: 10px 30px;
  transition: background-color 0.3s, color 0.3s;
}

@media (any-hover: hover) {
  .btn-style01:hover {
    background-color: #AEAEAE;
    color: var(--color_white);
  }
}

.btn-style02 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(600px, 100%);
  min-height: 60px;
  margin: 0 auto;
  background-color: var(--color_secondary);
  border: 1px solid var(--color_secondary);
  color: var(--color_white);
  border-radius: 100px;
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  padding: 10px 30px;
  transition: 0.3s;
}

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

.btn-style02.color01 {
  background-color: var(--color_white);
  color: var(--color_secondary);
}

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

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

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

.btn-style02-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.btn-style02-wrap02 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

  .btn-more.w170 {
    min-width: 100%;
  }

  .btn-more.w360 {
    min-width: 100%;
  }

  .btn-more.large {
    min-width: 100%;
    font-size: 1.125rem;
  }

  .btn-style02 {
    font-size: 1.125rem;
  }

  .btn-style02-wrap {
    grid-template-columns: 1fr;
  }

  .btn-style02-wrap02 {
    gap: 15px;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*カテゴリータイトル*/
.category-ttl {
  color: var(--color_secondary);
  border-bottom: 1px solid var(--color_primary);
  font-size: 1.625rem;
  padding-bottom: 7px;
  margin-bottom: 30px;
}

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

/*セレクト式カテゴリー*/
.select-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 50px;
}

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

.select-area .select-ttl {
  display: inline-block;
  color: var(--color_black);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
  background: url(../images/share/select_arrow.svg) no-repeat right 10px center/10px auto;
  background-size: 10px;
  background-position: right center;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: var(--color_black);
  font-family: var(--font_jp);
  font-size: 0.9375rem;
  vertical-align: middle;
  min-width: 135px;
  flex: 1;
}

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

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

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

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

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

.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 var(--color_primary);
  background: #fff;
  border-radius: 50px;
  color: var(--color_primary);
  padding: 8px 20px;
  font-family: var(--font_jp);
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  flex: 0 0 80px;
}

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


/*北名古屋教室・滝子教室 一覧ページ*/
.post-under-class {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.post-under-class>article>a {
  display: block;
  height: 100%;
  border-radius: 10px;
  background-color: var(--color_white);
  border: 1px solid #e8e8e8;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 25px 25px 12px;
}

@media (any-hover: hover) {
  .post-under-class>article>a:hover .post-ttl {
    color: var(--color_primary);
  }

  .post-under-class>article>a:hover .post-img img {
    transform: scale(1.1);
  }
}

.post-under-class .post-img {
  aspect-ratio: 281/200;
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
  background-color: #fff;
}

.post-under-class .post-img img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  aspect-ratio: 281/200;
  border-radius: 10px;
  transition: transform 0.3s;
}

.post-under-class .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--color_secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.post-under-class .post-dl {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 0 5px;
  color: var(--color_black);
}

@media (max-width: 800px) {
  .post-under-class {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .post-under-class>article>a {
    padding: 20px;
  }

  .post-under-class .post-img {
    margin-bottom: 15px;
  }

  .post-under-class .post-ttl {
    font-size: 1rem;
  }
}

/*北名古屋教室・滝子教室 カテゴリーページ*/
.layout-category-class .btn-style02 {
  margin-top: 85px;
}

@media (max-width: 800px) {
  .layout-category-class .btn-style02 {
    margin-top: 50px;
  }
}

/*北名古屋教室・滝子教室 詳細ページ*/
.layout-single-class .l-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
}

.layout-single-class .l-img {
  width: 45%;
  aspect-ratio: 281 / 200;
  background-color: #E6E6E6;
  border-radius: 10px;
}

.layout-single-class .l-img img {
  width: 100%;
  aspect-ratio: 281 / 200;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
}

.layout-single-class .l-desc {
  flex: 1;
  color: var(--color_black);
}

.layout-single-class .l-contents+.l-contents {
  margin-top: 60px;
}

.layout-single-class .l-instructor {
  display: flex;
  align-items: center;
  gap: 50px;
}

.layout-single-class .l-instructor .l-name {
  color: var(--color_black);
  font-family: var(--font_jp);
  font-size: 1.125rem;
}

.layout-single-class .l-table-wrapper {
  background-color: #FEF0F0;
  border-radius: 10px;
  padding: 40px 50px 50px;
}

.layout-single-class .l-table th,
.layout-single-class .l-table td {
  color: var(--color_black);
  padding: 12px 15px 12px 0;
  border-bottom: 1px solid #A6A6A6;
  vertical-align: top;
}

.layout-single-class .l-table th {
  font-size: 1.0625rem;
  text-align: left;
}

.layout-single-class .l-table tr:first-child th,
.layout-single-class .l-table tr:first-child td {
  padding-top: 0;
}

.layout-single-class .btn-style02 {
  margin-top: 85px;
}

@media (max-width: 800px) {
  .layout-single-class .l-flex {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .layout-single-class .l-img {
    width: 100%;
    max-height: 300px;
  }

  .layout-single-class .l-img img {
    max-height: 300px;
  }

  .layout-single-class .l-contents+.l-contents {
    margin-top: 50px;
  }

  .layout-single-class .l-instructor {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .layout-single-class .l-table-wrapper {
    padding: 20px;
  }

  .layout-single-class .l-table colgroup {
    display: none;
  }

  .layout-single-class .l-table th,
  .layout-single-class .l-table td {
    display: block;
    padding: 12px 0;
  }

  .layout-single-class .l-table th {
    border-bottom: none;
  }

  .layout-single-class .l-table td {
    padding-top: 0;
  }

  .layout-single-class .btn-style02 {
    margin-top: 50px;
  }
}

/*イベント情報・お知らせ・滝子カレンダー 一覧ページ*/
.post-under-layout article {
  display: flex;
  gap: 50px;
}

.post-under-layout article+article {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--color_border);
}

.post-under-layout .post-img {
  width: 27.5%;
  aspect-ratio: 280/199;
  background-color: var(--color_white);
  border: 1px solid #c2beb5;
  border-radius: 10px;
  overflow: hidden;
}

.post-under-layout .post-img img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  aspect-ratio: 280/199;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .post-under-layout .post-img>a:hover img {
    transform: scale(1.1);
  }
}

.post-under-layout .post-desc {
  flex: 1;
}

.post-under-layout time {
  display: block;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: 10px;
}

.post-under-layout .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--color_primary);
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.post-under-layout .post-ttl>a {
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .post-under-layout .post-ttl>a:hover {
    color: var(--color_secondary);
  }
}

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

.post-under-layout .category {
  display: block;
  font-family: var(--font_jp);
  line-height: 1;
  padding: 3px 6px;
  text-align: center;
  color: var(--color_white);
  background-color: #F68882;
  border: 1px solid #F68882;
  transition: color 0.3s, background-color 0.3s;
}

@media (any-hover: hover) {
  .post-under-layout .category:hover {
    color: #F68882;
    background-color: var(--color_white);
  }
}

@media (max-width: 800px) {
  .post-under-layout article {
    gap: 10px;
  }

  .post-under-layout article+article {
    margin-top: 20px;
    padding-top: 20px;
  }

  .post-under-layout .post-img {
    width: 120px;
  }

  .post-under-layout .post-ttl {
    font-size: 0.9375rem;
  }

  .post-under-layout .category {
    font-size: 0.8125rem;
  }
}

/*講師紹介 一覧ページ*/
.post-under-instructor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}

.post-under-instructor .post-img {
  display: grid;
  place-items: center;
  aspect-ratio: 320/360;
  background-color: var(--color_white);
  border-radius: 10px;
  border: 1px solid #a6a6a6;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  margin-bottom: 25px;
  transition: box-shadow 0.3s;
}

.post-under-instructor .post-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 320/360;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s;
}

.post-under-instructor .post-img>a {
  width: 100%;
  height: 100%;
}

@media (any-hover: hover) {
  .post-under-instructor .post-img>a:hover img {
    transform: scale(1.1);
  }
}

.post-under-instructor .post-ttl {
  color: var(--color_primary);
  font-size: 1.0625rem;
  text-align: center;
  margin-bottom: 25px;
}

.post-under-instructor .post-ttl>a {
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .post-under-instructor .post-ttl>a:hover {
    color: var(--color_secondary);
  }
}

.post-under-instructor .category-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.post-under-instructor .category {
  display: block;
  min-width: 81px;
  font-family: var(--font_jp);
  line-height: 1;
  padding: 5px 6px;
  text-align: center;
  color: var(--color_white);
  background-color: #F68882;
  border: 1px solid #F68882;
  transition: color 0.3s, background-color 0.3s;
}

@media (any-hover: hover) {
  .post-under-instructor .category:hover {
    color: #F68882;
    background-color: var(--color_white);
  }
}

@media (max-width: 800px) {
  .post-under-instructor {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .post-under-instructor .post-img {
    margin-bottom: 15px;
  }

  .post-under-instructor .post-ttl {
    margin-bottom: 10px;
  }
}

/*講師紹介 詳細ページ*/
.layout-single-instructor .l-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 50px;
}

.layout-single-instructor .l-img {
  display: grid;
  place-items: center;
  width: 31.5%;
  aspect-ratio: 320/360;
  background-color: var(--color_white);
  border-radius: 10px;
  border: 1px solid #a6a6a6;
  overflow: hidden;
}

.layout-single-instructor .l-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 320/360;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .layout-single-instructor .l-img>a:hover img {
    transform: scale(1.1);
  }
}

.layout-single-instructor .l-desc {
  width: 100%;
  flex: 1;
}

.layout-single-instructor .l-name {
  color: var(--color_primary);
  font-size: 2rem;
  margin-bottom: 12px;
}

.layout-single-instructor .l-kana {
  color: var(--color_secondary);
  font-family: var(--font_jp);
  font-size: 1.125rem;
  line-height: 1;
  margin-bottom: 20px;
}

.layout-single-instructor .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.layout-single-instructor .category {
  display: block;
  min-width: 131px;
  font-family: var(--font_jp);
  line-height: 1;
  padding: 5px 6px;
  text-align: center;
  color: var(--color_white);
  background-color: #F68882;
  border: 1px solid #F68882;
}

.layout-single-instructor .l-content+.l-content {
  margin-top: 60px;
}

.layout-single-instructor .l-ttl {
  color: var(--color_primary);
  font-size: 1.625rem;
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 1px solid #FCBBB6;
}

.layout-single-instructor .l-table {
  margin-top: 30px;
}

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

.layout-single-instructor .l-table th {
  background-color: var(--color_primary);
  color: var(--color_white);
}

.layout-single-instructor .l-table .bg01 {
  background-color: var(--color_bg);
  color: var(--color_text);
}

.layout-single-instructor a {
  text-decoration: underline;
  color: var(--wp--preset--color--secondary);
}

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

@media (max-width: 800px) {
  .layout-single-instructor .l-flex {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

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

  .layout-single-instructor .l-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .layout-single-instructor .l-kana {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .layout-single-instructor .l-content+.l-content {
    margin-top: 30px;
  }

  .layout-single-instructor .l-ttl {
    font-size: 1.25rem;
  }

  .layout-single-instructor .l-table {
    border-bottom: 1px solid var(--color_border);
  }

  .layout-single-instructor .l-table colgroup {
    display: none;
  }

  .layout-single-instructor .l-table th,
  .layout-single-instructor .l-table td {
    display: block;
    border-bottom: none;
    padding: 10px;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

/*お知らせ 一覧ページ*/
.news-category {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 75px;
}

@media (max-width: 800px) {
  .news-category {
    gap: 15px;
    margin-bottom: 50px;
  }
}

/*共通 詳細ページ*/
.layout-single-post .post-data {
  display: grid;
  gap: 15px;
  margin-bottom: 15px;
}

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_jp);
  line-height: 1;
}

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

.layout-single-post .category {
  display: inline-block;
  background-color: #F68882;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 0.875rem;
  line-height: 1;
  padding: 3px 6px;
  text-align: center;
}

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

@media (max-width: 800px) {
  .layout-single-post .post-data {
    gap: 10px;
  }

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

/*共通 ページャー*/
.post-number {
  display: flex;
  gap: 30px;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}

.post-number+.under-accordion-layout {
  margin-top: 80px;
}

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

.post-number .all {
  display: grid;
  place-items: center;
  background-color: var(--color_bg_primary);
  color: var(--color_primary);
  border-radius: 10px;
  font-size: 1.625rem;
  font-family: var(--font_jp);
  line-height: 1;
  width: 100px;
  height: 50px;
  transition: background-color 0.3s, color 0.3s;
}

.post-number .all:hover {
  background-color: var(--color_primary);
  color: var(--color_white);
}

.post-number .prev,
.post-number .next {
  background-color: var(--color_bg_primary);
  border-radius: 10px;
  width: 100px;
  height: 50px;
  position: relative;
  transition: background-color 0.3s;
}

.post-number .prev::before,
.post-number .next::before {
  content: "";
  background-color: var(--color_primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s;
  width: 12px;
  aspect-ratio: 12/22;
}

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

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

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

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

  .post-number+.under-accordion-layout {
    margin-top: 50px;
  }

  .post-number .all {
    font-size: 1.25rem;
    width: 80px;
    height: 40px;
  }

  .post-number .prev,
  .post-number .next {
    width: 80px;
    height: 40px;
  }

  .post-number .prev::before,
  .post-number .next::before {
    width: 8px;
  }
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  width: 100%;
  height: 100px;
  background-color: var(--color_white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 65px 15px 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

@media (max-width: 800px) {
  .header {
    height: 54px;
    justify-content: flex-start;
    padding: 10px 17px;
    position: absolute;
  }

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

  .h-utility {
    display: none;
  }
}

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

.gnavi-links>li>a {
  display: block;
  font-family: var(--font_jp);
  line-height: 1.5;
}

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

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

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

.dropdown::after {
  content: "";
  display: block;
  border-bottom: 2px solid var(--color_text);
  border-right: 2px solid var(--color_text);
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  transform-origin: right;
  margin-top: 2px;
}

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

.dropdown .sub-menu {
  display: grid;
  grid-gap: 8px;
  pointer-events: none;
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 35px 40px;
  position: absolute;
  top: 27px;
  right: 50%;
  width: -moz-max-content;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

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

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

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

.footer {
  background-color: var(--color_bg);
  position: relative;
  padding: 70px 0 0;
}

.f-catch {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  background-color: var(--color_white);
  border-radius: 100px;
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
  padding: 8px 35px;
}

.f-logo {
  display: grid;
  place-items: center;
  margin-bottom: 40px;
}

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

.site-map {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 4.444vw;
  padding: 40px 0 100px;
  border-top: 1px solid #FFBCB9;
}

.site-map .ttl {
  color: var(--color_primary);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 18px;
  padding-left: 18px;
  position: relative;
}

.site-map .ttl::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color_primary);
  position: absolute;
  top: 6px;
  left: 0;
}

.f-links {
  display: grid;
  grid-gap: 15px;
  line-height: 1.5;
  padding-left: 18px;
}

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

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

.f-bnr {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 50px;
  padding: 0 0 80px;
}

.copyright {
  height: 30px;
  display: grid;
  place-items: center;
  background-color: var(--color_primary);
  color: var(--color_white);
  text-align: center;
  padding: 0 15px;
}

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

.fixed-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 101;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fixed-btn>li>a {
  display: grid;
  place-items: center;
  width: 60px;
  background-color: var(--color_secondary);
  border: 1px solid var(--color_white);
  border-right: none;
  border-radius: 3px 0 0 3px;
  color: var(--color_white);
  font-family: var(--font_jp);
  font-size: 1.0625rem;
  writing-mode: vertical-rl;
  padding: 30px 10px;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .fixed-btn>li>a:hover {
    background-color: var(--color_white);
    color: var(--color_secondary);
    border-color: var(--color_secondary);
  }
}

@media (max-height: 700px) {
  .fixed-btn>li>a {
    font-size: 0.9375rem;
    padding: 15px 10px;
  }
}

.pagetop {
  position: absolute;
  bottom: 80px;
  right: 65px;
  transition: transform 0.4s;
}

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

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

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

  .site-map .ttl {
    margin-bottom: 10px;
  }

  .site-map .ttl::before {
    top: 7px;
  }

  .f-links {
    gap: 10px;
  }

  .f-bnr {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 0 0 60px;
  }

  .fixed-btn {
    display: none;
  }

  .pagetop {
    display: none;
  }
}

.sp-navi {
  display: none;
}

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

  .sp-navi {
    display: block;
  }

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

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

  .sp-navi-btns .item {
    font-size: 0.625rem;
    font-family: var(--font_jp);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item+.item {
    border-left: 1px solid var(--navi-border-color);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sp-navi-drawer .site-map {
    padding: 0;
    border-top: none;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero::before {
  content: "";
  background: url(../images/hero_deco.png) no-repeat center/contain;
  width: 33.166vw;
  aspect-ratio: 597/293;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.hero .splide__slide::before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero-catch {
  font-family: var(--font_jp);
  font-size: clamp(1.875rem, 3.222vw, 3.625rem);
  line-height: 1.5;
  color: var(--color_white);
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.41);
  position: absolute;
  z-index: 2;
}

.hero-catch.position01 {
  top: 50%;
  right: 12.944vw;
  transform: translateY(-50%);
}

.hero-catch.position02 {
  top: 5.111vw;
  right: 6.277vw;
}

.hero-catch.position03 {
  top: 10.777vw;
  right: 8.277vw;
}

.hero-catch.position04 {
  top: 8.944vw;
  left: 8.833vw;
}

.hero-catch.position05 {
  top: 11.944vw;
  right: 13.5vw;
}

.hero-catch.position06 {
  top: 8.888vw;
  left: 11.111vw;
}

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

  .hero::before {
    width: 50.602vw;
  }

  .hero-catch {
    font-size: clamp(1rem, 5.783vw, 1.5rem);
  }

  .hero-catch.position01 {
    top: 28%;
    right: 15px;
    transform: none;
  }

  .hero-catch.position03 {
    right: 15px;
  }

  .hero-catch.position05 {
    right: 15px;
  }

  .hero-catch.position06 {
    top: 20px;
    left: 15px;
  }
}

/*------------
Components
--------------*/
.t-ttl01 {
  color: var(--color_primary);
  font-size: 2.8125rem;
  text-align: center;
  margin-bottom: 40px;
}

.t-ttl02 {
  text-align: center;
  margin-bottom: 40px;
}

.t-ttl02 [lang=en] {
  color: var(--color_secondary);
  font-size: 1.125rem;
  margin-bottom: 5px;
}

.t-ttl02 .jp {
  color: var(--color_primary);
  font-size: 2.8125rem;
}

@media (max-width: 800px) {
  .t-ttl01 {
    font-size: 1.875rem;
    margin-bottom: 30px;
  }

  .t-ttl02 {
    margin-bottom: 30px;
  }

  .t-ttl02 [lang=en] {
    font-size: 1rem;
    margin-bottom: 0;
  }

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

/*------------
Section
--------------*/
.sec01 {
  padding-top: 80px;
}

.sec01-btn-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 75px;
}

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

  .sec01-btn-wrap {
    gap: 15px;
    margin-bottom: 60px;
  }
}

.sec02_sec03_bg {
  background-color: #F8F2E5;
  padding-bottom: 90px;
  margin-top: 90px;
}

.sec02 {
  padding-top: 90px;
}

.sec02 .top-slider01 {
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .sec02_sec03_bg {
    padding-bottom: 60px;
    margin-top: 60px;
  }

  .sec02 {
    padding-top: 60px;
  }

  .sec02 .top-slider01 {
    margin-bottom: 30px;
  }
}

.sec03 {
  padding-top: 105px;
}

.sec03 .top-slider01 {
  margin-bottom: 40px;
}

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

  .sec03 .top-slider01 {
    margin-bottom: 30px;
  }
}

.sec04 {
  padding-top: 115px;
}

.sec04-wrapper {
  background: url(../images/sec04_img01.jpg) no-repeat center/cover;
  padding: 80px;
}

.sec04-layout {
  max-width: 771px;
  background: rgba(255, 255, 255, 0.9);
  padding: 3% 4%;
}

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

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

.sec04-br {
  display: none;
}

@media (max-width: 1300px) {
  .sec04-layout {
    max-width: 550px;
  }

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

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

  .sec04-wrapper {
    background: url(../images/sec04_img01.jpg) no-repeat center right -400px/cover;
    padding: 30px 5%;
  }

  .sec04-layout {
    max-width: 100%;
    padding: 20px;
  }

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

  .sec04-layout p+p {
    margin-top: 15px;
  }
}

.sec05 {
  padding-top: 70px;
}

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

.sec06 {
  padding: 70px 0 80px;
}

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

.sec07 {
  padding-bottom: 120px;
}

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

/*------------
Post
--------------*/
.t-news-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  position: relative;
}

.t-news-layout .l-ttl .jp {
  color: var(--color_primary);
  font-size: 1.5625rem;
}

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

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

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

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

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

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

.post-top-news {
  display: grid;
  align-content: start;
  height: 196px;
  overflow-y: scroll;
  padding-right: 40px;
}

@supports (-moz-appearance: none) {
  .post-top-news {
    scrollbar-width: auto;
    scrollbar-color: var(--color_secondary) var(--color_white);
  }
}

.post-top-news::-webkit-scrollbar {
  width: 8px;
  border-radius: 0;
  outline: 1px solid var(--color_text);
  outline-offset: 2px;
}

.post-top-news::-webkit-scrollbar-track {
  background: var(--color_white);
  border-radius: 0;
}

.post-top-news::-webkit-scrollbar-thumb {
  background: #D4D4D4;
  border-radius: 0;
}

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

.post-top-news>li:first-child>a {
  border-top: 1px solid var(--color_border);
}

.post-top-news time {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font_jp);
}

.post-top-news .category-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 10px;
}

.post-top-news .category {
  display: block;
  font-family: var(--font_jp);
  line-height: 1;
  padding: 3px 6px;
  text-align: center;
  color: var(--color_white);
  background-color: #F68882;
  border: 1px solid #F68882;
}

.post-top-news .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  min-width: 0;
  font-family: var(--font_base);
  font-weight: normal;
  font-size: 1rem;
  transition: color 0.3s;
}

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

@media (max-width: 800px) {
  .post-top-news {
    height: 215px;
    padding-right: 15px;
  }

  .post-top-news>li>a {
    flex-wrap: wrap;
    gap: 5px 10px;
    padding: 10px 0;
  }

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

  .post-top-news .category-wrap {
    gap: 5px;
  }

  .post-top-news .category {
    font-size: 0.8125rem;
  }

  .post-top-news .post-ttl {
    width: 100%;
    font-size: 0.875rem;
  }
}

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

.top-slider01 .splide__arrow--prev {
  width: 24px;
  aspect-ratio: 21/41;
  height: auto;
  background: url(../images/share/top_splide_prev.svg) no-repeat center/contain;
  top: 29%;
  left: -7%;
  transform: none;
}

.top-slider01 .splide__arrow--next {
  width: 24px;
  aspect-ratio: 21/41;
  height: auto;
  background: url(../images/share/top_splide_next.svg) no-repeat center/contain;
  top: 29%;
  right: -7%;
  transform: none;
}

.top-slider01 a {
  display: block;
  padding: 20px;
  background: var(--color_white);
  border-radius: 10px;
  border: 1px solid #c2beb5;
  height: 100%;
}

.top-slider01 .item-img {
  display: grid;
  place-items: center;
  aspect-ratio: 322/247;
  margin-bottom: 15px;
  overflow: hidden;
}

.top-slider01 .item-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 322/247;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.3s;
}

.top-slider01 .item-ttl {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: color 0.3s;
  font-family: var(--font_base);
  font-weight: 500;
  line-height: 1.5;
}

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

  .top-slider01 a:hover .item-img img {
    transform: scale(1.1);
  }
}

@media (max-width: 1400px) {
  .top-slider01 .splide__arrow--prev {
    left: -30px;
  }

  .top-slider01 .splide__arrow--next {
    right: -30px;
  }
}

@media (max-width: 800px) {
  .top-slider01 .splide__arrow--prev {
    width: 15px;
    top: 35%;
    left: -15px;
  }

  .top-slider01 .splide__arrow--next {
    width: 15px;
    top: 35%;
    right: -15px;
  }

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

/*------------
Accordion
--------------*/
.top-accordion-layout {
  margin-bottom: 50px;
}

.top-accordion+.top-accordion {
  margin-top: 20px;
}

.top-accordion summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  cursor: pointer;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.875rem;
  line-height: 1.5;
  text-align: center;
  border-bottom: 1px solid #D6D6D6;
  padding-bottom: 20px;
  position: relative;
  transition: 0.2s;
}

.top-accordion summary::-webkit-details-marker {
  display: none;
}

.top-accordion summary::after {
  content: "";
  display: block;
  background: url(../images/share/icon_arrow_accordion.svg) no-repeat center/contain;
  width: 45px;
  height: 45px;
  rotate: 180deg;
  transition: rotate 0.5s;
}

.top-accordion.is-open summary::after {
  rotate: 0deg;
}

.top-accordion .accordion-content {
  overflow: hidden;
}

.top-accordion .accordion-inner {
  background-color: #fff;
  padding: 20px 0 25px;
}

.top-accordion .accordion-content:not([hidden=until-found]):target {
  display: revert;
}

.top-accordion .accordion-btn-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.top-accordion .accordion-btn-wrap .btn-more {
  min-width: 100%;
}

@media (scripting: none) {
  .top-accordion .accordion-contentl:target {
    display: revert;
  }
}

.top-accordion:not(.is-open) summary:is(:hover, :focus) {
  color: var(--color_secondary);
}

@media (max-width: 800px) {
  .top-accordion-layout {
    margin-bottom: 30px;
  }

  .top-accordion+.top-accordion {
    margin-top: 15px;
  }

  .top-accordion summary {
    font-size: 1.5rem;
    padding-bottom: 15px;
    gap: 15px;
  }

  .top-accordion summary::after {
    width: 35px;
    height: 35px;
  }

  .top-accordion .accordion-btn-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/*------------
Card
--------------*/
.top-card-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.top-card-layout>li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}

.top-card-layout>li>a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  justify-items: center;
  gap: 8px;
  border: 1px solid #656565;
  border-radius: 3px;
  padding: 16px 16px 35px;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .top-card-layout>li>a:hover {
    background-color: var(--color_bg_primary);
  }
}

.top-card-layout .card-ttl {
  display: grid;
  place-items: center;
  color: var(--color_primary);
  font-size: 1rem;
  text-align: center;
}

@media (max-width: 800px) {
  .top-card-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .top-card-layout>li>a {
    gap: 0;
    padding: 10px 10px 20px;
  }

  .top-card-layout .card-img {
    width: 100px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
/*----------------------
下層H1デザイン
-----------------------*/
.page-header {
  height: 320px;
  display: grid;
  place-items: center;
  background: url(../images/under/under_h2area.jpg) no-repeat center/cover;
  margin-top: 100px;
  padding: 30px 5%;
}

.page-ttl {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-weight: bold;
  font-size: 3.125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}

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

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

.breadcrumb ul li {
  display: inline;
}

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

@media (max-width: 800px) {
  .page-header {
    height: 180px;
    margin-top: 54px;
    padding: 15px 5%;
  }

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

/*----------------------
下層共通パーツ
-----------------------*/
.u-contents {
  padding: 100px 0;
}

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

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

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

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

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

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

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

/*----------------------
今回のオリジナルパーツ
-----------------------*/
.under-accordion-layout {
  background-color: var(--color_white);
  border: 2px solid #FCBBB6;
  border-radius: 20px;
  padding: 40px 50px 50px;
}

.under-accordion-layout .accordion-ttl {
  color: var(--color_primary);
  border-bottom: 1px solid var(--color_primary);
  font-size: 1.625rem;
  text-align: center;
  padding-bottom: 8px;
  margin-bottom: 30px;
}

.under-accordion-layout+.category-ttl {
  margin-top: 80px;
}

.under-accordion+.under-accordion {
  margin-top: 20px;
}

.under-accordion summary {
  display: block;
  cursor: pointer;
  background-color: var(--color_bg_primary);
  border-radius: 10px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
  position: relative;
  transition: 0.2s;
}

.under-accordion summary::-webkit-details-marker {
  display: none;
}

.under-accordion summary::after {
  content: "";
  display: block;
  background: url(../images/share/icon_arrow_accordion_under.svg) no-repeat center/contain;
  width: 22px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.5s;
}

.under-accordion.is-open summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.under-accordion .accordion-content {
  overflow: hidden;
}

.under-accordion .accordion-inner {
  background-color: #fff;
  padding: 20px 0 10px;
}

.under-accordion .accordion-content:not([hidden=until-found]):target {
  display: revert;
}

.under-accordion:not(.is-open) summary:is(:hover, :focus) {
  color: var(--color_secondary);
}

.accordion-btn-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.accordion-btn-wrap .btn-more {
  min-width: 100%;
}

@media (scripting: none) {
  .under-accordion .accordion-contentl:target {
    display: revert;
  }
}

.btn-style02+.under-accordion-layout {
  margin-top: 80px;
}

@media (max-width: 800px) {
  .under-accordion-layout {
    padding: 20px;
  }

  .under-accordion-layout .accordion-ttl {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .under-accordion-layout+.category-ttl {
    margin-top: 50px;
  }

  .under-accordion summary {
    font-size: 1.125rem;
  }

  .accordion-btn-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .btn-style02+.under-accordion-layout {
    margin-top: 50px;
  }
}

/*----------------------
パーツ集
-----------------------*/
.u-h2 {
  font-size: 2.5rem;
}

.postdata h2 {
  font-size: 1.75rem;
}

.u-h2,
.postdata h2 {
  color: var(--color_primary);
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 50px;
}

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


.u-h3,
.layout-single-class .l-ttl,
.postdata h3 {
  color: var(--color_secondary);
  border-bottom: 1px solid var(--color_primary);
  font-size: 1.625rem;
  padding-bottom: 8px;
  margin-bottom: 30px;
}

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

.u-h4,
.layout-single-class .l-sub-ttl,
.postdata h4 {
  color: var(--color_secondary);
  font-size: 1.25rem;
  padding-left: 10px;
  margin-bottom: 15px;
  position: relative;
}

.u-h4::before,
.layout-single-class .l-sub-ttl::before,
.postdata h4::before {
  content: "";
  background: var(--color_primary);
  width: 3px;
  height: 17px;
  position: absolute;
  left: 0;
  top: 6.5px;
}

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

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

@media (max-width: 800px) {

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

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

  .u-h3,
  .layout-single-class .l-ttl,
  .postdata h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .u-h4,
  .layout-single-class .l-sub-ttl,
  .postdata h4 {
    font-size: 1.125rem;
  }

  .u-h4::before,
  .layout-single-class .l-sub-ttl::before,
  .postdata h4::before {
    top: 5px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.list-disc.col2,
.list-check.col2,
.list-check-square.col2,
.list-num.col2 {
  gap: 10px 30px;
}

.list-disc.col3,
.list-check.col3,
.list-check-square.col3,
.list-num.col3 {
  gap: 10px 30px;
}

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

.list-price .list-intro {
  border-bottom: 1px dotted #c4cfc9;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 0 0 5px;
}

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

@media (max-width: 800px) {

  .list-disc.col2,
  .list-check.col2,
  .list-check-square.col2,
  .list-num.col2 {
    gap: 5px;
  }

  .list-disc.col3,
  .list-check.col3,
  .list-check-square.col3,
  .list-num.col3 {
    gap: 5px;
  }

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

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

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

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

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

.scroll-txt {
  display: none;
}

@media (max-width: 800px) {

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

  .table-style01.sp-block {
    border-bottom: 1px solid var(--color_border);
  }

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

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

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

  .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: var(--color_text);
  }

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

.box-style01 {
  border: 2px solid var(--color_border);
  border-radius: 10px;
  background: var(--color_white);
  padding: 5%;
}

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

.box-style02 {
  background-color: var(--color_white);
  box-shadow: 2px 3px 15px 2px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  padding: 5%;
}

.box-style02.w800 {
  max-width: 800px;
  margin-inline: auto;
}

.box-style03 {
  background-color: var(--color_white);
  box-shadow: 2px 3px 15px 2px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  padding: 20px;
}

.box-style03.w800 {
  max-width: 800px;
  margin-inline: auto;
}

.box-style03 .box-inner {
  background-color: var(--color_bg_primary);
  padding: 5% 2.5%;
}

@media (max-width: 800px) {
  .box-style01>.box-ttl {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }

  .box-style02 {
    padding: 20px;
  }

  .box-style03 {
    padding: 15px;
  }

  .box-style03 .box-inner {
    padding: 15px;
  }
}

.list-card01>li {
  display: flex;
  flex-direction: column;
}

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

.list-card01 .num {
  display: block;
  font-weight: bold;
  font-size: 0.8125rem;
  line-height: 1;
  margin-bottom: 5px;
}

.list-card01 .list-ttl {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 20px;
}

.list-card01 .list-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
}

.list-card01 .btn-more {
  min-width: 0;
  width: 100%;
}

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

.list-card01.col3 {
  gap: 30px;
}

.list-card01.col4 {
  gap: 20px;
}

@media (max-width: 800px) {

  .list-card01.col2,
  .list-card01.col3,
  .list-card01.col4 {
    gap: 15px;
  }
}

.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

.youtube iframe {
  width: 100%;
  height: 100%;
}

video {
  width: 100%;
}

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

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

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

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

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

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

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

.under-slider01 .splide__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: var(--color_white);
  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%;
  transform: translateX(-50%);
}

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

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

@media (max-width: 800px) {
  .under-slider01 .item-desc {
    margin-top: 15px;
  }

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

.tel-layout {
  max-width: 800px;
  background-color: #FEF0F0;
  border-radius: 10px;
  padding: 5%;
  margin: 0 auto;
}

.tel-layout .l-tel {
  display: inline-flex;
  align-items: center;
  font-family: var(--font_jp);
  font-size: 2.1875rem;
  line-height: 1;
  margin: 0 auto 10px;
  white-space: nowrap;
}

.tel-layout .l-tel img {
  margin-right: 10px;
}

.tel-layout .l-time {
  display: grid;
  grid-gap: 10px;
  line-height: 1.5;
  margin-top: 20px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .l-time .item {
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-gap: 15px;
}

.tel-layout .l-time dt {
  color: var(--color_white);
  background-color: var(--color_primary);
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 5px;
}

.tel-layout .l-time dd {
  font-size: 1.25rem;
  font-weight: bold;
}

.tel-layout .l-note {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.tel-layout .l-link {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.tel-layout .l-link a {
  color: var(--color_secondary);
}

.tel-layout .l-link .link::after {
  width: 15px;
  background-color: var(--color_secondary);
}

.tel-layout.color01 {
  background-color: var(--color_white);
  box-shadow: 2px 3px 15px 2px rgba(0, 0, 0, 0.16);
  padding: 20px;
}

.tel-layout.color01 .tel-inner {
  background-color: var(--color_bg_primary);
  padding: 5%;
}

.tel-layout.color02 {
  background-color: var(--color_white);
  box-shadow: 2px 3px 15px 2px rgba(0, 0, 0, 0.16);
}

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

  .tel-layout .l-tel {
    font-size: 1.875rem;
  }

  .tel-layout .l-tel img {
    width: 20px;
  }

  .tel-layout .l-time {
    margin-top: 15px;
  }

  .tel-layout .l-time .item {
    grid-template-columns: 120px 1fr;
    gap: 10px;
  }

  .tel-layout .l-time .item dt {
    font-size: 0.9375rem;
  }

  .tel-layout .l-time .item dd {
    font-size: 1rem;
  }

  .tel-layout .l-link {
    font-size: 1rem;
  }

  .tel-layout.color01 {
    padding: 15px;
  }

  .tel-layout.color01 .tel-inner {
    padding: 15px;
  }
}

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

.dl-privacy dt {
  color: var(--color_secondary);
  border-top: 1px solid var(--color_border);
  font-size: 1.125rem;
  padding-top: 30px;
  margin-bottom: 15px;
  position: relative;
}

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

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

  .dl-privacy dt {
    padding-top: 15px;
  }
}

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

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

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

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

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.fs20 {
  font-size: 1.2rem;
}

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

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

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

.c-red {
  color: #F44336;
}

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

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

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 8px;
}

.mbS {
  margin-bottom: 16px;
}

.mbM {
  margin-bottom: 32px;
}

.mbXM {
  margin-bottom: 48px;
}

.mbL {
  margin-bottom: 64px;
}

.mbXL {
  margin-bottom: 96px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.grid {
  display: grid;
}

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

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

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

.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: 1024px) {
  .br-tab-only {
    display: block;
    height: 0;
    margin: 0;
    padding: 0;
  }
}

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

  .sp-only {
    display: block;
  }

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

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

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

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

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

  .mbXS {
    margin-bottom: 4px;
  }

  .mbS {
    margin-bottom: 8px;
  }

  .mbM {
    margin-bottom: 16px;
  }

  .mbXM {
    margin-bottom: 32px;
  }

  .mbL {
    margin-bottom: 48px;
  }

  .mbXL {
    margin-bottom: 64px;
  }

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

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

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

  .sp-col4 {
    display: grid;
    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 {
  box-sizing: border-box;
  position: relative;
}

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

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

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

.splide__pagination li {
  display: flex;
  align-items: center;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

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

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

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow--prev,
.splide__arrow--next {
  display: block;
  width: 30px;
  height: 30px;
}

.splide__arrow--prev {
  background: url(../images/share/splide_prev.svg) no-repeat center/auto 15px;
}

.splide__arrow--next {
  background: url(../images/share/splide_next.svg) no-repeat center/auto 15px;
}

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

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

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

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

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

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

.splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 6rem;
}

@media (max-width: 800px) {
  .splide__controls {
    margin-top: 3rem;
  }
}

.splide__pagination {
  gap: 8px;
}

.splide__pagination__page {
  background: #D0D0C9;
  border-radius: 100px;
  display: inline-block;
  transition: transform 0.2s linear;
  height: 8px;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #707070;
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
}

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

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

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

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

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

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

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

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

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

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

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

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

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

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

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

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

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

.splide__toggle:hover {
  background: #D3D3D3;
}

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

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

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

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

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