@charset "UTF-8";

:root {
  --color_bg: #FAF7F1;
  --color_text: #4A4237;
  --color_link: #338751;
  --color_border: #CACAA5;
  --color_primary: #338751;
  --color_primary_rgb: 51, 135, 81;
  --color_secondary: #FC9856;
  --font_base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B", TsukuARdGothicStd-B, sans-serif;
  --font_en: "Outfit", sans-serif;
  --font_jp_r: "FOT-筑紫A丸ゴシック Std R", TsukuARdGothicStd-R, sans-serif;
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

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;
  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 {
  color: inherit;
  text-decoration: none;
  border: medium;
}

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

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

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

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

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,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: 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;
}

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

th {
  font-weight: normal;
  text-align: left;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-size: inherit;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background: #d4dcd6;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

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

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

html {
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

body {
  display: flex;
  background-color: var(--color_bg);
  flex-direction: column;
  font-family: var(--font_base);
  color: var(--color_text);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

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

.link {
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

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

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

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

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

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

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: absolute;
  width: 100%;
  z-index: 100;
}

.header.is-fixed {
  position: fixed;
}

@media (max-width: 1024px) {
  .header {
    position: static !important;
  }
}

/*------------
Header01
--------------*/
.header-layout01 {
  background-color: #f2f2f2;
  padding: 10px 20px 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  width: 100%;
}

.header-layout01 .gnavi {
  margin-left: auto;
}

.header-layout01 .h-sns {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: 30px;
}

.header-layout01 .h-sns a {
  transition: opacity 0.3s;
}

.header-layout01 .h-sns a:hover {
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .header-layout01 {
    justify-content: center;
    padding: 10px;
    height: 60px;
  }

  .h-logo {
    width: 150px;
  }

  .gnavi,
  .h-sns {
    display: none;
  }
}

/*------------
Header02
--------------*/
.header-layout02 {
  background-color: var(--color_bg);
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  width: 100%;
}

.header-layout02 .h-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 20px;
  margin-bottom: 13px;
}

.header-layout02 .h-tel {
  display: inline-flex;
  align-items: center;
  font-family: var(--font_en);
  font-size: 23px;
  letter-spacing: 0.1em;
}

.header-layout02 .h-tel img {
  margin-right: 5px;
}

.header-layout02 .h-time {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 4px 15px;
  font-size: 13px;
}

.header-layout02 .h-time dt {
  background-color: #fff;
  border: 1px solid #DCDCC6;
  border-radius: 2px;
  text-align: center;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-layout02 .h-btn {
  background-color: var(--color_secondary);
  border-radius: 25px;
  color: #fff;
  font-family: var(--font_jp);
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 12px 47px;
  transition: opacity 0.5s;
}

.header-layout02 .h-btn:hover {
  opacity: 0.5;
}

.header-layout02 .btn-icon {
  height: 50px;
  min-width: 150px;
  font-size: 14px;
}

.header-layout02 .h-sns {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-layout02 .h-sns a {
  transition: opacity 0.3s;
}

.header-layout02 .h-sns a:hover {
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .header-layout02 {
    justify-content: center;
    padding: 10px;
    height: 60px;
  }

  .header-layout02 .h-utility {
    display: none;
  }
}

/*------------
Header03
--------------*/
.header-layout03 {
  background-color: #f2f2f2;
  padding: 0 0 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  width: 100%;
}

.header-layout03 .h-utility {
  display: flex;
  align-items: center;
}

.header-layout03 .h-utility .btn-mail {
  height: 50px;
  min-width: 150px;
  font-size: 14px;
}

.header-layout03 .h-contact {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}

.header-layout03 .h-tel {
  display: inline-flex;
  align-items: center;
  font-size: 23px;
  font-weight: bold;
}

.header-layout03 .h-tel img {
  margin-right: 5px;
}

.header-layout03 .h-time {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 5px 10px;
  font-size: 13px;
}

.header-layout03 .h-time dt {
  border: 1px solid #000;
  text-align: center;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-layout03 .h-sns {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-layout03 .h-sns a {
  transition: opacity 0.3s;
}

.header-layout03 .h-sns a:hover {
  opacity: 0.5;
}

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

.menu-btn {
  width: 100px;
  height: 80px;
  position: relative;
  color: #333;
  font-size: 13px;
  transition: 0.2s;
  z-index: 100;
}

.menu-btn-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5px 0 7px;
}

.menu-btn-line span {
  display: block;
  background-color: #333;
  width: 41px;
  height: 1px;
  transition: 0.2s;
}

.menu-btn-line span:nth-of-type(2) {
  margin: 6px 0;
}

.menu-btn.is-open .menu-btn-line span:nth-of-type(1) {
  transform: rotate(30deg) translate3d(2px, 5px, 0);
}

.menu-btn.is-open .menu-btn-line span:nth-of-type(2) {
  opacity: 0;
  transform: translateX(10px);
}

.menu-btn.is-open .menu-btn-line span:nth-of-type(3) {
  transform: rotate(-30deg) translate3d(4px, -8px, 0);
}

@media (max-width: 1024px) {
  .header-layout03 {
    justify-content: center;
    padding: 10px;
    height: 60px;
  }

  .header-layout03 .h-utility,
  .header-layout03 .gnavi-drawer {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
/*normal*/
.gnavi-list {
  display: flex;
  justify-content: flex-end;
}

.gnavi-list>li {
  margin-left: 30px;
}

.gnavi-list>li>a,
.gnavi-list>li>.no-link {
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
  font-family: var(--font_jp);
}

.gnavi-list a:hover {
  color: var(--color_primary);
}

/*dropdown*/
.gnavi-list .menu-item-has-children {
  display: flex;
  position: relative;
}

.gnavi-list .menu-item-has-children::after {
  content: "";
  display: block;
  border-bottom: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  width: 8px;
  height: 8px;
  margin: 13px 0 0 10px;
  transform: rotate(45deg);
  transform-origin: right;
}

.gnavi-list .menu-item-has-children>a:hover {
  opacity: 0.5;
}

.gnavi-list .menu-item-has-children.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.gnavi-list .menu-item-has-children .sub-menu {
  pointer-events: none;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  font-family: var(--font_jp);
  font-size: 14px;
  position: absolute;
  top: 30px;
  right: 50%;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

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

.gnavi-list .menu-item-has-children .sub-menu li+li {
  margin-top: 5px;
}

.gnavi-list .menu-item-has-children:last-child .sub-menu {
  right: 0;
  transform: translateX(0);
}

/*drawer*/
.gnavi-drawer {
  pointer-events: none;
  background-color: #f5f5f5;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
}

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

.gnavi-drawer-container {
  display: grid;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.gnavi-drawer-wrapper {
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
}

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

.gnavi-drawer-right-area>.item+.item {
  margin-top: 50px;
}

.gnavi-drawer-right-area .item-ttl {
  font-family: var(--font_jp);
  font-size: 16px;
  margin-bottom: 15px;
}

.gnavi-drawer-right-area .item-ttl a {
  text-decoration: underline;
}

.gnavi-drawer-right-area .item-ttl a:hover {
  text-decoration: none;
}

.gnavi-drawer-right-area .time-table {
  max-width: 500px;
}

.gnavi-drawer-right-area .h-bnr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

.gnavi-drawer-links {
  display: grid;
  grid-gap: 30px;
  font-family: var(--font_jp);
}

.gnavi-drawer-links>li>ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px 20px;
  margin-top: 15px;
  font-size: 14px;
}

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

.gnavi-drawer-left-area {
  background: url(../images/share/gnavi-drawer_bg.jpg) no-repeat center/cover;
  width: 50%;
  height: 100%;
  padding: 0 0 0 5%;
  display: flex;
  position: fixed;
  inset: 0;
}

.gnavi-drawer-utility {
  position: absolute;
  bottom: 70px;
}

.gnavi-drawer-logo {
  margin-bottom: 30px;
}

.gnavi-drawer-address {
  color: #fff;
  font-size: 13px;
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero08 {
  padding: 120px 0 38px;
  overflow: hidden;
  position: relative;
}

.hero08::before {
  content: "";
  background-color: #DFEDD0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  z-index: -1;
}

.hero08 .wrapper {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
  position: relative;
}

.hero08 .splide {
  text-align: right;
  padding-bottom: 30px;
  margin-left: 200px;
}

.hero08 .splide__pagination {
  justify-content: flex-end;
  bottom: 0;
}

.hero08-catch {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  position: absolute;
  top: 150px;
  left: 50px;
  white-space: nowrap;
  z-index: 5;
}

.hero08-catch .ttl {
  font-family: var(--font_jp);
  font-size: 40px;
  font-weight: bold;
}

.hero08-catch .ttl span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 15px 10px;
  line-height: 2.5;
  background-color: #fff;
  border-radius: 5px;
  letter-spacing: 0.05em;
}

.hero08-catch .sub-ttl {
  font-size: 20px;
  font-weight: bold;
}

.hero08-catch .sub-ttl span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 10px;
  line-height: 2.8;
  background-color: #fff;
}

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

  .hero08 .wrapper {
    width: 100%;
    padding-left: 15vw;
  }

  .hero08 .splide {
    margin: 0;
    padding: 0;
  }

  .hero08 .splide img {
    object-fit: cover;
    height: 50vh;
  }

  .hero08 .splide__pagination {
    display: none;
  }

  .hero08-catch {
    writing-mode: horizontal-tb;
    top: auto;
    bottom: 30px;
    left: 5vw;
    right: 5vw;
  }

  .hero08-catch .ttl {
    font-size: 25px;
    margin: 0 0 10px;
  }

  .hero08-catch .ttl span {
    padding: 6px;
    line-height: 2.2;
  }

  .hero08-catch .sub-ttl {
    font-size: 15px;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
.top-ttl {
  text-align: center;
  margin-bottom: 62px;
  padding-top: 70px;
  position: relative;
}

.top-ttl::before {
  content: "";
  background: url(../images/share/ttl_deco01.svg) no-repeat center / contain;
  width: 47px;
  height: auto;
  aspect-ratio: 47 / 53;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.top-ttl .txt01 {
  display: block;
  font-size: 40px;
  margin-bottom: 15px;
}

.top-ttl .txt02 {
  display: block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media (max-width: 800px) {
  .top-ttl {
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .top-ttl::before {
    width: 30px;
  }

  .top-ttl .txt01 {
    font-size: 25px;
    margin-bottom: 0;
  }

  .top-ttl .txt02 {
    font-size: 13px;
  }
}

/*------------
Block
--------------*/
.sec01 {
  padding: 100px 0;
}

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

.sec02 {
  background-color: #FDFCFB;
  padding: 120px 0;
  position: relative;
  z-index: 0;
}

.sec02::before {
  content: "";
  background: url(../images/sec02_deco.png) no-repeat center / contain;
  width: min(17%, 307px);
  height: auto;
  aspect-ratio: 307 / 390;
  position: absolute;
  bottom: 0;
  right: 20%;
  z-index: -1;
}

.l-sec02 {
  display: flex;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.l-sec02 .l-img {
  width: 55%;
  margin: 0 5% 0 0;
}

.l-sec02 .l-img img {
  border-radius: 10px;
}

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

.l-sec02 .l-ttl {
  margin-bottom: 50px;
}

.l-sec02 .l-ttl .txt01 {
  display: block;
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.l-sec02 .l-ttl .txt02 {
  display: block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-left: 18px;
  position: relative;
}

.l-sec02 .l-ttl .txt02::before {
  content: "";
  background-color: var(--color_secondary);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.l-sec02 .txt {
  margin-bottom: 50px;
}


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

  .sec02::before {
    width: 32%;
    right: 0;
  }

  .l-sec02 {
    display: block;
    width: 100%;
  }

  .l-sec02 .l-img {
    width: 100%;
    margin: 0 0 35px;
  }

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

  .l-sec02 .l-ttl {
    margin-bottom: 20px;
  }

  .l-sec02 .l-ttl .txt01 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .l-sec02 .l-ttl .txt02 {
    font-size: 13px;
  }

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

.sec03 {
  padding: 120px 0;
}

.l-sec03 {
  display: flex;
}

.l-sec03 .l-img {
  width: 45%;
  margin: 0 5% 0 0;
  padding: 0 0 0 18px;
}

.l-sec03 .l-img .img {
  position: relative;
  z-index: 0;
}

.l-sec03 .l-img .img::before {
  content: "";
  background-color: #DFEDD0;
  border-radius: 10px;
  inset: 16px 18px -16px -18px;
  position: absolute;
  z-index: -1;
}

.l-sec03 .l-img img {
  border-radius: 10px;
}

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

.l-sec03 .l-ttl {
  border-bottom: 1px solid var(--color_border);
  font-size: 30px;
  margin-bottom: 25px;
  padding: 0 0 3px 27px;
  position: relative;
}

.l-sec03 .l-ttl::before {
  content: "";
  background: url(../images/share/ttl_deco02.svg) no-repeat center / contain;
  width: 26px;
  height: auto;
  aspect-ratio: 26 / 30;
  position: absolute;
  top: 14px;
  left: -3px;
}

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

.l-sec03.reverse .l-img {
  margin: 0 0 0 5%;
  padding: 0 0 0 18px;
}

.l-sec03+.l-sec03 {
  margin-top: 80px;
}

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

  .l-sec03 {
    display: block;
  }

  .l-sec03 .l-img {
    width: 100%;
    margin: 0 0 35px;
  }

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

  .l-sec03 .l-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .l-sec03 .l-ttl::before {
    width: 20px;
    top: 7px;
  }

  .l-sec03.reverse .l-img {
    margin: 0 0 35px;
  }
}

.sec04 {
  background-color: #fff;
  padding: 120px 0;
  position: relative;
  z-index: 0;
}

.sec04::before {
  content: "";
  background: url(../images/sec04_deco01.png) no-repeat center / contain;
  width: min(20%, 252px);
  height: auto;
  aspect-ratio: 253/278;
  position: absolute;
  top: 13%;
  left: 9%;
  rotate: 2deg;
  z-index: -1;
}

.sec04::after {
  content: "";
  background: url(../images/sec04_deco02.png) no-repeat center / contain;
  width: min(15%, 161px);
  height: auto;
  aspect-ratio: 161 / 257;
  position: absolute;
  bottom: 5%;
  right: 8%;
  z-index: -1;
}

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

.l-sec04 .item-ttl {
  border-bottom: 1px solid var(--color_border);
  font-size: 23px;
  padding: 0 0 4px 27px;
  position: relative;
  margin-bottom: 15px;
}

.l-sec04 .item-ttl::before {
  content: "";
  background: url(../images/share/ttl_deco03.svg) no-repeat center / contain;
  width: 22px;
  height: 23px;
  position: absolute;
  top: 10px;
  left: 0;
}

.sec04-btn {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

  .sec04::before {
    width: 35%;
    top: 5%;
    left: 2%;
  }

  .sec04::after {
    width: 30%;
    bottom: 0;
    right: 0;
  }

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

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

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

.l-sec05 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 80px;
}

.l-sec05 .l-img {
  width: 55%;
}

.l-sec05 .l-img img {
  border-radius: 10px;
}

.l-sec05 .l-desc {
  border-radius: 10px;
  flex: 1;
  background: var(--color_bg);
  padding: 4% 6% 5% 6%;
  position: relative;
  margin: 75px 0 0 -40px;
  z-index: 0;
}

.l-sec05 .l-ttl {
  border-bottom: 1px solid var(--color_border);
  font-size: 30px;
  margin-bottom: 25px;
  padding: 0 0 3px 27px;
  position: relative;
}

.l-sec05 .l-ttl::before {
  content: "";
  background: url(../images/share/ttl_deco02.svg) no-repeat center / contain;
  width: 26px;
  height: 30px;
  position: absolute;
  top: 14px;
  left: -3px;
}

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

.sec05-card a {
  display: block;
  background-color: var(--color_bg);
  border-radius: 10px;
  height: 100%;
  transition: transform 0.5s;
  position: relative;
}

.sec05-card a::before {
  content: "";
  border-style: solid;
  border-width: 0 0 14px 14px;
  border-color: transparent transparent var(--color_primary) transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}

.sec05-card a:hover {
  transform: translateY(-10px);
}

.sec05-card .card-img img {
  border-radius: 10px 10px 0 0;
}

.sec05-card .card-desc {
  padding: 25px 9% 40px;
}

.sec05-card .card-ttl {
  border-bottom: 1px solid var(--color_text);
  font-size: 25px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 15px;
  width: fit-content;
  margin: 0 auto 25px;
}

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

  .l-sec05 {
    display: block;
    margin-bottom: 50px;
  }

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

  .l-sec05 .l-img img {
    border-radius: 10px 10px 0 0;
  }

  .l-sec05 .l-desc {
    border-radius: 0 0 10px 10px;
    padding: 25px 5% 40px;
    margin: 0;
  }

  .l-sec05 .l-ttl {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .l-sec05 .l-ttl::before {
    top: 9px;
  }

  .sec05-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  .sec05-card .card-desc {
    padding: 20px 5% 30px;
  }

  .sec05-card .card-ttl {
    font-size: 18px;
    margin: 0 auto 15px;
  }

  .sec05-card .card-desc p {
    font-size: 14px;
  }
}

.sec06 {
  background-color: #F1EADA;
  padding: 120px 0;
  position: relative;
  z-index: 0;
}

.sec06::before {
  content: "";
  background: url(../images/sec06_deco.png) no-repeat center / contain;
  width: 307px;
  height: auto;
  aspect-ratio: 307/390;
  position: absolute;
  bottom: 0;
  left: 7%;
  z-index: -1;
}

.l-sec06 {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
}

.l-sec06 .l-img {
  width: 43.95%;
}

.l-sec06 .l-img img {
  border-radius: 10px 0 0 10px;
  object-fit: cover;
  height: 100%;
}

.l-sec06 .l-desc {
  flex: 1;
  padding: 4% 5%;
}

.l-sec06 .l-ttl {
  color: var(--color_primary);
  font-size: 30px;
  margin-bottom: 20px;
}

.l-sec06 .l-btn {
  margin-top: 20px;
}

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

  .sec06::before {
    width: 25%;
    left: 0;
  }

  .l-sec06 {
    display: block;
  }

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

  .l-sec06 .l-img img {
    border-radius: 10px 10px 0 0;
  }

  .l-sec06 .l-desc {
    padding: 40px 5%;
  }

  .l-sec06 .l-ttl {
    font-size: 23px;
    text-align: center;
    margin-bottom: 20px;
  }

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

.sec07 {
  padding: 120px 0;
}

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

.l-sec08 {
  display: grid;
  grid-template-columns: 1fr 400px;
  background-color: #fff;
}

.l-sec08 iframe {
  vertical-align: bottom;
  height: 100%;
  width: 100%;
}

.l-sec08 .l-desc {
  padding: 10% 9%;
}

.l-sec08 .l-ttl {
  text-align: center;
  margin-bottom: 25px;
}

.l-sec08 .l-ttl .txt01 {
  display: block;
  font-size: 40px;
  margin-bottom: 17px;
}

.l-sec08 .l-ttl .txt02 {
  display: block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.l-sec08 .l-address {
  font-size: 15px;
  margin-bottom: 10px;
  text-align: center;
}

.l-sec08 .tel {
  border-bottom: 2px solid #62A179;
  display: inline-flex;
  align-items: center;
  font-family: var(--font_en);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.l-sec08 .tel img {
  margin-right: 5px;
}

.l-sec08 .l-dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 auto 30px;
  width: fit-content;

}

@media (max-width: 800px) {
  .l-sec08 {
    grid-template-columns: 1fr;
  }

  .l-sec08 iframe {
    height: 300px;
  }

  .l-sec08 .l-map {
    grid-area: 2 / 1 / 3 / 2;
  }

  .l-sec08 .l-desc {
    grid-area: 1 / 1 / 2 / 2;
    padding: 10% 5%;
  }

  .l-sec08 .l-ttl .txt01 {
    font-size: 25px;
    margin-bottom: 0;
  }

  .l-sec08 .l-ttl .txt02 {
    font-size: 13px;
  }
}

/*------------
Post
--------------*/
.top-post-layout01 {
  display: grid;
  grid-template-columns: 210px 1fr;
  grid-gap: 50px;
  min-height: 170px;
  position: relative;
}

.top-post-layout01 .l-ttl .txt01 {
  display: block;
  font-size: 30px;
  margin-bottom: 15px;
}

.top-post-layout01 .l-ttl .txt02 {
  display: block;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-left: 18px;
  position: relative;
}

.top-post-layout01 .l-ttl .txt02::before {
  content: "";
  background-color: var(--color_secondary);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.top-post-layout01 .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.top-post-layout01 .btn-more {
  min-width: 170px;
  min-height: 50px;
}

.list-top-blog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 15px;
}

.list-top-blog .list-img {
  border: 1px solid #E0E0CD;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.list-top-blog .list-img img {
  object-fit: cover;
  width: 100%;
  height: 165px;
  transition: transform 0.5s;
}

.list-top-blog time {
  display: block;
  font-size: 15px;
}

.list-top-blog .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font_base);
  font-weight: 500;
  margin-bottom: 5px;
}

.list-top-blog .category {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #E1E1D0;
  border-radius: 3px;
  font-size: 11px;
  padding: 0 5px;
  margin-right: 5px;
}

.list-top-blog a {
  display: block;
  height: 100%;
}

.list-top-blog a:hover .list-img img {
  transform: scale(1.1);
}

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

.list-top-news a {
  display: grid;
  grid-template-columns: 95px 1fr;
  grid-gap: 20px;
  border-bottom: 1px solid var(--color_border);
  padding: 18px 0;
}

.list-top-news a:hover .ttl {
  text-decoration: underline;
}

.list-top-news time {
  display: inline-block;
  font-size: 15px;
}

.list-top-news .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 500;
}

@media (max-width: 800px) {
  .top-post-layout01 {
    grid-template-columns: minmax(0, 1fr);
    grid-gap: 30px;
    min-height: 0;
  }

  .top-post-layout01 .l-ttl .txt01 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .top-post-layout01 .l-ttl .txt02 {
    font-size: 13px;
  }

  .top-post-layout01 .l-btn {
    position: static;
    text-align: center;
  }

  .list-top-blog {
    display: flex;
    grid-gap: 0;
    flex-wrap: nowrap;
    margin: 0 -5vw 0 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }

  .list-top-blog li {
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }

  .list-top-news a {
    display: block;
    line-height: 1.5;
    padding: 10px 0;
  }

  .list-top-news time {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .list-top-news .ttl {
    -webkit-line-clamp: 2;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  background: var(--color_primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-top: 100px;
  height: 400px;
  width: 100%;
}

.page-ttl-main {
  font-family: var(--font_jp);
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.page-ttl-sub {
  display: block;
  font-family: var(--font_en);
  font-size: 18px;
}

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

.breadcrumb ul {
  font-size: 0.8rem;
  padding: 5px 5vw;
}

.breadcrumb ul li {
  display: inline;
}

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

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

@media (max-width: 800px) {
  .page-ttl {
    padding-top: 0;
    height: 120px;
  }

  .page-ttl-main {
    font-size: 25px;
    padding: 0 15px;
    margin-bottom: 8px;
  }

  .page-ttl-sub {
    font-size: 15px;
  }
}

.u-h2 {
  font-size: 30px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

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

.u-h202 {
  font-size: 30px;
  line-height: 1.5;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.u-h202::after {
  content: "";
  display: block;
  background: var(--color_primary);
  width: 50px;
  height: 4px;
  margin: 20px auto 50px;
}

.u-h3 {
  border-bottom: 3px solid var(--color_border);
  font-size: 22px;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

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

.u-h302 {
  background-color: var(--color_primary);
  color: #fff;
  font-size: 22px;
  line-height: 1.5;
  padding: 5px 15px;
  margin-bottom: 30px;
}

.u-h4 {
  font-size: 20px;
  line-height: 1.5;
  padding-left: 25px;
  margin-bottom: 15px;
  position: relative;
}

.u-h4::before {
  content: "";
  background: var(--color_primary);
  width: 8px;
  height: 60%;
  position: absolute;
  left: 0;
  top: 7.5px;
}

.u-h402 {
  border-bottom: 2px solid var(--color_primary);
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 2px;
  margin-bottom: 15px;
  width: fit-content;
}

.num-ttl {
  border-bottom: 2px solid var(--color_border);
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.num-ttl .num {
  background: var(--color_primary);
  display: inline-block;
  color: #fff;
  font-family: var(--font_en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 25px;
  padding: 0 9px;
  margin-right: 20px;
  vertical-align: 3px;
  position: relative;
}

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

.u-catch {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

@media (max-width: 800px) {
  .u-h2 {
    font-size: 25px;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }

  .u-h202 {
    font-size: 25px;
  }

  .u-h202::after {
    margin: 20px auto 30px;
  }

  .u-h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .u-h302 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .u-h4 {
    font-size: 18px;
    padding-left: 20px;
  }

  .u-h402 {
    font-size: 18px;
  }

  .num-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .num-ttl .num {
    display: table;
    font-size: 10px;
    padding: 0 10px;
    margin-bottom: 8px;
  }

  .num-ttl .num::after {
    display: none;
  }

  .u-catch {
    text-align: left;
    font-size: 18px;
  }
}

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

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

.tall {
  padding: 70px 0;
}

.tall:nth-child(2n) {
  background: #fff;
}

.hidden {
  overflow: hidden;
}

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

  .tall {
    padding: 50px 0;
  }
}

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

.list-check li::before {
  content: "";
  width: 15px;
  height: 9px;
  border-left: 3px solid var(--color_primary);
  border-bottom: 3px solid var(--color_primary);
  transform: rotate(-45deg);
  position: absolute;
  top: 8px;
  left: 0;
}

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

.dl-style03 {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 10px 30px;
}

.dl-style03>dt {
  background: var(--color_primary);
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.list-card01>li {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color_border);
  padding: 25px;
}

.list-card01.bg-white>li {
  background-color: var(--color_bg);
}

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

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

.list-card01 .list-ttl {
  border-bottom: 1px solid #333;
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

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

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

.list-card02>li {
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.list-card02.bg-white>li {
  background-color: var(--color_bg);
}

.list-card02 .list-img {
  text-align: center;
  margin-bottom: 25px;
}

.list-card02 .list-img img {
  border-radius: 10px;
}

.list-card02 .num {
  background: var(--color_primary);
  border-radius: 50px;
  display: table;
  color: #fff;
  font-weight: bold;
  font-size: 11px;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}

.list-card02 .list-ttl {
  display: block;
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

.table-style01 .bg01 {
  background-color: #f5f5f5;
  color: #333;
}

.scroll-txt {
  display: none;
}

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

.box-style01>.box-ttl02 {
  font-size: 20px;
  padding-left: 25px;
  margin-bottom: 15px;
  position: relative;
}

.box-style01>.box-ttl02::before {
  content: "";
  background: var(--color_primary);
  width: 8px;
  height: 60%;
  position: absolute;
  left: 0;
  top: 7.5px;
}

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

  .box-style01>.box-ttl02 {
    font-size: 18px;
  }
}

.list-anchor-link {
  display: flex;
  flex-wrap: wrap;
  font-size: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.under-slider01 .splide__arrow--prev {
  left: calc((100% - 860px) / 2);
}

.under-slider01 .splide__arrow--next {
  right: calc((100% - 860px) / 2);
}

.under-slider01 .splide__arrow {
  top: 263px;
  transform: translateY(0);
}

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

.under-slider01 .item-ttl {
  font-size: 18px;
  margin-bottom: 10px;
}

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

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

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

  .under-slider01 .item-ttl {
    font-size: 18px;
    margin-bottom: 0;
  }
}


.under-slider03-main .splide__track--fade>.splide__list>.splide__slide {
  position: absolute;
}

.under-slider03-main .splide__track--fade>.splide__list>.splide__slide.is-active {
  position: relative;
}

.under-slider03-main .splide__slide {
  display: flex;
  align-content: center;
  text-align: center;
  justify-content: center;
}

.under-slider03-main .splide__slide img,
.under-slider03-main .wp-block-gallery .wp-block-image {
  height: 300px !important;
}


.under-slider03-main .splide__slide img {
  flex: revert;
  object-fit: cover;
}


.under-slider03-thumbnail>.wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px !important;
  margin-top: 30px;
}

.under-slider03-thumbnail .wp-block-image {
  cursor: pointer;
  filter: grayscale(100%);
  transition: filter 0.3s transform 0.3s;
}

.under-slider03-thumbnail .wp-block-image.is-active {
  filter: grayscale(0%);
  transform: scale(0.9);
}


.under-slider03-thumbnail .wp-block-gallery.has-nested-images figure.wp-block-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
}

.under-slider03-thumbnail .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: 100%;
}


.under-slider03-thumbnail figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


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

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

video {
  width: 100%;
}

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

.flow-arrow {
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.flow-arrow::before,
.flow-arrow::after {
  content: "";
  background-color: #333;
  flex: 1;
  height: 1px;
}

.flow-arrow img {
  padding: 0 15px;
  width: 65px;
}

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

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

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

.l-imgR .l-img img,
.l-imgL .l-img img {
  border-radius: 10px;
}

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

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

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

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

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

.l-col2,
.l-col3 {
  display: grid;
}

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

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

.l-style01 {
  display: flex;
  position: relative;
  z-index: 0;
}

.l-style01 .l-img {
  width: 56.64%;
  margin: 0 7.5% 0 -10%;
}

.l-style01 .l-img img {
  border-radius: 10px;
}

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

.l-style01 .num {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 15px;
}

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

.l-style01 .l-sub-ttl {
  display: flex;
  align-items: center;
  font-family: var(--font_jp);
  font-size: 18px;
  margin-bottom: 30px;
}

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

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

.l-style01.reverse .l-img {
  margin: 0 -10% 0 7.5%;
}

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

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

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

  .l-style01 {
    display: block;
  }

  .l-style01 .l-img {
    width: 100%;
    margin: 0 0 25px;
  }

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

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

  .l-style01 .l-sub-ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .l-style01.reverse .l-img {
    margin: 0 0 25px;
  }
}

.staff-layout {
  display: flex;
}

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

.staff-layout .l-img img {
  border-radius: 10px;
}

.staff-layout .l-desc {
  flex: 1;
  padding-left: 8%;
}

.staff-layout .l-ttl {
  border-bottom: 2px solid #000;
  font-size: 15px;
  width: fit-content;
  margin-bottom: 30px;
}

.staff-layout .l-message {
  font-family: var(--font_jp);
  font-size: 25px;
  margin-bottom: 25px;
}

.staff-layout .l-name {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
  font-family: var(--font_jp);
  font-size: 13px;
  line-height: 1;
}

.staff-layout .job {
  display: block;
}

.staff-layout .jp {
  display: block;
  font-size: 20px;
}

.staff-layout .en {
  display: block;
}

.staff-career {
  display: grid;
  grid-template-columns: 100px 1fr;
}

.staff-career dt {
  color: #333;
}

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

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

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

  .staff-layout .l-message {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .staff-career {
    grid-template-columns: 85px 1fr;
  }
}

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

.tel-layout.bg-white {
  background: var(--color_bg);
}

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

.tel-layout .l-tel {
  display: inline-flex;
  align-items: center;
  font-family: var(--font_en);
  letter-spacing: 0.1em;
  font-size: 35px;
  line-height: 1;
  margin: 0 auto;
  white-space: nowrap;
}

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

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

.tel-layout .l-time dt {
  background-color: #fff;
  border: 1px solid #DCDCC6;
  border-radius: 2px;
  font-family: var(--font_jp);
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.tel-layout02.bg-white {
  background: var(--color_bg);
}

.tel-layout02 .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  align-items: center;
}

.tel-layout02 .l-ttl {
  border-bottom: 1px solid #333;
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 30px;
  width: fit-content;
}

.tel-layout02 .l-tel {
  display: inline-flex;
  font-family: var(--font_en);
  letter-spacing: 0.1em;
  font-size: 35px;
  line-height: 1;
  white-space: nowrap;
  width: fit-content;
}

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

.tel-layout02 .l-time {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 10px;
  line-height: 1.5;
  margin-top: 15px;
  margin: 15px auto 0;
  width: fit-content;
}

.tel-layout02 .l-time dt {
  background-color: #fff;
  border: 1px solid #DCDCC6;
  border-radius: 2px;
  font-family: var(--font_jp);
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tel-layout02 .l-btns {
  display: grid;
  grid-gap: 15px;
}

.tel-layout02 .l-btns a {
  width: 100%;
}

@media (max-width: 800px) {
  .tel-layout .l-ttl {
    font-size: 15px;
  }

  .tel-layout .l-tel {
    font-size: 25px;
  }

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

  .tel-layout02 .l-ttl {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .tel-layout02 .wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }

  .tel-layout02 .l-tel {
    font-size: 25px;
  }

  .tel-layout02 .l-tel img {
    width: 15px;
  }

  .tel-layout02 .l-time {
    margin-top: 10px;
  }
}

.flow-style {
  border: 2px solid var(--color_border);
  border-radius: 10px;
  background: #fff;
  padding: 5%;
}

.flow-style>li+li {
  border-top: 1px solid #333;
  padding-top: 70px;
  margin-top: 70px;
  position: relative;
}

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

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

.flow-style .flow-img {
  width: 40%;
}

.flow-style .flow-img img {
  border-radius: 10px;
}

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

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

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

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

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

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid var(--color_border);
  font-family: var(--font_jp);
  font-size: 18px;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

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

.list-privacy li {
  position: relative;
  padding: 0 0 0 15px;
}

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

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

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

.footer-layout01 {
  background-color: #fff;
  padding: 90px 0 50px;
}

.footer-layout01 .l-wrapper {
  display: grid;
  grid-template-columns: 45% 1fr;
  grid-gap: 5%;
}

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

.site-map {
  line-height: 1.5;
}

.site-map .sub-menu {
  margin-top: 10px;
}

.site-map .sub-menu li {
  font-size: 14px;
  line-height: 2.3;
  padding-left: 15px;
  position: relative;
}

.site-map .sub-menu li::before {
  content: "";
  background-color: var(--color_text);
  width: 6px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 16px;
}

.site-map a:hover {
  text-decoration: underline;
}

.site-map .no-link {
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 17px;
  padding-left: 12px;
  position: relative;
}

.site-map .no-link::before {
  content: "";
  background-color: var(--color_secondary);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.copyright {
  background-color: #fff;
  font-size: 14px;
  padding: 10px 10px 54px;
}

.copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

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

.copyright-links a {
  line-height: 1.5;
}

.copyright-links a:hover {
  text-decoration: underline;
}

.sp-navi {
  display: none;
}

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

  .footer-layout01 {
    padding: 50px 0;
  }

  .footer-layout01 .l-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .f-logo {
    text-align: center;
  }

  .footer-container {
    grid-gap: 15px;
  }

  .copyright {
    padding: 25px 0 15px;
    text-align: center;
  }

  .copyright .container {
    display: block;
    justify-content: space-between;
    align-items: center;
  }

  .copyright-links {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 1024px) {
  .sp-navi {
    display: block;
  }

  :root {
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --menu-btn: #fff;
    --navi-font: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  }

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

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

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

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

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

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

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

  .sp-menu-btn {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px;
  }

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

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

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

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

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

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

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

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

  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: var(--navi-font);
    padding: 50px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }

  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }

  .sp-navi-list {
    border-top: 1px solid #d6d6d6;
    font-family: var(--font_jp);
    margin: 0 0 50px;
  }

  .sp-navi-list>li {
    border-bottom: 1px solid #d6d6d6;
  }

  .sp-navi-list>li>a,
  .sp-navi-list>li>.no-link {
    color: #333;
    display: block;
    font-size: 14px;
    line-height: 1;
    padding: 15px 0;
  }

  .sp-navi-list>li.menu-item-has-children {
    position: relative;
  }

  .sp-navi-list>li.menu-item-has-children::before,
  .sp-navi-list>li.menu-item-has-children::after {
    content: "";
    background-color: #333;
    position: absolute;
    transition: 0.5s;
  }

  .sp-navi-list>li.menu-item-has-children::before {
    width: 1px;
    height: 11px;
    top: 17px;
    right: 20px;
  }

  .sp-navi-list>li.menu-item-has-children::after {
    width: 11px;
    height: 1px;
    top: 22px;
    right: 15px;
  }

  .sp-navi-list>li.menu-item-has-children.is-on::before {
    transform: rotate(90deg);
  }

  .sp-navi-list .sub-menu {
    padding: 0 0 15px;
  }

  .sp-navi-list .sub-menu>li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
  }

  .sp-navi-list .sub-menu>li::before {
    content: "-";
    color: #333;
    position: absolute;
    left: 0;
    top: 0;
  }

  .sp-navi-list .sub-menu>li>a {
    display: inline-block;
    font-size: 13px;
    text-decoration: none;
  }

  .sp-navi-logo {
    text-align: center;
    margin-bottom: 30px;
  }

  .sp-navi-address {
    text-align: center;
    font-size: 13px;
  }

  .sp-navi-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font_en);
    font-size: 23px;
    letter-spacing: 0.1em;
  }

  .sp-navi-tel img {
    margin-right: 10px;
  }

  .sp-navi-time {
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-gap: 5px 10px;
    font-size: 13px;
  }

  .sp-navi-time dt {
    background-color: #fff;
    border: 1px solid #DCDCC6;
    border-radius: 2px;
    font-family: var(--font_jp);
    text-align: center;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*通常投稿*/
.list-under-blog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}

.list-under-blog .list-img {
  border: 1px solid var(--color_border);
  margin-bottom: 20px;
  overflow: hidden;
}

.list-under-blog .list-img img {
  object-fit: cover;
  width: 100%;
  height: 165px;
  transition: transform 0.5s;
}

.list-under-blog time {
  color: #aaa;
  display: block;
  font-size: 12px;
}

.list-under-blog .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-bottom: 10px;
}

.list-under-blog .category {
  display: inline-block;
  background-color: var(--color_primary);
  color: #fff;
  font-size: 11px;
  padding: 0 5px;
  margin-right: 5px;
}

.list-under-blog a {
  display: block;
  height: 100%;
}

.list-under-blog a:hover .list-img img {
  transform: scale(1.1);
}

.list-under-post {
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}

.list-under-post>li {
  border-bottom: 1px solid var(--color_border);
}

.list-under-post a {
  display: flex;
  transition: background-color 0.3s, padding 0.3s;
  padding: 15px 35px 15px 0;
  position: relative;
}

.list-under-post a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}

.list-under-post a:hover .list-ttl {
  text-decoration: underline;
}

.list-under-post .list-img {
  width: 150px;
  margin-right: 25px;
}

.list-under-post .list-img img {
  object-fit: cover;
  width: 100%;
  height: 105px;
}

.list-under-post .list-desc {
  flex: 1;
  font-size: 0.9rem;
}

.list-under-post time {
  display: block;
  font-size: 0.8rem;
}

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

.list-under-post .category {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #E1E1D0;
  border-radius: 3px;
  font-size: 11px;
  padding: 0 5px;
  margin-right: 10px;
}

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

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

.list-under-news a {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 25px;
  border-bottom: 1px solid var(--color_border);
  padding: 20px 0;
}

.list-under-news a:hover .ttl {
  text-decoration: underline;
}

.list-under-news time {
  display: inline-block;
}

.list-under-news .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 500;
}

.category-ttl {
  margin-bottom: 15px;
}

/*詳細ページ*/
.single-post-layout {
  display: flow-root;
  border-bottom: 3px solid var(--color_border);
  padding-bottom: 50px;
  margin-bottom: 50px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.single-post-layout .l-ttl {
  border-bottom: 3px solid var(--color_border);
  font-size: 24px;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

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

.single-post-layout .post-data time {
  display: inline-block;
  font-size: 12px;
  margin-right: 20px;
}

.single-post-layout .post-data .category {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #E1E1D0;
  border-radius: 3px;
  font-size: 11px;
  padding: 0 5px;
  margin-right: 10px;
}

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

.postdata h2 {
  border-bottom: 3px solid var(--color_border);
  font-size: 22px;
  padding-bottom: 10px;
  margin-bottom: 25px;
  position: relative;
}

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

.postdata h3 {
  font-size: 20px;
  padding-left: 25px;
  margin-bottom: 15px;
  position: relative;
}

.postdata h3::before {
  content: "";
  background: var(--color_primary);
  width: 8px;
  height: 60%;
  position: absolute;
  left: 0;
  top: 7.5px;
}

.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 {
  list-style: inside disc;
}

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

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

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

.postdata sub {
  font-size: 11px;
  position: relative;
  bottom: -0.1em;
}

.postdata sup {
  font-size: 11px;
  position: relative;
  top: -0.1em;
}

.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 .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;
  transition: background-color 0.3s;
}

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

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

@media (max-width: 800px) {
  .postdata h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .postdata h3 {
    font-size: 18px;
    padding-left: 20px;
  }
}

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

.post-number span,
.post-number a {
  display: inline-block;
  color: var(--color_primary);
  background-color: #fff;
  border: 1px solid #E1E1D0;
  border-radius: 3px;
  font-size: 13px;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  transition: 0.3s;
  padding: 0 20px;
  transition: 0.3s;
}

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

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

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

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

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

.post-number-single .all {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  font-size: 13px;
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

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

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

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

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

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

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

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

@media (max-width: 800px) {

  /*通常投稿*/
  .list-under-blog {
    display: flex;
    grid-gap: 0;
    flex-wrap: nowrap;
    margin: 0 -5vw 0 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }

  .list-under-blog li {
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }

  .list-under-post a {
    padding: 20px 25px 20px 0;
  }

  .list-under-post a::before {
    right: 0;
  }

  .list-under-post a:hover {
    background-color: transparent;
  }

  .list-under-post .list-img {
    width: 120px;
    margin-right: 20px;
  }

  .list-under-post .list-img img {
    height: 90px;
  }

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

  .list-under-post time {
    font-size: 10px;
  }

  .list-under-post .list-ttl {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .list-under-post .category {
    font-size: 10px;
  }

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

  /*お知らせ*/
  .list-under-news a {
    display: block;
    line-height: 1.5;
    padding: 10px 0;
  }

  .list-under-news time {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .list-under-news .ttl {
    -webkit-line-clamp: 2;
  }

  /*詳細ページ*/
  .single-post-layout .l-ttl {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: flex;
  justify-content: space-between;
  padding: 100px 0 100px 5%;
  margin: 0 auto;
  max-width: 1400px;
}

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

.side-contents {
  width: 220px;
}

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

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

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

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

.side-area-links li {
  font-size: 14px;
  padding-left: 15px;
  position: relative;
}

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

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

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

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

.side-area-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: #fff url(../images/share/icon_select_arrow.svg) no-repeat right 10px center/20px auto;
  border-radius: 0;
  border: none;
  border: 1px solid #e8ecf0;
  color: #333;
  vertical-align: middle;
  padding: 10px 20px 10px 15px;
  margin: 0;
  width: 100%;
  height: 50px;
}

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

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

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

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

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

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

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

  .side-contents-ttl {
    font-size: 15px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

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

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

.sp-only {
  display: none;
}

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

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 11px;
}

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

.red {
  color: #F44336;
}

.green {
  color: var(--color_primary);
}

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

.notice {
  font-size: 0.8rem;
  text-indent: -1.6em;
  padding-left: 1.6em;
}

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

.mbXS {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mbXL {
  margin-bottom: 90px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

@media (max-width: 800px) {
  .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;
  }

  .mbXL {
    margin-bottom: 50px !important;
  }
}

/*ボタン*/
.btn-more,
.btn-icon,
.btn-tel,
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--color_primary);
  border-radius: 27px;
  font-family: var(--font_jp);
  line-height: 1;
  min-height: 54px;
  min-width: 230px;
  padding: 12px 33px;
  transition: opacity 0.5s;
}

.btn-more:hover,
.btn-icon:hover,
.btn-tel:hover,
.btn-line:hover {
  opacity: 0.5;
}

.btn-more {
  background-color: #fff;
  color: var(--color_primary);
  line-height: 1.5;
  position: relative;
}

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

.btn-tel {
  background: #333;
  color: #fff;
}

.btn-tel i {
  font-size: 10px;
  margin-right: 10px;
}

.btn-icon {
  background-color: var(--color_primary);
  color: #fff;
}

.btn-icon img {
  margin-right: 10px;
}

.btn-line {
  background: #4CC764;
  color: #fff;
  padding: 10px 25px;
}

.btn-line img {
  line-height: 1;
  margin: 0 10px 0 -20px;
}

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

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

@media (max-width: 800px) {

  .btn-more,
  .btn-tel,
  .btn-icon,
  .btn-line {
    width: 100%;
  }

  .btn-wrap {
    display: grid;
  }
}

/*診療カレンダー*/
:root {
  --event01: #EC8181;
  --event02: #FC9856;
}

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

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

.business-calendar-box-wrap .business-calendar caption {
  font-family: var(--font_jp);
  font-size: 16px;
  text-align: center;
  margin: 10px 0;
  position: relative;
}

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

.business-calendar-box-wrap .business-calendar caption span.business-calendar-past {
  left: 0;
}

.business-calendar-box-wrap .business-calendar caption span.business-calendar-future {
  right: 0;
}

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

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

.business-calendar-box-wrap .business-calendar th {
  background: var(--color_primary);
  border: 1px solid #DFDFDF;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  padding: 8px 7px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: #fff;
  background-clip: padding-box;
  border: 1px solid #DFDFDF;
  position: relative;
  font-family: var(--font_en);
  font-size: 14px;
  padding: 7px;
  z-index: 0;
}

.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}

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

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

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

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

.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: #fff;
}

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

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

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

.list-event {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.list-event li {
  font-size: 15px;
  line-height: 1;
}

.list-event i {
  margin: 0 5px 0 0;
}

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

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

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

  .list-event {
    display: block;
  }

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

/*診療時間*/
.time-table {
  border: 1px solid #DFDFDF;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.time-table-head {
  background-color: var(--color_primary);
  color: #fff;
  font-family: var(--font_jp_r);
}

.time-table-head .item {
  padding: 8px 0;
}

.time-table-body {
  border-top: 1px solid #DFDFDF;
}

.time-table-body .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

.time-table-body .item:first-child {
  font-family: var(--font_jp_r);
  letter-spacing: 0;
}

.time-table-head,
.time-table-body {
  display: grid;
  font-family: var(--font_jp);
  grid-template-columns: 120px repeat(6, 1fr) 60px;
}

.time-table.large .time-table-head,
.time-table.large .time-table-body {
  grid-template-columns: 220px repeat(6, 1fr) 100px;
}

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

  .time-table-head .item {
    padding: 5px 0;
  }

  .time-table-body .item {
    padding: 5px 0;
    font-size: 13px;
  }

  .time-table-body .item:first-child {
    line-height: 1.3;
    font-size: 10px;
  }

  .time-table-head,
  .time-table-body {
    grid-template-columns: 70px repeat(6, 1fr) 50px !important;
  }
}

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

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

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

.splide__pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-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 2px;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  border-radius: 10px;
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

.splide__track--fade>.splide__list>.splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

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

.splide--rtl {
  direction: rtl;
}

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

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: var(--color_bg);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  width: 64px;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid #000;
  border-width: 1px 1px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

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

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

.splide__arrow:disabled {
  opacity: 0.3;
}

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

.splide__arrow--prev {
  left: calc((100% - 1080px) / 2);
}

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

.splide__arrow--next {
  right: calc((100% - 1080px) / 2);
}

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

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

.splide__pagination__page {
  background: #fff;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #71947D;
  opacity: 1;
}

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

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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