@charset "UTF-8";

/* ====================================================
【色設定】
==================================================== */
:root {
  --color_base: #fff;
  --color_text: #413229;
  --color_link: #333;
  --color_bg: #F8EBE3;
  --color_border: #D7DBCF;
  --color_primary: #398D78;
  --color_secondary: #413229;
  --color_white: #fff;
  --color_black: #333;
  --color_gray: #E0E0E0;
  --color_gray_light: #F6F6F6;
  --color_gray_dark: #777;
}

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

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

:root {
  --font_base:
    "Zen Kaku Gothic New",
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Local Noto Sans JP",
    "Noto Sans JP",
    sans-serif;
  --font_medium: 500;
  --font_size: 1.125rem;
  --line_height: 2.2;
  --letter_spacing: .05em;
}

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

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

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

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

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

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

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  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_medium);
  letter-spacing: var(--letter_spacing);
  line-height: var(--line_height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  font-weight: var(--font_medium);
}

th,
dt {
  font-weight: var(--font_medium);
}

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

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

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

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

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

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

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

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

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

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

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

/*-----------------------------------------------------------
診療時間
-----------------------------------------------------------*/
.time-table {
  font-size: 1rem;
  border-collapse: collapse;
  width: 100%;
}

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

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

.time-table th,
.time-table td {
  background-color: var(--color_white);
  text-align: center;
  padding: 10px;
}

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

.time-table tbody th {
  background-color: var(--color_bg);
}

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

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

/*-----------------------------------------------------------
診療カレンダー
-----------------------------------------------------------*/
: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 {
  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%;
  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 {
  grid-template-columns: 1fr;
}

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

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

.business-calendar-box-wrap .business-calendar .attr0,
.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: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.list-event li {
  display: flex;
  gap: 5px;
  line-height: 1;
}

.list-event i {
  font-style: normal;
}

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

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

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

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

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

  .list-event {
    display: block;
  }

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

/*ボタン*/
.btn-more {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 100px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 60px;
  padding: 10px 58px 10px 46px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  position: relative;
}

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

.btn-more::after {
  content: "";
  background-color: var(--color_white);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.btn-more.white {
  background-color: transparent;
  border-color: var(--color_white);
}

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

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

  .btn-more:hover::after {
    background-color: var(--color_primary);
  }

  .btn-more:hover.white {
    background-color: var(--color_white);
    border-color: var(--color_primary);
  }
}

.btn-style01 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  font-size: 0.6875rem;
  line-height: 1;
  text-align: center;
  padding: 5px;
  transition: opacity 0.3s;
}

.btn-style01.green {
  background-color: var(--color_primary);
  color: var(--color_white);
}

.btn-style01.green img {
  filter: brightness(0) invert(1);
}

.btn-style01.brown {
  background-color: var(--color_secondary);
  color: var(--color_white);
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.16));
}

.btn-style01.white {
  background-color: var(--color_white);
  color: var(--color_text);
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.16));
}

.btn-style01.line {
  background-color: #4CC764;
  color: var(--color_white);
}

@media (any-hover: hover) {
  .btn-style01:hover {
    opacity: 0.7;
  }
}

.btn-style02 {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: opacity 0.3s;
}

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

.btn-style02.line {
  background-color: #4CC764;
}

.btn-style02.line img {
  width: 25px;
}

@media (any-hover: hover) {
  .btn-style02:hover {
    opacity: 0.7;
  }
}

.btn-style03 {
  display: grid;
  place-items: center;
  min-width: 153px;
  min-height: 41px;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 100px;
  color: var(--color_white);
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
  padding: 10px;
  transition: background-color 0.3s, color 0.3s;
}

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

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

.btn-out:hover::after {
  background-position: left bottom;
  background-size: 100% auto;
}

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

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

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

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

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

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

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

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

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

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

.list-category-links a {
  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: 2px;
}

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

/*セレクト式カテゴリー*/
.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;
  margin: 0 30px 0 0;
}

.select-area .select-ttl {
  display: inline-block;
  font-size: 1.125rem;
  white-space: nowrap;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
  background: url(../images/share/icon_select_arrow.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_black);
  color: var(--color_black);
  font-size: 1.125rem;
  line-height: 1.5;
  vertical-align: middle;
  min-width: 150px;
  padding: 5px 20px 5px 0;
  flex: 1;
}

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

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

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

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

  .select-area .select-ttl {
    font-size: 1rem;
    width: 100%;
  }

  .select-area .select-category {
    font-size: 1rem;
  }
}

/*通常投稿*/
.list-under-post article+article {
  margin-top: 50px;
}

.list-under-post .inner {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}

.list-under-post .list-img {
  width: 40%;
  max-width: 250px;
  height: 100%;
  flex-shrink: 0;
  border: 1px solid var(--color_border);
  overflow: hidden;
}

.list-under-post .list-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 241/164;
  transition: scale 0.3s;
}

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

.list-under-post .list-desc {
  width: 100%;
}

.list-under-post .list-ttl {
  border-bottom: 1px dashed var(--color_border);
  font-size: 1.25rem;
  margin: 0 0 20px;
  padding-bottom: 10px;
}

.list-under-post .list-ttl a {
  display: block;
  padding-bottom: 10px;
  transition: color 0.3s;
}

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

.list-under-post .list-ttl span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

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

.list-under-post time {
  display: block;
  color: #aaa;
  font-size: 1rem;
  line-height: 1;
  margin-right: 15px;
}

.list-under-post .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 2px;
}

.list-under-post .category {
  display: inline-flex;
  font-size: 1rem;
  line-height: 1.5;
}

.list-under-post .category::before {
  content: "#";
  display: block;
  color: var(--color_text);
}

.list-under-post .list-txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1rem;
}

@media screen and (max-width: 800px) {
  .list-under-post article+article {
    margin-top: 30px;
  }

  .list-under-post .inner {
    gap: 15px;
  }

  .list-under-post time {
    width: 100%;
    margin-right: 0;
    font-size: 0.875rem;
  }

  .list-under-post .list-ttl {
    font-size: 1.125rem;
    padding-bottom: 5px;
  }

  .list-under-post .category {
    font-size: 0.875rem;
  }

  .list-under-post .list-txt {
    font-size: 0.875rem;
  }

  .list-under-post .btn-more {
    min-height: 50px;
  }
}

/*詳細ページ*/
.layout-single-post {
  padding-bottom: 50px;
  border-bottom: 1px solid var(--color_border);
}

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

.layout-single-post time {
  flex-shrink: 0;
  display: inline-block;
  color: #aaa;
  font-size: 1rem;
  line-height: 1;
}

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

.layout-single-post .category {
  display: inline-flex;
  font-size: 1rem;
  line-height: 1.5;
}

.layout-single-post .category::before {
  content: "#";
  display: block;
  color: var(--color_text);
}

.layout-single-post .l-ttl {
  border-bottom: 2px solid var(--color_border);
  font-size: 1.625rem;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.postdata {
  /*WP必須クラス*/
  overflow-wrap: break-word;
}

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

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

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

.postdata {
  /*スタイルの調整が必要*/
}

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

.postdata a {
  text-decoration: underline;
}

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

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  position: relative;
  padding-left: 15px;
}

.postdata ul li::before {
  content: "";
  background: var(--color_primary);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 17px;
  width: 5px;
  height: 5px;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol {
  counter-reset: number;
}

.postdata ol li {
  padding-left: 30px;
  position: relative;
}

.postdata ol li::before {
  background-color: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  position: absolute;
  top: 10px;
  left: 0;
  line-height: 1;
  text-align: center;
  padding-left: 1px;
  width: 20px;
  height: 20px;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

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

.postdata .wp-block-button__link {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s;
}

.postdata .wp-block-button__link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: border-color 0.3s;
}

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

  .postdata .wp-block-button__link:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--color_primary);
  }
}

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

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

  .postdata ul li::before {
    top: 12px;
  }

  .postdata ol li::before {
    top: 5px;
  }
}

/*ページャー*/
.post-number {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.post-number span,
.post-number a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  font-size: 0.8125rem;
  line-height: 1;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
  padding: 0 0 1px 1px;
}

.post-number>*+* {
  margin-left: 10px;
}

.post-number a:hover {
  background: var(--color_primary);
  color: #fff;
}

.post-number .current {
  background: var(--color_primary);
  color: #fff;
}

.post-number-single {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 50px;
}

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

.post-number-single .all {
  display: grid;
  place-items: center;
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1;
  text-transform: uppercase;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
  padding-bottom: 1px;
}

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

.post-number .prev,
.post-number .next,
.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number .prev::before,
.post-number .next::before,
.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid var(--color_primary);
  margin: 0 auto;
  top: 12px;
  transition: 0.3s;
}

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

.post-number .prev:hover::before,
.post-number .next:hover::before,
.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  border-color: #fff;
}

.post-number .prev::before,
.post-number-single .prev::before {
  transform: rotate(-135deg);
  left: 10px;
  border-left: 1px solid var(--color_primary);
}

.post-number .next::before,
.post-number-single .next::before {
  transform: rotate(135deg);
  right: 10px;
  border-right: 1px solid var(--color_primary);
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 30px 18px 53px;
  transition: background-color 0.3s, padding 0.3s;
}

.h-logo {
  padding-top: 15px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.h-utility {
  display: flex;
  align-items: center;
  gap: min(23px, 1.277vw);
}

.h-wrapper {
  display: flex;
  align-items: center;
  gap: min(47px, 2.611vw);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

@media (max-width: 1300px) {
  .header {
    padding: 30px 20px 18px 25px;
  }

  .h-wrapper,
  .h-utility {
    gap: 15px;
  }
}

@media (max-width: 1024px) {
  .header {
    position: absolute;
    padding: 30px 16px 22px 26px;
  }

  .h-logo {
    max-width: 195px;
    padding-top: 0;
  }

  .h-wrapper {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
.gnavi-links {
  display: flex;
  justify-content: flex-end;
  gap: min(30px, 1.666vw);
  white-space: nowrap;
}

.gnavi-links>li>a,
.gnavi-links>li>p {
  color: var(--color_white);
  font-size: 1rem;
  transition: color 0.3s;
}

.gnavi-links>li>a {
  display: inline-block;
  transition: color 0.3s;
}

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

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

.dropdown::after {
  content: "";
  display: block;
  -webkit-mask: url(../images/share/icon_arrow_down_gnavi.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow_down_gnavi.svg) no-repeat center/contain;
  background-color: var(--color_white);
  width: 9px;
  height: 9px;
  transition: background-color 0.3s;
}

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

.dropdown .sub-menu {
  display: grid;
  grid-gap: 13px;
  pointer-events: none;
  background-color: #fff;
  filter: drop-shadow(5px 15px 20px rgba(0, 0, 0, 0.15));
  padding: 20px 25px;
  position: absolute;
  top: 65px;
  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: -40px;
  left: 0;
  width: 100%;
  height: 50px;
}

.dropdown .sub-menu::after {
  content: "";
  background: url(../images/share/icon_arrow_up_gnavi.svg) no-repeat center/contain;
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 11px;
}

.dropdown .sub-menu>li {
  line-height: 1.5;
}

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

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

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

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

  .gnavi-links>li>a,
  .gnavi-links>li>p {
    font-size: 0.875rem;
  }

  .dropdown {
    padding-top: 3px;
  }
}

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

.h-menu-btn {
  background-color: var(--color_secondary);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 59px;
  height: 59px;
  position: relative;
  z-index: 110;
}

.h-menu-btn-line {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 16px;
}

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

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

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

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

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

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

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

.gnavi-drawer {
  background-color: rgba(0, 0, 0, 0.29);
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
  z-index: 100;
}

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

.gnavi-drawer-container {
  background: url(../images/share/gnavi-drawer_bg.jpg) no-repeat center/cover;
  margin-left: auto;
  padding: 9.111vw 11.111vw;
  width: 61%;
  height: 100%;
  overflow-y: auto;
}

.gnavi-drawer-inner {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}

.gnavi-logo {
  filter: brightness(0) invert(1);
}

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

.drawer-links>li>a,
.drawer-links>li>p {
  font-weight: bold;
}

.drawer-links>li>p {
  margin-bottom: 20px;
}

.drawer-links>li:has(.sub-menu):not(:last-child) {
  margin-bottom: 50px;
}

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

.drawer-links .sub-menu {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

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

@media (max-width: 1500px) {
  .gnavi-drawer-container {
    padding: 9.111vw 8vw;
  }
}

@media (max-width: 1200px) {
  .gnavi-drawer-container {
    width: 75%;
  }
}

@media (max-width: 1024px) {
  .h-menu-btn {
    position: fixed;
    top: 22px;
    right: 16px;
    width: 55px;
    height: 55px;
  }

  .h-menu-btn-line {
    width: 23px;
  }

  .drawer-links>li:has(.sub-menu):not(:last-child) {
    margin-bottom: 15px;
  }

  .drawer-links .sub-menu {
    gap: 6px;
    padding-left: 10px;
  }
}

@media (min-width: 801px) {
  .drawer-links>li.sp-dropdown .child {
    display: block !important;
  }
}

@media (max-width: 800px) {
  .gnavi-drawer-container {
    width: 100%;
    padding: 90px 5% 50px;
  }

  .gnavi-drawer-inner {
    flex-direction: column;
    gap: 0;
  }

  .gnavi-drawer-inner>.item+.item {
    border-bottom: 1px solid var(--color_border);
  }

  .drawer-links {
    gap: 0;
  }

  .drawer-links>li {
    padding: 15px 0;
    border-top: 1px solid var(--color_border);
  }

  .drawer-links>li>p {
    margin-bottom: 0;
  }

  .drawer-links>li>a,
  .drawer-links>li>p {
    font-size: 0.9375rem;
  }

  .drawer-links>li:has(.sub-menu):not(:last-child) {
    margin-bottom: 0;
  }

  .drawer-links .sub-menu {
    padding-top: 10px;
  }

  .drawer-links .sub-menu>li>a {
    font-size: 0.9375rem;
  }

  .drawer-links>li.sp-dropdown {
    position: relative;
  }

  .drawer-links>li.sp-dropdown::before, .drawer-links>li.sp-dropdown::after {
    content: "";
    background-color: #77572B;
    position: absolute;
    transition: 0.5s;
  }

  .drawer-links>li.sp-dropdown::before {
    width: 1px;
    height: 11px;
    top: 20px;
    right: 20px;
  }

  .drawer-links>li.sp-dropdown::after {
    width: 11px;
    height: 1px;
    top: 25px;
    right: 15px;
  }

  .drawer-links>li.sp-dropdown.is-on::before {
    transform: rotate(90deg);
  }
}

/*------------
Header 固定時
--------------*/
.header.transform .h-logo {
  filter: none;
}

.header.transform:not(.hide-wrapper) {
  padding: 19px 30px 19px 53px;
  background-color: var(--color_white);
}

.header.transform:not(.hide-wrapper) .gnavi-links>li>a,
.header.transform:not(.hide-wrapper) .gnavi-links>li>p {
  color: var(--color_text);
}

@media (any-hover: hover) {
  .header.transform:not(.hide-wrapper) .gnavi-links>li>a:hover {
    color: var(--color_primary);
  }
}

.header.transform:not(.hide-wrapper) .dropdown::after {
  background-color: var(--color_primary);
}

@media (max-width: 1200px) {
  .header.transform:not(.hide-wrapper) {
    padding: 19px 20px 19px 25px;
  }
}

@media (max-width: 1024px) {
  .header.transform .h-logo {
    filter: brightness(0) invert(1);
  }
}

/*------------
h-wrapper 非表示（下スクロール時）
--------------*/
.header.hide-wrapper .h-wrapper {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  pointer-events: none;
}

/*------------
Fixed Button
--------------*/
.fixed-btn {
  display: grid;
  gap: 10px;
  position: fixed;
  top: 110px;
  right: 30px;
  z-index: 1;
}

@media (max-width: 1300px) {
  .fixed-btn {
    right: 20px;
  }
}

@media (max-width: 1024px) {
  .fixed-btn {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    top: auto;
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  position: relative;
  padding: 160px 0 58px;
}

.footer::before {
  content: "";
  background: url(../images/share/f-bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 698px;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.f-contents {
  display: grid;
  grid-template-columns: auto 60%;
  margin-inline: auto;
  margin-bottom: 135px;
  width: min(90%, 1400px);
}

.f-contents .col:first-child {
  padding-right: 5%;
}

.f-contents .col:last-child {
  margin-top: 10px;
  padding-left: min(90px, 5vw);
  border-left: 3px solid var(--color_primary);
}

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

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

.f-btn {
  display: flex;
  align-items: center;
  gap: 35px;
}

.f-sns {
  display: flex;
  gap: 23px;
}

.site-map {
  display: flex;
  gap: min(50px, 2.777vw);
}

.site-map .ttl {
  color: var(--color_primary);
  font-weight: bold;
  margin-bottom: 18px;
}

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

.f-links>li {
  padding-left: 14px;
  position: relative;
}

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

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

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

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

.f-bottom-links {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: normal;
  line-height: 1;
}

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

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

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

.copyright small {
  font-size: 0.8125rem;
  font-weight: normal;
}

.pagetop {
  position: absolute;
  bottom: 90px;
  right: 50px;
}

@media (max-width: 1400px) {
  .f-contents {
    grid-template-columns: auto 65%;
  }

  .f-contents .col:last-child {
    padding-left: 50px;
  }

  .site-map {
    font-size: 1rem;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .footer {
    padding: 160px 0 100px;
  }

  .f-contents {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .pagetop {
    bottom: 50px;
  }
}

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

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

  .f-contents .col:first-child {
    padding-right: 0;
  }

  .f-contents .col:last-child {
    padding-left: 25px;
  }

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

  .f-btn {
    gap: 25px;
  }

  .f-sns {
    gap: 15px;
  }

  .site-map {
    flex-direction: column;
  }

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

  .pagetop {
    display: none;
  }
}

.sidebar-layout {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
}

.main-contents {
  padding: 0 70px;
  width: calc(100% - 300px);
  max-width: 1200px;
  margin: 0 auto;
}

.side-contents {
  padding: 0 40px;
  width: 300px;
}

.side-contents-wrapper {
  position: sticky;
  top: 110px;
}

.side-contents-ttl {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

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

.side-area-links {
  display: grid;
  gap: 5px;
}

.side-area-links li {
  font-size: 0.9375rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.side-area-links li::before {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 6px;
  left: 0;
}

.side-area-links a {
  display: inline-block;
  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: 2px;
}

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

@media (max-width: 800px) {
  .sidebar-layout {
    flex-direction: column-reverse;
    padding: 0 5vw;
    width: 100%;
  }

  .sidebar-layout.sp-reverse {
    flex-direction: column;
  }

  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }

  .main-contents {
    width: 100%;
    padding: 0;
  }

  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }

  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }

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

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

.hero::before {
  content: "";
  background: url(../images/hero_deco.svg) no-repeat bottom right/cover;
  max-width: 570px;
  width: 31.666vw;
  aspect-ratio: 570/445;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.hero .splide__slide {
  position: relative;
}

.hero .splide__slide::before {
  content: "";
  display: block;
  background-color: rgba(85, 85, 85, 0.27);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

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

.hero .splide__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 37px;
  padding: 0 15px;
}

.hero .splide__pagination {
  gap: 23px;
  z-index: 1;
}

.hero .splide__pagination__page {
  background-color: #D9D9D9;
}

.hero .splide__pagination__page.is-active {
  background-color: var(--color_primary);
}

.hero .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 120px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero .splide__arrow--prev svg,
.hero .splide__arrow--next svg {
  display: none;
}

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

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

.hero-catch {
  color: var(--color_white);
  font-size: clamp(1.75rem, 2.444vw, 2.75rem);
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  position: absolute;
  top: min(222px, 12.333vw);
  right: 200px;
  z-index: 2;
}

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

  .hero-catch {
    font-size: clamp(1rem, 5.542vw, 1.4375rem);
    line-height: 1.7;
    top: 109px;
    right: 37px;
  }
}

/*------------
Top
--------------*/
.contents {
  overflow: clip;
}

/*------------
Components
--------------*/
.t-ttl01 {
  margin-bottom: 60px;
}

.t-ttl01 .en {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color_primary);
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 15px;
  position: relative;
}

.t-ttl01 .en::before {
  content: "";
  display: block;
  background-color: var(--color_primary);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-top: 2px;
}

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

.t-ttl01.white .en {
  color: var(--color_white);
}

.t-ttl01.white .en::before {
  background-color: var(--color_white);
}

.t-ttl01.white .jp {
  color: var(--color_white);
}

.t-ttl01.center {
  text-align: center;
}

.t-ttl02 {
  color: var(--color_primary);
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.t-ttl03 {
  display: inline-block;
  font-size: 1.875rem;
  border-bottom: 1px solid var(--color_text);
  margin-bottom: 35px;
}

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

  .t-ttl01 .en {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

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

  .t-ttl02 {
    font-size: 1.6875rem;
    margin-bottom: 30px;
  }

  .t-ttl03 {
    font-size: 1.375rem;
    margin-bottom: 25px;
  }
}

/*------------
Section
--------------*/
/* sec01 */
.sec01 {
  padding: 120px 0 75px;
}

.sec01 .t-post-layout .l-btn {
  align-self: end;
}

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

/* sec02 */
.sec02 {
  padding: 130px 0 190px;
  position: relative;
}

.sec02::before {
  content: "";
  background: url(../images/sec02_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 698px;
  position: absolute;
  top: 373px;
  left: 0;
  z-index: -1;
}

.sec02-img {
  max-width: 1112px;
  margin: 0 5% 0 16.666vw;
  display: flex;
  justify-content: space-between;
  gap: 12.833vw;
}

.sec02-img .l-img02 {
  margin-top: min(164px, 9.111vw);
}

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

  .sec02::before {
    top: 75px;
  }

  .sec02-img {
    display: block;
    margin: 0 0 auto;
    padding-left: 77px;
    position: relative;
  }

  .sec02-img .l-img01 img {
    width: 100%;
  }

  .sec02-img .l-img02 {
    width: 25%;
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: 1;
  }
}

/* sec03 */
.sec03 {
  padding: 0 0 60px;
  margin-left: 11.111vw;
}

.sec03 .t-ttl01 {
  margin-bottom: 100px;
}

.sec03-img {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: -9.444vw;
}

.sec03-img .sec03-img01 {
  width: 28.166vw;
  position: relative;
}

.sec03-img .sec03-img01::before {
  content: "";
  background: url(../images/sec03_deco02.svg) no-repeat top left/cover;
  width: 16.666vw;
  aspect-ratio: 300/451;
  position: absolute;
  top: -3.722vw;
  left: 0;
  z-index: 1;
}

.sec03-img .sec03-img01 img {
  width: 100%;
}

.sec03-img .sec03-img02 {
  width: 21.555vw;
  margin-top: 7.777vw;
}

.sec03-img .sec03-img02 img {
  width: 100%;
}

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

  .sec03 .t-ttl01 {
    margin-bottom: 40px;
    padding: 0 5%;
  }

  .sec03-img {
    margin-top: 50px;
  }

  .sec03-img .sec03-img01 {
    width: 48.25vw;
    margin-top: 15vw;
  }

  .sec03-img .sec03-img01::before {
    width: 28.5vw;
    top: -6.25vw;
  }

  .sec03-img .sec03-img02 {
    width: 36.25vw;
    margin-top: 0;
  }
}

/* sec04 */
.sec04 {
  padding: 50px 0 38px;
}

.sec04 .t-ttl01 {
  margin-bottom: 90px;
}

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

  .sec04 .t-ttl01 {
    margin-bottom: 40px;
  }
}

/* sec05 */
.sec05 {
  padding: 13.055vw 0 200px;
  position: relative;
}

.sec05::before {
  content: "";
  background: url(../images/sec05_deco.svg) no-repeat top right/cover;
  width: 21.555vw;
  aspect-ratio: 388/569;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.sec05::after {
  content: "";
  background: linear-gradient(#fff 0%, #faf1eb 50.43%, #fff 100%);
  position: absolute;
  inset: 13.055vw 0 0;
  z-index: -2;
}

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

  .sec05::before {
    width: 180px;
  }

  .sec05::after {
    inset: 30% 0 0;
  }
}

/* sec06 */
.sec06-bg {
  position: relative;
}

.sec06-bg::before {
  content: "";
  background-color: #196475;
  position: absolute;
  inset: 0;
  z-index: -2;
}

.sec06-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.68;
  top: 0;
  left: 0;
  z-index: -1;
}

.sec06 {
  padding: 190px 0;
}

.sec06 .t-ttl01 {
  margin-bottom: 0;
}

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

  .sec06 .t-ttl01 {
    margin-bottom: 40px;
  }
}

/* sec07 */
.sec07 {
  padding: 200px 0;
  position: relative;
}

.sec07::before {
  content: "";
  background: url(../images/sec07_deco.svg) no-repeat top left/cover;
  width: 18.333vw;
  aspect-ratio: 330/508;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.sec07 .t-ttl01 {
  margin-bottom: 95px;
}

.sec07 .t-post-layout {
  grid-template-columns: clamp(300px, 22.222vw, 400px) 1fr;
}

.sec07 .t-post-layout .l-body {
  max-width: 961px;
  justify-self: end;
}

.sec07 .t-post-layout .l-body:has(.no-post) {
  justify-self: start;
}

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

  .sec07::before {
    width: 120px;
  }

  .sec07 .t-ttl01 {
    margin-bottom: 0;
  }

  .sec07 .t-post-layout .l-body {
    width: 100%;
  }

  .sec07 .t-post-layout {
    grid-template-columns: 1fr;
  }
}

/* sec08 */
.sec08 {
  padding: 0 0 200px;
  position: relative;
}

.sec08::before {
  content: "";
  background: url(../images/sec08_deco.svg) no-repeat bottom right/cover;
  width: 57.111vw;
  aspect-ratio: 1028/664;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

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

  .sec08::before {
    width: 300px;
  }
}

/* sec09 */
.sec09 {
  padding: 200px 0;
  position: relative;
}

.sec09::before {
  content: "";
  background: url(../images/sec09_bg.jpg) no-repeat center/cover;
  opacity: 0.11;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.sec09::after {
  content: "";
  background-color: var(--color_primary);
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

/*------------
Layout
--------------*/
.top-layout01 {
  display: grid;
  grid-template-columns: min(624px, 34.666vw) auto min(250px, 13.888vw);
  justify-items: center;
  padding-bottom: 70px;
}

.top-layout01 .l-img01 {
  position: relative;
}

.top-layout01 .l-img01::before {
  content: "";
  background: url(../images/sec02_deco.svg) no-repeat top left/cover;
  max-width: 236px;
  width: 13.111vw;
  aspect-ratio: 236/330;
  position: absolute;
  top: -130px;
  left: 0;
  z-index: -1;
}

.top-layout01 .l-img02 {
  align-self: end;
}

.top-layout01 .l-desc {
  max-width: 640px;
  line-height: 2;
  margin: 120px 30px 22px 30px;
}

.top-layout01 .l-desc p+p {
  margin-top: 36px;
}

.top-layout02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 7%;
}

.top-layout02 .l-img {
  width: 51%;
  position: relative;
  padding-bottom: 9.444vw;
}

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

.top-layout02 .l-img01 {
  position: relative;
}

.top-layout02 .l-img01::before {
  content: "";
  background: url(../images/sec03_deco01.svg) no-repeat top right/cover;
  width: 32vw;
  aspect-ratio: 576/838;
  position: absolute;
  top: -10.888vw;
  right: 0;
  z-index: -1;
}

.top-layout02 .l-img02 {
  width: 16.666vw;
  position: absolute;
  bottom: 0;
  left: -4.777vw;
  z-index: 1;
}

.top-layout02 .l-desc {
  flex: 1;
  position: relative;
  z-index: 2;
}

.top-layout02 .l-txt {
  margin-bottom: 35px;
}

.top-layout03 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 9%;
}

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

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

.top-layout03 .l-txt {
  margin-bottom: 45px;
}

.top-layout03+.top-layout03 {
  margin-top: 100px;
}

.top-layout04 {
  display: grid;
  grid-template-columns: auto min(674px, 55.61%);
  gap: 5%;
  margin-right: -10.444vw;
}

.top-layout04 .l-desc {
  color: var(--color_white);
  margin-top: 65px;
}

.top-layout04 .l-txt {
  margin-bottom: 65px;
}

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

@media (max-width: 1500px) {
  .top-layout04 {
    margin-right: 0;
  }
}

@media (max-width: 800px) {
  .top-layout01 {
    grid-template-columns: 70% 30%;
    grid-template-areas: "desc desc""img1 img2";
  }

  .top-layout01 .l-img01 {
    grid-area: img1;
    padding: 17.5vw 12.5vw 0 0;
  }

  .top-layout01 .l-img01::before {
    max-width: 100%;
    width: 38.25vw;
    top: 0;
  }

  .top-layout01 .l-img02 {
    grid-area: img2;
    padding-bottom: 15px;
  }

  .top-layout01 .l-desc {
    grid-area: desc;
    margin: 0 5% 60px;
  }

  .top-layout01 .l-desc p+p {
    margin-top: 20px;
  }

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

  .top-layout02 .l-img {
    width: 76vw;
    margin: 0 0 0 auto;
  }

  .top-layout02 .l-img01::before {
    width: 53.75vw;
    top: -18.25vw;
  }

  .top-layout02 .l-img02 {
    width: 28vw;
    left: -8vw;
  }

  .top-layout02 .l-desc {
    padding: 0 5%;
  }

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

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

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

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

  .top-layout04 {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-right: 0;
  }

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

  .top-layout04 .l-txt {
    margin-bottom: 30px;
  }

  .top-layout04 iframe {
    height: 300px;
  }
}

/*------------
Card
--------------*/
.top-card01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

@media (any-hover: hover) {
  .top-card01>li a:hover .card-ttl {
    color: var(--color_primary);
  }

  .top-card01>li a:hover .card-ttl::before {
    background-color: transparent;
  }

  .top-card01>li a:hover .card-ttl::after {
    background-color: var(--color_primary);
  }
}

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

.top-card01 .card-img img {
  width: 100%;
}

.top-card01 .card-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.3125rem;
  position: relative;
  transition: color 0.3s;
}

.top-card01 .card-ttl::before {
  content: "";
  background-color: var(--color_primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}

.top-card01 .card-ttl::after {
  content: "";
  -webkit-mask: url(../images/share/icon_arrow_btn_bold.svg) no-repeat center/contain;
  mask: url(../images/share/icon_arrow_btn_bold.svg) no-repeat center/contain;
  background-color: var(--color_white);
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
  transition: background-color 0.3s;
}

.top-card02 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
}

.top-card02>li>a {
  display: flex;
  align-items: center;
  gap: 25px;
  background-color: var(--color_white);
  border-radius: 5px;
  padding: 0 10px 0 0;
  transition: transform 0.5s;
}

@media (any-hover: hover) {
  .top-card02>li>a:hover {
    transform: translateY(-5px);
  }
}

.top-card02 .card-img img {
  border-radius: 5px 0 0 5px;
}

.top-card02 .card-desc {
  flex: 1;
}

.top-card02 .txt01 {
  font-size: 0.875rem;
  line-height: 1.5;
}

.top-card02 .txt02 {
  font-size: 1.125rem;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .top-card02 {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .top-card02>li>a {
    gap: 15px;
  }
}

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

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

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

  .top-card02 {
    grid-template-columns: 1fr;
  }

  .top-card02 .card-img {
    max-width: 80px;
  }

  .top-card02 .txt01 {
    font-size: 0.75rem;
  }

  .top-card02 .txt02 {
    font-size: 1rem;
  }
}

/*------------
Post
--------------*/
.t-post-layout {
  display: grid;
  grid-template-columns: clamp(250px, 22.222vw, 400px) 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "ttl body""btn body";
  gap: 0;
}

.t-post-layout .t-ttl01 {
  grid-area: ttl;
}

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

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

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

.post-top-news::before {
  content: "";
  width: 6px;
  height: 1px;
  background-color: var(--color_primary);
  position: absolute;
  top: -1px;
  left: 0;
}

.post-top-news a {
  display: flex;
  align-items: center;
  gap: min(80px, 4.444vw);
  border-bottom: 1px solid var(--color_border);
  padding: 25px 0;
  transition: background-color 0.3s;
  position: relative;
}

.post-top-news a::before {
  content: "";
  width: 6px;
  height: 1px;
  background-color: var(--color_primary);
  position: absolute;
  bottom: -1px;
  left: 0;
}

@media (any-hover: hover) {
  .post-top-news a:hover {
    background-color: rgba(215, 219, 207, 0.2);
  }
}

.post-top-news time {
  display: inline-block;
  white-space: nowrap;
  color: var(--color_primary);
  font-size: 1.0625rem;
}

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

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

.post-top-communication .post-img {
  border: 1px solid var(--color_border);
  overflow: hidden;
  margin-bottom: 20px;
}

.post-top-communication .post-img img {
  aspect-ratio: 286/268;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s;
}

.post-top-communication time {
  display: inline-block;
  color: #aaa;
  font-size: 0.9375rem;
  line-height: 1;
}

.post-top-communication .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.post-top-communication .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 2px;
}

.post-top-communication .category {
  display: inline-flex;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.post-top-communication .category::before {
  content: "#";
  display: block;
  color: var(--color_text);
}

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

  .post-top-communication a:hover .post-ttl {
    color: var(--color_primary);
  }
}

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

  .t-post-layout .l-btn {
    justify-items: normal;
  }

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

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

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

  .post-top-communication {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--color_border);
    position: relative;
  }

  .post-top-communication:has(.no-post) {
    border-top: none;
  }

  .post-top-communication:has(.no-post)::before {
    display: none;
  }

  .post-top-communication::before {
    content: "";
    width: 6px;
    height: 1px;
    background-color: var(--color_primary);
    position: absolute;
    top: -1px;
    left: 0;
  }

  .post-top-communication a {
    border-bottom: 1px solid var(--color_border);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 10px 0;
    position: relative;
  }

  .post-top-communication a::before {
    content: "";
    width: 6px;
    height: 1px;
    background-color: var(--color_primary);
    position: absolute;
    bottom: -1px;
    left: 0;
  }

  .post-top-communication .post-img {
    margin-bottom: 0;
  }

  .post-top-communication time,
  .post-top-communication .category {
    font-size: 0.875rem;
  }

  .post-top-communication .post-ttl {
    font-size: 0.9375rem;
    margin-bottom: 5px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl-wrapper {
  width: 100%;
  max-height: 588px;
  height: 100%;
  aspect-ratio: 1800/588;
  color: #fff;
  text-align: center;
  position: relative;
}

.page-ttl-wrapper::before {
  content: "";
  background: url(../images/under/page-ttl_bg.jpg) no-repeat top left/cover;
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-ttl-wrapper::after {
  content: "";
  background-color: rgba(85, 85, 85, 0.27);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-ttl {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 70px 5% 50px;
  position: relative;
}

.page-ttl::before {
  content: "";
  background: url(../images/under/page-ttl_deco.svg) no-repeat bottom right/contain;
  max-width: 570px;
  width: 31.666vw;
  aspect-ratio: 570/445;
  position: absolute;
  bottom: 0;
  right: 0;
}

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

.breadcrumb {
  margin: 5px 0 60px;
  width: 100%;
}

.breadcrumb ul {
  margin-inline: auto;
  max-width: 1024px;
  width: 90%;
}

.breadcrumb ul li {
  font-size: 0.8125rem;
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "> ";
  padding: 0 5px;
  color: var(--color_border);
}

.breadcrumb ul a {
  text-decoration: underline;
}

.breadcrumb ul a:hover {
  text-decoration: none;
}

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

@media (max-width: 800px) {
  .page-ttl-wrapper {
    height: 250px;
  }

  .page-ttl {
    padding: 100px 5% 50px;
  }

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

  .breadcrumb {
    margin: 5px 0 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.u-h2,
.postdata h2 {
  font-size: 2.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 50px;
}

.u-h2::before,
.postdata h2::before {
  content: "";
  background: url(../images/under/u-h2_deco.svg) no-repeat center/contain;
  width: 52px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.u-h3,
.postdata h3 {
  font-size: 1.875rem;
  padding-top: 18px;
  margin-bottom: 30px;
  position: relative;
}

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

.u-h4,
.postdata h4 {
  color: var(--color_primary);
  font-size: 1.3125rem;
  margin-bottom: 15px;
}

.tel-txt {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  font-weight: bold;
  font-size: 2.1875rem;
  line-height: 1;
}

.tel-txt .small {
  font-size: 1.0625rem;
  margin-bottom: 4px;
}

.u-catch {
  color: var(--color_primary);
  font-size: 1.625rem;
  line-height: 1.8;
  font-weight: bold;
}

@media (max-width: 800px) {

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

  .u-h3,
  .postdata h3 {
    font-size: 1.3125rem;
    padding-top: 15px;
    margin-bottom: 20px;
  }

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

  .u-h4,
  .postdata h4 {
    font-size: 1.125rem;
  }

  .u-catch {
    font-size: 1.25rem;
  }
}

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

.tall:last-of-type {
  margin-bottom: 100px;
}

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

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

.hidden {
  overflow: hidden;
}

.u-bg {
  background: url(../images/under/u-bg.jpg) no-repeat center/cover;
  padding: 100px 0;
}

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

  .tall:last-of-type {
    margin-bottom: 70px;
  }

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

  .u-bg {
    padding: 70px 0;
  }
}

.l-style01-wrapper {
  padding-bottom: 143px;
  position: relative;
}

.l-style01-wrapper::before {
  content: "";
  background: url(../images/under/l-style01_bg.jpg) no-repeat center/cover;
  position: absolute;
  inset: 113px 0 0 0;
  z-index: -1;
}

.l-style01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 5%;
  padding-left: 11.111vw;
}

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

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

.l-style01 .l-desc {
  margin-top: 25px;
  flex: 1;
}

.l-style01 .l-ttl {
  color: var(--color_primary);
  font-size: 2.5rem;
  margin-bottom: 45px;
}

.l-style02 {
  position: relative;
  padding: 100px 0;
}

.l-style02::before {
  content: "";
  background: url(../images/under/l-style02_bg.jpg) no-repeat top left/contain;
  width: 29.722vw;
  aspect-ratio: 535/864;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.l-style02::after {
  content: "";
  background: url(../images/under/l-style02_deco.svg) no-repeat bottom right/contain;
  width: 31.388vw;
  aspect-ratio: 565/773;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.l-style03 {
  display: flex;
  gap: 7.5%;
  margin: 0 0 0 -10%;
}

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

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

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

.l-style03 .l-num {
  display: inline-block;
  color: var(--color_primary);
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 15px;
}

.l-style03 .l-ttl {
  font-size: 1.75rem;
  margin-bottom: 30px;
}

.l-style03 .l-sub-ttl {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 30px;
}

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

.l-style04 {
  display: flex;
}

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

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

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

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

.l-style04 .l-num {
  display: inline-block;
  color: var(--color_primary);
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 15px;
}

.l-style04 .l-ttl {
  font-size: 1.625rem;
  margin-bottom: 15px;
}

.l-style04 .l-sub-ttl {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 20px;
}

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

.img-layout01 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.img-layout01 .l-img:not(.large01):not(.large02) {
  max-width: 335px;
  width: 100%;
  aspect-ratio: 1/1;
}

.img-layout01 .l-img:not(.large01):not(.large02) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-layout01 .l-img.large01 img, .img-layout01 .l-img.large02 img {
  width: 100%;
  aspect-ratio: 1045/690;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-layout01 .l-img.large01 {
  grid-area: 1/2/3/5;
}

.img-layout01 .l-img.large02 {
  grid-area: 2/2/4/5;
}

.img-layout02 {
  display: grid;
  grid-template-columns: auto min(23.928vw, 335px);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.img-layout02 .l-img:not(.large) {
  max-width: 335px;
  width: 100%;
  aspect-ratio: 1/1;
}

.img-layout02 .l-img:not(.large) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-layout02 .l-img.large {
  grid-area: 1/1/3/2;
}

.img-layout02 .l-img.large img {
  max-width: 1045px;
  width: 100%;
  max-height: 690px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

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

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

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

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

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

@media (max-width: 800px) {
  .l-style01-wrapper {
    padding-bottom: 70px;
  }

  .l-style01 {
    flex-direction: column;
    gap: 30px;
    padding: 0 5%;
  }

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

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

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

  .l-style02 {
    padding: 70px 0;
  }

  .l-style02::before {
    width: 80%;
  }

  .l-style02::after {
    width: 200px;
  }

  .l-style03 {
    flex-direction: column;
    gap: 35px;
    margin: 0 -5vw;
  }

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

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

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

  .l-style03 .l-num {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .l-style04 .l-num {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }

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

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

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

  .img-layout01,
  .img-layout02 {
    gap: 5px;
  }

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

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

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

  .l-imgR.map {
    flex-direction: column-reverse;
  }

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

.list-style01 {
  display: grid;
}

.list-style01 li {
  position: relative;
  padding-left: 20px;
}

.list-style01 li:before {
  content: "・";
  color: var(--color_text);
  position: absolute;
  top: 0;
  left: 0;
}

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

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

.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;
  text-align: center;
  display: grid;
  place-items: center;
  position: absolute;
  top: 10px;
  left: 0;
  padding-left: 1px;
  width: 20px;
  height: 20px;
}

.list-check {
  display: grid;
}

.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: 12px;
  width: 18px;
  height: 18px;
}

.list-check-square {
  display: grid;
}

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

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

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

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

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

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

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

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

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

.dl-style01 dd {
  background: #f5f5f5;
  font-size: 0.9375rem;
  padding: 20px;
}

.card-style01-wrapper {
  position: relative;
  padding: 5.388vw 0 34px;
}

.card-style01-wrapper::before {
  content: "";
  background: url(../images/under/card-style01_deco01.svg) no-repeat top left/contain;
  width: 15.611vw;
  aspect-ratio: 281/403;
  position: absolute;
  top: -5.388vw;
  top: 0;
  left: 0;
  z-index: -1;
}

.card-style01-wrapper::after {
  content: "";
  background: url(../images/under/card-style01_deco02.svg) no-repeat bottom right/contain;
  width: 7.111vw;
  aspect-ratio: 128/245;
  position: absolute;
  bottom: -34px;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.card-style01 {
  gap: 50px;
}

.card-style01>li {
  position: relative;
  padding-top: 33px;
}

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

.card-style01 .card-ttl {
  font-size: 2.5rem;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: -31px;
  z-index: 1;
}

.card-style02 {
  gap: 16px;
}

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

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

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

.card-style03 {
  gap: 16px;
}

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

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

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

@media (max-width: 800px) {
  .card-style01-wrapper {
    padding: 30px 0 20px;
  }

  .card-style01-wrapper::before {
    width: 150px;
  }

  .card-style01-wrapper::after {
    width: 70px;
  }

  .card-style01 {
    gap: 30px;
  }

  .card-style01>li {
    padding-top: 25px;
  }

  .card-style01 .card-ttl {
    left: -5%;
  }

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

  .card-style02 {
    gap: 15px;
  }

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

  .card-style03 {
    gap: 15px;
  }

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

.table-style01 tr:first-child th,
.table-style01 tr:first-child td {
  border-top: none;
}

.table-style01 th,
.table-style01 td {
  padding: 18px 0;
  border: 1px solid var(--color_border);
  border-width: 1px 0;
  vertical-align: top;
}

.table-style01 th {
  font-weight: bold;
  text-align: left;
}

.table-style02 th,
.table-style02 td {
  padding: 15px;
  border: 1px solid #ddd;
  vertical-align: middle;
}

.table-style02 th {
  background: var(--color_primary);
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.table-style02 th.bg01 {
  background: var(--color_bg);
  color: #333;
}

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

.table-style03 th {
  background: var(--color_bg);
  font-weight: bold;
  text-align: left;
}

.table-style03.tac th {
  text-align: center;
}

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

.table-style04 th {
  padding: 15px 15px 15px 0;
  font-weight: bold;
  text-align: left;
  border-bottom: 2px solid var(--color_primary);
}

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

@media (max-width: 800px) {

  .table-style01 th,
  .table-style01 td {
    padding: 15px 0;
  }

  .table-style01.sp-block {
    border-bottom: 1px solid #D6D6D6;
  }

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

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

  .table-style01.sp-block td {
    border: none;
  }

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

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

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

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

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

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

  .table-style03.sp-block th,
  .table-style03.sp-block td {
    display: block;
  }

  .table-style03.sp-block td {
    border: none;
  }

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

  .table-style04.sp-block th,
  .table-style04.sp-block td {
    display: block;
    padding: 20px 0;
  }

  .table-style04.sp-block th {
    border-bottom: none;
    padding-bottom: 0;
  }

  .table-style04.sp-block td {
    padding-top: 0;
    position: relative;
  }

  .table-style04.sp-block td::before {
    content: "";
    background-color: var(--color_primary);
    width: 100px;
    height: 2px;
    position: absolute;
    bottom: -2px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .box-ttl01 {
    font-size: 1.25rem;
  }

  .box-style02 {
    padding: 20px;
  }

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

  .box-style03 {
    padding: 30px;
  }

  .box-style04 {
    padding: 30px;
  }
}

.list-anchor-link {
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
}

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

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

.list-anchor-link a {
  display: inline-block;
  position: relative;
  padding-right: 25px;
}

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

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

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

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

  .list-anchor-link a {
    padding: 0 0 0 30px;
  }

  .list-anchor-link a::before {
    right: inherit;
    left: 0;
    top: 4px;
  }
}

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

.flow-style01>li+li {
  border-top: 1px solid var(--color_text);
  padding-top: 70px;
  margin-top: 70px;
  position: relative;
}

.flow-style01>li+li::before {
  content: "";
  background: url(../images/share/flow_arrow02.svg) no-repeat center/contain;
  width: 45px;
  height: 45px;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-style01 .flow-ttl {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid var(--color_border);
  font-size: 1.375rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.flow-style01 .flow-ttl .num {
  background: var(--color_primary);
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  line-height: 27px;
  padding: 0 10px;
  margin-top: 3px;
  position: relative;
}

.flow-style01 .flow-ttl .num::after {
  content: "";
  border-style: solid;
  border-width: 13.5px 0 14.5px 7px;
  border-color: transparent transparent transparent var(--color_primary);
  position: absolute;
  top: 0;
  right: -7px;
}

.flow-style01 .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 5%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  .flow-style01>li+li {
    padding-top: 50px;
    margin-top: 50px;
  }

  .flow-style01 .flow-ttl {
    flex-direction: column;
    gap: 10px;
    font-size: 1.25rem;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .flow-style01 .flow-ttl .num {
    margin: 0;
  }

  .flow-style01 .wrap {
    flex-direction: column;
    gap: 30px;
  }

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

  .flow-style02 {
    gap: 40px;
  }

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

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

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

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

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

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

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

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

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

.tel-layout {
  background: var(--color_bg);
  max-width: 800px;
  padding: 5%;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid var(--color_primary);
  margin-bottom: 30px;
  font-size: 1.25rem;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 25px;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .wrapper {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.tel-layout .l-tel {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  justify-content: center;
  font-weight: bold;
  font-size: 2.1875rem;
  line-height: 1;
}

.tel-layout .l-tel .small {
  font-size: 1.0625rem;
  margin-bottom: 4px;
}

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

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

.tel-layout .l-time dt {
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  text-align: center;
  font-weight: bold;
  font-size: 0.9375rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  .tel-layout .l-ttl {
    font-size: 1rem;
    margin: 0 auto 25px;
  }

  .tel-layout .wrapper {
    flex-direction: column;
    gap: 5px;
  }

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

  .tel-layout .l-tel .small {
    font-size: 0.9375rem;
    margin-bottom: 4px;
  }
}

.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: #fff;
  font-size: 0.6875rem;
  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%);
}

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

  .under-slider01 .splide__arrow--next {
    right: 15px;
  }

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

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

.zoom-img::before {
  content: "";
  -webkit-mask: url(../images/share/icon_zoom.svg) no-repeat center/contain;
  mask: url(../images/share/icon_zoom.svg) no-repeat center/contain;
  background-color: var(--color_secondary);
  width: 25px;
  aspect-ratio: 25/22;
  position: absolute;
  bottom: 37px;
  right: 34px;
  z-index: 2;
  transition: background-color 0.3s;
}

.zoom-img::after {
  content: "";
  background-color: var(--color_white);
  border-radius: 50px;
  width: 64px;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 1;
  transition: background-color 0.3s;
}

.zoom-img.border::after {
  border: 1px solid var(--color_secondary);
}

@media (any-hover: hover) {
  .zoom-img:hover::before {
    background-color: var(--color_white);
  }

  .zoom-img:hover::after {
    background-color: var(--color_secondary);
  }
}

@media (max-width: 800px) {
  .zoom-img::before {
    width: 15px;
    bottom: 13px;
    right: 12px;
  }

  .zoom-img.large::before {
    width: 25px;
    bottom: 23px;
    right: 21px;
  }

  .zoom-img::after {
    width: 30px;
    bottom: 5px;
    right: 5px;
  }

  .zoom-img.large::after {
    width: 50px;
    bottom: 10px;
    right: 10px;
  }
}

[data-tab-content] {
  display: none;
}

[data-tab-content].is-active {
  display: block;
  animation: tabFadeIn 0.7s ease 0s 1 normal;
}

.tab-list {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-nav-item {
  display: inline-block;
  cursor: pointer;
  border: 1px solid var(--color_secondary);
  text-align: center;
  padding: 6px 38px;
  transition: all 0.2s ease;
}

.tab-nav-item.is-active {
  background-color: var(--color_primary);
  color: var(--color_white);
  border: 1px solid var(--color_primary);
}

.tab-nav-item.pd-small {
  padding: 6px 15px;
}

@media (any-hover: hover) {
  .tab-nav-item:hover {
    background-color: var(--color_primary);
    color: var(--color_white);
    border: 1px solid var(--color_primary);
  }
}

@keyframes tabFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 800px) {
  .tab-list {
    border-bottom: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-nav-item {
    line-height: 1.5;
    border-radius: 2px;
    padding: 10px;
  }
}

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

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

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

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

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

.pdf-container {
  position: relative;
  width: 100%;
  background-color: var(--color_white);
  border-radius: 8px;
  overflow: hidden;
}

.pdf-container embed {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

@media (max-width: 800px) {
  .pdf-container embed {
    height: 300px;
  }
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #000;
  font-size: 1.125rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.dl-privacy dd+dt {
  margin-top: 30px;
}

.dl-privacy dt {
  border-bottom: 1px solid var(--color_text);
  font-size: 1.25rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.dl-privacy .item+.item {
  margin-top: 50px;
}

@media (max-width: 800px) {
  .dl-privacy .item+.item {
    margin-top: 30px;
  }
}

/*-----------------------------------------------------------
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;
}

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fade {
  transition: opacity 0.5s;
}

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

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

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

.color-red {
  color: #F44336;
}

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

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

.mb0 {
  margin-bottom: 0;
}

.mbXS {
  margin-bottom: 5px;
}

.mbS {
  margin-bottom: 15px;
}

.mbM {
  margin-bottom: 30px;
}

.mbXM {
  margin-bottom: 50px;
}

.mbL {
  margin-bottom: 60px;
}

.mbXL {
  margin-bottom: 90px;
}

.mt0 {
  margin-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.col2,
.col3,
.col4 {
  display: grid;
}

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

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

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

.gap15 {
  gap: 15px;
}

.gap20 {
  gap: 20px;
}

.gap25 {
  gap: 25px;
}

.gap30 {
  gap: 30px;
}

.gap35 {
  gap: 35px;
}

.gap40 {
  gap: 40px;
}

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

  .sp-only {
    display: block;
  }

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

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

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

  .mbL {
    margin-bottom: 30px;
  }

  .mbXL {
    margin-bottom: 50px;
  }

  .sp-col1,
  .sp-col2,
  .sp-col3,
  .sp-col4 {
    display: grid;
  }

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

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

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

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

  .sp-gap15 {
    gap: 15px;
  }

  .sp-gap20 {
    gap: 20px;
  }

  .sp-gap25 {
    gap: 25px;
  }

  .sp-gap30 {
    gap: 30px;
  }

  .sp-gap35 {
    gap: 35px;
  }

  .sp-gap40 {
    gap: 40px;
  }
}

/*-----------------------------------------------------------
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);
  }
}

/*------------
lenis
-------------*/
html.lenis,
html.lenis body {
  height: auto !important;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

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

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

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

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

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

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

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

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

.splide--rtl {
  direction: rtl;
}

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

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

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

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

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

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

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

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

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

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

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

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

.splide__pagination {
  gap: 8px;
}

.splide__pagination__page {
  background: #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;
}

/*------------
Fancybox
-------------*/
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
