@charset "UTF-8";

:root {
  --color_body_bg: #F7F7F7;
  --color_text: #505050;
  --color_link: #AC8B4A;
  --color_border: #D8D5CF;
  --color_primary: #BFA673;
  --color_primary_text: #AC8B4A;
  --color_secondary: #9DC7A4;
  --color_tertiary: #F4EFE7;
  --font_base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_jp: "FOT-マティス ProN M", serif;
  --font_en: "Cormorant", serif;
}

/*-----------------------------------------------------------
1-1. Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
}

div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
samp,
sub,
sup,
var,
b,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
mark,
audio,
video,
a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span,
small,
em,
time,
i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

a {
  border: medium;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

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

a:-webkit-any-link:focus-visible {
  outline-offset: 1px;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

legend {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5em;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

input,
select {
  vertical-align: middle;
}

abbr[title],
dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

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

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

table {
  border-color: inherit;
  border-collapse: collapse;
  border-spacing: 0;
  border-color: inherit;
  text-indent: 0;
  width: 100%;
}

iframe {
  border-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

::selection {
  background: #d4dcd6;
}

:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

:lang(en) {
  --leading-trim: calc((1cap - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }

  :lang(en) {
    --leading-trim: 0px;
  }
}

/*-----------------------------------------------------------
body
-----------------------------------------------------------*/
body,
html {
  width: 100%;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  background-color: var(--color_body_bg);
  color: var(--color_text);
  font-size: 1.5rem;
  font-family: var(--font_base);
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

.link {
  color: var(--color_link);
  text-decoration: underline;
}

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

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

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

@media (max-width: 800px) {

  /*-----------------------------------------------------------
  body SP
  -----------------------------------------------------------*/
  body {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.4;
  }

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

/*-----------------------------------------------------------
header
-----------------------------------------------------------*/
.header {
  position: fixed;
  inset: 30px 40px auto;
  z-index: 9998;
}

.h-container {
  background: #fff;
  border-radius: 4px;
  padding: 0 110px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 75px;
}

.lang-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lang-btn li+li:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background: var(--color_text);
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  margin: 0 10px;
  vertical-align: -2px;
}

.lang-btn li.current a {
  color: #ACACAC;
  pointer-events: none;
}

.lang-btn li a {
  font-size: 1.3rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-position: bottom right;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {
  .lang-btn li a:is(:hover, :focus) {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

@media (max-width: 800px) {

  /*-----------------------------------------------------------
  header SP
  -----------------------------------------------------------*/
  .header {
    position: fixed;
    inset: 15px 10px auto;
  }

  .h-container {
    padding: 0 65px 0 20px;
    height: 50px;
  }

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

  .lang-btn li+li:before {
    height: 13px;
    margin: 0 8px;
  }

  .lang-btn li a {
    font-size: 1.2rem;
  }
}

/*-----------------------------------------------------------
g-navi
-----------------------------------------------------------*/
/* ボタン */
.sp-navi-btns {
  display: none;
}

.navi-menu-btn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 30px;
  right: 50px;
  width: 75px;
  height: 75px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 9999;
}

.navi-menu-btn .hamburger-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 46px;
  height: 1px;
  background: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navi-menu-btn .hamburger-line::before,
.navi-menu-btn .hamburger-line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color_text);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navi-menu-btn .hamburger-line::before {
  top: -5px;
}

.navi-menu-btn .hamburger-line::after {
  top: 5px;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line {
  background-color: transparent;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::before, .navi-menu-btn[aria-expanded=true] .hamburger-line::after {
  top: 0;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::before {
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::after {
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}

.navi-menu-btn .u-visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/* 中身 */
.g-navi-contents {
  pointer-events: none;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
  background-blend-mode: multiply;
  padding: 30px 20px;
  border-radius: 4px;
  position: fixed;
  inset: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  z-index: 9995;
}

.g-navi-contents.is-open {
  pointer-events: auto;
  visibility: visible;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  opacity: 1;
}

.g-navi-contents-inner {
  background: #fff;
  padding: 150px 0;
  min-height: 100%;
}

/* レイアウト等 */
.g-navi-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-inline: auto;
  width: 95%;
  gap: 5.5%;
  position: relative;
  z-index: 5;
}

.g-navi-layout .item:nth-child(1) {
  width: 42%;
  min-width: 490px;
}

.g-navi-layout .item:nth-child(2) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.g-navi-layout .dl-time {
  background: #F7F7F7;
}

.g-navi-list-wrap {
  display: -ms-grid;
  display: grid;
  grid-template: auto 1fr/repeat(auto-fill, minmax(360px, 1fr));
  gap: min(70px, 3.88vw);
  grid-template-areas: "navi01 navi02""item navi02";
}

.g-navi-list01 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: navi01;
}

.g-navi-list01>li {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 10px;
}

.g-navi-list01>li>a,
.g-navi-list01>li>.no-link {
  display: block;
  font-family: var(--font_jp);
  font-size: 2.1rem;
  padding: 0 0 10px;
  margin: 0 0 25px;
  border-bottom: 1px solid var(--color_border);
}

.g-navi-list01>li>ul {
  margin-top: 10px;
}

.g-navi-list01>li>ul>li {
  margin-bottom: 10px;
  padding: 0 0 0 18px;
  position: relative;
}

.g-navi-list01>li>ul>li:before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background: var(--color_primary);
  position: absolute;
  left: 0;
  top: 1.1em;
}

.g-navi-list01>li>ul>li>a {
  font-family: var(--font_jp);
  font-size: 1.7rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-position: bottom right;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
  padding: 0 0 5px;
}

@media (hover: hover) {
  .g-navi-list01>li>ul>li>a:is(:hover, :focus) {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

.g-navi-list02 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: navi02;
}

.g-navi-list02>li {
  margin-bottom: 15px;
  padding: 0 0 0 20px;
  position: relative;
}

.g-navi-list02>li:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 0.9em;
}

.g-navi-list02>li>a {
  font-family: var(--font_jp);
  font-size: 1.7rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-position: bottom right;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
  padding: 0 0 5px;
}

@media (hover: hover) {
  .g-navi-list02>li>a:is(:hover, :focus) {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

.g-navi-list-item {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: item;
}

.navi-card-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.navi-card-layout .card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  aspect-ratio: 300/250;
  border-radius: 4px;
}

.navi-card-layout .card-ttl {
  font-family: var(--font_jp);
  font-size: 2.2rem;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.navi-card-layout .card-ttl .icon {
  display: block;
  line-height: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
}

.navi-card-layout .card-item[href^=tel] .card-ttl {
  font-size: 2.5rem;
}

.navi-card-layout .card-txt {
  font-family: var(--font_jp);
  font-size: 1.2rem;
}

.navi-card-layout .card-img {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.navi-card-layout .card-img:before {
  content: "";
  inset: 0;
  background: #604F2C;
  opacity: 0.7;
  position: absolute;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navi-card-layout .card-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (hover: hover) {
  .navi-card-layout .card-item:is(:hover, :focus) .card-img:before {
    opacity: 0.8;
  }

  .navi-card-layout .card-item:is(:hover, :focus) .card-img img {
    scale: 1.1;
  }
}

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

body.is-hidden {
  overflow: clip;
}

@media (max-width: 1300px) {
  .g-navi-list-wrap {
    display: block;
  }

  .g-navi-list01 {
    margin-bottom: 50px;
  }

  .g-navi-list01>li>a,
  .g-navi-list01>li>.no-link {
    font-size: 1.8rem;
    padding: 0 0 10px;
    margin: 0 0 20px;
  }

  .g-navi-list01>li>ul>li>a {
    font-size: 1.6rem;
  }

  .g-navi-list02 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    margin-bottom: 50px;
  }

  .g-navi-list02>li:before {
    top: 0.7em;
  }

  .g-navi-list02>li>a {
    font-size: 1.6rem;
  }

  .navi-card-layout .card-ttl .icon {
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
  }

  .navi-card-layout .card-ttl {
    font-size: 2rem;
  }

  .navi-card-layout .card-item[href^=tel] .card-ttl {
    font-size: 2.3rem;
  }
}

@media (max-width: 800px) {

  /*-----------------------------------------------------------
  g-navi SP
  -----------------------------------------------------------*/
  /* ボタン */
  :root {
    --navi-background: #BFA673;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
  }

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

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

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

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

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

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

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

  .sp-navi-btns .item.reserve img {
    height: 15px;
  }

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

  .navi-menu-btn {
    top: 25px;
    right: 25px;
    width: 32px;
    height: 32px;
  }

  .navi-menu-btn .hamburger-line {
    width: 32px;
  }

  /* 中身 */
  .g-navi-contents {
    padding: 0;
  }

  .g-navi-contents-inner {
    padding: 100px 0;
  }

  .g-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    opacity: 1;
  }

  /* レイアウト等 */
  .g-navi-layout {
    display: block;
    width: 90%;
  }

  .g-navi-layout .item:nth-child(1) {
    width: 100%;
    min-width: 0;
  }

  .g-navi-layout .item:nth-child(2) {
    width: 100%;
  }

  .g-navi-list-wrap {
    display: block;
  }

  .g-navi-list01 {
    margin-bottom: 35px;
  }

  .g-navi-list01 .list-col2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  .g-navi-list02 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    margin-bottom: 35px;
  }

  .navi-card-layout {
    gap: 10px;
    margin-bottom: 35px;
  }

  .navi-card-layout .card-ttl {
    font-size: 1.7rem;
    gap: 8px;
  }

  .navi-card-layout .card-item[href^=tel] .card-ttl {
    font-size: 1.6rem;
  }

  .navi-card-layout .card-txt {
    font-size: 1rem;
  }
}

.guide-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: auto;
  right: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#B39D72), to(#BFA772));
  background-image: linear-gradient(to right, #B39D72, #BFA772);
  border-radius: 4px 0 0 0;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(calc(100% - 66px));
  transform: translateY(calc(100% - 66px));
  z-index: 100;
  max-width: 270px;
}

.guide-bar.is-open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.guide-bar.is-hide {
  opacity: 0;
  visibility: hidden;
}

.guide-bar-ttl {
  border: none;
  background: none;
  padding: 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  position: relative;
  cursor: pointer;
  width: 100%;
}

.guide-bar-ttl svg {
  -o-object-fit: contain;
  object-fit: contain;
  height: 22px;
  margin-right: 13px;
}

.arrow {
  display: inline-block;
  width: 10px;
  height: 24px;
  position: absolute;
  right: 23px;
  top: calc(50% - 12px);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background: url(../images/share/guide-bar-arrow.svg) no-repeat center/contain;
}

.is-open .guide-bar-ttl .arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.guide-bar-contents .item {
  position: relative;
}

.guide-bar-contents .item:before {
  content: "";
  display: block;
  border-top: 1px solid #CEC1A9;
  height: 1px;
  position: absolute;
  inset: 0 20px auto;
}

.guide-bar-contents a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 20px;
  color: #fff;
  min-height: 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.guide-bar-contents a .ttl {
  font-family: var(--font_jp);
  font-size: 1.7rem;
  letter-spacing: 0.1em;
}

.guide-bar-contents a .ttl.tel-ttl {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

.guide-bar-contents a .sub {
  display: block;
  font-family: var(--font_jp);
  font-size: 1rem;
  width: 100%;
  margin-top: 5px;
}

@media (hover: hover) {
  .guide-bar-contents a:is(:hover, :focus) {
    background-color: oklch(from var(--color_primary) 0.7 c h);
  }
}

.guide-bar-contents .img {
  display: inline-block;
  margin-right: 10px;
}

.guide-bar-contents .img img {
  -o-object-fit: scale-down;
  object-fit: scale-down;
  height: 17px;
}

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

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

.hero-img {
  position: relative;
}

.hero-ttl {
  position: absolute;
  left: 5%;
  bottom: 15%;
  z-index: 5;
  color: #fff;
}

.hero-ttl .txt01 {
  font-family: var(--font_jp);
  font-size: 2.88vw;
  letter-spacing: 0.1em;
  line-height: 1.34;
}

.hero-ttl .txt02 {
  font-family: var(--font_jp);
  font-size: 1.1vw;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: 2.4em;
}

.hero-ttl .txt02 .bold {
  font-family: "FOT-マティス ProN B", serif;
}

.hero-slider .splide__slide {
  position: relative;
}

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

.hero-slider .splide__slide img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100svh;
  max-height: 1000px;
}

.hero-slider .splide__slide {
  overflow: hidden;
}

/*ズームアウト*/
.hero-slider .splide__slide.zoom.is-active img {
  -webkit-animation: zoom 8s 0s infinite forwards;
  animation: zoom 8s 0s infinite forwards;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

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

@keyframes slideLeft {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

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

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

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

@keyframes slideRight {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

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

.hero-news-layout {
  background: #fff;
  border-radius: 0 6px 0 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 15px 70px;
  grid-template-columns: minmax(0, 1fr) 70px;
  gap: 0 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 850px;
  padding: 0 20px;
  width: 70%;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.hero-news-layout .l-btn a {
  display: inline-block;
  border: 1px solid #8D8D8D;
  border-radius: 3px;
  font-family: var(--font_jp);
  font-size: 1.3rem;
  line-height: 1.1;
  padding: 7px 22px 7px 10px;
  position: relative;
  min-width: 70px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hero-news-layout .l-btn a:after {
  content: "";
  display: block;
  background: var(--color_primary);
  -webkit-mask: url(../images/share/link-arrow-small.svg) no-repeat center/contain;
  mask: url(../images/share/link-arrow-small.svg) no-repeat center/contain;
  width: 17px;
  height: 8px;
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) {
  .hero-news-layout .l-btn a:is(:hover, :focus) {
    border-color: var(--color_primary);
    background-color: var(--color_primary);
    color: #fff;
  }

  .hero-news-layout .l-btn a:is(:hover, :focus):after {
    background: #fff;
  }
}

@media (max-width: 800px) {
  .hero-ttl {
    left: 5%;
    bottom: 50px;
  }

  .hero-ttl .txt01 {
    font-size: 6.75vw;
  }

  .hero-ttl .txt02 {
    font-size: 3.5vw;
    margin-top: 5.25vw;
  }

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

  .hero-news-layout {
    border-bottom: 1px solid var(--color_border);
    padding: 10px 20px;
    width: 100%;
    position: static;
  }
}

/*-----------------------------------------------------------
top contents
-----------------------------------------------------------*/
.container {
  margin-inline: auto;
  max-width: 1024px;
  width: 90%;
}

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

/*t-ttl*/
.t-ttl01 {
  margin-bottom: 70px;
  position: relative;
}

.t-ttl01 .en {
  font-family: var(--font_en);
  font-size: 6.5rem;
  line-height: 1;
  margin-bottom: 5px;
}

.t-ttl01 .ttl {
  font-family: var(--font_jp);
  font-size: 1.7rem;
}

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

  .t-ttl01 .en {
    font-size: 4rem;
    margin-bottom: 5px;
  }

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

/*sec01*/
.sec01 {
  padding: 150px 0;
  position: relative;
  z-index: 1;
}

.sec01:before {
  content: "";
  display: block;
  background: url(../images/sec01_bg.png) no-repeat center top/100% auto;
  position: absolute;
  inset: 0 0 auto;
  aspect-ratio: 1800/1071;
  width: 100%;
  height: auto;
  z-index: -1;
}

.sec01-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 9% 58.7%;
  grid-template-columns: 1fr 58.7%;
  gap: 0 9%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1480px;
  width: 90%;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.sec01-layout:before {
  content: attr(data-en);
  display: block;
  font-family: var(--font_en);
  font-size: 14.6rem;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  left: -0.5em;
  top: 0;
  z-index: -1;
}

.sec01-layout .l-ttl {
  font-family: var(--font_jp);
  font-size: 2.22vw;
  line-height: 1.625;
  margin-bottom: 1.375em;
}

.sec01-layout .l-ttl .underline {
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
  margin-bottom: 0.25em;
}

.sec01-layout .l-txt {
  font-family: var(--font_jp);
  font-size: 1.7rem;
  line-height: 2.3;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 60px 0;
    position: relative;
    z-index: 1;
  }

  .sec01:before {
    background-size: cover;
    aspect-ratio: auto;
    width: 100%;
    height: 130%;
    z-index: -1;
  }

  .sec01-layout {
    display: block;
  }

  .sec01-layout:before {
    font-size: 7rem;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    position: absolute;
    left: 0;
    top: -0.6em;
  }

  .sec01-layout .l-desc {
    margin-bottom: 30px;
  }

  .sec01-layout .l-ttl {
    font-size: 2.5rem;
  }

  .sec01-layout .l-txt {
    font-size: 1.6rem;
  }
}

/*sec02*/
.sec02 {
  position: relative;
  z-index: 2;
}

.sec02-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 170px 8% 1fr;
  grid-template-columns: 170px 1fr;
  gap: 0 8%;
  max-width: 1480px;
  width: 90%;
  margin-inline: auto;
}

.sec02-card-layout {
  background: rgba(255, 255, 255, 0.6);
  padding: min(50px, 2.7%);
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 5% 1fr;
  -ms-grid-columns: minmax(0, 1fr) 5% minmax(0, 1fr) 5% 38%;
  grid-template: 1fr 1fr/minmax(0, 1fr) minmax(0, 1fr) 38%;
  gap: 5%;
}

.sec02-card-layout .item01 .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 4px;
  z-index: 2;
}

.sec02-card-layout .item01 .card-img img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sec02-card-layout .item01 .card-ttl {
  font-family: var(--font_jp);
  font-size: 1.7rem;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sec02-card-layout .item01 .card-ttl:after {
  content: "";
  display: inline-block;
  background: url(../images/sec02_arrow01.svg) no-repeat center/contain;
  width: 16px;
  height: 11px;
  margin-left: 10px;
}

@media (hover: hover) {
  .sec02-card-layout .item01:is(:hover, :focus) .card-img img {
    scale: 1.1;
  }

  .sec02-card-layout .item01:is(:hover, :focus) .card-ttl {
    color: var(--color_primary);
  }
}

.sec02-card-layout .item02 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/span 2;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  position: relative;
  align-self: flex-start;
}

.sec02-card-layout .item02 .card-img {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

.sec02-card-layout .item02 .card-img:before {
  content: "";
  width: 100%;
  height: 40%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(152, 117, 49, 0.7)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(152, 117, 49, 0.7));
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
}

.sec02-card-layout .item02 .card-img img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sec02-card-layout .item02 .card-ttl {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 30px 20px;
  width: 100%;
  z-index: 5;
}

.sec02-card-layout .item02 .card-ttl .en {
  color: #fff;
  font-family: var(--font_en);
  font-size: 5rem;
  line-height: 1.2;
}

.sec02-card-layout .item02 .card-ttl .jp {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.7rem;
  line-height: 1.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sec02-card-layout .item02 .card-ttl .jp:after {
  content: "";
  display: inline-block;
  background: url(../images/sec02_arrow02.svg) no-repeat center/contain;
  width: 51px;
  height: 13px;
  margin-left: 10px;
}

@media (hover: hover) {
  .sec02-card-layout .item02:is(:hover, :focus) .card-img img {
    scale: 1.1;
  }
}

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

  .sec02-card-layout {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }

  .sec02-card-layout .item01 {
    width: calc(50% - 10px);
  }

  .sec02-card-layout .item01 .card-ttl {
    font-size: 1.4rem;
  }

  .sec02-card-layout .item01 .card-ttl:after {
    width: 11px;
    height: 8px;
    margin-left: 8px;
  }

  .sec02-card-layout .item02 .card-img img {
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1;
  }

  .sec02-card-layout .item02 .card-ttl .en {
    font-size: 4rem;
  }

  .sec02-card-layout .item02 .card-ttl .jp {
    font-size: 1.4rem;
  }

  .sec02-card-layout .item02 .card-ttl .jp:after {
    width: 41px;
    height: 11px;
    margin-left: 10px;
  }
}

/*sec03*/
.sec03 {
  padding: 100px 0 360px;
  position: relative;
}

.sec03:before {
  content: "";
  background: url(../images/sec03_bg.jpg) no-repeat center/cover;
  height: 550px;
  width: 100%;
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
}

.sec03 .t-ttl01 {
  max-width: 1480px;
  width: 90%;
  margin-inline: auto;
}

.sec03-card-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 3px minmax(0, 1fr) 3px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
  max-width: 1360px;
  width: 90%;
  margin-inline: auto;
}

.sec03-card-layout .card-item {
  overflow: hidden;
  padding: 40px;
  background: rgba(152, 117, 49, 0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
}

.sec03-card-layout .card-item:first-child {
  border-radius: 4px 0 0 4px;
}

.sec03-card-layout .card-item:last-child {
  border-radius: 0 4px 4px 0;
}

.sec03-card-layout .card-img {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.sec03-card-layout .card-img:before {
  content: attr(data-num);
  color: #D3BD91;
  font-family: var(--font_en);
  font-size: 13.7rem;
  line-height: 1;
  position: absolute;
  left: -0.4em;
  bottom: -0.35em;
  z-index: 2;
}

.sec03-card-layout .card-img img {
  border-radius: 4px;
}

.sec03-card-layout .card-ttl {
  font-family: var(--font_jp);
  font-size: 2.2rem;
  text-align: center;
  padding: 0 0 20px;
  margin: 0 0 20px;
  position: relative;
}

.sec03-card-layout .card-ttl:after {
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0.4);
  width: 44px;
  height: 1px;
  position: absolute;
  left: calc(50% - 22px);
  bottom: 0;
}

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

  .sec03:before {
    height: 250px;
  }

  .sec03-card-layout {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
  }

  .sec03-card-layout .card-item {
    padding: 25px;
  }

  .sec03-card-layout .card-item:first-child {
    border-radius: 4px 4px 0 0;
  }

  .sec03-card-layout .card-item:last-child {
    border-radius: 0 0 4px 4px;
  }

  .sec03-card-layout .card-img {
    margin-bottom: 20px;
  }

  .sec03-card-layout .card-img:before {
    font-size: 10rem;
  }

  .sec03-card-layout .card-ttl {
    font-size: 2rem;
  }
}

/*sec04*/
.sec04 {
  padding: 150px 0;
  position: relative;
}

.sec04:before {
  content: "";
  display: block;
  width: 67%;
  position: absolute;
  inset: 197px auto 0 0;
  background: url(../images/share/bg01.jpg);
  z-index: -1;
}

.sec04-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 4% 43.5%;
  grid-template-columns: minmax(0, 1fr) 43.5%;
  gap: 0 4%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 1630px;
  width: 95%;
  margin-inline: auto;
}

.sec04-layout .l-link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 40px;
}

.sec04-layout .l-link li {
  border-bottom: 1px solid var(--color_border);
}

.sec04-layout .l-link li:nth-child(1), .sec04-layout .l-link li:nth-child(2) {
  border-top: 1px solid var(--color_border);
}

.sec04-layout .l-link a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 43px 2% minmax(0, 1fr);
  grid-template-columns: 43px minmax(0, 1fr);
  gap: 0 2%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 45px 10px 20px;
  position: relative;
  height: 100%;
  min-height: 115px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sec04-layout .l-link a:after {
  content: "";
  display: block;
  background: url(../images/share/icon_arrow02.svg) no-repeat center/contain;
  width: 31px;
  height: 27px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.sec04-layout .l-link a .icon {
  text-align: center;
}

.sec04-layout .l-link a .desc .ttl {
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 2.1rem;
  line-height: 1.7;
}

.sec04-layout .l-link a .desc .txt {
  color: #8B8B8B;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 5px;
}

@media (hover: hover) {
  .sec04-layout .l-link a:is(:hover, :focus) {
    background-color: rgba(191, 166, 115, 0.18);
  }
}

.sec04-layout .l-contents {
  min-height: 750px;
  position: relative;
}

.sec04-layout .l-contents .item-img {
  height: 100%;
}

.sec04-layout .l-contents .item-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.sec04-layout .l-contents .item-desc {
  width: 86%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.sec04-layout .l-contents .item-desc .item-ttl {
  background: rgba(172, 139, 74, 0.65);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px minmax(0, 1fr);
  grid-template-columns: 100px minmax(0, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 23px 0;
}

.sec04-layout .l-contents .item-desc .item-ttl .icon {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  text-align: center;
}

.sec04-layout .l-contents .item-desc .item-ttl .desc {
  border-left: 1px solid #fff;
  padding: 0 0 0 30px;
}

.sec04-layout .l-contents .item-desc .item-ttl .desc .ttl {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 3rem;
  line-height: 1.7;
}

.sec04-layout .l-contents .item-desc .item-ttl .desc .txt {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1.6;
}

.sec04-layout .l-contents .item-desc .item-txt {
  background: rgba(255, 255, 255, 0.65);
  font-size: 1.4rem;
  padding: 25px 30px;
}

.sec04-layout .l-contents .item {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.sec04-layout .l-contents .item.is-show {
  opacity: 1;
  z-index: 5;
}

@media (hover: none) {
  .sec04-layout {
    display: block;
  }

  .sec04-layout .l-contents {
    display: none;
  }
}

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

  .sec04:before {
    width: 100%;
    inset: 0;
  }

  .sec04-layout {
    display: block;
    width: 90%;
    margin-inline: auto;
  }

  .sec04-layout .l-link {
    display: block;
  }

  .sec04-layout .l-link li:nth-child(2) {
    border-top: none;
  }

  .sec04-layout .l-link a {
    -ms-grid-columns: 45px 20px minmax(0, 1fr);
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 0 20px;
    height: auto;
    min-height: 0;
  }

  .sec04-layout .l-link a .icon img {
    -o-object-fit: scale-down;
    object-fit: scale-down;
    width: 42px;
    height: 45px;
  }

  .sec04-layout .l-contents {
    display: none;
  }
}

/*sec05*/
.sec05-layout {
  padding: 120px 6.4% 0;
  max-width: 94.4%;
  margin-inline: auto;
  position: relative;
  z-index: 3;
}

.sec05-layout:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 auto;
  height: 469px;
  border-radius: 6px;
  background: url(../images/sec05_bg.jpg) no-repeat center/cover;
  z-index: -1;
}

.sec05-layout .l-desc {
  background: rgba(152, 117, 49, 0.65);
  padding: 75px 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.sec05-layout .t-ttl01 {
  color: #fff;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .sec05-layout {
    padding: 120px 5% 0;
    max-width: 90%;
    margin-inline: auto;
  }

  .sec05-layout:before {
    inset: 0 0 auto;
    height: 60vw;
  }

  .sec05-layout .l-desc {
    padding: 25px;
    width: 100%;
  }

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

/*sec06*/
.sec06 {
  padding: 175px 0 110px;
  position: relative;
  z-index: 2;
}

.sec06:before {
  content: "";
  display: block;
  background: url(../images/share/bg01.jpg);
  width: 73.8%;
  position: absolute;
  inset: -138px 0 0 auto;
  z-index: -1;
}

.sec06-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 0 1fr;
  -ms-grid-columns: 1fr 8% 43%;
  grid-template: auto 1fr/1fr 43%;
  gap: 0 8%;
}

.sec06-layout .l-ttl {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}

.sec06-layout .l-img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
  padding: 0 30px 50px 0;
  position: relative;
}

.sec06-layout .l-img .name {
  background: #fff;
  padding: 35px;
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: var(--font_jp);
}

.sec06-layout .l-img .name .txt01 {
  font-size: 1.6rem;
}

.sec06-layout .l-img .name .txt02 {
  font-size: 2.7rem;
}

.sec06-layout .l-img .name .txt02 .small {
  font-size: 1.3rem;
  margin-right: 0.5em;
}

.sec06-layout .l-desc {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}

.sec06-layout .l-desc .l-txt p+p {
  margin-top: 20px;
}

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

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

  .sec06:before {
    width: 73.8%;
    inset: -60px 0 0 auto;
  }

  .sec06-layout {
    display: block;
  }

  .sec06-layout .l-img {
    padding: 0 20px 20px 0;
    margin-bottom: 20px;
  }

  .sec06-layout .l-img .name {
    padding: 25px;
  }

  .sec06-layout .l-img .name .txt01 {
    font-size: 1.4rem;
  }

  .sec06-layout .l-img .name .txt02 {
    font-size: 2.2rem;
  }

  .sec06-layout .l-img .name .txt02 .small {
    font-size: 1.2rem;
  }

  .sec06-layout .l-desc .l-txt p+p {
    margin-top: 15px;
  }

  .sec06-layout .l-desc .btn-wrap {
    margin-top: 40px;
  }
}

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

.sec07:before {
  content: "";
  display: block;
  background: url(../images/sec07_bg.png) no-repeat center top/contain;
  height: auto;
  aspect-ratio: 1800/772;
  position: absolute;
  inset: -168px 0 auto;
  z-index: -1;
}

.sec07 .business-calendar-wrap {
  margin-bottom: 70px;
}

.sec07-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 7% 428px;
  grid-template-columns: minmax(0, 1fr) 428px;
  gap: 0 7%;
  margin-bottom: 100px;
}

.sec07-layout .l-img img {
  border-radius: 6px;
}

.sec07-layout .l-logo {
  margin-bottom: 20px;
}

.sec07-credit {
  background: #fff;
  border-radius: 6px;
  padding: 25px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  max-width: 720px;
  margin-inline: auto;
}

.sec07-credit .l-ttl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: var(--font_jp);
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

.sec07-credit .l-img {
  width: 380px;
}

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

  .sec07:before {
    inset: -60px 0 auto;
  }

  .sec07 .business-calendar-wrap {
    margin-bottom: 40px;
  }

  .sec07-layout {
    display: block;
    margin-bottom: 50px;
  }

  .sec07-layout .l-img {
    margin-bottom: 20px;
  }

  .sec07-layout .l-logo {
    margin-bottom: 20px;
  }

  .sec07-credit {
    padding: 25px;
    display: block;
  }

  .sec07-credit .l-ttl {
    margin-bottom: 15px;
  }

  .sec07-credit .l-img {
    width: auto;
  }
}

/*sec08*/
.sec08 {
  padding: 0 0 120px;
  position: relative;
  z-index: 1;
}

.sec08:before {
  content: "";
  background: url(../images/share/bg01.jpg);
  position: absolute;
  inset: 30% 0 0 12%;
  z-index: -1;
}

.sec08-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 0 minmax(0, 1fr);
  -ms-grid-columns: 50% 6.4% minmax(0, 1fr);
  grid-template: auto minmax(0, 1fr)/50% minmax(0, 1fr);
  gap: 0 6.4%;
}

.sec08-layout .l-ttl {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
}

.sec08-layout .l-map {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/3/2;
}

.sec08-layout .l-desc {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
}

.sec08-box {
  background: #fff;
  padding: 40px;
}

.sec08-box+.sec08-box {
  margin-top: 20px;
}

.sec08-box .box-ttl {
  font-family: var(--font_jp);
  font-size: 2rem;
  margin-bottom: 20px;
}

.sec08-box .box-ttl .icon {
  margin-right: 10px;
}

.sec08-box .box-ttl .icon img {
  vertical-align: middle;
}

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

  .sec08-layout {
    display: block;
  }

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

  .sec08-box {
    padding: 25px;
  }

  .sec08-box+.sec08-box {
    margin-top: 20px;
  }

  .sec08-box .box-ttl {
    font-family: var(--font_jp);
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .sec08-box .box-ttl .icon {
    margin-right: 10px;
  }

  .sec08-box .box-ttl .icon img {
    vertical-align: middle;
  }
}

/*sec09*/
.sec09 {
  padding: 130px 0;
}

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

/*sec10*/
.sec10 {
  padding: 150px 0 120px;
  position: relative;
  z-index: 1;
}

.sec10:before {
  content: "";
  display: block;
  background: url(../images/sec10_bg.png) no-repeat center top/100% auto;
  position: absolute;
  inset: 0 0 auto;
  aspect-ratio: 1800/1071;
  width: 100%;
  height: auto;
  z-index: -1;
}

.sec10-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 58.7%;
  grid-template-columns: 1fr 58.7%;
  -ms-grid-row: auto 0 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 4%;
  max-width: 1480px;
  width: 90%;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.sec10-layout:before {
  content: attr(data-en);
  display: block;
  font-family: var(--font_en);
  font-size: 10.2rem;
  color: #fff;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  left: -1.5em;
  top: 0;
  z-index: -1;
}

.sec10-layout .l-img {
  grid-area: 1 / 2 / 3 / 3;
}

.sec10-layout .l-desc {
  grid-area: 2 / 1 / 3 / 2;
}

.sec10-layout .l-ttl {
  grid-area: 1 / 1 / 2 / 2;
  font-family: var(--font_jp);
  font-size: 2.22vw;
  line-height: 1.625;
  margin-bottom: 1.375em;
  padding: min(90px, 9vw) 0 0;
}

.sec10-layout .l-ttl .small {
  font-size: 75%;
}

.sec10-layout .l-ttl02 {
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 2.1rem;
  line-height: 1.625;
  margin-bottom: 1em;
}

.sec10-layout .l-txt01 {
  font-family: var(--font_jp);
  font-size: 1.7rem;
  line-height: 2.3;
}

.sec10-layout .l-txt02 {
  font-family: var(--font_jp);
  font-size: 1.6rem;
  line-height: 2.3;
  margin-top: 35px;
}

@media (max-width: 800px) {
  .sec10 {
    padding: 60px 0;
    position: relative;
    z-index: 1;
  }

  .sec10:before {
    background-size: cover;
    aspect-ratio: auto;
    width: 100%;
    height: 130%;
    z-index: -1;
  }

  .sec10-layout {
    display: block;
  }

  .sec10-layout:before {
    font-size: 4rem;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    position: absolute;
    left: 0;
    top: -0.6em;
  }

  .sec10-layout .l-img {
    margin-bottom: 30px;
  }

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

  .sec10-layout .l-ttl02 {
    font-size: 1.8rem;
  }

  .sec10-layout .l-txt01 {
    font-size: 1.6rem;
  }

  .sec10-layout .l-txt02 {
    font-size: 1.4rem;
  }
}

.f-contact {
  padding: 120px;
  background: url(../images/share/f-contact_bg.jpg) no-repeat center/cover;
}

.f-contact .f-contact-ttl {
  color: #fff;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
}

.f-contact .f-contact-ttl .en {
  font-family: var(--font_en);
  font-size: 6.5rem;
  line-height: 1;
  margin-bottom: 5px;
}

.f-contact .f-contact-ttl .ttl {
  font-family: var(--font_jp);
  font-size: 1.7rem;
}

.f-contact-txt {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}

.f-contact-btn {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 35px minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 35px;
}

.f-contact-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background: var(--color_tertiary);
  min-height: 100px;
  border-radius: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) {
  .f-contact-btn a:is(:hover, :focus) {
    background: #fff;
  }
}

.f-contact-btn a .ttl {
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 2.1rem;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.f-contact-btn a .ttl .icon {
  display: block;
  line-height: 1;
}

.f-contact-btn a .txt {
  font-family: var(--font_jp);
  font-size: 1.2rem;
}

.f-contact-btn a[href^=tel] .ttl {
  font-size: 2.5rem;
}

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

  .f-contact .f-contact-ttl {
    margin-bottom: 40px;
  }

  .f-contact .f-contact-ttl .en {
    font-size: 4rem;
    margin-bottom: 5px;
  }

  .f-contact .f-contact-ttl .ttl {
    font-size: 1.5rem;
  }

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

  .f-contact-btn {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}

.sec11 {
  padding: 140px 0;
  overflow: hidden;
  background: url(../images/sec11_bg.png) no-repeat center top/100% auto;
}

.sec11-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 0 auto;
  -ms-grid-columns: 400px 5.6% minmax(0, 1fr);
  grid-template: auto auto/400px minmax(0, 1fr);
  gap: 0 5.6%;
  width: 95%;
  max-width: 1500px;
  margin: 0 auto 0 max(5%, 50% - 600px);
}

.sec11-layout .l-ttl {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  align-self: flex-end;
}

.sec11-layout .l-img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
  -ms-grid-row-align: center;
  align-self: center;
}

.sec11-layout .l-img img {
  width: 100%;
  height: auto;
}

.sec11-layout .l-desc {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
  align-self: flex-start;
}

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

  .sec11-layout {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  .sec11-layout .l-img {
    margin-bottom: 20px;
  }
}

/*-----------------------------------------------------------
footer
-----------------------------------------------------------*/
.footer {
  border-top: 1px solid var(--color_border);
  position: relative;
}

.f-wrapper {
  padding: 130px calc(36.38% + 30px) 85px max(5%, 50% - 740px);
  position: relative;
}

.f-wrapper:after {
  content: "";
  background: url(../images/share/footer_img01.jpg) no-repeat center/cover;
  width: 36.38%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}


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

.f-logo-area .l-address {
  font-size: 1.4rem;
  line-height: 1.8;
}

.f-time-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px 20px;
  margin-bottom: 50px;
}

.f-time-table>.item:first-child {
  min-width: 428px;
}

.f-time-table>.item:last-child {
  min-width: 402px;
}

.f-time-table .dl-time {
  margin: 0;
}

.sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5.5%;
  margin-bottom: 50px;
}

.sitemap ul>li {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 5px;
}

.sitemap ul>li>a,
.sitemap ul>li>.no-link {
  font-size: 1.5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-position: bottom right;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {

  .sitemap ul>li>a:is(:hover, :focus),
  .sitemap ul>li>.no-link:is(:hover, :focus) {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

.sitemap ul>li>ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
  margin-top: 5px;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

.sitemap ul>li>ul>li {
  padding: 0 0 0 17px;
  position: relative;
}

.sitemap ul>li>ul>li:before {
  content: "";
  background: currentColor;
  width: 6px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 18px;
}

.sitemap ul>li>ul>li>a {
  font-size: 1.4rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-position: bottom right;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {
  .sitemap ul>li>ul>li>a:is(:hover, :focus) {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

.sitemap02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 0;
}

.sitemap02 li+li:before {
  content: " ｜ ";
}

.sitemap02 li>a {
  color: #959595;
  font-size: 1.3rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-position: bottom right;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {
  .sitemap02 li>a:is(:hover, :focus) {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

.copyright {
  color: var(--color_primary);
  font-size: 1.2rem;
  font-family: var(--font_jp), Verdana, "Droid Sans";
  padding: 30px;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.pagetop {
  position: absolute;
  right: 0;
  top: -30px;
  z-index: 3;
}

.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color_secondary);
  transition: .3s;
  width: 60px;
  height: 60px;
}

@media (hover: hover) {
  .pagetop a:is(:hover, :focus) {
    background-color: #5CA969;
  }
}

@media (max-width: 800px) {

  /*-----------------------------------------------------------
  footer SP
  -----------------------------------------------------------*/
  .f-wrapper {
    padding: 60px 5% 0;
  }

  .f-wrapper:after {
    content: none;
  }

  .f-logo-area {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }

  .f-logo-area .l-logo {
    margin-bottom: 10px;
  }

  .f-logo-area .l-address {
    font-size: 1.4rem;
  }

  .f-time-table {
    display: block;
  }

  .f-time-table>.item:first-child {
    min-width: 0;
    margin: 0 0 30px;
    text-align: center;
  }

  .f-time-table>.item:last-child {
    min-width: 0;
  }

  .f-time-table .tel-area {
    margin-bottom: 20px;
  }

  .sitemap {
    display: block;
  }

  .sitemap ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }

  .sitemap ul:has(> li > ul) {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

  .sitemap ul+ul {
    margin-top: 15px;
  }

  .sitemap ul>li {
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .sitemap ul>li>ul {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }

  .sitemap ul>li>ul>li {
    line-height: 1.4;
  }

  .sitemap ul>li>ul>li:before {
    top: 12px;
  }

  .sitemap02 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px 0;
  }

  .copyright {
    position: static;
    padding: 30px 0 80px;
    text-align: center;
  }

  .pagetop {
    display: none;
  }
}

/*-----------------------------------------------------------
under
-----------------------------------------------------------*/
.u-contents p+p {
  margin-top: 15px;
}

/*------------
パンくず
--------------*/
.breadcrumb {
  margin: 15px 0 55px;
  width: 100%;
}

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

.breadcrumb ul li {
  color: #888;
  font-size: 1.3rem;
  display: inline;
}

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

@media (hover: hover) {
  .breadcrumb ul li a:is(:hover, :focus) {
    text-decoration: none;
  }
}

.breadcrumb ul li+li:before {
  content: "> ";
  padding: 0 5px;
  color: #ccc;
}

@media (max-width: 800px) {
  .breadcrumb {
    margin: 15px 0 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

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

/*------------
page ttl
--------------*/
.page-ttl {
  padding: 135px 8.8% 0;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url(../images/share/bg01.jpg) no-repeat center/cover;
}

.page-ttl .en {
  font-family: var(--font_en);
  font-size: 6.5rem;
  line-height: 1.4;
}

.page-ttl .ttl {
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 1.9rem;
  line-height: 1.4;
}

@media (max-width: 800px) {
  .page-ttl {
    padding: 65px 5% 0;
    height: 200px;
  }

  .page-ttl .en {
    font-size: 4rem;
  }

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

/*------------
見出し
--------------*/
.u-h2,
.postdata h2 {
  font-family: var(--font_jp);
  font-size: 3rem;
  text-align: center;
  padding: 0 0 25px;
  margin: 0 0 45px;
  position: relative;
}

.u-h2 .label,
.postdata h2 .label {
  background: var(--color_primary);
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.4;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 5px 20px;
}

.u-h2 .txt,
.postdata h2 .txt {
  font-size: 1.7rem;
  line-height: 1.4;
  margin-top: 5px;
}

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

.postdata h2 {
  text-align: left;
}

.postdata h2::after {
  left: 0;
  -webkit-transform: none;
  transform: none;
}

.u-h3,
.postdata h3 {
  background: #fff;
  -webkit-box-shadow: 5px 5px 0 #EDEBE5;
  box-shadow: 5px 5px 0 #EDEBE5;
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 2.1rem;
  padding: 10px 20px;
  margin: 0 0 40px;
}

.u-h4,
.postdata h4 {
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 1.9rem;
  padding: 0 0 0 22px;
  margin: 0 0 25px;
  position: relative;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background: var(--color_primary);
  width: 7px;
  height: 18px;
  position: absolute;
  top: 6px;
  left: 0;
}

.num-ttl {
  border-bottom: 1px solid var(--color_border);
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 2.1rem;
  padding: 0 137px 15px 0;
  margin: 0 0 35px;
  position: relative;
}

.num-ttl:after {
  content: attr(data-num);
  font-family: var(--font_en);
  font-size: 13.7rem;
  line-height: 1;
  color: #D3BD91;
  position: absolute;
  right: 0;
  bottom: -10px;
  -webkit-transform: translateY(15%);
  transform: translateY(15%);
}

.num-ttl[data-num="01"]:after,
.num-ttl[data-num="02"]:after {
  bottom: -25px;
}

.speech-ttl {
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 1.9rem;
  padding: 0 0 0 30px;
  margin: 0 0 20px;
  position: relative;
}

.speech-ttl::before {
  content: "";
  background: url(../images/share/icon_speech.svg) no-repeat center/contain;
  width: 20px;
  height: 19px;
  position: absolute;
  top: 5px;
  left: 0;
}

.u-catch {
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 1.9rem;
  line-height: 1.5;
}

@media (max-width: 800px) {

  .u-h2,
  .postdata h2 {
    font-size: 2.4rem;
    padding: 0 0 20px;
    margin: 0 0 35px;
  }

  .u-h2 .label,
  .postdata h2 .label {
    margin: 0 auto 10px;
  }

  .u-h2 .txt,
  .postdata h2 .txt {
    font-size: 1.5rem;
    margin-top: 5px;
  }

  .u-h3,
  .postdata h3 {
    font-size: 2rem;
    margin: 0 0 25px;
  }

  .u-h4,
  .postdata h4 {
    font-size: 1.8rem;
    padding: 0 0 0 18px;
    margin: 0 0 15px;
  }

  .u-h4::before,
  .postdata h4::before {
    width: 5px;
    height: 17px;
    top: 4px;
  }

  .num-ttl {
    font-size: 2rem;
    padding: 0 70px 10px 0;
    margin: 0 0 25px;
    position: relative;
  }

  .num-ttl:after {
    font-size: 7rem;
    bottom: 0;
  }

  .num-ttl[data-num="01"]:after,
  .num-ttl[data-num="02"]:after {
    bottom: -8px;
  }

  .speech-ttl {
    font-size: 1.8rem;
    padding: 0 0 0 30px;
    margin: 0 0 15px;
  }

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

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

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

.tall {
  margin: 0 0 90px;
}

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

  .tall {
    margin: 0 0 60px;
  }
}

/*------------
column
--------------*/
.col2,
.col2-col2,
.col3,
.col3-col2,
.col4,
.col4-col2 {
  display: -ms-grid;
  display: grid;
}

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

.col3,
.col3-col2 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.col4,
.col4-col2 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
}

@media (max-width: 800px) {

  .col2,
  .col3,
  .col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .col2-col2,
  .col3-col2,
  .col4-col2 {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
}

/*------------
layout
--------------*/
/*l-imgR l-imgL*/
.l-imgR,
.l-imgL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-imgR.center,
.l-imgL.center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

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

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

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

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

.l-imgR .l-img {
  margin: 0 0 0 4%;
}

.l-imgR.center,
.l-imgL.center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fl-imgR,
.fl-imgL {
  display: flow-root;
}

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

.fl-imgR .l-img.half,
.fl-imgL .l-img.half {
  width: 48%;
}

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

.fl-imgR .l-img {
  float: right;
  margin: 0 0 15px 4%;
}

.fl-imgL .l-img {
  float: left;
  margin: 0 4% 15px 0;
}

.fl-imgR .l-img.half,
.fl-imgL .l-img.half {
  width: 48%;
}

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

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    display: block;
  }

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

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

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

  .l-imgR .l-img {
    margin: 0 0 15px;
  }

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

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

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

/*l-style01*/
.l-style01 .l-desc {
  background: #fff;
  border-radius: 6px;
  padding: 70px 90px;
  max-width: 1022px;
  width: 90%;
  margin: -95px auto 0;
  position: relative;
  z-index: 5;
}

.l-style01 .l-desc:before {
  content: "";
  display: block;
  background: var(--color_primary);
  width: 3px;
  height: 54px;
  position: absolute;
  left: calc(50% - 1px);
  top: -27px;
  z-index: 4;
}

.l-style01 .l-desc:after {
  content: "";
  display: block;
  border-radius: 6px;
  border: 1px solid var(--color_border);
  position: absolute;
  inset: 12px;
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 800px) {
  .l-style01 .l-desc {
    padding: 30px;
    width: 90%;
    margin: -40px auto 0;
  }

  .l-style01 .l-desc:before {
    height: 40px;
    top: -20px;
  }

  .l-style01 .l-desc:after {
    inset: 6px;
  }
}

/*l-style02*/
.l-style02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

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

.l-style02 .l-desc {
  background: var(--color_tertiary);
  padding: 55px 55px 55px 150px;
  margin: min(120px, 6.66vw) 0 0 -100px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-style02 .en {
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 15px;
}

.l-style02 .l-ttl {
  font-family: var(--font_jp);
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.l-style02 .l-sub-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.l-style02 .l-sub-ttl::before {
  content: "";
  background: var(--color_primary);
  width: 30px;
  height: 1px;
  margin-right: 25px;
}

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

.l-style02.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: min(120px, 6.66vw) -100px 0 0;
}

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

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

  .l-style02 .l-desc {
    padding: 7%;
    margin: -50px auto 0;
    position: relative;
    z-index: 1;
    width: 90%;
  }

  .l-style02 .en {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .l-style02 .l-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .l-style02 .l-sub-ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .l-style02.reverse .l-desc {
    padding: 7%;
    margin: -50px auto 0;
  }
}

/*------------
list
--------------*/
.list-disc li {
  position: relative;
  padding: 0 0 0 15px;
}

.list-disc li:before {
  background: var(--color_primary);
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 0.4em;
  height: 0.4em;
}

.list-disc li+li {
  margin-top: 3px;
}

.list-decimal {
  padding-left: 22px;
}

.list-decimal li {
  list-style: decimal;
}

.list-decimal li+li {
  margin-top: 3px;
}

.list-decimal-paren {
  padding-left: 22px;
}

.list-decimal-paren li {
  list-style: none;
  counter-increment: item;
  position: relative;
  padding-left: 2em;
}

.list-decimal-paren li::before {
  content: "（"counter(item) "）";
  position: absolute;
  left: 0;
}

.list-decimal-paren li+li {
  margin-top: 3px;
}

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

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

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

.list-num li+li {
  margin-top: 3px;
}

.list-check li {
  position: relative;
  padding: 0 0 0 25px;
}

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

.list-check li+li {
  margin-top: 3px;
}

.list-col2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.list-col3 {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

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

  .list-num li:before {
    top: 0.3em;
  }

  .list-check li:before {
    top: 0.2em;
  }

  .list-col2 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

  .list-col3 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

/*------------
table
--------------*/
.table-style01 {
  border-collapse: collapse;
  width: 100%;
}

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

.table-style01 th {
  background: var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  text-align: center;
}

.table-style01 td {
  background: #fff;
}

.table-style02 {
  border-collapse: collapse;
  width: 100%;
}

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

.table-style02 th {
  background: var(--color_tertiary);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  text-align: center;
}

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

.table-style02 td {
  background: #fff;
}

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

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

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

  .table-style01 th,
  .table-style01 td {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .table-style02 th,
  .table-style02 td {
    font-size: 1.4rem;
    line-height: 1.5;
  }

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

  .table-scroll:before {
    content: "横にスクロールできます。";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/20px;
    min-height: 16px;
    font-size: 1.3rem;
    padding: 0 0 0 30px;
    margin-bottom: 5px;
  }
}

/*------------
アンカーリンク
--------------*/
.list-anchor-link {
  display: -ms-grid;
  display: grid;
  grid-gap: 15px;
}

.list-anchor-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #8D8D8D;
  border-radius: 3px;
  font-family: var(--font_jp);
  font-size: 1.7rem;
  line-height: 1.1;
  text-align: left;
  padding: 18px 80px 18px 25px;
  position: relative;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.list-anchor-link a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) {
  .list-anchor-link a:is(:hover, :focus) {
    border-color: var(--color_primary);
    background-color: var(--color_primary);
    color: #fff;
  }

  .list-anchor-link a:is(:hover, :focus):after {
    border-color: #fff;
  }
}

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

  .list-anchor-link a {
    font-size: 1.3rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 8px 8px 20px;
  }

  .list-anchor-link a::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    -webkit-transform: translateX(50%) rotate(45deg);
    transform: translateX(50%) rotate(45deg);
  }
}

/*------------
tel-layout
--------------*/
.tel-layout {
  border: 1px solid var(--color_border);
  background: #fff;
  max-width: 900px;
  padding: 50px;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.tel-layout .l-ttl .en {
  color: var(--color_primary_text);
  font-family: var(--font_en);
  font-size: 1.5rem;
}

.tel-layout .l-ttl .jp {
  font-family: var(--font_jp);
  font-size: 3rem;
}

.tel-layout .l-ttl .jp.small {
  font-size: 2.3rem;
}

.tel-layout .l-ttl02 {
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 40px;
  font-family: var(--font_jp);
  font-size: 2.3rem;
}

.tel-layout-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-gap: 120px;
}

.tel-layout-col .col+.col {
  position: relative;
}

.tel-layout-col .col+.col::before {
  content: "";
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #707070 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
  background-repeat: repeat-y;
  background-size: 2px 9px;
  position: absolute;
  top: 0;
  left: -60px;
}

.tel-layout-col .col-ttl {
  font-family: var(--font_jp);
  text-align: center;
  margin-bottom: 10px;
}

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

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

.tel-layout-col .l-time dt {
  border: 1px solid var(--color_primary);
  color: var(--color_primary);
  text-align: center;
  font-weight: bold;
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

  .tel-layout .l-ttl {
    margin: 0 auto 25px;
  }

  .tel-layout .l-ttl .en {
    font-size: 1.2rem;
  }

  .tel-layout .l-ttl .jp {
    font-size: 2.5rem;
  }

  .tel-layout .l-ttl02 {
    font-size: 1.7rem;
    margin: 0 auto 30px;
  }

  .tel-layout-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 60px;
  }

  .tel-layout-col .col+.col::before {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #707070 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
    background-repeat: repeat-x;
    background-size: 10px 2px;
    top: -30px;
    left: 0;
  }

  .tel-layout-col .tel-link {
    display: block;
    text-align: center;
  }
}

/*------------
カードデザイン
--------------*/
/*card-layout01*/
.card-layout01>.card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color_border);
  padding: 25px;
  position: relative;
  min-width: 0;
}

.card-layout01.col4 {
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}

.card-layout01.col4>.card-item {
  padding: 15px;
}

.card-layout01 .card-ttl {
  display: block;
  font-family: var(--font_jp);
  font-size: 2rem;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 20px;
}

.card-layout01 .card-num {
  background: var(--color_primary);
  border-radius: 4px;
  display: table;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.2rem;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}

.card-layout01 .card-img {
  text-align: center;
  margin-bottom: 15px;
}

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

.card-layout01 .card-btn {
  text-align: center;
  margin-top: auto;
}

.card-layout01 .card-btn .btn-style01 {
  min-width: 0;
  width: 100%;
}

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

  .card-layout01.col4>.card-item {
    padding: 25px;
  }
}

/*card-layout02*/
.card-layout02>.card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color_border);
  padding: 25px;
  position: relative;
  min-width: 0;
}

.card-layout02 .card-img {
  text-align: center;
  margin-bottom: 15px;
}

.card-layout02 .card-num {
  display: block;
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 5px;
}

.card-layout02 .card-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-family: var(--font_jp);
  font-size: 2rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.card-layout02 .card-desc {
  margin-bottom: 15px;
}

.card-layout02 .card-btn {
  text-align: center;
  margin-top: auto;
}

.card-layout02 .card-btn .btn-style01 {
  min-width: 0;
  width: 100%;
}

@media (max-width: 800px) {
  .card-layout02>.card-item {
    padding: 15px;
  }

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

/*.card-layout03*/
.card-layout03>.card-item {
  display: block;
  position: relative;
  padding: 25px 0 0;
}

.card-layout03>.card-item .num {
  color: #D3BD91;
  font-family: var(--font_en);
  font-size: 8rem;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: -25px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.card-layout03>.card-item .card-img {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.card-layout03>.card-item .card-img img {
  aspect-ratio: 1/1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.card-layout03>.card-item .card-ttl {
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 2.1rem;
  text-align: center;
  line-height: 1.5;
}

.card-layout03>.card-item .card-ttl .inner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-position: bottom right;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {
  .card-layout03>a.card-item:is(:hover, :focus) .card-img img {
    scale: 1.1;
  }

  .card-layout03>a.card-item:is(:hover, :focus) .card-ttl .inner {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

@media (max-width: 800px) {
  .card-layout03>.card-item .num {
    font-size: 5rem;
    top: -10px;
  }

  .card-layout03>.card-item .card-img {
    padding: 10px 0 0;
    margin-bottom: 15px;
  }

  .card-layout03>.card-item .card-ttl {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/*------------
flow
--------------*/
/*flow-layout01*/
.flow-layout01 {
  grid-gap: 30px;
}

.flow-layout01>.flow-item {
  background: #fff;
  border: 1px solid var(--color_border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px 20px;
  position: relative;
}

.flow-layout01>.flow-item::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent var(--color_primary);
  position: absolute;
  right: -7%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flow-layout01>.flow-item:last-of-type::after {
  content: none;
}

.flow-layout01 .flow-img {
  text-align: center;
  margin-bottom: 25px;
}

.flow-layout01 .flow-img img {
  border-radius: 20px;
}

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

.flow-layout01 .flow-ttl {
  display: block;
  font-family: var(--font_jp);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 15px;
}

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

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

  .flow-layout01>.flow-item::after {
    right: 50%;
    top: auto;
    bottom: -27px;
    -webkit-transform: translateX(50%) rotate(90deg);
    transform: translateX(50%) rotate(90deg);
  }
}

/*flow-layout02*/
.flow-layout02>.flow-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 50px 1fr;
  grid-template-columns: 80px 1fr;
  grid-gap: 50px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  padding-bottom: 50px;
}

.flow-layout02>.flow-item:not(:last-child)::before {
  content: "";
  border-left: 2px dotted var(--color_primary);
  position: absolute;
  top: 115px;
  bottom: 15px;
  left: 40px;
}

.flow-layout02 .flow-num {
  color: var(--color_primary_text);
  background-color: var(--color_primary);
  border-radius: 100px;
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-items: center;
  line-height: 1;
  width: 80px;
  height: 80px;
  margin-top: 20px;
  position: relative;
}

.flow-layout02 .flow-num img {
  -o-object-fit: scale-down;
  object-fit: scale-down;
  width: 45px;
  height: auto;
  aspect-ratio: 1/1;
}

.flow-layout02 .flow-num::before {
  content: attr(data-en);
  font-family: var(--font_jp);
  font-size: 1.3rem;
  white-space: nowrap;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow-layout02 .flow-ttl {
  font-size: 20px;
  font-family: var(--font_jp);
  font-size: 2rem;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .flow-layout02>.flow-item {
    grid-gap: 20px;
    padding-bottom: 30px;
  }

  .flow-layout02 .flow-ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

/*------------
ボックスデザイン
--------------*/
/*box-style01*/
.box-style01 {
  background: #fff;
  border: 1px solid var(--color_border);
  padding: 50px;
  position: relative;
}

.box-style01.box-small {
  padding: 35px;
}

.box-style01:before {
  content: attr(data-en);
  display: block;
  font-family: var(--font_en);
  font-size: 6.6rem;
  color: var(--color_secondary);
  line-height: 1;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  left: -0.85em;
  top: 0;
  z-index: -1;
}

.box-style01 .box-ttl {
  border-bottom: 1px solid var(--color_border);
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 2.1rem;
  padding: 0 0 15px;
  margin: 0 0 35px;
}

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

  .box-style01.box-small {
    padding: 25px;
  }

  .box-style01:before {
    font-size: 3rem;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    left: 0.5em;
    top: -0.5em;
    z-index: 2;
  }

  .box-style01 .box-ttl {
    font-size: 1.8rem;
    padding: 0 0 10px;
    margin: 0 0 20px;
  }
}

/*box-style02*/
.box-style02 {
  background: var(--color_tertiary);
  padding: 35px;
}

.box-style02 .box-ttl {
  font-family: var(--font_jp);
  font-size: 2.1rem;
  margin-bottom: 20px;
}

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

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

/*box-style03*/
.box-style03 {
  background: var(--color_primary);
  color: #fff;
  padding: 35px;
}

.box-style03>.box-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font_jp);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.box-style03>.box-ttl img {
  margin-right: 15px;
  vertical-align: -4px;
}

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

  .box-style03>.box-ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/*------------
メリット、デメリット
--------------*/
.merit-demerit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.merit-demerit .item {
  background: #fff;
  border: 1px solid var(--color_primary);
  border-top: 5px solid var(--color_primary);
  padding: 35px;
  width: 48.43%;
}

.merit-demerit .item-ttl {
  color: var(--color_primary);
  margin: 0 0 25px;
}

.merit-demerit .item-ttl p[lang=en] {
  display: inline;
  font-family: var(--font_en);
  font-size: 3.5rem;
  margin: 0 20px 0 0;
}

.merit-demerit .item-ttl .jp {
  display: inline;
  font-family: var(--font_jp);
  font-size: 1.4rem;
}

.merit-demerit .item:nth-child(even) {
  border-color: var(--color_secondary);
}

.merit-demerit .item:nth-child(even) .item-ttl {
  color: var(--color_secondary);
}

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

  .merit-demerit .item {
    padding: 20px 25px;
    width: 100%;
  }

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

  .merit-demerit .item-ttl {
    margin: 0 0 15px;
  }

  .merit-demerit .item-ttl p[lang=en] {
    font-size: 2.7rem;
  }
}

/*------------
dl-style
--------------*/
.dl-style01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 122px 20px 1fr;
  grid-template-columns: 122px 1fr;
  grid-gap: 10px 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.dl-style01>dt {
  background: var(--color_primary);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

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

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

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

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

.faq-style .faq-summary .faq-icon {
  top: 15px;
  left: 0;
}

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

@media (hover: hover) {
  .faq-style .faq-summary:is(:hover, :focus) .faq-icon {
    background-color: var(--color_primary);
    color: #fff;
  }
}

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

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

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

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

.faq-style .faq-icon {
  background: #fff;
  border: 1px solid var(--color_border);
  border-radius: 50px;
  color: var(--color_primary_text);
  font-family: var(--font_en);
  font-size: 1.5rem;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq-style .faq-open-icon {
  width: 9px;
  height: 9px;
  position: absolute;
  right: 5px;
  top: 27px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before, .faq-style .faq-open-icon::after {
  content: "";
  background-color: var(--color_primary);
  position: absolute;
}

.faq-style .faq-open-icon::before {
  width: 9px;
  height: 1px;
  top: 4px;
}

.faq-style .faq-open-icon::after {
  width: 1px;
  height: 9px;
  top: 0;
  left: 4px;
}

.faq-style.is-open .faq-summary .faq-icon {
  background-color: var(--color_primary);
  color: #fff;
}

.faq-style.is-open .faq-open-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-style.is-open .faq-open-icon::after {
  opacity: 0;
}

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

  .faq-style .faq-summary {
    padding: 18px 30px 18px 50px;
  }

  .faq-style .faq-summary .faq-icon {
    top: 12px;
  }

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

/*------------
スタッフページ
--------------*/
.staff-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 50px;
}

.staff-layout .l-img {
  width: 488px;
}

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

.staff-layout .job {
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.staff-layout .l-ttl {
  font-family: var(--font_jp);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
  margin-bottom: 35px;
}

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

.staff-layout .kana {
  font-size: 1.3rem;
}

.staff-box-style {
  background: #fff;
  border-radius: 4px;
  padding: 30px;
}

.staff-box-style+.staff-box-style {
  margin-top: 30px;
}

.staff-box-style .box-ttl {
  border-bottom: 1px dotted var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.8rem;
  padding: 0 0 10px;
  margin: 0 0 20px;
}

.dl-career {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 90px 10px 1fr;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  font-size: 1.4rem;
  line-height: 1.7;
}

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

  .staff-layout .l-img {
    text-align: center;
    margin: 0 0 30px;
    width: 100%;
  }

  .staff-layout .l-desc {
    margin: 0;
  }

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

  .staff-layout .name {
    font-size: 22px;
  }

  .staff-layout .kana {
    font-size: 12px;
  }

  .dl-career {
    font-size: 1.3rem;
  }
}

/*------------
根管治療のメリット
--------------*/
.list-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.list-point li {
  color: #fff;
  font-family: var(--font_jp);
  font-size: 2.1rem;
  line-height: 1.5;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background: -webkit-gradient(linear, left top, right top, from(#B49251), to(#BFA772));
  background: linear-gradient(to right, #B49251, #BFA772);
  max-width: 238px;
  width: 100%;
}

@media (max-width: 800px) {
  .list-point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .list-point li {
    font-size: 1.6rem;
    width: calc(50% - 10px);
  }
}

/*------------
歯周病治療について
--------------*/
.classification-layout li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background: #E9E3D7;
  padding: 20px 50px;
  font-family: var(--font_jp);
  font-size: 1.7rem;
  line-height: 1.8;
  min-height: 140px;
  position: relative;
}

.classification-layout li:after {
  content: "";
  display: block;
  width: 42px;
  height: 29px;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: inherit;
  position: absolute;
  left: calc(50% - 21px);
  bottom: -29px;
  z-index: 2;
}

.classification-layout li:last-child:after {
  content: none;
}

.classification-layout.type01>li:nth-child(1) {
  background: #E9E3D7;
}

.classification-layout.type01>li:nth-child(2) {
  background: #D6C9AE;
}

.classification-layout.type01>li:nth-child(3) {
  background: #C8B690;
  color: #fff;
}

.classification-layout.type01>li:nth-child(4) {
  background: #B69454;
  color: #fff;
}

.classification-layout.type02>li:nth-child(1) {
  background: #9DC6A4;
  color: #fff;
}

.classification-layout.type02>li:nth-child(2) {
  background: #84B98D;
  color: #fff;
}

.classification-layout.type02>li:nth-child(3) {
  background: #719577;
  color: #fff;
}

@media (max-width: 800px) {
  .classification-layout li {
    padding: 25px 15px;
    font-size: 1.4rem;
    min-height: 0;
    position: relative;
  }

  .classification-layout li:after {
    width: 21px;
    height: 15px;
    left: calc(50% - 11px);
    bottom: -15px;
  }
}

/*------------
料金表
--------------*/
.calculation-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 35px 1fr 35px 1fr 35px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 35px;
}

.calculation-layout .item {
  background-color: #fff;
  border: 1px solid var(--color_border);
  text-align: center;
  line-height: 1.6;
  font-family: var(--font_jp);
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 80px;
  position: relative;
}

.calculation-layout .item+.item::before {
  content: "ー";
  color: var(--color_text);
  font-family: var(--font_base);
  position: absolute;
  left: -26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.calculation-layout .item:last-child {
  background-color: var(--color_primary);
  color: #fff;
  width: 100%;
}

.calculation-layout .item:last-child::before {
  content: "=";
  color: var(--color_text);
  left: -23px;
}

@media (max-width: 800px) {
  .calculation-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }

  .calculation-layout .item+.item::before {
    left: 25px;
  }

  .calculation-layout .item:last-child::before {
    color: #fff;
    left: 25px;
  }
}

/*------------
診療案内　リンク
--------------*/
.treatment-link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 40px;
}

.treatment-link li {
  border-bottom: 1px solid var(--color_border);
}

.treatment-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 45px 10px 0;
  position: relative;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.treatment-link a:after {
  content: "";
  display: block;
  background: url(../images/share/icon_arrow02.svg) no-repeat center/contain;
  width: 31px;
  height: 27px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.treatment-link a .ttl {
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1.7;
}

@media (hover: hover) {
  .treatment-link a:is(:hover, :focus) {
    background-color: rgba(191, 166, 115, 0.18);
  }
}

@media (max-width: 800px) {
  .treatment-link {
    -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 15px;
  }

  .treatment-link a {
    padding: 15px 25px 8px 0;
  }

  .treatment-link a:after {
    width: 19px;
    height: 17px;
  }

  .treatment-link a .ttl {
    font-size: 1.4rem;
  }
}

@media (max-width: 800px) and (hover: hover) {
  .treatment-link a:is(:hover, :focus) {
    background-color: rgba(191, 166, 115, 0.18);
  }
}

/*------------
アクセス
--------------*/
.access-layout .item {
  background: #fff;
  border: 1px solid var(--color_border);
  padding: 40px;
}

.access-layout .item .l-ttl {
  font-family: var(--font_jp);
  font-size: 2rem;
  margin-bottom: 20px;
}

.access-layout .item .l-ttl .icon {
  margin-right: 10px;
}

.access-layout .item .l-ttl .icon img {
  vertical-align: middle;
}

@media (max-width: 800px) {
  .access-layout .item {
    padding: 25px;
  }

  .access-layout .item .l-ttl {
    font-family: var(--font_jp);
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .access-layout .item .l-ttl .icon {
    margin-right: 10px;
  }

  .access-layout .item .l-ttl .icon img {
    vertical-align: middle;
  }
}

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-inline: auto;
  padding: 0 0 90px;
  max-width: 1400px;
}

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

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

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

.side-contents-ttl {
  border-bottom: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 1.5rem;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

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

.side-area-item-ttl {
  font-size: 1.3rem;
  margin-bottom: 7px;
}

.side-area-links li {
  padding-left: 20px;
  position: relative;
  font-size: 1.4rem;
}

.side-area-links li::before {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent var(--color_primary);
  position: absolute;
  top: 11px;
  left: 0;
}

.side-area-links li+li {
  margin-top: 5px;
}

.side-area-links a {
  display: inline-block;
}

@media (hover: hover) {

  .side-area-links a:hover,
  .side-area-links a:focus {
    text-decoration: underline;
  }
}

.category-ttl {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

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

  .sidebar-layout .tall+.tall {
    margin-top: 50px;
  }

  .sidebar-layout.sp-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    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-contents-ttl {
    font-size: 1.5rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

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

/*------------
投稿パーツ
--------------*/
/*TOP投稿 top-post-news*/
.top-post-news .article a {
  display: block;
  padding: 14px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.top-post-news .article.no-post {
  padding: 14px 0;
}

.top-post-news .article+.article {
  border-top: 1px solid var(--color_border);
}

.top-post-news .article time {
  font-family: var(--font_jp);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-right: 20px;
}

.top-post-news .article .ttl {
  font-family: var(--font_jp);
  font-size: 1.4rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-position: bottom right;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.3s ease-out;
  transition: background-size 0.3s ease-out;
  padding: 0 0 2px;
}

@media (hover: hover) {
  .top-post-news .article a:is(:hover, :focus) .ttl {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}

/*TOP投稿 top-post-blog*/
.top-post-blog {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.top-post-blog .article>a {
  background: #fff url(../images/share/post-arrow.svg) no-repeat right 20px bottom 20px;
  padding: 25px 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 138px 25px minmax(0, 1fr);
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 0 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) {
  .top-post-blog .article>a:is(:hover, :focus) {
    background-color: var(--color_tertiary);
  }
}

.top-post-blog .list-img img {
  border: 1px solid var(--color_border);
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 3/2;
}

.top-post-blog .list-data {
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.top-post-blog .list-data time {
  display: inline-block;
  color: #939393;
  font-family: var(--font_jp);
  font-size: 1.2rem;
  line-height: 1;
}

.top-post-blog .list-data .category {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 8px;
}

.top-post-blog .list-ttl {
  font-family: var(--font_jp);
  font-size: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

@media (max-width: 800px) {
  .top-post-blog {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .top-post-blog .article>a {
    background: #fff url(../images/share/post-arrow.svg) no-repeat right 10px bottom 10px/20px auto;
    padding: 20px 15px;
    -ms-grid-columns: 100px 15px minmax(0, 1fr);
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 0 15px;
  }

  .top-post-blog .list-data {
    margin-bottom: 10px;
  }

  .top-post-blog .list-ttl {
    font-size: 1.4rem;
  }
}

/*list-post-type01*/
.list-post-type01 {
  border-top: 1px solid var(--color_border);
}

.list-post-type01>.article {
  border-bottom: 1px solid var(--color_border);
}

.list-post-type01 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  padding: 15px 35px 15px 0;
  position: relative;
}

.list-post-type01 a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(50%) rotate(45deg);
  transform: translateY(50%) rotate(45deg);
}

@media (hover: hover) {
  .list-post-type01 a:is(:hover, :focus) {
    background-color: var(--color_tertiary);
  }

  .list-post-type01 a:is(:hover, :focus) .list-ttl {
    text-decoration: underline;
  }
}

.list-post-type01 .list-img {
  width: 150px;
  margin-right: 25px;
}

.list-post-type01 .list-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 105px;
  border: 1px solid var(--color_border);
}

.list-post-type01 .list-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.4rem;
}

.list-post-type01 time {
  display: block;
  display: inline-block;
  color: #939393;
  font-family: var(--font_jp);
  font-size: 1.4rem;
  line-height: 1;
}

.list-post-type01 .list-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.list-post-type01 .category {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 8px;
  margin: 5px 10px 0 0;
}

.list-post-type01 .no-post {
  padding: 25px 0;
}

@media (max-width: 800px) {
  .list-post-type01 a {
    padding: 20px 25px 20px 0;
  }

  .list-post-type01 a::before {
    right: 0;
  }

  .list-post-type01 .list-img {
    width: 120px;
    margin-right: 20px;
  }

  .list-post-type01 .list-img img {
    height: 90px;
  }

  .list-post-type01 .list-desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .list-post-type01 time {
    font-size: 1rem;
  }

  .list-post-type01 .list-ttl {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .list-post-type01 .category {
    font-size: 1rem;
  }

  .list-post-type01 .no-post {
    padding: 25px 0;
  }
}

/*list-post-type02*/
.list-post-type02 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.list-post-type02 .article {
  min-width: 0;
}

.list-post-type02 .list-img {
  margin-bottom: 15px;
}

@media (hover: hover) {
  .list-post-type02 .list-img a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }

  .list-post-type02 .list-img a:is(:hover, :focus) {
    opacity: 0.7;
  }
}

.list-post-type02 .list-img a img {
  border: 1px solid var(--color_border);
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 3/2;
}

.list-post-type02 .list-data {
  margin-bottom: 10px;
}

.list-post-type02 .list-data time {
  display: inline-block;
  color: #939393;
  font-family: var(--font_jp);
  font-size: 1.2rem;
  line-height: 1;
}

.list-post-type02 .list-ttl {
  font-size: 1.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}

.list-post-type02 .list-ttl a {
  position: relative;
}

.list-post-type02 .list-ttl a::after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color_primary);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

@media (hover: hover) {
  .list-post-type02 .list-ttl a:is(:hover, :focus)::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

.list-post-type02 .category {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 8px;
  margin: 0 10px 0 0;
}

@media (max-width: 800px) {
  .list-post-type02 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
    margin-bottom: 30px;
  }

  .list-post-type02 .list-img {
    margin-bottom: 10px;
  }

  .list-post-type02 .list-data {
    margin-bottom: 8px;
  }

  .list-post-type02 .list-data time {
    font-size: 1.4rem;
  }

  .list-post-type02 .list-ttl {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .list-post-type02 .category {
    font-size: 1.2rem;
  }
}

/*list-post-type03*/
.list-post-type03 .article {
  display: flow-root;
}

.list-post-type03 .article+.article {
  margin-top: 50px;
}

.list-post-type03 .list-ttl {
  border-bottom: 1px solid var(--color_border);
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 2rem;
  position: relative;
  padding: 0 0 15px;
  margin: 0 0 25px;
}

.list-post-type03 .list-ttl a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (hover: hover) {
  .list-post-type03 .list-ttl a:is(:hover, :focus) {
    opacity: 0.5;
  }
}

.list-post-type03 .list-img {
  float: left;
  margin: 0 30px 0 0;
  width: 250px;
}

.list-post-type03 .list-img img {
  border: 1px solid var(--color_border);
  width: 250px;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
}

.list-post-type03 .list-img a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (hover: hover) {
  .list-post-type03 .list-img a:is(:hover, :focus) {
    opacity: 0.5;
  }
}

.list-post-type03 .list-data {
  font-size: 1.3rem;
  margin: 0 0 5px;
}

.list-post-type03 time {
  display: inline-block;
  color: #939393;
  font-family: var(--font_jp);
  font-size: 1.2rem;
  line-height: 1;
}

.list-post-type03 .category {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 8px;
  margin: 0 10px 0 0;
}

.list-post-type03 .list-txt {
  margin: 0 0 15px;
}

.list-post-type03 .list-btn {
  text-align: right;
}

.list-post-type03 .list-btn a {
  border: 1px solid var(--color_primary);
  background: #fff;
  border-radius: 50px;
  display: inline-block;
  color: var(--color_primary);
  font-family: var(--font_jp);
  text-align: center;
  padding: 5px 40px 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (hover: hover) {
  .list-post-type03 .list-btn a:is(:hover, :focus) {
    background: var(--color_primary);
    color: #fff;
  }
}

@media (max-width: 800px) {
  .list-post-type03 {
    margin: 0 0 50px;
  }

  .list-post-type03 .article+.article {
    margin-top: 20px;
  }

  .list-post-type03 .list-ttl {
    font-size: 1.8rem;
    padding: 0 0 7px;
    margin: 0 0 15px;
  }

  .list-post-type03 .list-img {
    float: left;
    margin: 0 15px 0 0;
    width: 40%;
  }

  .list-post-type03 .list-img img {
    width: 100%;
    height: 25vw;
  }

  .list-post-type03 .list-desc {
    margin: -5px 0 0;
  }

  .list-post-type03 time {
    display: inline-block;
    color: #939393;
    font-family: var(--font_jp);
    font-size: 1.2rem;
    line-height: 1;
  }

  .list-post-type03 .list-txt {
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 5px;
  }

  .list-post-type03 .list-btn {
    margin-top: 15px;
  }

  .list-post-type03 .list-btn a {
    font-size: 1.1rem;
    text-align: center;
    padding: 2px 15px 4px;
  }
}

/*症例紹介*/
.case-layout {
  border: 1px solid var(--color_primary);
  background: #fff;
  padding: 50px;
}

.case-layout .l-table:not(:last-child) {
  margin-bottom: 60px;
}

.case-layout time {
  display: inline-block;
  color: #939393;
  font-family: var(--font_jp);
  font-size: 1.2rem;
  line-height: 1;
  margin-right: 10px;
}

.case-layout .category {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 8px;
  margin: 0 10px 0 0;
}

.case-layout .l-ttl {
  font-family: var(--font_jp);
  font-size: 3rem;
  margin-bottom: 30px;
}

.case-layout .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

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

.case-layout .l-table {
  background-color: #fff;
  border: 1px solid #eee;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.case-layout .l-table th,
.case-layout .l-table td {
  border: 1px solid #bbb;
  background: #fff;
  line-height: 1.5;
  font-size: 1.5rem;
  padding: 15px;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.case-layout .l-table th {
  background: #E2DFD8;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  vertical-align: top;
  text-align: left;
  width: 25%;
}

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

.case-layout .l-item {
  margin-top: 50px;
}

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

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

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

.case-layout h3.wp-block-heading {
  background: #f7f7f7;
}

.before-after {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5% 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5%;
}

.before-after .item {
  text-align: center;
  position: relative;
}

.before-after .item {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 300px;
  position: relative;
}

.before-after .item img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  max-height: 300px;
}

.before-after p {
  text-align: center;
  font-family: var(--font_jp);
}

.before-after p::before,
.before-after p::after {
  content: "-";
  margin: 0 5px;
}

.list-case-details>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.list-case-details>li+li {
  border-top: 1px dashed #c8c8c8;
  margin-top: 30px;
  padding-top: 30px;
}

.list-case-details .list-img {
  width: 35%;
  margin-left: 30px;
}

.list-case-details .list-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.list-case-details .list-ttl {
  font-size: 1.7rem;
}

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

  .case-layout .l-table:not(:last-child) {
    margin-bottom: 40px;
  }

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

  .case-layout .post-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

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

  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table,
  .case-layout .l-table {
    border-color: #bbb;
    border-width: 1px;
  }

  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
  .case-layout .l-table th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
  .case-layout .l-table th,
  .case-layout .l-table td {
    display: block;
    border: none;
    padding: 10px;
    font-size: 1.4rem;
    width: 100%;
  }

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

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

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

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

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

  .before-after {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .before-after .item {
    height: auto;
  }

  .list-case-details>li {
    display: block;
  }

  .list-case-details .list-img {
    width: 100%;
    margin: 0 0 25px;
  }
}

/*詳細ページ*/
.l-post-single .l-ttl {
  font-family: var(--font_jp);
  font-size: 3.5rem;
  margin: 0 0 35px;
}

.l-post-single .post-data {
  margin: 0 0 20px;
}

.l-post-single .post-data time {
  display: inline-block;
  color: #939393;
  font-family: var(--font_jp);
  font-size: 1.2rem;
  line-height: 1;
  vertical-align: -1px;
  margin: 0 20px 0 0;
}

.l-post-single .post-data .category {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 8px;
  margin: 0 10px 0 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (hover: hover) {
  .l-post-single .post-data a.category:is(:hover, :focus) {
    background: var(--color_primary);
    color: #fff;
  }
}

@media (max-width: 800px) {
  .l-post-single .l-ttl {
    font-size: 2.8rem;
    margin: 0 0 40px;
  }
}

/*postdata*/
.postdata {
  overflow-wrap: break-word;
}

.postdata .screen-reader-text {
  border: 0;
  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;
  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 p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

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

.postdata a:focus-visible {
  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: 1em;
  width: 5px;
  height: 5px;
}

.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: 1.1rem;
  position: absolute;
  top: 2px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding-left: 2px;
  width: 20px;
  height: 20px;
}

.postdata ol li>ol {
  counter-reset: number;
}

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

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

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

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

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

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

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

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

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

.select-area .select-ttl {
  display: inline-block;
  font-family: var(--font_jp);
  font-size: 1.6rem;
  margin: 0 15px 0 0;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: #fff url(../images/share/icon_arrow_down.svg) no-repeat;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: var(--color_text);
  font-size: 1.6rem;
  vertical-align: middle;
  height: 35px;
  min-width: 150px;
  padding: 5px 20px 5px 0;
}

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

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

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

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

  .select-area .select-item {
    margin: 0;
  }

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

  .select-area .select-ttl {
    font-size: 1.5rem;
  }
}

/*ページャー*/
.post-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px 0 0;
}

.post-number a {
  background: #fff;
  border: 1px solid var(--color_border);
  color: var(--color_text);
  font-family: var(--font_jp);
  display: block;
  padding: 0 10px;
  margin: 0 5px 10px;
  line-height: 40px;
  text-align: center;
  min-width: 40px;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (hover: hover) {
  .post-number a:is(:hover, :focus) {
    background: var(--color_primary);
    border-color: var(--color_primary);
    color: #fff;
  }
}

.post-number .current {
  background: var(--color_primary);
  border-color: var(--color_primary);
  font-family: var(--font_jp);
  color: #fff;
  display: block;
  margin: 0 5px 10px;
  line-height: 40px;
  text-align: center;
  min-width: 40px;
}

.post-number-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  line-height: 1;
  overflow: hidden;
  margin: 50px 0 0;
}

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

.post-number-single a.next {
  margin-top: 0;
}

.post-number-single a.next::before {
  content: "";
  background: url(../images/share/icon_arrow_post_left.svg) no-repeat center center/contain;
  display: inline-block;
  margin-right: 15px;
  width: 22px;
  height: 22px;
}

.post-number-single a.prev {
  margin-top: 0;
}

.post-number-single a.prev::after {
  content: "";
  background: url(../images/share/icon_arrow_post_right.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 15px;
  width: 22px;
  height: 22px;
}

.post-number-single a.all {
  padding: 2px 0 0;
}

@media (hover: hover) {
  .post-number-single a:hover, .post-number-single a:focus {
    opacity: 0.5;
  }
}

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

.sp-only {
  display: none;
}

.fade {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

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

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

.red {
  color: #F44336;
}

.gold {
  color: var(--color_primary_text);
}

.notice {
  font-size: 1.3rem;
  text-indent: -1rem;
  padding: 0 0 0 15px;
}

.sp-map iframe,
.sp-map object,
.sp-map embed {
  vertical-align: top;
}

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

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

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

.mb5 {
  margin-bottom: 5px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

@media (max-width: 800px) {

  /*-----------------------------------------------------------
  common SP
  -----------------------------------------------------------*/
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

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

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

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

  .mbL {
    margin-bottom: 30px !important;
  }

  .sp-map {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }

  .sp-map iframe,
  .sp-map object,
  .sp-map embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/*------------
btn
--------------*/
/*btn-style01 */
.btn-style01 {
  display: inline-block;
  border: 1px solid #8D8D8D;
  border-radius: 3px;
  font-family: var(--font_jp);
  font-size: 1.7rem;
  line-height: 1.1;
  text-align: left;
  padding: 18px 80px 18px 25px;
  position: relative;
  min-width: 280px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-style01:after {
  content: "";
  display: block;
  background: var(--color_primary);
  -webkit-mask: url(../images/share/link-arrow.svg) no-repeat center/contain;
  mask: url(../images/share/link-arrow.svg) no-repeat center/contain;
  width: 39px;
  height: 11px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (hover: hover) {
  .btn-style01:is(:hover, :focus) {
    border-color: var(--color_primary);
    background-color: var(--color_primary);
    color: #fff;
  }

  .btn-style01:is(:hover, :focus):after {
    background: #fff;
  }
}

.btn-style01.btn-white {
  border-color: #fff;
  color: #fff;
}

.btn-style01.btn-white:after {
  background: #fff;
}

@media (hover: hover) {
  .btn-style01.btn-white:is(:hover, :focus) {
    border-color: #fff;
    background-color: #fff;
    color: var(--color_text);
  }

  .btn-style01.btn-white:is(:hover, :focus):after {
    background: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .btn-style01 {
    display: block;
    min-width: 0;
  }
}

.btn-contact {
  display: inline-block;
  text-align: center;
  background: var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  font-size: 1.9rem;
  line-height: 1.4;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  min-width: 300px;
  padding: 20px 10px;
}

.btn-contact:before {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_mail_w.svg) no-repeat center/contain;
  line-height: 1;
  width: 23px;
  height: 18px;
  margin-right: 10px;
}

@media (hover: hover) {
  .btn-contact:is(:hover, :focus) {
    background: #93763f;
  }
}

@media (max-width: 800px) {
  .btn-contact {
    display: block;
    min-width: 0;
  }
}

.tel-link {
  display: inline-block;
  color: var(--color_primary_text);
  font-family: var(--font_jp);
  font-size: 3rem;
  line-height: 1;
}

.tel-link:before {
  content: ""/"Tel";
  background: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 26px;
  height: 26px;
  display: inline-block;
  margin-right: 5px;
}

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

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

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

@media (max-width: 800px) {
  .btn-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/*------------
診療時間
--------------*/
.time-table {
  font-family: var(--font_jp);
  font-size: 1.6rem;
  border-collapse: separate;
  overflow: hidden;
  border-radius: 4px;
}

.time-table th,
.time-table td {
  text-align: center;
  line-height: 1;
  vertical-align: middle;
  border-right: 1px solid #CEBB94;
  width: 14.2857142857%;
}

.time-table th {
  background: var(--color_primary);
  color: #fff;
  padding: 12px 5px;
}

.time-table td {
  background: #F4EFE7;
  padding: 18px 5px;
}

.time-table td img {
  vertical-align: middle;
}

.time-table tr th:last-child,
.time-table tr td:last-child {
  border: none;
}

.dl-time {
  background: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px 1fr;
  grid-template-columns: 100px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 30px;
  margin-bottom: 20px;
}

.dl-time dt {
  font-family: var(--font_jp);
  font-size: 1.6rem;
}

.dl-time dd {
  font-family: var(--font_jp);
  font-size: 1.4rem;
  padding: 0 0 0 30px;
  border-left: 1px solid #E8E8E8;
}

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

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

  .time-table .txt {
    font-size: 1.1rem;
    letter-spacing: 0;
  }

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

  .dl-time {
    -ms-grid-columns: 85px 1fr;
    grid-template-columns: 85px 1fr;
    padding: 25px;
    margin-bottom: 20px;
  }

  .dl-time dt {
    font-size: 1.4rem;
  }

  .dl-time dd {
    font-size: 1.3rem;
  }
}

/*------------
ビジネスカレンダー
--------------*/
:root {
  --event-color01: #969696;
  --event-color02: #BFA673;
  --event-color03: #83BA8D;
  --event-color04: #EDA76A;
}

.business-calendar-hidden {
  font-family: var(--font_jp);
  display: none;
}

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

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

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

.business-calendar-box .business-calendar caption {
  font-family: var(--font_jp);
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 20px;
}

.business-calendar-box .business-calendar caption span {
  line-height: 1;
  font-size: 2.5rem;
  vertical-align: -7px;
  margin: 0 10px;
}

.business-calendar-box .business-calendar-past a,
.business-calendar-box .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 .business-calendar-past a::before,
.business-calendar-box .business-calendar-future a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 7px;
  left: 7px;
}

.business-calendar-box .business-calendar-past a::before {
  -webkit-transform: rotate(45deg) scale(-1);
  transform: rotate(45deg) scale(-1);
}

.business-calendar-box .business-calendar th {
  background: var(--color_secondary);
  border: 1px solid #DFDFDF;
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 8px 5px;
  width: 14%;
}

.business-calendar-box .business-calendar td {
  border: 1px solid #DFDFDF;
  background: #fff;
  background-clip: padding-box;
  position: relative;
  font-size: 1.3rem;
  padding: 8px 5px;
  z-index: 0;
}

.business-calendar-box .business-calendar td::before {
  content: "";
  background: #ccc;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -2;
  opacity: 0;
}

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

.business-calendar-box .business-calendar .attr0,
.business-calendar-box .business-calendar .attr1,
.business-calendar-box .business-calendar .attr2,
.business-calendar-box .business-calendar .attr3 {
  color: #fff;
}

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

.business-calendar-box .business-calendar .attr0::before {
  background: var(--event-color01);
}

.business-calendar-box .business-calendar .attr1::before {
  background: var(--event-color02);
}

.business-calendar-box .business-calendar .attr2::before {
  background: var(--event-color03);
}

.business-calendar-box .business-calendar .attr3::before {
  background: var(--event-color04);
}

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

.list-event li {
  font-size: 1.4rem;
  line-height: 1.5;
}

.list-event i {
  margin: 0 5px 0 0;
}

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

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

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

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

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

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

  .business-calendar-box .business-calendar caption span {
    margin: 0 30px;
  }
}

/*-----------------------------------------------------------
アニメーション
-----------------------------------------------------------*/
.is-mask {
  display: inline-block;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
  -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
  transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
  vertical-align: middle;
}

.is-mask.is-action {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

.is-fade {
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: translate(0, 15%);
  transform: translate(0, 15%);
}

.is-fade.is-action {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.is-fade-l {
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: translate(-15%, 0);
  transform: translate(-15%, 0);
}

.is-fade-l.is-action {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.is-fade-r {
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: translate(15%, 0);
  transform: translate(15%, 0);
}

.is-fade-r.is-action {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.is-card> :is(.item, .card-item) {
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: translate(0, 15%);
  transform: translate(0, 15%);
}

.is-card> :is(.item, .card-item):nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.is-card> :is(.item, .card-item):nth-child(3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.is-card> :is(.item, .card-item):nth-child(4) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.is-card> :is(.item, .card-item):nth-child(5) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.is-card> :is(.item, .card-item):nth-child(6) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.is-card.is-action> :is(.item, .card-item) {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

/*------------
gallery-slider01
--------------*/
.gallery-slider01 {
  overflow: hidden;
}

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

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

.gallery-slider01 .splide__slide {
  opacity: 0.2;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.gallery-slider01 .splide__slide.is-active {
  opacity: 1;
}

.gallery-slider01 .splide__arrow--prev {
  top: 275px;
  left: calc((100% - 872px) / 2);
}

.gallery-slider01 .splide__arrow--next {
  top: 275px;
  right: calc((100% - 872px) / 2);
}

.gallery-slider01 .item-desc {
  margin-top: 25px;
}

.gallery-slider01 .item-ttl {
  font-family: var(--font_jp);
  font-size: 2rem;
  line-height: 1.7;
  margin-bottom: 5px;
}

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

  .gallery-slider01 .item-ttl {
    font-size: 1.7rem;
    line-height: 1.4;
  }
}

/*------------
img-slider
--------------*/
.img-slider .item-img {
  position: relative;
}

.img-slider .item-img figcaption {
  background: #fff;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: left;
  padding: 3px 10px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

:is(.fl-imgR, .fl-imgL, .l-imgR, .l-imgL) .img-slider .item-img figcaption {
  font-size: 1.4rem;
}

@media (max-width: 800px) {
  .img-slider .item-img figcaption {
    font-size: 1.4rem;
  }
}

/*-----------------------------------------------------------
splide
-----------------------------------------------------------*/
/*各種色設定*/
:root {
  --splide-arrow-color: #BFA673;
  /*矢印*/
  --splide-focus-color: #BFA673;
  /*タブ移動によるフォーカス時のアウトライン*/
  --splide-pagination-color: #BFA673;
  /*アクティブ時のページネーション*/
  --splide-progress-color: #BFA673;
  /*プログレスバー*/
  --splide-toggle-color: #BFA673;
  /*再生ボタン*/
  --splide-track-color: #BFA673;
  /*サムネイルの枠*/
}

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

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

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

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

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

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

.splide__progress {
  background: #ddd;
  margin-top: 10px;
}

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

.splide__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}

.splide__controls .splide__pagination {
  position: static;
}

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

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

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

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

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

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

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

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

.splide--rtl {
  direction: rtl;
}

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

.splide__arrow {
  background: none;
  border: none;
  cursor: pointer;
  width: 35px;
  height: 35px;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.splide__arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--splide-arrow-color);
}

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

.splide__arrow:disabled {
  opacity: 0.3;
}

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

.splide__arrow--prev {
  left: 20px;
  -webkit-transform: translateY(-50%) scaleX(-1);
  transform: translateY(-50%) scaleX(-1);
}

.splide__arrow--next {
  right: 20px;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide:has(.splide__pagination) {
  padding: 0 0 20px;
}

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

.splide__pagination__page {
  background: #D8D5CF;
  border: 0;
  display: inline-block;
  height: 2px;
  margin: 5px;
  opacity: 1;
  padding: 0;
  position: relative;
  -webkit-transition: width 0.2s linear;
  transition: width 0.2s linear;
  width: 20px;
}

.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  width: 40px;
  z-index: 1;
}

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

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

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__progress__bar {
  background: var(--splide-progress-color);
  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 var(--splide-focus-color);
    outline-offset: -3px;
  }
}

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

.splide__toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #737e80;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  height: 29px;
  width: 29px;
}

.splide__toggle:hover {
  background: var(--splide-toggle-color);
}

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

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

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid var(--splide-focus-color);
  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 var(--splide-track-color);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .splide__arrow {
    width: 25px;
    height: 25px;
  }

  .splide__arrow--prev {
    left: 10px;
  }

  .splide__arrow--next {
    right: 10px;
  }
}
