@charset "UTF-8";
/*-----------------------------------------------------------
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;
}

a {
  transition: .5s;
}
a:hover {
  opacity: 0.5;
}

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

:target {
  scroll-margin-top: clamp(68px, calc(154 / 1800 * 100vw), 154px);
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 50px;
  }
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
}

body,
html {
  height: auto;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Zen Old Mincho", serif;
  color: #211815;
  font-size: clamp(1.3rem, calc(15 / 1400 * 100vw), 1.5rem);
  line-height: 2em;
  letter-spacing: .05em;
  /*-webkit-text-size-adjust: 100%;*/
  /*-webkit-font-feature-settings: "palt";*/
  /*font-feature-settings: "palt";*/
  background: #F0EADC;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Zen Old Mincho", serif;
  letter-spacing: .05em;
}

th,
dt {
  font-family: "Zen Old Mincho", serif;
}

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

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

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

p {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: clamp(1.5rem, calc(16 / 1400 * 100vw), 1.6rem);
  line-height: 2em;
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 95%;
}
.container.wide {
  max-width: 1200px;
}
.container.narrow {
  max-width: 800px;
}

@media (max-width: 800px) {
  .container {
    max-width: none;
    min-width: auto;
  }

  p {
    font-size: 14px;
  }
}
/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: sticky;
  top: 0;
  width: 100%;
  margin: auto;
  background: #FFF;
  z-index: 200;
}
.header .h-container {
  margin: auto;
  padding-top: calc(30 / 1800 * 100%);
  padding-right: calc(70 / 1800 * 100%);
  padding-bottom: calc(30 / 1800 * 100%);
  padding-left: calc(30 / 1800 * 100%);
  transition: .5s;
}
.header .h-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .h-logo {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: fit-content;
  height: auto;
  z-index: 10;
  transition: 0.5s;
}
.header .h-logo .h-logo-link img {
  width: clamp(240px, calc(340 / 1800 * 100vw), 340px);
  transition: .5s;
  max-width: unset;
}

@media (max-width: 800px) {
  .header {
    position: static !important;
  }
  .header .h-container {
    padding: 0 16px;
  }
  .header .h-wrapper {
    height: 80px;
    justify-content: center;
  }
  .header .h-logo {
    padding: 0;
    z-index: 2;
  }
}
/*------------
Gnavi
--------------*/
/*normal*/
.gnavi {
  display: grid;
  width: 100%;
  /*dropdown*/
}
.gnavi .pc-navi {
  justify-self: flex-end;
}
.gnavi .pc-navi .wrap {
  display: flex;
  align-items: center;
  justify-items: flex-end;
}
.gnavi .gnavi-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: fit-content;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.3rem, calc(18 / 1800 * 100vw), 1.8rem);
  line-height: calc(24 / 18 * 1em);
  margin-right: 0;
}
.gnavi .gnavi-list > li {
  margin-right: calc(50 / 18 * 1em);
}
.gnavi .gnavi-list > li.active > a {
  color: #59B2AC;
  /* アクティブ色 */
  font-weight: bold;
  /* 強調 */
  position: relative;
}
.gnavi .gnavi-list > li.active > a::after {
  content: "";
  position: absolute;
  left: 50%;
  /* 中央寄せ */
  bottom: -10px;
  /* テキストの下に配置 */
  transform: translateX(-50%);
  /* ▼小さい三角 */
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #59B2AC;
  /* 三角の色はアクティブ色 */
}
.gnavi .gnavi-list > li > a {
  display: inline-block;
  font-family: "Zen Old Mincho", serif;
  color: #211815;
  z-index: 10;
}
.gnavi .info-wrap {
  display: flex;
  color: #59B2AC;
  gap: 40px;
}
.gnavi .info-wrap .tel {
  white-space: nowrap;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  font-family: "Lato", sans-serif;
}
.gnavi .info-wrap .tel img {
  width: 24px;
  margin-right: 5px;
}
.gnavi .info-wrap .tel small {
  font-size: 1.6rem;
}
.gnavi .info-wrap .reserve {
  min-width: 150px;
  height: 50px;
  width: fit-content;
  background: #59B2AC;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 3px;
}
.gnavi .info-wrap .reserve span {
  line-height: 1.25;
}
.gnavi .info-wrap .reserve span small {
  font-size: 1.2rem;
}
.gnavi .info-wrap .reserve.linkNone {
  pointer-events: none;
  /* クリック無効 */
  cursor: default;
  /* カーソルを通常に */
  color: #333;
  /* 無効っぽい色に */
  background: #999;
}
.gnavi .fixed-menu {
  display: flex;
  align-items: center;
  position: fixed;
  top: clamp(200px, 30%, 300px);
  right: 0;
  transition: transform 0.5s;
  transform: translate(calc(100% - (65 / 16 * 1em)), 0);
  height: fit-content;
  font-size: clamp(1rem, calc(16 / 1400 * 100vw), 1.6rem);
  padding: 0;
  border-radius: 6px 0 0 6px;
  background: #FFF;
  overflow: hidden;
  z-index: 10;
}
.gnavi .fixed-menu.is-on {
  transform: translate(0, 0);
}
.gnavi .fixed-menu .inner {
  display: flex;
  height: fit-content;
}
.gnavi .fixed-menu .inner > .ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(6 / 14 * 1em);
  width: calc(65 / 16 * 1em);
  height: fit-content;
  min-height: 186px;
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1rem, calc(16 / 1400 * 100vw), 1.6rem);
  line-height: 1;
  letter-spacing: 0.25em;
  white-space: nowrap;
  font-feature-settings: normal;
  color: #FFF;
  padding-top: calc(41 / 16 * 1em);
  padding-bottom: calc(44 / 16 * 1em);
  background: #59B2AC;
}
.gnavi .fixed-menu .inner > .ttl img {
  width: calc(38 / 16 * 1em);
}
.gnavi .fixed-menu .desc {
  display: grid;
  row-gap: calc(25 / 17 * 1em);
  width: fit-content;
  height: auto;
  padding: calc(60 / 17 * 1em) calc(30 / 17 * 1em) calc(60 / 17 * 1em);
  font-size: clamp(1.2rem, calc(17 / 1400 * 100vw), 1.7rem);
  color: #211815;
}
.gnavi .fixed-menu p {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: clamp(1.2rem, calc(17 / 1400 * 100vw), 1.7rem);
  line-height: calc(28 / 17 * 1em);
  font-weight: bold;
  text-align: center;
  margin: -0.5em 0;
}
.gnavi .fixed-menu .info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: calc(12 / 15 * 1em);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.2rem, calc(15 / 1400 * 100vw), 1.5rem);
}
.gnavi .fixed-menu .info-list a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gnavi .fixed-menu .info-list .tel {
  gap: calc(7 / 24 * 1em);
  position: relative;
  font-size: clamp(1.6rem, calc(24 / 1400 * 100vw), 2.4rem);
  line-height: calc(41 / 24 * 1em);
  text-align: center;
  white-space: nowrap;
}
.gnavi .fixed-menu .info-list .tel span {
  color: #59B2AC;
}
.gnavi .fixed-menu .info-list .tel img {
  width: calc(16 / 24 * 1em);
}
.gnavi .fixed-menu .info-list .contact {
  gap: calc(13.3 / 15 * 1em);
  font-size: clamp(1.2rem, calc(15 / 1400 * 100vw), 1.5rem);
  line-height: calc(46 / 15 * 1em);
  border-radius: 100vh;
  background: #59B2AC;
}
.gnavi .fixed-menu .info-list .contact img {
  width: calc(22.4 / 15 * 1em);
}
.gnavi .fixed-menu .info-list .contact span {
  color: #FFF;
}
.gnavi .gnavi-list a[href="#"] {
  cursor: auto;
  pointer-events: none;
}
.gnavi .gnavi-list .menu-item-has-children {
  display: flex;
  align-items: center;
  column-gap: calc(7 / 18 * 1em);
  position: relative;
  margin-right: calc(36 / 18 * 1em);
}
.gnavi .gnavi-list .menu-item-has-children::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 150%;
  z-index: -1;
}
.gnavi .gnavi-list .menu-item-has-children::after {
  content: "";
  display: block;
  width: calc(5 / 18 * 1em);
  aspect-ratio: 1/1;
  height: fit-content;
  margin-top: calc(3/ 18 *1em);
  border-radius: 50%;
  background: #59B2AC;
}
.gnavi .gnavi-list .menu-item-has-children.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}
.gnavi .gnavi-list .sub-menu {
  position: absolute;
  bottom: calc(clamp(15px, calc(30 / 1800 * 100vw), 30px) * -1);
  right: 50%;
  transform: translate(50%, 100%);
  width: max-content;
  min-width: 150px;
  font-size: clamp(1.3rem, calc(18 / 1400 * 100vw), 1.8rem);
  text-align: left;
  padding: calc(30 / 18 * 1em);
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}
.gnavi .gnavi-list .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(clamp(15px, calc(30 / 1800 * 100vw), 30px) * -1);
  left: 0;
  width: 100%;
  height: clamp(15px, calc(30 / 1800 * 100vw), 30px);
}
.gnavi .gnavi-list .sub-menu li a {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.3rem, calc(18 / 1400 * 100vw), 1.8rem);
  line-height: calc(40 / 18 * 1em);
  color: #333333;
}

@media (max-width: 800px) {
  .gnavi {
    width: auto;
    max-width: calc(100% - 120px);
    height: 100%;
  }
  .gnavi .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #FFF;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    padding: 90px 5% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }
  .gnavi .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }
  .gnavi .sp-navi-contents .sp-navi-list {
    border-top: 1px solid #d6d6d6;
    margin: 0 0 30px;
  }
  .gnavi .sp-navi-contents .sp-navi-list li {
    border-bottom: 1px solid #d6d6d6;
  }
  .gnavi .sp-navi-contents .sp-navi-list li a {
    color: #1A2F50;
    display: block;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    padding: 15px 0;
  }
  .gnavi .sp-navi-contents .sp-navi-list li.sp-dropdown {
    position: relative;
  }
  .gnavi .sp-navi-contents .sp-navi-list li.sp-dropdown a {
    padding: 15px 0;
    width: 85%;
  }
  .gnavi .sp-navi-contents .sp-navi-list li.sp-dropdown::before {
    width: 1px;
    height: 11px;
    top: 17px;
    right: 20px;
  }
  .gnavi .sp-navi-contents .sp-navi-list li.sp-dropdown::after {
    width: 11px;
    height: 1px;
    top: 22px;
    right: 15px;
  }
  .gnavi .sp-navi-contents .sp-navi-list li.sp-dropdown::before, .gnavi .sp-navi-contents .sp-navi-list li.sp-dropdown::after {
    content: "";
    background-color: #333;
    position: absolute;
    transition: 0.5s;
  }
  .gnavi .sp-navi-contents .sp-navi-list li.sp-dropdown .is-on::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .gnavi .sp-navi-contents .sp-navi-list li.sp-dropdown .is-on::after {
    width: 11px;
    height: 1px;
    top: 22px;
    right: 15px;
  }
  .gnavi .sp-navi-contents .sp-navi-list .child {
    padding: 0 0 15px;
    list-style-type: "-  ";
  }
  .gnavi .sp-navi-contents .sp-navi-list .child ul li {
    position: relative;
    padding-left: 15px;
    border: 0;
  }
  .gnavi .sp-navi-contents .sp-navi-list .child ul li::before {
    content: "-";
    color: #333;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-57%);
    font-size: 13px;
    line-height: 1.8;
  }
  .gnavi .sp-navi-contents .sp-navi-list .child ul li a {
    display: inline-block;
    font-size: 13px;
    line-height: 1.8;
    padding: 0;
  }
  .gnavi .fixed-menu {
    display: none;
  }
}
/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero-area .hero {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  position: relative;
  height: auto;
  margin: auto;
  z-index: 1;
}
.hero-area .hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  max-width: unset;
  z-index: -1;
  background-image: url(../images/share/bg-wood.jpg);
  background-size: contain;
  padding: calc(80 / 1800 * 100%) 0;
  bottom: 0;
}
.hero-area .hero-img {
  display: block;
  position: relative;
  width: calc(1412 / 1800 * 100%);
  aspect-ratio: 1412 / 672;
  height: auto;
  margin: 0 0 0 auto;
  overflow: hidden;
  z-index: 1;
}
.hero-area #Top_Hero_Splide,
.hero-area .splide__track {
  height: 100%;
}
.hero-area #Top_Hero_Splide .splide__slide,
.hero-area .splide__track .splide__slide {
  overflow: hidden;
}
.hero-area #Top_Hero_Splide img,
.hero-area .splide__track img {
  position: relative;
  max-width: none;
  max-height: none;
  object-fit: cover;
}
.hero-area .splide__pagination {
  position: absolute;
  bottom: 3vw;
  left: 30px;
  right: unset;
  width: fit-content;
}
.hero-area .splide__pagination__page {
  width: 27px;
  height: 2px;
  margin: 0;
  border-radius: 0;
  background: #fff;
}
.hero-area .splide__pagination__page.is-active {
  background: #59B2AC;
  transform: unset;
  z-index: 1;
}
.hero-area li + li .splide__pagination__page {
  margin-left: 5px;
}
.hero-area .hero-catch {
  width: fit-content;
  aspect-ratio: 730/290;
  background: rgba(255, 255, 255, 0.8);
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: right bottom;
  padding: 30px;
  position: absolute;
  left: 0;
  top: 12vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-area .hero-catch::before {
  content: "";
  width: 45%;
  max-width: 243px;
  aspect-ratio: 243/188;
  background-image: url("../images/hero-kazari01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -8em;
}
.hero-area .hero-catch::after {
  content: "";
  width: 30%;
  max-width: 126px;
  aspect-ratio: 126/48;
  background-image: url("../images/hero-kazari02.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
}
.hero-area .hero-catch .l-ttl {
  font-size: clamp(2.2rem, calc(48 / 1800 * 100vw), 4.8rem);
  margin-bottom: 10px;
  color: #fff;
}
.hero-area .hero-catch .sub-ttl {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-area .hero-catch .sub-ttl span {
  width: fit-content;
  display: inline-block;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #59B2AC;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  font-size: clamp(1.5rem, calc(20 / 1800 * 100vw), 2rem);
  border-radius: 3px;
}

@media (max-width: 800px) {
  .hero-area {
    height: auto;
  }
  .hero-area .hero {
    width: 100%;
    height: auto;
    margin: auto;
    padding-bottom: 0px;
  }
  .hero-area .hero-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-position: top;
  }
  .hero-area .splide__pagination {
    left: auto;
    right: 0;
    margin-left: 0;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .hero-area .splide__pagination__page {
    width: 20px;
  }
  .hero-area .hero-catch {
    padding: 20px;
    position: relative;
    top: 0;
    left: unset;
    width: 100%;
  }
  .hero-area .hero-catch::before {
    content: "";
    width: 45%;
    max-width: 243px;
    aspect-ratio: 243/188;
    background-image: url("../images/hero-kazari01.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: -25.5vw;
  }
  .hero-area .hero-catch::after {
    content: "";
    width: 24%;
    max-width: 126px;
    aspect-ratio: 126/48;
    background-image: url("../images/hero-kazari02.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .hero-area .hero-catch .l-ttl {
    margin-bottom: 10px;
  }
  .hero-area .hero-catch .sub-ttl {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }
  .hero-area .hero-catch .sub-ttl span {
    padding: 3px 5px;
  }
}
/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
.top-main {
  overflow: hidden;
  background: #fff;
  position: relative;
}
.top-main::after {
  content: "";
  position: absolute;
  width: 100%;
  background-image: url("../images/share/bg-wood.jpg");
  background-size: contain;
  top: 20vw;
  z-index: 0;
}
.top-main figure {
  display: block;
}
.top-main img {
  width: 100%;
  border-radius: unset;
}
.top-main .l-img img,
.top-main .list-img img {
  width: 100%;
  aspect-ratio: unset;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .top-main .wrapper {
    width: 90vw;
  }
}

.t-h2 {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.4rem, calc(34 / 1800 * 100vw), 3.4rem);
  line-height: calc(27 / 20 * 1em);
  letter-spacing: 0.1em;
  color: #211815;
}

/*------------
Block
--------------*/
/*------------
sec01
--------------*/
.sec01 .container {
  width: 100%;
  max-width: 1800px;
}
.sec01 .wrapper {
  position: relative;
  z-index: 2;
}
.sec01 .wrapper .inner {
  width: calc(610 / 1800 * 100%);
  aspect-ratio: 610/180;
  background: #BEBEBE;
  display: flex;
  align-items: center;
  border-radius: 5px;
  margin: -7em 0 0 auto;
}
.sec01 .l-ttl {
  width: 11%;
  height: 100%;
  max-width: 60px;
  background: #59B2AC;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec01 .l-ttl .t-h2 {
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: .5rem;
  font-size: clamp(1.7rem, calc(21 / 1800 * 100vw), 2.1rem);
}
.sec01 .list-top-news {
  flex: 1;
  padding: 0 20px;
}
.sec01 .list-top-news li {
  display: grid;
  padding-bottom: 15px;
  line-height: 1.25;
}
.sec01 .list-top-news li:last-child {
  padding-bottom: 0;
}
.sec01 .list-top-news li a {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: clamp(1.4rem, calc(15 / 1800 * 100vw), 1.5rem);
  line-height: 1.5;
  letter-spacing: normal;
  color: #fff;
}
.sec01 .list-top-news li:nth-of-type(1) a {
  padding-top: 0;
}
.sec01 .list-top-news li time {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.2rem, calc(12 / 1800 * 100vw), 1.2rem);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 5px;
}
.sec01 .btn-wrap {
  width: 20%;
  max-width: 120px;
  height: 100%;
  padding: 0px 20px 20px 0;
}
.sec01 .btn-wrap.flex-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sec01 .t-btn-more {
  font-size: clamp(1.2rem, calc(14 / 1400 * 100vw), 1.4rem);
  background: #59B2AC;
  color: #fff;
  width: 100%;
  min-height: 30px;
  text-align: center;
  border-bottom: 3px;
  padding: 5px;
  line-height: 1.25;
}
.sec01 .t-btn-more span::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .42em 0 .42em .62em;
  /* 高さ, 幅の比率 */
  border-color: transparent transparent transparent currentColor;
  margin-right: .5em;
  vertical-align: middle;
}

@media (max-width: 800px) {
  .sec01 .container {
    margin-top: 0;
    z-index: 1;
  }
  .sec01 .wrapper {
    position: relative;
    z-index: 0;
    margin: 30vw auto 5vw;
  }
  .sec01 .wrapper .inner {
    width: 100%;
    max-height: unset;
    aspect-ratio: 610/180;
    background: #666;
    display: block;
    border-radius: 5px;
  }
  .sec01 .l-ttl {
    width: 100%;
    height: unset;
    max-width: unset;
    background: #999;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sec01 .l-ttl .t-h2 {
    color: #fff;
    writing-mode: unset;
    letter-spacing: .5rem;
  }
  .sec01 .list-top-news {
    flex: 1;
    padding: 10px 10px 0;
  }
  .sec01 .list-top-news li {
    display: grid;
    grid-template-rows: 1fr 1fr;
    padding-bottom: calc(20 / 610 * 100%);
  }
  .sec01 .list-top-news li:nth-of-type(1) a {
    padding-top: 0;
  }
  .sec01 .btn-wrap {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 10px 20px 10px;
  }
  .sec01 .btn-wrap.flex-end {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    height: auto;
  }
  .sec01 .t-btn-more {
    width: fit-content;
    min-height: 20px;
    padding: 5px;
  }
}
/*------------
sec02
--------------*/
.sec02 .container {
  position: relative;
  width: 100%;
  max-width: unset;
  z-index: 1;
  background-image: url("../images/share/bg-wood.jpg");
  background-size: contain;
  padding: calc(80 / 1800 * 100%) 0 calc(50 / 1800 * 100%);
  margin-top: -4vw;
}
.sec02 .container .t-h2 {
  text-align: center;
}
.sec02 .container .t-h2::after {
  content: "";
  width: 70px;
  height: 1px;
  background: #59B2AC;
  display: block;
  margin: 20px auto 30px;
}
.sec02 .wrapper {
  position: relative;
  max-width: 600px;
  margin: auto;
  z-index: 0;
}
.sec02 .wrapper .inner {
  position: relative;
  width: 100%;
}

@media (max-width: 800px) {
  .sec02 .container {
    margin-top: 0;
    padding: 40px 0;
  }
  .sec02 .container .t-h2::after {
    width: 50px;
    margin: 15px auto 30px;
  }
}
/*------------
sec03
--------------*/
.sec03 .container {
  position: relative;
  width: 100%;
  max-width: unset;
  z-index: 1;
  background-image: url("../images/share/bg-green.jpg");
  background-size: cover;
  background-position: center;
  padding: calc(50 / 1800 * 100%) 0;
}
.sec03 .container .t-h2 {
  text-align: center;
}
.sec03 .container .t-h2::after {
  content: "";
  width: 70px;
  height: 1px;
  background: #59B2AC;
  display: block;
  margin: 20px auto 30px;
}
.sec03 .wrapper {
  position: relative;
  max-width: 1024px;
  margin: auto;
  z-index: 0;
}
.sec03 .wrapper .inner {
  position: relative;
  width: 100%;
}
.sec03 .wrapper .inner .card-style {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sec03 .wrapper .inner .card-style > li {
  background-color: #f5f5f5;
  padding: 20px;
  position: relative;
  aspect-ratio: 330/310;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sec03 .wrapper .inner .card-style > li::before {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 20px;
  /* 三角のサイズ */
  height: 20px;
  background: #59B2AC;
  /* 三角の色 */
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  /* 右下用 */
}
.sec03 .wrapper .inner .card-style > li::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 全面に広げる */
  border-radius: inherit;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  mix-blend-mode: multiply;
  z-index: -1;
}
.sec03 .wrapper .inner .card-style .card-img {
  margin-bottom: 25px;
}
.sec03 .wrapper .inner .card-style .card-icon {
  margin: 0 auto 25px;
  text-align: center;
}
.sec03 .wrapper .inner .card-style .card-icon img {
  aspect-ratio: 1/1;
  max-width: 160px;
  width: 80%;
  object-fit: contain;
}
.sec03 .wrapper .inner .card-style .card-ttl {
  font-size: clamp(2rem, calc(28 / 1800 * 100vw), 2.8rem);
  margin-bottom: 30px;
  color: #59B2AC;
  text-align: center;
}
.sec03 .wrapper .inner .btn-wrap {
  margin-top: 40px;
}
.sec03 .wrapper .inner .btn-wrap .btn-more {
  width: fit-content;
  padding: 0 20px;
  border-radius: 3px;
  background: #59B2AC;
  color: #fff;
  height: 50px;
  margin: auto;
  font-weight: normal;
}
.sec03 .wrapper .inner .btn-wrap .btn-more::before {
  content: none;
}
.sec03 .wrapper .inner .btn-wrap .btn-more span::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .42em 0 .42em .62em;
  /* 高さ, 幅の比率 */
  border-color: transparent transparent transparent #fff;
  margin-right: .5em;
  vertical-align: middle;
}

@media (max-width: 800px) {
  .sec03 .container {
    padding: 40px 0;
    background-image: url(../images/share/bg-green-sp.jpg);
    background-size: contain;
  }
  .sec03 .container .t-h2::after {
    width: 50px;
    margin: 15px auto 30px;
  }
  .sec03 .container .wrapper {
    width: 80vw;
  }
  .sec03 .container .wrapper .inner .card-style {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .sec03 .container .wrapper .inner .card-style > li {
    background-color: #f5f5f5;
    padding: 20px;
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 240px;
    margin: auto;
  }
  .sec03 .container .wrapper .inner .card-style .card-ttl {
    margin-bottom: 10px;
  }
  .sec03 .container .wrapper .inner .card-style .card-icon {
    margin-bottom: 10px;
  }
  .sec03 .container .wrapper .inner .btn-wrap {
    margin-top: 20px;
  }
}
/*------------
sec04
--------------*/
.sec04 .container {
  position: relative;
  width: 100%;
  max-width: unset;
  z-index: 1;
  background: #fff;
  padding: calc(50 / 1800 * 100%) 0;
}
.sec04 .container .t-h2 {
  text-align: center;
}
.sec04 .container .t-h2::after {
  content: "";
  width: 70px;
  height: 1px;
  background: #59B2AC;
  display: block;
  margin: 20px auto 30px;
}
.sec04 .wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 0;
}
.sec04 .wrapper .inner {
  position: relative;
  width: 100%;
}
.sec04 .wrapper .inner .layout-style {
  display: flex;
  align-items: center;
}
.sec04 .wrapper .inner .layout-style .l-img {
  position: relative;
  width: 55%;
  z-index: 1;
}
.sec04 .wrapper .inner .layout-style .l-img img {
  aspect-ratio: 75/59;
  border-radius: 3px;
}
.sec04 .wrapper .inner .layout-style .l-desc {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  margin: 0 0 0 -40px;
  flex: 1;
  z-index: 2;
  position: relative;
}
.sec04 .wrapper .inner .layout-style .l-desc::before {
  content: "";
  position: absolute;
  top: -6vw;
  right: -3vw;
  aspect-ratio: 282/314;
  width: 30%;
  max-width: 282px;
  background: url("../images/share/kazari-green01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.sec04 .wrapper .inner .layout-style.reverse {
  flex-direction: row-reverse;
}
.sec04 .wrapper .inner .layout-style.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
}
.sec04 .wrapper .inner .layout-style .l-num {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 15px;
}
.sec04 .wrapper .inner .layout-style .l-ttl {
  color: #59B2AC;
  font-size: 26px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #B5E9E3;
}
.sec04 .wrapper .inner .btn-wrap {
  margin-top: 40px;
}
.sec04 .wrapper .inner .btn-wrap .btn-more {
  width: fit-content;
  padding: 0 20px;
  border-radius: 3px;
  background: #59B2AC;
  color: #fff;
  height: 50px;
  margin: auto;
  font-weight: normal;
}
.sec04 .wrapper .inner .btn-wrap .btn-more::before {
  content: none;
}
.sec04 .wrapper .inner .btn-wrap .btn-more span::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .42em 0 .42em .62em;
  /* 高さ, 幅の比率 */
  border-color: transparent transparent transparent #fff;
  margin-right: .5em;
  vertical-align: middle;
}

@media (max-width: 800px) {
  .sec04 .container {
    padding: 40px 0;
  }
  .sec04 .container .t-h2::after {
    width: 50px;
    margin: 15px auto 30px;
  }
  .sec04 .container .wrapper .inner .layout-style {
    flex-direction: column;
  }
  .sec04 .container .wrapper .inner .layout-style .l-img {
    width: 100%;
  }
  .sec04 .container .wrapper .inner .layout-style .l-desc {
    padding: 20px 5vw;
    margin: -20px -5vw 0;
  }
  .sec04 .container .wrapper .inner .layout-style.reverse {
    flex-direction: column;
  }
  .sec04 .container .wrapper .inner .layout-style.reverse .l-desc {
    padding: 20px 5vw;
    margin: -20px -5vw 0;
  }
  .sec04 .container .wrapper .inner .layout-style .l-ttl {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .sec04 .container .wrapper .inner .btn-wrap {
    margin-top: 20px;
  }
}
/*------------
sec05
--------------*/
.sec05 .container {
  position: relative;
  width: 100%;
  max-width: unset;
  z-index: 1;
  background: #fff;
  padding: 50px 0 calc(50 / 1800 * 100%);
}
.sec05 .container::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 22%;
  transform: translateY(-24%);
  background-image: url("../images/share/bg-green02.jpg");
  background-size: contain;
  width: 100%;
  aspect-ratio: 1932/640;
}
.sec05 .container .t-h2 {
  text-align: center;
}
.sec05 .container .t-h2::after {
  content: "";
  width: 70px;
  height: 1px;
  background: #59B2AC;
  display: block;
  margin: 20px auto 30px;
}
.sec05 .wrapper {
  position: relative;
  max-width: 1024px;
  margin: auto;
  z-index: 0;
}
.sec05 .wrapper .inner {
  position: relative;
  width: 100%;
}
.sec05 .wrapper .inner .x-short {
  padding-top: 80px;
}
.sec05 .wrapper .inner .catch {
  text-align: center;
  font-size: clamp(1.5rem, calc(21 / 1024 * 100vw), 2.1rem);
  line-height: 1.85;
  font-family: "Zen Old Mincho", serif;
  position: relative;
}
.sec05 .wrapper .inner .catch::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -3vw;
  right: 0;
  aspect-ratio: 205 / 177;
  width: 30%;
  max-width: 180px;
  background: url(../images/share/kazari-green02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleY(-1);
}

@media (max-width: 800px) {
  .sec05 .container {
    padding: 0 0 40px;
  }
  .sec05 .container::after {
    content: "";
    top: 15%;
    transform: translateY(-15%);
  }
  .sec05 .container .t-h2::after {
    width: 50px;
    margin: 15px auto 30px;
  }
  .sec05 .container .wrapper .inner .x-short {
    padding-top: 40px;
  }
  .sec05 .container .wrapper .inner .catch {
    text-align: left;
  }
  .sec05 .container .wrapper .inner .catch::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -10vw;
    right: 0;
    aspect-ratio: 205 / 177;
    width: 30%;
    max-width: 205px;
    background: url(../images/share/kazari-green02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: scaleY(-1);
  }
}
/*------------
sec06
--------------*/
.sec06 .container {
  position: relative;
  width: 100%;
  max-width: unset;
  z-index: 1;
  background: #fff;
  padding: calc(50 / 1800 * 100%) 0;
}
.sec06 .container .t-h2 {
  text-align: center;
}
.sec06 .container .t-h2::after {
  content: "";
  width: 70px;
  height: 1px;
  background: #59B2AC;
  display: block;
  margin: 20px auto 30px;
}
.sec06 .wrapper {
  position: relative;
  max-width: 1800px;
  margin: auto;
  z-index: 0;
}
.sec06 .wrapper .inner {
  position: relative;
  width: 100%;
}
.sec06 .wrapper .inner .google-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  aspect-ratio: 1800 / 500;
}

@media (max-width: 800px) {
  .sec06 .container {
    padding: 40px 0;
  }
  .sec06 .container .t-h2::after {
    width: 50px;
    margin: 15px auto 30px;
  }
  .sec06 .container .wrapper .inner .google-map iframe {
    height: 300px;
  }
}
/******
下層ページ
******/
/*-------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
body.under {
  background: #fff;
}

main {
  background: #fff;
}
main.under {
  background: #fff;
}

.u-contents {
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: normal;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
  /* 禁則処理を厳格に適用 */
  color: #211815;
  font-size: clamp(1.5rem, calc(16 / 1024 * 100vw), 1.6rem);
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}
.u-contents .hidden {
  overflow: hidden;
}
.u-contents p {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: clamp(1.5rem, calc(16 / 1024 * 100vw), 1.6rem);
  line-height: 1.85;
  font-weight: normal;
}
.u-contents strong {
  font-weight: 900;
}
.u-contents .txt-red {
  color: #E56126;
}
.u-contents .txtOrange {
  color: #E56126;
}

a.linkTxt {
  text-decoration: underline;
  color: #9A76AD;
}

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

.container-wide {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
  position: relative;
}
.container-wide.sp-full {
  width: 100%;
}

.container-narrow {
  margin: 0 auto;
  max-width: 800px;
  width: 85%;
  position: relative;
}
.container-narrow.bg-wh {
  background: #fff;
}

.container-full {
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.num {
  align-items: center;
  font-family: "Cormorant Infant", serif;
}

.l-img img, .list-img img {
  width: 100%;
  aspect-ratio: 600 /472;
  object-fit: cover;
  border-radius: 5px;
}
.l-img.asp93 img, .list-img.asp93 img {
  aspect-ratio: 16 / 6;
}
.l-img.asp-tate img, .list-img.asp-tate img {
  aspect-ratio: 3 / 4;
}
.l-img.w-500 img, .list-img.w-500 img {
  max-width: 500px;
}
.l-img.asp-none img, .list-img.asp-none img {
  aspect-ratio: auto;
}
.l-img.asp-top img, .list-img.asp-top img {
  object-position: top;
}
.l-img.contain img, .list-img.contain img {
  object-fit: contain;
}
.l-img.asp-sq img, .list-img.asp-sq img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.sp-none {
  display: block;
}

@media (max-width: 800px) {
  .u-contents .container {
    margin: 0 auto;
    max-width: none;
    width: 100%;
    padding: 0 5vw;
  }

  .sp-none {
    display: none;
  }
}
.page-ttl {
  background-color: #59B2AC;
  background: url("../images/share/bg-green02.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  position: relative;
  min-height: 160px;
}
.page-ttl .container {
  margin: 0 auto;
  max-width: 1400px;
  width: 90%;
}
.page-ttl .page-ttl-main {
  font-size: clamp(2.4rem, calc(36 / 1800 * 100vw), 3.6rem);
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  line-height: 1;
  letter-spacing: .15em;
  text-align: center;
  width: fit-content;
  padding: 20px 70px;
  background: #59B2AC;
  margin: auto;
}
.page-ttl .page-ttl-sub {
  font-size: clamp(3.2rem, calc(64 / 1800 * 100vw), 6.4rem);
  font-family: "Cormorant Infant", serif;
  text-transform: uppercase;
  color: #59B2AC;
  line-height: 1.25;
  letter-spacing: .15em;
  text-align: center;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  background: url("../images/share/bg-wood.jpg");
  /* パンくずの中で /category/ を含むリンクを非表示 */
  /* 区切り「›」などが浮く場合は隣接セレクタで調整 */
}
.breadcrumb ul {
  font-size: 1.2rem;
  padding: 5px 5vw;
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}
.breadcrumb ul a {
  text-decoration: underline;
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li + li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}
.breadcrumb ul li + li.category::before {
  content: none;
}
.breadcrumb a[href*="/category/"] {
  display: none;
}
.breadcrumb a[href*="/category/"] + .separator {
  display: none;
}

.archive.taxonomy.category.current-item {
  display: none;
}

.u-contents p + p {
  margin-top: clamp(15px, calc(20 / 1024 * 100vw), 20px);
}

@media (max-width: 800px) {
  .page-ttl {
    min-height: 150px;
    aspect-ratio: auto;
    background-size: cover;
  }
  .page-ttl .container {
    padding-top: 0;
  }
  .page-ttl .page-ttl-main {
    margin: 0px auto 0;
    padding: 20px;
  }
  .page-ttl .page-ttl-sub {
    margin-bottom: 0;
    letter-spacing: normal;
  }
}
/*---------
下層見出し
---------*/
.u-contents .page-ttl-main, .u-contents .u-h2, .u-contents h2, .u-contents .u-h3, .u-contents h3, .u-contents .u-h4, .u-contents h4, .u-contents .u-h5, .u-contents h5 {
  font-family: "Zen Old Mincho", serif;
  letter-spacing: normal;
  line-height: 1.7;
}

.u-h2, .postdata h1 {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.4rem, calc(34 / 1800 * 100vw), 3.4rem);
  line-height: calc(27 / 20 * 1em);
  letter-spacing: 0.1em;
  color: #211815;
  text-align: center;
  /*下線追加*/
}
.u-h2::after, .postdata h1::after {
  content: "";
  width: 70px;
  height: 1px;
  background: #59B2AC;
  display: block;
  margin: 20px auto 40px;
}
.u-h2.icon, .postdata h1.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  width: fit-content;
  margin: 0 auto 40px;
}
.u-h2.icon img, .postdata h1.icon img {
  max-width: 80px;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 100vw;
  position: relative;
  z-index: 1;
  background: #fff;
}
.u-h2.icon::after, .postdata h1.icon::after {
  content: "";
  position: absolute;
  width: 90%;
  top: 2em;
  right: 0;
}

.u-h3, h3.wp-block-heading {
  font-size: clamp(2rem, calc(26 / 1024 * 100vw), 2.6rem);
  color: #211815;
  line-height: 1.7;
  margin-bottom: clamp(20px, calc(20 / 1024 * 100vw), 20px);
  padding: 0 0 15px;
  position: relative;
  border-bottom: 1px dotted #59B2AC;
  /*short-underline-icon*/
}
.u-h3 span, h3.wp-block-heading span {
  font-size: clamp(1.6rem, calc(18 / 1024 * 100vw), 1.8rem);
  padding-right: 20px;
}

.u-h4, h4.wp-block-heading {
  font-size: clamp(1.8rem, calc(23 / 1024 * 100vw), 2.3rem);
  margin-bottom: clamp(20px, calc(25 / 1024 * 100vw), 25px);
  padding-left: 2em;
  position: relative;
  line-height: 1.25;
  color: #3F342F;
  /**左にアイテム追加*/
}
.u-h4.bg-color, h4.wp-block-heading.bg-color {
  padding: 5px 20px;
  background: #8E7C53;
  color: #fff;
}
.u-h4::before, h4.wp-block-heading::before {
  content: "⚪︎";
  font-size: clamp(2.3rem, calc(23 / 1024 * 100vw), 3rem);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.u-h5 {
  font-size: 1.8rem;
  margin: 0 0 20px;
  position: relative;
}

.postdata a {
  text-decoration: underline;
}
.postdata .wp-block-button a {
  color: #fff;
}

.num-ttl {
  border-bottom: 2px solid #eee;
  font-size: 2rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.num-ttl .num {
  background: #655144;
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  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 #FFB750;
  position: absolute;
  top: 0;
  right: -7px;
}

.num-ttl-icon {
  margin-bottom: 30px;
  font-size: clamp(2rem, calc(22 / 1024 * 100vw), 2.2rem);
  display: grid;
  align-items: center;
  grid-template-columns: clamp(50px, calc(41 / 1024* 100vw), 41px) 1fr;
  gap: 10px;
}
.num-ttl-icon .num {
  background: #59B2AC;
  margin-right: 10px;
  border-radius: 100vw;
  width: clamp(50px, calc(41 / 1024 * 100vw), 41px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.num-ttl-icon .num span {
  font-size: 2rem;
  font-family: "Cormorant Infant", serif;
  color: #fff;
  letter-spacing: normal;
}

.u-catch {
  font-size: clamp(1.6rem, calc(18 / 1024 * 100vw), 1.8rem);
  line-height: 1.85;
  font-family: "Zen Old Mincho", serif;
  max-width: 800px;
  margin: auto;
  text-align: justify;
}

.u-marker {
  text-align: center;
  margin-bottom: 20px;
}
.u-marker span {
  background: linear-gradient(transparent 50%, #949B9180 50%);
  font-size: clamp(1.8rem, calc(22 / 1024 * 100vw), 2.2rem);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}

@media (max-width: 800px) {
  .u-h2::after {
    width: 50px;
    margin: 15px auto 30px;
  }

  .u-marker {
    text-align: left;
  }
}
.short, .x-short {
  position: relative;
  z-index: 1;
}
.short.ptb, .x-short.ptb {
  padding: clamp(50px, calc(80 / 1024 * 100vw), 80px) 0;
}
.short.bg-color, .x-short.bg-color {
  z-index: 0;
}
.short.bg-color::after, .x-short.bg-color::after {
  content: "";
  width: 100vw;
  height: 80%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #E9FBF5;
}

.short + .short {
  margin-top: clamp(20px, calc(30 / 1024 * 100vw), 30px);
}

.x-short + .x-short {
  margin-top: clamp(20px, calc(30 / 1024 * 100vw), 30px);
}

.tall {
  padding: clamp(30px, calc(40 / 1024 * 100vw), 40px) 0;
  position: relative;
}
.tall.bg-wh {
  background: #ffffff;
  border-top-right-radius: 217px;
}
.tall.bg-color {
  background: #59B2AC;
}
.tall.bg-pattern {
  background: url("../images/share/bg-wood.jpg");
}
.tall:last-child {
  margin-bottom: clamp(30px, calc(60 / 1024 * 100vw), 60px);
}

.tall + .tall.bg-color {
  margin-top: clamp(60px, calc(60 / 1024 * 100vw), 60px);
}

.col1, .col2, .col3, .col4 {
  display: grid;
}
.col1.flex-start, .col2.flex-start, .col3.flex-start, .col4.flex-start {
  align-items: flex-start;
  grid-column-gap: 20px;
  grid-row-gap: 0px;
}
.col1.gap20, .col2.gap20, .col3.gap20, .col4.gap20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.col1.gap30, .col2.gap30, .col3.gap30, .col4.gap30 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.col1.gap30.row-gap50, .col2.gap30.row-gap50, .col3.gap30.row-gap50, .col4.gap30.row-gap50 {
  grid-row-gap: 50px;
}
.col1.gap50, .col2.gap50, .col3.gap50, .col4.gap50 {
  grid-column-gap: 50px;
  grid-row-gap: 30px;
}
.col1.gap4p, .col2.gap4p, .col3.gap4p, .col4.gap4p {
  grid-column-gap: 4%;
  grid-row-gap: 4%;
}
.col1.gap80, .col2.gap80, .col3.gap80, .col4.gap80 {
  grid-column-gap: 80px;
  grid-row-gap: 40px;
}
.col1 .baseline, .col2 .baseline, .col3 .baseline, .col4 .baseline {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}

.col2-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.col2-flex.gap30 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.col2-flex.gap30 li {
  width: 48%;
}

.col3-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.col3-flex.gap30 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.col3-flex.gap30 li {
  width: 31.3333%;
}

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

.auto {
  display: flex !important;
  flex-wrap: wrap;
  gap: 30px;
}

.col1 .item .item-ttl, .col2 .item .item-ttl, .col3 .item .item-ttl, .col4 .item .item-ttl {
  font-size: clamp(2rem, calc(22 / 1024* 100vw), 2.2rem);
  margin-bottom: clamp(10px, calc(15 / 1024* 100vw), 15px);
  font-weight: 500;
  margin-top: 15px;
}
.col1 .item .item-ttl-s, .col2 .item .item-ttl-s, .col3 .item .item-ttl-s, .col4 .item .item-ttl-s {
  font-size: clamp(1.8rem, calc(18 / 1024* 100vw), 1.8rem);
  position: relative;
  padding-bottom: 0px;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .col1, .col2, .col3, .col4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .col1.gap30, .col2.gap30, .col3.gap30, .col4.gap30 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .col1.gap50, .col2.gap50, .col3.gap50, .col4.gap50 {
    grid-row-gap: 20px;
  }

  .col4.gap20 {
    grid-row-gap: 20px;
  }

  .col3.gap20 {
    grid-row-gap: 0px;
  }

  .col3-flex, .col2-flex {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .col3-flex.gap30 li, .col2-flex.gap30 li {
    width: 100%;
  }
}
.list-disc.strong li {
  font-weight: bold;
}

.list-disc li {
  position: relative;
  padding-left: 20px;
  line-height: 2;
}
.list-disc li.ttl {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.8rem;
  padding-left: 0;
}
.list-disc li.ttl::before {
  content: none;
}
.list-disc li a {
  text-decoration: underline;
}

.list-disc li::before {
  content: "";
  background: #59B2AC;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: .85em;
  width: 5px;
  height: 5px;
}

.list-sq li {
  position: relative;
  text-indent: -1.25em;
  /* 1行目を左に戻す（アイコンと重なる分） */
  padding-left: 1.25em;
  /* 2行目以降をそろえる */
  padding-bottom: 10px;
}
.list-sq li::before {
  content: "◆ ";
  color: #59B2AC;
  /* テキストと同じ色 */
}

.list-check.strong li {
  font-weight: bold;
}
.list-check li {
  position: relative;
  padding-left: 25px;
}
.list-check li::before {
  content: "";
  width: 15px;
  height: 9px;
  border-left: 3px solid #111;
  border-bottom: 3px solid #111;
  transform: rotate(-45deg);
  position: absolute;
  top: 10px;
  left: 0;
}
.list-check.bg-w-block li {
  padding: 1% 5% 1% 12%;
  background: #fff;
  border-radius: 4px;
}
.list-check.bg-w-block li::before {
  margin-left: 5%;
  top: 12x;
}

.list-num02 {
  counter-reset: number;
}
.list-num02 > li {
  padding-left: 30px;
  position: relative;
}
.list-num02 > li p {
  border-top: 1px solid #ccc;
  padding-top: 5px;
  margin-top: 5px;
}
.list-num02 > li:before {
  background-color: #59B2AC;
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 1.1rem;
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding-left: 0px;
  width: 20px;
  height: 20px;
}
.list-num02 > li + li {
  margin-top: 10px;
}

.list-disc, .list-check {
  display: grid;
}
.list-disc.colFree, .list-check.colFree {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 30px;
  grid-row-gap: 20px;
}

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

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

.list-price p a {
  text-decoration: underline;
  color: #9A76AD !important;
}
.list-price > li + li {
  margin-top: 20px;
}
.list-price .list-intro {
  border-bottom: 1px solid #59B2AC;
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  justify-content: space-between;
  font-weight: 500;
  font-size: 1.8rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  padding: 0 0 5px;
  color: #452E1D;
}
.list-price .list-intro .ttl span {
  padding-left: 2em;
}
.list-price .list-desc {
  color: #B49E8E;
  font-size: 1.3rem;
  margin-top: 5px;
}

@media (max-width: 800px) {
  .list-disc.col2, .list-check.col2 {
    grid-gap: 5px;
  }

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

  .list-price > li + li {
    margin-top: 15px;
  }
  .list-price .list-intro {
    font-size: 1.6rem;
  }

  .item > ul {
    margin-bottom: 10px;
  }

  .item + .item > ul {
    margin-bottom: 0px;
  }

  ul + ul {
    margin-top: 0px;
  }
}
.u-dl-style {
  display: grid;
  grid-template-columns: 20%  1fr;
  grid-template-rows: auto;
  grid-row-gap: 5px;
  align-items: baseline;
}
.u-dl-style dt {
  color: #fff;
  background: #59B2AC;
  border-radius: 5px;
  font-size: 13px;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.75;
}
.u-dl-style dt.bg-color {
  background: #E9FBF5;
  color: #fff;
  justify-content: center;
}
.u-dl-style dd {
  font-size: 15px;
  line-height: 1.75;
  padding: 8px 0 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.u-dl-style dd.bg-gray {
  background: #F2F2F2;
}

.u-dl-style02 {
  display: grid;
  grid-template-columns: 30%  1fr;
  grid-template-rows: auto;
  grid-row-gap: 15px;
}
.u-dl-style02 dt {
  color: #fff;
  background: #59B2AC;
  font-size: clamp(1.6rem, calc(17 / 1024 * 100vw), 1.7rem);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.65;
}
.u-dl-style02 dt span {
  font-size: 1.3rem;
}
.u-dl-style02 dd {
  font-size: clamp(1.4rem, calc(15 / 1024 * 100vw), 1.5rem);
  line-height: 1.5;
  padding: 20px;
  background: #F1F4F6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0 solid #59B2AC;
}
.u-dl-style02 dd.bg-gray {
  background: #F2F2F2;
}

@media (max-width: 800px) {
  .u-dl-style {
    grid-template-columns: 1fr;
    grid-gap: 0px;
    grid-row-gap: 0;
  }
  .u-dl-style dt {
    padding: 0px 15px;
  }
  .u-dl-style dd {
    padding: 10px 15px;
    font-size: 14px;
  }

  .u-dl-style02 {
    display: block;
  }
}
.u-dl-style01 {
  display: grid;
  grid-gap: 15px;
}
.u-dl-style01 .item {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-gap: 10px 0;
}
.u-dl-style01 dt {
  background: #59B2AC;
  color: #fff;
  font-weight: bold;
  padding: 20px;
}
.u-dl-style01 dd {
  background: #F1F4F6;
  font-size: 15px;
  padding: 20px;
}

/*よくある数字のタイトル*/
.u-ttl-num {
  display: flex;
  align-items: center;
  gap: 15px;
  line-height: 1.5;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: solid 1px #BDC7D1;
  font-size: clamp(1.8rem, calc(20 / 1024 * 100vw), 2rem);
}
.u-ttl-num .num {
  background-color: #59B2AC;
  color: #fff;
  font-family: "Red Hat Text", sans-serif;
  font-size: 15px;
  flex: 0 0 38px;
  line-height: 38px;
  margin-top: 2px;
  text-align: center;
  border-radius: 100vw;
}
.u-ttl-num .ttl {
  font-size: 19px;
  flex: 1;
}

.u-ttl-num02 {
  display: grid;
  align-items: center;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.u-ttl-num02 .num {
  border-radius: 100vw;
  background-color: #8F9FAB;
  color: #fff;
  font-size: 2.8rem;
  font-family: "Mrs Saint Delafield", cursive;
  line-height: 1;
  text-align: center;
  height: 74px;
  width: 74px;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.u-ttl-num02 .ttl {
  font-size: clamp(2.2rem, calc(24 / 1024* 100vw), 2.4rem);
  letter-spacing: .15em;
}

/*よくあるiconのタイトル*/
.u-icon-ttl {
  font-size: 2rem;
  padding: 0 0 0px 50px;
  margin: 0 0 20px;
  position: relative;
}
.u-icon-ttl i {
  background: #59B2AC;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  top: 0;
  left: 0;
  position: absolute;
}
.u-icon-ttl i img {
  height: 35px;
  width: auto;
}

/*イメージトリミング*/
.l-imgR, .l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.l-imgR .l-img {
  margin: 0 0 0 30px;
  width: 40%;
  position: relative;
}
.l-imgR .l-img img {
  width: 100%;
}

.l-imgL .l-img {
  margin: 0 30px 0 0;
  width: 40%;
  position: relative;
}
.l-imgL .l-img img {
  width: 100%;
}

.l-imgR .l-img.zure {
  margin: 0 0 0 40px;
  position: relative;
  left: -20px;
}
.l-imgR .l-img.zure img {
  width: 100%;
}
.l-imgR .l-img.zure::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #F1F4F6;
  position: absolute;
  bottom: -20px;
  left: 20px;
  z-index: -1;
}

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

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

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

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

.l-imgR .l-desc, .l-imgL .l-desc {
  flex: 1;
}
.l-imgR .l-desc .l-ttl, .l-imgL .l-desc .l-ttl {
  font-size: clamp(2rem, calc(22 / 1024* 100vw), 2.4rem);
  margin: 0 0 clamp(20px, calc(30 / 1024 * 100vw), 30px);
  position: relative;
  display: block;
}
.l-imgR .l-desc .l-ttl.color, .l-imgL .l-desc .l-ttl.color {
  color: #59B2AC;
}
.l-imgR .l-desc .sub-ttl, .l-imgL .l-desc .sub-ttl {
  font-size: clamp(4rem, calc(70 / 1800* 100vw), 7rem);
  font-family: "Cormorant Infant", serif;
  line-height: 1;
  letter-spacing: .1em;
  color: rgba(0, 0, 0, 0.05);
  margin-top: 1em;
}
.l-imgR .l-desc .job, .l-imgL .l-desc .job {
  padding-bottom: 15px;
}
.l-imgR .l-desc .name, .l-imgL .l-desc .name {
  font-size: 25px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
.l-imgR .l-desc .kana, .l-imgL .l-desc .kana {
  padding-left: 15px;
}

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

.l-imgR .l-img {
  margin: 0 0 0 40px;
}
.l-imgR .l-img .shadow {
  box-shadow: 0px 0px 5px 5px #eeeeee80;
}

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

.fl-imgR, .fl-imgL {
  width: 40%;
}
.fl-imgR .shadow, .fl-imgL .shadow {
  box-shadow: 0px 0px 5px 5px #eeeeee80;
}

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

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

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

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

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

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

@media (max-width: 800px) {
  .l-imgR, .l-imgL {
    display: block;
  }
  .l-imgR.reverse, .l-imgL.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .l-imgR.reverse .l-img, .l-imgL.reverse .l-img {
    margin: 15px 0 0;
  }

  .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.zure {
    margin: 0 0 30px 0;
    position: relative;
    left: 0px;
    width: 100%;
  }

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

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

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

  .l-imgR .l-desc .l-ttl, .l-imgL .l-desc .l-ttl {
    letter-spacing: normal;
  }

  .l-imgR .l-desc .sub-ttl, .l-imgL .l-desc .sub-ttl {
    margin-top: .25em;
  }

  .l-imgR .l-img {
    margin: 0 0 15px;
  }
  .l-imgR .l-img.box-shadow {
    margin: 0 0 50px;
    width: 100%;
  }

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

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

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

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

  .l-col2, .l-col3 {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
.u-l-style01 {
  display: flex;
  align-items: center;
  gap: 5%;
  margin: 0 0 0 -10%;
}
.u-l-style01 .l-img {
  width: 56.64%;
}
.u-l-style01 .l-img img {
  aspect-ratio: 90 / 46;
}
.u-l-style01 .l-desc {
  flex: 1;
}
.u-l-style01.reverse {
  flex-direction: row-reverse;
  margin: 0 -10% 0 0;
}
.u-l-style01 .l-num {
  display: inline-block;
  font-size: clamp(8rem, calc(100 / 1024 * 100vw), 10rem);
  font-family: "Cormorant Infant", serif;
  line-height: 1;
  margin-bottom: 15px;
  color: #F1F4F6;
}
.u-l-style01 .l-ttl {
  font-size: clamp(2.2rem, calc(28 / 1024 * 100vw), 2.8rem);
  margin-bottom: 30px;
  color: #333;
}
.u-l-style01 .l-ttl span {
  color: #8FA1B2;
  font-size: 1.6rem;
  display: block;
}
.u-l-style01 .l-sub-ttl {
  display: flex;
  gap: 25px;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}
.u-l-style01 .l-sub-ttl::before {
  content: "";
  flex: 0 0 30px;
  background: #4a8eff;
  width: 30px;
  height: 2px;
}

@media (max-width: 800px) {
  .u-l-style01 {
    flex-direction: column;
    gap: 35px;
    margin: 0 -5vw;
  }
  .u-l-style01 .l-img {
    width: 100%;
  }
  .u-l-style01.reverse {
    flex-direction: column;
    margin: 0 -5vw;
  }
  .u-l-style01 .l-desc {
    padding: 0 5vw;
  }
  .u-l-style01 .l-num {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .u-l-style01 .l-ttl {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .u-l-style01 .l-sub-ttl {
    gap: 20px;
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.u-l-style02 {
  display: flex;
  position: relative;
  margin-bottom: 100px;
}
.u-l-style02::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  margin-top: 80px;
  background: #F9F3ED;
  z-index: -1;
  right: 0;
}
.u-l-style02 .l-img {
  position: relative;
  width: 45%;
  z-index: 1;
  margin-left: 40px;
}
.u-l-style02 .l-img::before {
  position: absolute;
  content: "";
  border: 1px solid #BE9407;
  width: 100%;
  aspect-ratio: 77 / 49;
  left: -10px;
  top: -10px;
}
.u-l-style02 .l-img img {
  aspect-ratio: 77 / 49;
}
.u-l-style02 .l-desc {
  padding: 75px 0px 0 80px;
  margin: 80px 0 0 0;
  flex: 1;
  position: relative;
  max-width: 510px;
}
.u-l-style02 .l-desc .l-num {
  font-size: 8.5rem;
  font-family: "Cormorant Infant", serif;
  position: absolute;
  left: auto;
  top: -25px;
}
.u-l-style02 .l-desc .l-kazari {
  color: #917106;
  font-size: clamp(6rem, calc(120 / 1024 * 100vw), 12rem);
  font-family: "Mrs Saint Delafield", cursive;
  transform: rotate(-5deg);
  position: absolute;
  left: 50%;
  top: -.25em;
  width: 100%;
  z-index: 1;
}
.u-l-style02.reverse {
  flex-direction: row-reverse;
}
.u-l-style02.reverse .l-desc {
  margin: 50px -5% 0 0;
}
.u-l-style02.reverse .l-desc .l-num {
  font-size: 8.5rem;
  font-family: "Cormorant Infant", serif;
  position: absolute;
  left: 25px;
  top: -25px;
}
.u-l-style02 .l-ttl {
  font-size: clamp(3rem, calc(36 / 1024 * 100vw), 3.6rem);
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .u-l-style02 {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .u-l-style02::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    margin-top: 50px;
    z-index: -1;
    right: 0;
  }
  .u-l-style02 .l-img {
    width: 100%;
    margin: 0;
  }
  .u-l-style02 .l-img::before {
    width: 95%;
    left: 10px;
  }
  .u-l-style02 .l-desc {
    padding: 50px 5vw 0px;
    margin: 0;
  }
  .u-l-style02 .l-desc .l-kazari {
    left: auto;
    right: 5%;
    top: 0em;
    width: auto;
  }
  .u-l-style02.reverse {
    flex-direction: column;
  }
  .u-l-style02.reverse .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px -5vw 0;
  }
  .u-l-style02 .l-num {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .u-l-style02 .l-ttl {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .u-l-style02 .l-sub-ttl {
    gap: 15px;
    font-size: 17px;
    margin-bottom: 15px;
  }
  .u-l-style02 .l-sub-ttl::before {
    flex: 0 0 20px;
    width: 20px;
  }
}
.u-l-style03 {
  display: flex;
}
.u-l-style03 .l-img {
  position: relative;
  width: 45%;
  z-index: 2;
}
.u-l-style03 .l-desc {
  background: #F9F3ED;
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  flex: 1;
}
.u-l-style03 .l-desc .l-ttl {
  font-size: clamp(2rem, calc(30 / 1024 * 100vw), 3rem);
  color: #59B2AC;
  margin-bottom: clamp(20px, calc(30 / 1024 * 100vw), 30px);
}
.u-l-style03.reverse {
  flex-direction: row-reverse;
}
.u-l-style03.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
}

@media (max-width: 800px) {
  .u-l-style03 {
    flex-direction: column;
  }
  .u-l-style03 .l-img {
    width: 100%;
  }
  .u-l-style03 .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px 0 0;
  }
  .u-l-style03.reverse {
    flex-direction: column;
  }
  .u-l-style03.reverse .l-desc {
    padding: 120px 5vw 30px;
    margin: -80px 0 0;
  }
  .u-l-style03 .l-num {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .u-l-style03 .l-ttl {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .u-l-style03 .l-sub-ttl {
    gap: 15px;
    font-size: 17px;
    margin-bottom: 15px;
  }
  .u-l-style03 .l-sub-ttl::before {
    flex: 0 0 20px;
    width: 20px;
  }
}
/*-------
    下層ボタン
    --------*/
p + .u-btn-wrap {
  margin-top: 10px;
}

.u-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  position: relative;
  z-index: 3;
}
.u-btn-wrap.col4 a {
  width: 23%;
}
.u-btn-wrap.col3 a {
  width: 31%;
}
.u-btn-wrap.flex-end {
  justify-content: flex-end;
}
.u-btn-wrap.flex-end .u-btn-more {
  margin: unset;
}
@media (max-width: 800px) {
  .u-btn-wrap.flex-end .u-btn-more {
    margin: auto;
  }
}
.u-btn-wrap.flex-start {
  justify-content: flex-start;
}
.u-btn-wrap.flex-start .u-btn-more {
  margin: unset;
}
@media (max-width: 800px) {
  .u-btn-wrap.flex-start .u-btn-more {
    margin: auto;
  }
}
.u-btn-wrap.between {
  justify-content: space-between;
}
.u-btn-wrap.around {
  justify-content: space-around;
}
.u-btn-wrap.center {
  justify-content: center;
  flex-wrap: wrap;
}
.u-btn-wrap.center.nowrap {
  flex-wrap: nowrap;
}
@media (max-width: 800px) {
  .u-btn-wrap.center.nowrap {
    flex-wrap: wrap;
  }
}
.u-btn-wrap.column {
  flex-direction: column;
}

.u-btn-more {
  /**base*/
  width: fit-content;
  padding: 0 20px;
  border-radius: 3px;
  background: #59B2AC;
  color: #fff;
  height: 50px;
  margin: 0;
  font-weight: normal;
  line-height: 3;
}
.u-btn-more::before {
  content: none;
}
.u-btn-more span::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .42em 0 .42em .62em;
  /* 高さ, 幅の比率 */
  border-color: transparent transparent transparent #fff;
  margin-right: .5em;
  vertical-align: middle;
}
.u-btn-more.tel {
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.u-btn-more.tel i {
  margin-right: 5px;
  height: 16px;
}
.u-btn-more.tel i img {
  height: 20px;
  width: auto;
}
.u-btn-more.tel::before {
  content: none;
}
.u-btn-more.contact {
  color: #FFF;
  background: #59B2AC;
  width: 230px;
  height: clamp(40px, calc(60 / 1024 * 100vw), 60px);
  padding: 0;
}
.u-btn-more.contact i {
  margin-right: 20px;
}
.u-btn-more.contact::before {
  content: none;
}
.u-btn-more:hover {
  opacity: .75;
  background: #cccccc80;
}
.u-btn-more.no-icon::before {
  content: none;
}
.u-btn-more.color {
  width: 100%;
  border-radius: 15px;
  background: #008E82;
  color: #fff;
}

.u-btn-anchor {
  /**base*/
  display: inline-flex;
  place-items: center;
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 80px;
  padding: 0 45px 0 15px;
  color: #452E1D;
  font-family: "Cormorant Infant", serif;
  font-size: clamp(16px, calc(18 / 1024 * 100vw), 18px);
  line-height: 1.25;
  background: #fff;
  border: 2px solid #FDEAE0;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  justify-content: center;
  text-align: center;
  transition: opacity 0.5s;
}
.u-btn-anchor::before {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  width: 30px;
  height: 30px;
  background: url(../images/under/u-icon_anchor.svg) no-repeat center/contain;
  z-index: 1;
}
.u-btn-anchor:hover {
  opacity: .6;
}
.u-btn-anchor.no-icon::before {
  content: none;
}
.u-btn-anchor.color {
  width: 100%;
  border-radius: 15px;
  background: #008E82;
  color: #fff;
}

.u-btn-line {
  /**base*/
  display: inline-flex;
  place-items: center;
  position: relative;
  width: 160px;
  height: 40px;
  padding: 0 30px 0 10px;
  font-size: 15px;
  line-height: 1;
  border-radius: 4px;
  background: #06C755;
  color: #fff;
  justify-content: center;
  text-align: center;
  transition: opacity 0.5s;
}
.u-btn-line.Lsize {
  width: max-content;
}
.u-btn-line:hover {
  opacity: .6;
}

.u-btn-icon {
  /**base*/
  display: inline-flex;
  grid-template-rows: repeat(2, min-content);
  align-content: center;
  place-items: center;
  position: relative;
  width: 210px;
  height: 50px;
  color: #FFF;
  font-size: 16px;
  line-height: 1.640625em;
  font-family: "Zen Old Mincho", serif;
  background: #59B2AC;
  justify-content: center;
  text-align: center;
  align-items: center;
  transition: opacity 0.5s;
}
.u-btn-icon img {
  margin-right: .5em;
  margin-top: 3px;
}
.u-btn-icon:hover {
  opacity: .6;
}

@media (max-width: 800px) {
  .col2 .u-btn-wrap a {
    width: 100%;
  }

  .u-btn-wrap {
    flex-wrap: wrap;
  }
  .u-btn-wrap.col4 a {
    width: 45%;
  }
  .u-btn-wrap.between {
    justify-content: center;
  }
  .u-btn-wrap.center {
    justify-content: center;
    flex-wrap: wrap;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  .u-btn-wrap.center a {
    width: 100%;
  }
  .u-btn-wrap.center .u-btn-contact {
    display: inline-flex;
    place-items: center;
    position: relative;
    height: 40px;
    padding: 0 15px;
    color: #333;
    font-family: "Cormorant Infant", serif;
    font-size: 12px;
    line-height: 1.25;
    background: #E9FBF540;
    border: 1px solid #E9FBF5;
    justify-content: center;
    text-align: center;
    transition: opacity 0.5s;
  }
  .u-btn-wrap.center .u-btn-anchor {
    display: inline-flex;
    place-items: center;
    position: relative;
    justify-content: center;
    text-align: center;
    transition: opacity 0.5s;
  }

  .u-btn-more {
    font-size: 1.4rem;
    height: 40px;
    margin: 0;
    line-height: 2.7;
  }
  .u-btn-more.Lsize {
    max-width: fit-content;
    padding: 0 30px 0 30px;
  }
  .u-btn-more::before {
    width: 34px;
    height: 34px;
  }
}
/*color*/
.u-list-anchor-link {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}
.u-list-anchor-link.flex {
  display: flex;
  justify-content: center;
}
.u-list-anchor-link.flex li {
  width: 25%;
}
.u-list-anchor-link a {
  display: flex;
  align-items: center;
  background-color: #F1F4F6;
  border-radius: 3px;
  color: #111111;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding: 0 35px 0 15px;
  min-height: 60px;
  transition: opacity .3s;
}
.u-list-anchor-link a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #59B2AC;
  border-bottom: 1px solid #59B2AC;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}
.u-list-anchor-link a:hover {
  opacity: .7;
}

@media (max-width: 800px) {
  .u-list-anchor-link {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .u-list-anchor-link.flex {
    display: grid;
  }
  .u-list-anchor-link.flex li {
    width: auto;
  }
  .u-list-anchor-link a {
    font-size: 13px;
    justify-content: center;
    text-align: center;
    padding: 8px 8px 20px;
    min-height: 0;
    height: 100%;
  }
  .u-list-anchor-link a::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
  }
  .u-list-anchor-link a:hover {
    opacity: .7;
  }
}
/*anchor-line*/
.u-list-anchor-link02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.u-list-anchor-link02.flex-start {
  justify-content: flex-start;
}
.u-list-anchor-link02 li {
  position: relative;
}
.u-list-anchor-link02 li::after {
  content: "";
  display: inline-block;
  background: #e0e0e0;
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}
.u-list-anchor-link02 li:last-child::after {
  content: none;
  background: #ff0;
}
.u-list-anchor-link02 a {
  display: inline-block;
  position: relative;
  font-weight: bold;
  padding-right: 25px;
}
.u-list-anchor-link02 a::before {
  content: "";
  background: url("../images/share/u-icon_arrow_down.svg") no-repeat 0 0/contain;
  width: 22px;
  height: 22px;
  position: absolute;
  right: -3px;
  top: 3px;
}
.u-list-anchor-link02 a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .u-list-anchor-link02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
/*テーブル*/
.u-table-style {
  position: relative;
  z-index: 1;
}
.u-table-style + table {
  margin-top: 30px;
}
.u-table-style a, .u-table-style a:link, .u-table-style a:visited {
  text-decoration: underline;
  color: #9A76AD;
}
.u-table-style a:hover, .u-table-style a:focus {
  text-decoration: none;
}
.u-table-style.tac td {
  text-align: center;
}
.u-table-style th, .u-table-style td {
  padding: 10px;
  line-height: 1.5;
}
.u-table-style th {
  background-color: #59B2AC;
  border: 1px solid #BDC7D1;
  color: #fff;
}
.u-table-style th.tac {
  text-align: center;
}
.u-table-style th.bg01 {
  background-color: #F1F4F6;
  border: 1px solid #BDC7D1;
  color: #333;
}
.u-table-style th.bg01 img {
  width: 80%;
  padding: 2.5%;
}
.u-table-style td {
  background-color: #ffffff;
  border: 1px solid #D1D1D1;
}
.u-table-style td.bg01 {
  background: #F1F4F6;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}

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

@media (max-width: 800px) {
  .u-table-style.sp-layout-table {
    display: block;
    width: 100%;
  }
  .u-table-style.sp-layout-table tbody, .u-table-style.sp-layout-table tr, .u-table-style.sp-layout-table th, .u-table-style.sp-layout-table td {
    display: block;
    width: 100%;
  }
  .u-table-style.sp-layout-table th {
    border: 1px solid #ccc;
  }
  .u-table-style.sp-layout-table td {
    border: 1px solid #E2E2E2;
  }

  .u-table-style th, .u-table-style td {
    padding: 10px;
    font-size: clamp(14px, calc(17 / 1024 * 100vw), 17px);
    line-height: 1.7;
  }
  .u-table-style th.tar, .u-table-style td.tar {
    white-space: nowrap;
  }

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

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

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

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

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

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

  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }
  .table-scroll table th:first-child {
    left: 0;
    z-index: 1;
    white-space: nowrap;
  }

  .bland-scroll img {
    max-width: 1000px;
  }
}
/*---カスタム投稿サイドナビ--*/
.sidebar-layout {
  margin: 0 auto;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 240px;
  column-gap: 30px;
}

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

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

.side-contents-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px #59B2AC solid;
  color: #534033;
}

.side-area-item {
  padding: 0px;
}

.side-area-links li {
  padding-left: 30px;
  position: relative;
  font-size: 1.5rem;
}
.side-area-links li + li {
  margin-top: 20px;
}

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

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

.main-contents {
  padding: 0 0px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .sidebar-layout {
    flex-direction: column;
    width: 100%;
    display: flex;
    grid-template-columns: 1fr;
  }

  .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%;
    padding: 0;
    margin-top: 50px;
  }

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

  .side-contents-ttl {
    font-size: clamp(14px, calc(15 / 1800 * 100vw), 15px);
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .side-area-item + .side-area-item {
    margin-top: 30px;
  }
}
/*---カスタム投稿テーブル--*/
.l-table a {
  text-decoration: underline;
}
.l-table a:hover {
  text-decoration: none;
}
.l-table th, .l-table td {
  padding: 15px;
  vertical-align: middle;
}
.l-table th {
  background-color: #4B4E52;
  font-weight: normal;
  color: #fff;
  border: 1px solid #ccc;
}
.l-table th.bg01 {
  background: #E8EAED;
  color: #E9FBF5;
}
.l-table td {
  background-color: #ffffff;
  border: 1px solid #ccc;
}
.l-table.center td {
  text-align: center;
}

/*map,video,tab,faq,accordion*/
.youtube {
  width: 100%;
  aspect-ratio: 16/9;
  background: #F1F4F6;
}

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

video {
  width: 100%;
}

.google-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  aspect-ratio: 65 / 46;
}

.outer-iframe iframe {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  aspect-ratio: 560 / 315;
}

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

[data-tab-content].is-active {
  display: block;
}

.tab-list {
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.tab-nav-item {
  display: inline-block;
  cursor: pointer;
  border-radius: 6px;
  color: #fff;
  font-size: 1.7rem;
  padding: 10px 20px;
  transition: all 0.2s ease;
  background: #59B2AC;
}

.tab-nav-item:hover {
  opacity: .9;
  color: #fff;
}

.tab-nav-item.is-active {
  background: #4A9A3F;
  color: #FFF;
}

.tab-content.is-active {
  animation: tabFadeIn 0.7s ease 0s 1 normal;
}

@keyframes tabFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 800px) {
  .google-map iframe {
    height: 300px;
  }
}
/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*お知らせ*/
.u-list-h2 {
  font-size: clamp(2rem, calc(26 / 1024 * 100vw), 2.2rem);
  margin-bottom: 0px;
}

.list-under-news {
  border-top: 1px solid #dfdfdf;
  margin-bottom: 30px;
}
.list-under-news a {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-gap: 25px;
  border-bottom: 1px solid #D1D1D1;
  padding: 20px 0;
}
.list-under-news a:hover .ttl {
  text-decoration: underline;
}
.list-under-news time {
  display: inline-block;
  color: #211815;
  font-family: "Lato", sans-serif;
  margin-right: 25px;
}
.list-under-news .category {
  display: inline-block;
  background-color: #E9FBF5;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 15px;
  line-height: 28px;
}
.list-under-news .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

/*通常投稿*/
.list-post-type01 {
  margin-bottom: 80px;
}
.list-post-type01 li, .list-post-type01 article {
  display: flex;
  flex-wrap: wrap;
}
.list-post-type01 li + li {
  margin-top: 50px;
}
.list-post-type01 article + article {
  margin-top: 50px;
}
.list-post-type01 .list-ttl {
  flex-basis: 100%;
  font-size: clamp(2rem, calc(26 / 1024 * 100vw), 2.6rem);
  position: relative;
  word-break: break-word;
}
.list-post-type01 .list-ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: url("../images/share/bg-green02.jpg");
  background-size: 100%;
  margin: 5px 0 20px;
}
.list-post-type01 .list-ttl a, .list-post-type01 .u-h3 a {
  transition: 0.5s;
}
.list-post-type01 .list-ttl a:hover, .list-post-type01 .u-h3 a:hover {
  opacity: 0.5;
}
.list-post-type01 .u-h3 {
  flex-basis: 100%;
}
.list-post-type01 .list-img {
  margin: 0 30px 0 0;
  width: 250px;
}
.list-post-type01 .list-img img {
  width: 250px;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
}
.list-post-type01 .list-img a {
  transition: 0.5s;
}
.list-post-type01 .list-img a:hover {
  opacity: 0.5;
}
.list-post-type01 .list-desc {
  flex: 1;
}
.list-post-type01 .list-data {
  font-size: 1.3rem;
  margin: 0 0 5px;
}
.list-post-type01 time {
  display: inline-block;
  color: #211815;
  font-size: 1.4rem;
  font-family: "Lato", sans-serif;
  vertical-align: -1px;
  margin: 0 25px 0 0;
}
.list-post-type01 .category-area, .list-post-type01 .category-wrap, .list-post-type01 .category {
  background: #F8F5EA;
  display: inline-block;
  line-height: 1;
  display: inline-block;
  padding: 0 .5em;
}
.list-post-type01 .category {
  color: #211815;
  display: inline-block;
  font-size: 1.1rem;
  margin: 0;
  padding: 5px 8px;
}
.list-post-type01 .category + .category {
  padding-left: 0;
}
.list-post-type01 .category + .category::before {
  content: "/";
  margin-right: 8px;
}
.list-post-type01 .list-txt {
  margin: 0 0 15px;
}
.list-post-type01 .list-btn {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
.list-post-type01 .list-btn .u-btn-more {
  height: 40px;
  line-height: 2.5;
}

@media (max-width: 800px) {
  /*通常投稿*/
  .list-post-type01 {
    margin: 0 0 50px;
  }
  .list-post-type01 li + li {
    margin-top: 40px;
  }
  .list-post-type01 .list-ttl {
    padding: 0 0 7px;
    margin: 0 0 15px;
  }
  .list-post-type01 .list-img {
    margin: 0 0 15px;
    width: 100%;
  }
  .list-post-type01 .list-img img {
    width: 100%;
    /* height: 25vw; */
    aspect-ratio: 3 / 2;
    height: 100%;
    object-fit: cover;
  }
  .list-post-type01 .list-desc {
    margin: -5px 0 0;
  }
  .list-post-type01 time {
    font-size: 1.2rem;
    margin: 0 15px 0 0;
  }
  .list-post-type01 .list-txt {
    font-size: 1.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 5px;
  }
  .list-post-type01 .list-btn {
    margin-top: 15px;
  }
  .list-post-type01 .list-btn .u-btn-more {
    max-width: max-content;
    line-height: 2.7;
  }
}
/*普通投稿 詳細ページ*/
.l-post-single {
  margin-bottom: 80px;
}
.l-post-single .l-ttl {
  font-size: clamp(2rem, calc(30 / 1024 * 100vw), 3rem);
  margin: 0 0 20px;
  word-break: break-word;
  font-weight: 700;
}
.l-post-single .post-data {
  margin: 0 0 20px;
}
.l-post-single .post-data time {
  display: inline-block;
  color: #211815;
  font-size: 1.4rem;
  font-family: "Lato", sans-serif;
  vertical-align: -1px;
  margin: 0 20px 0 0;
}
.l-post-single .post-data .category-area, .l-post-single .post-data .category-wrap {
  background: #59B2AC;
  display: inline-block;
  line-height: 1;
  display: inline-block;
  padding: 0 .5em;
}
.l-post-single .post-data .category {
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  margin: 0;
  padding: 5px 8px;
}
.l-post-single .post-data .category + .category {
  padding-left: 0;
}
.l-post-single .post-data .category + .category::before {
  content: "/";
  margin-right: 8px;
}
.l-post-single .post-data .single-img {
  text-align: center;
  margin: 30px auto;
}
.l-post-single .post-data .single-img img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}

/*new!通常投稿*/
.u-list-under-post {
  border-top: 1px solid #eee;
  margin-bottom: 50px;
}
.u-list-under-post a {
  border-bottom: 1px solid #eee;
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-gap: 25px;
  padding: 15px 70px 15px 0;
  position: relative;
  transition: border-color .3s;
}
.u-list-under-post a::before {
  content: "";
  background: url("../images/share/post_arrow.svg") no-repeat center/cover;
  width: 13px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.u-list-under-post a:hover {
  border-color: #333;
}
.u-list-under-post .list-img img {
  border: 1px solid #eee;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}
.u-list-under-post .list-desc {
  flex: 1;
  margin-bottom: 5px;
}
.u-list-under-post time {
  display: block;
  font-size: 1.2rem;
}
.u-list-under-post .list-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.8;
  margin-bottom: 5px;
}
.u-list-under-post .category {
  display: inline-block;
  background-color: #59B2AC;
  color: #fff;
  font-size: 11px;
  padding: 0 5px;
  margin-right: 5px;
}
.u-list-under-post .no-post {
  padding: 25px 0;
}

.post-number {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.post-number span,
.post-number a {
  display: inline-block;
  background-color: #edeef0;
  font-size: 13px;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  transition: .3s;
  padding: 0 20px;
}
.post-number > * + * {
  margin-left: 10px;
}
.post-number a:hover {
  background: #333;
  color: #fff;
}
.post-number .current {
  background: #333;
  color: #fff;
}

@media (max-width: 800px) {
  .u-list-under-post a {
    grid-template-columns: 120px 1fr;
    grid-gap: 15px;
    padding: 15px 40px 15px 0;
  }
  .u-list-under-post a::before {
    width: 20px;
  }
  .u-list-under-post a::after {
    right: 4px;
  }
  .u-list-under-post .list-desc {
    margin-top: -5px;
  }
  .u-list-under-post .list-ttl {
    font-size: rem(14);
    line-height: 1.5;
  }
}
/*カスタム投稿一覧*/
/*カスタム投稿シングル*/
.post-garally .container {
  display: grid;
  grid-template-columns: 50% 50%;
}

.post-garally .garally-wrap {
  display: grid;
}

#thumbnail-carousel .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 20px;
  height: 20px;
}
#thumbnail-carousel .splide__arrow svg {
  width: 20px;
  height: 20px;
}
#thumbnail-carousel .splide__arrow--prev {
  left: 0;
}
#thumbnail-carousel .splide__arrow--next {
  right: 0;
}

/*--------------------------------------------------------
個人情報保護方針
-----------------------------------------------------------*/
.category-ttl {
  margin-bottom: 15px;
}

/*ブログスタイル*/
.list-under-blog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}
.list-under-blog .list-img {
  border: 1px solid #eaeaea;
  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: 1.2rem;
}
.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: #E9FBF5;
  color: #fff;
  font-size: 1.1rem;
  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 #e8ecf0;
  margin-bottom: 50px;
}
.list-under-post > li {
  border-bottom: 1px solid #F1F4F6;
}
.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;
  color: #ADADAD;
  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: #E9FBF5;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}
.list-under-post .no-post {
  padding: 25px 0;
}

/*詳細ページ*/
.single-post-layout {
  border-bottom: 1px solid #FFB750;
  padding-bottom: 50px;
  margin-bottom: 50px;
  max-width: 800px;
  margin: 0 auto 50px;
}
.single-post-layout .l-ttl {
  border-bottom: 1px solid #FFB750;
  font-size: 2.4rem;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.single-post-layout .post-data {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.single-post-layout .post-data time {
  display: inline-block;
  color: #98918c;
  font-size: 1.2rem;
  margin-right: 20px;
}
.single-post-layout .post-data .category {
  background: #E9FBF5;
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  padding: 5px 8px;
  margin: 0 10px 0 0;
}
.single-post-layout .post-data p, .single-post-layout .post-data ul, .single-post-layout .post-data ol {
  margin-bottom: 15px;
}
.single-post-layout .post-data a {
  text-decoration: underline;
  color: #9A76AD;
}
.single-post-layout .post-data a:hover {
  text-decoration: none;
}
.single-post-layout .post-data strong {
  font-weight: 700;
}
.single-post-layout .post-data em {
  font-style: italic;
}
.single-post-layout .post-data ul li {
  list-style: inside disc;
}
.single-post-layout .post-data ul li > ul {
  margin: 0 0 0 15px;
}
.single-post-layout .post-data ol li {
  list-style: inside decimal;
}
.single-post-layout .post-data ol li > ol {
  margin: 0 0 0 15px;
}

/*症例紹介*/
.case-grid-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  column-gap: 30px;
}

.case-layout, .l-post-case {
  background-color: #fff;
  border: solid 1px #DFE0DD;
  padding: 5%;
}
.case-layout .case-grid, .l-post-case .case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}
.case-layout .case-grid .case-img img, .l-post-case .case-grid .case-img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
  object-position: top;
}
.case-layout .case-single, .l-post-case .case-single {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 30px;
}
.case-layout .case-single .case-img, .l-post-case .case-single .case-img {
  max-height: 300px;
  text-align: center;
}
.case-layout .case-single .case-img img, .l-post-case .case-single .case-img img {
  width: 50%;
  object-fit: contain;
  height: 100%;
}
.case-layout.bg-wh, .l-post-case.bg-wh {
  background: #fff;
  padding: 0;
}
.case-layout + .l-post-case, .l-post-case + .l-post-case {
  margin-top: 50px;
}
.case-layout time, .l-post-case time {
  color: #aaa;
  display: block;
  font-size: 1.2rem;
  margin-right: 15px;
}
.case-layout .category-area, .case-layout .category-wrap, .l-post-case .category-area, .l-post-case .category-wrap {
  background: #59B2AC;
  display: inline-block;
  line-height: 1;
  display: inline-block;
  padding: 0 .5em;
}
.case-layout .category, .l-post-case .category {
  background: #59B2AC;
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  margin: 0;
  padding: 5px 8px;
}
.case-layout .category + .category, .l-post-case .category + .category {
  padding-left: 0;
}
.case-layout .category + .category::before, .l-post-case .category + .category::before {
  content: "/";
  margin-right: 8px;
}
.case-layout .l-ttl, .l-post-case .l-ttl {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.case-layout .post-data, .l-post-case .post-data {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.case-layout .before-after, .l-post-case .before-after {
  margin: auto;
  margin-bottom: 30px;
}
.case-layout .l-table, .l-post-case .l-table {
  background-color: #fff;
  border: 1px solid #DEDAD3;
}
.case-layout .l-table th,
.case-layout .l-table td, .l-post-case .l-table th,
.l-post-case .l-table td {
  border: 1px solid #DEDAD3;
  line-height: 1.8;
  font-size: clamp(14px, calc(15 / 1024 * 100vw), 15px);
  padding: 15px;
  background: #fff;
}
.case-layout .l-table th, .l-post-case .l-table th {
  background-color: #59B2AC;
  color: #fff;
  vertical-align: top;
  text-align: left;
  width: 25%;
}
.case-layout .l-btn, .l-post-case .l-btn {
  text-align: center;
  margin-top: 50px;
}
.case-layout .l-item, .l-post-case .l-item {
  margin-top: 50px;
}
.case-layout .item-ttl, .l-post-case .item-ttl {
  border-bottom: 1px solid #333;
  font-size: 1.8rem;
  position: relative;
  padding: 0 0 12px;
  margin: 0 0 25px;
}
.case-layout .item-ttl::after, .l-post-case .item-ttl::after {
  content: "";
  width: 25px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.case-layout + .case-layout, .l-post-case + .case-layout {
  margin-top: 50px;
}

.before-after {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.before-after .item {
  text-align: center;
  width: 42%;
  position: relative;
}
.before-after .item + .item::before {
  content: "";
  border-style: solid;
  border-width: 13.5px 0 13.5px 14px;
  border-color: transparent transparent transparent #1C2B35;
  position: absolute;
  left: -85px;
  top: calc(50% - 20px);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.before-after figure {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}
.before-after figure img {
  max-height: 300px;
  -o-object-fit: contain;
  object-fit: contain;
}
.before-after p {
  font-family: "Cormorant Infant", serif;
  font-size: 2rem;
  line-height: 1;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.list-case-details > li {
  display: flex;
  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-img img {
  object-fit: contain;
  aspect-ratio: unset;
  border-radius: 0;
}

.list-case-details .list-desc {
  flex: 1;
}

.list-case-details .list-ttl {
  font-size: clamp(16px, calc(17 / 1024 * 100vw), 17px);
}

@media (max-width: 800px) {
  /*症例紹介*/
  .case-layout .case-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
  .case-layout .case-grid .case-img img {
    width: 100%;
    aspect-ratio: unset;
    object-fit: contain;
    object-position: center;
  }
  .case-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .case-layout .post-data {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .case-layout .before-after {
    margin-bottom: 30px;
  }
  .case-layout .l-table th,
  .case-layout .l-table td {
    display: block;
    padding: 10px;
    font-size: 1.4rem;
  }
  .case-layout .l-table th {
    width: 100%;
  }
  .case-layout .l-btn {
    margin-top: 30px;
  }
  .case-layout .l-item {
    margin-top: 30px;
  }
  .case-layout .item-ttl {
    border-bottom: 1px solid #333;
    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 {
    display: block;
  }
  .before-after .item {
    width: 100%;
  }
  .before-after .item + .item {
    margin-top: 50px;
  }
  .before-after .item + .item::before {
    left: 50%;
    top: -35px;
    -webkit-transform: translate(-50%, 0) rotate(90deg);
    transform: translate(-50%, 0) rotate(90deg);
  }
  .before-after figure {
    aspect-ratio: auto;
  }
  .before-after figure img {
    max-height: 100%;
  }

  .list-case-details > li {
    display: block;
  }

  .list-case-details .list-img {
    width: 100%;
    margin: 0 0 25px;
  }
}
/*セレクト式カテゴリー*/
.select-area {
  display: flex;
  align-items: center;
  margin: 0 0 50px;
}

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

.select-area .select-ttl {
  display: inline-block;
  font-size: 1.6rem;
  margin: 0 15px 0 0;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: '';
  background: url(../images/share/u-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);
  font-size: 1.6rem;
  color: #1a1a1a;
  vertical-align: middle;
  height: 35px;
  min-width: 150px;
  padding: 5px 20px 5px 5px;
}

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

/*ページャー*/
.post-number {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
.post-number span, .post-number a {
  display: inline-block;
  color: #59B2AC;
  background-color: #eee;
  font-size: 1.3rem;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  transition: 0.3s;
  padding: 0 20px;
}
.post-number > * + * {
  margin-left: 10px;
}
.post-number a:hover {
  background: #59B2AC;
  color: #fff;
  opacity: 1;
}
.post-number .current {
  background: #59B2AC;
  color: #fff;
}

.post-number-single {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
}
.post-number-single a {
  display: inline-block;
}
.post-number-single .all {
  background: #59B2AC;
  border: 1px solid #59B2AC;
  color: #fff;
  font-size: 1.3rem;
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
  border-radius: 3px;
}
.post-number-single .all:hover {
  background: #59B2AC;
  color: #fff;
}
.post-number-single .prev, .post-number-single .next {
  border: 1px solid #59B2AC;
  width: 30px;
  height: 30px;
  position: relative;
  border-radius: 100vw;
}
.post-number-single .prev::before, .post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #59B2AC;
  margin: 0 auto;
  top: 12px;
}
.post-number-single .prev:hover, .post-number-single .next:hover {
  background: #59B2AC;
  color: #fff;
  opacity: .8;
}
.post-number-single .prev:hover::before, .post-number-single .next:hover::before {
  border-color: #fff;
}
.post-number-single .prev::before {
  transform: rotate(-135deg);
  left: 11px;
  border-left: 1px solid #59B2AC;
}
.post-number-single .next::before {
  transform: rotate(135deg);
  right: 11px;
  border-right: 1px solid #59B2AC;
}

@media (max-width: 800px) {
  .select-area .select-item {
    margin: auto;
  }
}
.u-container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.dl-privacy dt {
  border-bottom: 1px solid #000;
  font-size: 1.8rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
}
.dl-privacy dd + dt {
  margin-top: 30px;
}
.dl-privacy a {
  text-decoration: underline;
  color: #9A76AD !important;
}
.dl-privacy a:hover {
  text-decoration: none;
}

.list-privacy a {
  text-decoration: underline;
  color: #9A76AD !important;
}

.list-privacy a:hover {
  text-decoration: none;
}

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

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

.list-privacy li:before {
  background: #333;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
}

/*下層カスタムレイアウト*/
/*下層オリジナル*/
/*メリットデメリット*/
.u-merit-demerit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4%;
}
.u-merit-demerit .item {
  background: #fff;
  border-top: 5px solid #59B2AC;
  padding: 35px;
}
.u-merit-demerit .item:nth-of-type(2) {
  background: #fff;
  border-color: #59B2AC;
}
.u-merit-demerit .item:nth-of-type(2) .list-disc li:before {
  content: "";
  background: #59B2AC;
}
.u-merit-demerit .item:nth-of-type(2) .item-ttl::after {
  color: #59B2AC;
}
.u-merit-demerit .item-ttl {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 25px;
  font-family: "Zen Old Mincho", serif;
}
.u-merit-demerit .item-ttl::after {
  content: attr(data-en);
  font-size: 15px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
  margin-left: 15px;
}

@media (max-width: 800px) {
  .u-merit-demerit {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .u-merit-demerit .item {
    padding: 35px 25px;
  }
  .u-merit-demerit .item-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.u-layout-style {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.u-layout-style .l-img {
  position: relative;
  width: 55%;
  z-index: 1;
}
.u-layout-style .l-img img {
  border-radius: 3px;
}
.u-layout-style .l-desc {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 40px;
  margin: 0 0 0 -80px;
  flex: 1;
  z-index: 2;
  position: relative;
}
.u-layout-style .l-desc.kazari::before {
  content: "";
  position: absolute;
  top: -6vw;
  right: -3vw;
  aspect-ratio: 282/314;
  width: 35%;
  max-width: 282px;
  background: url("../images/share/kazari-green01.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.u-layout-style.reverse {
  flex-direction: row-reverse;
}
.u-layout-style.reverse .l-desc {
  padding: 40px;
  margin: 0 -80px 0 0;
}
.u-layout-style .l-ttl {
  color: #59B2AC;
  font-size: 26px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #B5E9E3;
}

@media (max-width: 800px) {
  .u-layout-style {
    flex-direction: column;
  }
  .u-layout-style .l-img {
    width: 100%;
  }
  .u-layout-style .l-desc {
    padding: 20px 5vw;
    margin: -20px -5vw 0;
    width: 90%;
  }
  .u-layout-style.reverse {
    flex-direction: column;
  }
  .u-layout-style.reverse .l-desc {
    padding: 20px 5vw;
    margin: -20px -5vw 0;
  }
  .u-layout-style .l-ttl {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.u-card-staff {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5%;
  grid-row-gap: 10px;
}
.u-card-staff > li .card-img {
  margin-bottom: 15px;
}
.u-card-staff > li .card-img img {
  aspect-ratio: 1/1;
  object-fit: cover;
  max-width: 240px;
  width: 100%;
}
.u-card-staff > li .l-desc {
  padding: 0 0 30px;
}

@media (max-width: 800px) {
  .u-card-staff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 5%;
    grid-row-gap: 10px;
  }
  .u-card-staff > li .card-img {
    margin-bottom: 15px;
  }
  .u-card-staff > li .card-img img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
  .u-card-staff > li .l-desc {
    padding: 0 0px 30px;
  }
  .u-card-staff > li .l-desc .u-h3 span {
    display: block;
  }
}
/*下層共通パーツ*/
.u-card-style {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.u-card-style.col1 {
  grid-template-columns: 1fr;
  margin-bottom: 30px;
}
.u-card-style.col1 > li {
  display: flex;
  gap: 30px;
}
.u-card-style.col1 > li .card-img {
  margin-bottom: 0;
  width: 30%;
}
.u-card-style.col1 > li .card-ttl.icon {
  margin: 0 0 15px;
}
.u-card-style.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.u-card-style.col2 > li {
  background: #fff;
}
.u-card-style.col2 > li .card-ttl {
  font-size: clamp(2rem, calc(2 / 1800 * 100vw), 2rem);
  line-height: calc(20 / 20 * 1em);
  letter-spacing: 0.1em;
  color: #211815;
  text-align: left;
  margin-bottom: 15px;
}
.u-card-style.col2 > li p {
  font-size: 1.5rem;
}
.u-card-style > li {
  padding: 30px;
  background: #EAF8F7;
}
.u-card-style .card-ttl {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.4rem, calc(34 / 1800 * 100vw), 3.4rem);
  line-height: calc(27 / 20 * 1em);
  letter-spacing: 0.1em;
  color: #211815;
  text-align: center;
}
.u-card-style .card-ttl.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  width: fit-content;
  margin: 0 auto 15px;
}
.u-card-style .card-ttl.icon img {
  max-width: 40px;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 100vw;
  position: relative;
  z-index: 1;
  background: #fff;
}
.u-card-style .card-sub-ttl {
  font-size: clamp(1.8rem, calc(18 / 1800 * 100vw), 1.8rem);
  color: #59B2AC;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #B5E9E3;
}
.u-card-style .card-img {
  margin-bottom: 15px;
}
.u-card-style .card-img img {
  aspect-ratio: 260/204;
  object-fit: cover;
  border-radius: 5px;
}
.u-card-style .l-desc {
  flex: 1;
}

@media (max-width: 800px) {
  .u-card-style {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .u-card-style.col1 {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
    flex-direction: column;
  }
  .u-card-style.col1 > li {
    display: flex;
    gap: 30px;
    flex-direction: column;
  }
  .u-card-style.col1 > li .card-img {
    margin-bottom: 0;
    width: 100%;
  }
  .u-card-style.col1 > li .card-ttl.icon {
    margin: 0 0 15px;
  }
  .u-card-style.col2 {
    grid-template-columns: 1fr;
  }
  .u-card-style.col2 > li {
    background: #fff;
  }
  .u-card-style.col2 > li .card-ttl {
    font-size: clamp(2rem, calc(2 / 1800 * 100vw), 2rem);
    line-height: 1.5;
    letter-spacing: normal;
    color: #211815;
    text-align: left;
    margin-bottom: 15px;
  }
  .u-card-style.col2 > li p {
    font-size: 1.5rem;
  }
  .u-card-style > li {
    padding: 30px;
    background: #EAF8F7;
  }
  .u-card-style .card-ttl {
    display: block;
    font-family: "Zen Old Mincho", serif;
    font-size: clamp(2.4rem, calc(34 / 1800 * 100vw), 3.4rem);
    line-height: calc(27 / 20 * 1em);
    letter-spacing: 0.1em;
    color: #211815;
    text-align: center;
  }
  .u-card-style .card-ttl.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    width: fit-content;
    margin: 0 0 15px;
  }
  .u-card-style .card-ttl.icon img {
    max-width: 40px;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 100vw;
    position: relative;
    z-index: 1;
    background: #fff;
  }
  .u-card-style .card-sub-ttl {
    font-size: clamp(1.8rem, calc(18 / 1800 * 100vw), 1.8rem);
    color: #59B2AC;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #B5E9E3;
  }
  .u-card-style .card-img {
    margin-bottom: 15px;
  }
  .u-card-style .card-img img {
    aspect-ratio: 260/204;
    object-fit: cover;
    border-radius: 5px;
  }
  .u-card-style .l-desc {
    flex: 1;
  }
}
.u-staff-layout .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 8%;
}
.u-staff-layout .l-img {
  width: 32%;
}
.u-staff-layout .l-img figcaption {
  color: #0062B1;
  font-weight: bold;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
}
.u-staff-layout .l-img .job {
  display: block;
  font-size: 14px;
}
.u-staff-layout .l-img .name {
  font-size: 20px;
}
.u-staff-layout .l-img .kana {
  font-size: 11px;
}
.u-staff-layout .l-desc {
  flex: 1;
}
.u-staff-layout .l-ttl {
  color: #0062B1;
  border-bottom: 2px solid #0062B1;
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 5px;
  margin-bottom: 30px;
  width: fit-content;
}
.u-staff-layout .l-message {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 30px;
}

.u-card-profile {
  margin-top: 30px;
}

.u-card-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0;
  padding-bottom: 0px;
}
.u-card-profile.tate {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
.u-card-profile.tate .item {
  background: none;
  padding: 0;
}
.u-card-profile .item {
  background-color: #fff;
  border-radius: 5px;
  padding: 0px;
}
.u-card-profile .item.kazari {
  position: relative;
}
.u-card-profile .item.kazari::after {
  content: "";
  position: absolute;
  bottom: -3vw;
  right: 0;
  aspect-ratio: 205/177;
  width: 35%;
  max-width: 205px;
  background: url("../images/share/kazari-green02.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.u-card-profile .item > ul {
  padding: 0 10px;
}
.u-card-profile .item > ul li {
  padding-bottom: 5px;
}
.u-card-profile .card-ttl {
  color: #211815;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  background-color: #EAF8F7;
  font-weight: bold;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.u-card-profile .card-ttl.yellow {
  background-color: #F8F5EA;
}

.dl-career {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 12px 0;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .u-staff-layout .wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .u-staff-layout .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }
  .u-staff-layout .l-img figcaption {
    flex-direction: column;
    gap: 10px;
  }
  .u-staff-layout .l-ttl {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .u-staff-layout .l-message {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .u-card-profile {
    margin-top: 15px;
  }

  .u-card-profile {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .u-card-profile .item {
    padding: 0px;
  }
}
/*---
よくある質問開いたまま
-----*/
/*------------
よくある質問・アコーディオン
--------------*/
/*----------
カードスタイル
-----------*/
/*--------
ボックススタイル
----------*/
.u-box-style {
  padding: 30px;
  background: rgba(46, 182, 170, 0.2);
}
.u-box-style .u-layout-style {
  margin-bottom: 0;
}
.u-box-style .box-ttl {
  font-size: clamp(1.8rem, calc(18 / 1800 * 100vw), 1.8rem);
  color: #59B2AC;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #B5E9E3;
}
.u-box-style.border {
  border: 1px solid #B5E9E3;
  background: #fff;
}
.u-box-style.bgcolor {
  background: #EAF8F7;
}

/*------------
スタッフページ パーツ
--------------*/
/*WP必須クラス*/
.postdata .wp-caption {
  max-width: 100%;
  margin-bottom: 10px;
}

.postdata .wp-caption-text {
  padding: 10px;
  margin-bottom: 0;
}

.postdata .gallery-caption {
  font-size: 0.8em;
}

.postdata .bypostauthor {
  color: #999;
}

.postdata .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.postdata pre {
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: pre-wrap;
  /* CSS3 */
  word-wrap: break-word;
  /* IE 5.5+ */
}

.postdata h1, .postdata h2, .postdata h3, .postdata h4, .postdata h5 {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

/*---投稿大枠---*/
.postdata {
  text-align: left;
}

.postdata::after {
  clear: both;
  content: "";
  display: block;
}

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

/*---配置　右---*/
.postdata .alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

/*---配置　左---*/
.postdata .alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

/*---配置　中央---*/
.postdata .aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 20px;
}

.postdata a {
  text-decoration: underline;
  color: #9A76AD;
}

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

/*---リスト　順序あり---*/
.postdata ol li {
  list-style: inside decimal;
}

/*---リスト　順序なし---*/
.postdata ul li {
  list-style: inside square;
}

.postdata ol li, .postdata ul li {
  font-size: 100%;
  padding: 0;
}

/*---テーブル---*/
.postdata table {
  border-left: 1px solid #bfbfbf;
  border-top: 1px solid #bfbfbf;
  border-right: 1px solid #bfbfbf;
}

.postdata table th {
  border-bottom: 1px solid #bfbfbf;
}

.postdata table td {
  border-bottom: 1px solid #bfbfbf;
}

/*---フォント---*/
.postdata em {
  font-style: italic !important;
}

.postdata strong {
  font-weight: 700 !important;
}

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

/*変更詳細データ*/
.postdata h2 {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  font-size: 22px;
  padding: 20px 0;
  margin: 30px 0;
}

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

.postdata a {
  text-decoration: underline;
  color: #9A76AD;
}

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

.postdata strong {
  font-weight: 700;
}

.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 .wp-block-button__link {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  font-family: var(--font_jp);
  font-size: 15px;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.postdata .wp-block-button__link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px 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;
}

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

/* スマホ時に回り込みを解除*/
@media only screen and (max-width: 800px) {
  .postdata .alignright {
    float: none;
    display: block;
    margin: 0 auto 20px;
    text-align: center;
  }

  .postdata .alignleft {
    float: none;
    display: block;
    margin: 0 auto 20px;
    text-align: center;
  }
}
.under-slider01 {
  overflow: hidden;
}
.under-slider01 .splide {
  margin: 0 auto;
}
.under-slider01 .splide__track {
  overflow: visible;
}
.under-slider01 .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: .3;
}
.under-slider01 .splide__slide.is-next, .under-slider01 .splide__slide.is-prev {
  opacity: .25;
}
.under-slider01 .splide__arrows {
  position: absolute !important;
  top: 45%;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  width: 100%;
  max-width: 1024px;
  height: 50px;
  display: grid;
  grid-template-columns: 50px 50px;
  gap: 10px;
  justify-content: space-between;
  z-index: 1;
}
.under-slider01 .splide .splide__arrow {
  background: url("../images/share/btn-arrow-slide.svg");
  background-size: contain;
  background-position: center;
  border: none;
  cursor: pointer;
  color: transparent;
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  transition: 0.5s;
  z-index: 10;
}
.under-slider01 .splide .splide__arrow:hover {
  opacity: .5;
}
.under-slider01 .splide .splide__arrow.splide__arrow--next {
  right: 25px;
  transform: rotate(0deg);
}
.under-slider01 .splide .splide__arrow.splide__arrow--prev {
  left: 25px;
  transform: rotate(180deg);
}
.under-slider01 .item-desc {
  margin-top: 15px;
}
.under-slider01 .item-ttl {
  font-size: 15px;
  margin-bottom: 10px;
}
.under-slider01 .splide__pagination {
  gap: 10px;
  bottom: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.under-slider01 .splide__pagination li button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #ccc;
  opacity: .5;
}
.under-slider01 .splide__pagination li button.is-active {
  background: #59B2AC;
  opacity: 1;
}

.under-slider02 .item-img {
  position: relative;
  text-align: center;
}
.under-slider02 .item-img img {
  margin: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.under-slider02 .splide .splide__arrows {
  position: absolute !important;
  top: 45%;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  width: 100%;
  max-width: 1024px;
  height: 50px;
  display: grid;
  grid-template-columns: 50px 50px;
  gap: 10px;
  justify-content: space-between;
  z-index: 1;
}
.under-slider02 .splide .splide__arrow {
  background: none !important;
  border: none;
  background: transparent;
  cursor: pointer;
  color: transparent;
  display: block;
  position: absolute;
  top: calc(50% - 0px);
  width: 20px;
  height: 20px;
  transition: 0.5s;
  z-index: 10;
}
.under-slider02 .splide .splide__arrow:hover {
  opacity: .5;
}
.under-slider02 .splide .splide__arrow.splide__arrow--next {
  border-top: 6px solid #333;
  border-right: 6px solid #333;
  right: 25px;
  transform: rotate(45deg) translateY(-50%);
}
.under-slider02 .splide .splide__arrow.splide__arrow--prev {
  border-top: 6px solid #333;
  border-left: 6px solid #333;
  left: 25px;
  transform: rotate(-45deg) translateY(-50%);
}
.under-slider02 .splide .splide__arrow--prev svg {
  transform: rotate(180deg);
}
.under-slider02 .splide__pagination {
  gap: 10px;
  bottom: -30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.under-slider02 .splide__pagination li button {
  width: 10px;
  height: 10px;
  border-radius: 100vw;
  background: #ccc;
  opacity: .5;
}
.under-slider02 .splide__pagination li button.is-active {
  background: #26C1CB;
  opacity: 1;
}

@media (max-width: 800px) {
  .under-slider01 .splide__arrows {
    top: 40%;
    left: 50%;
    transform: translateY(50%) translateX(-50%);
    width: 100%;
    max-width: 1024px;
    height: 30px;
    display: grid;
    grid-template-columns: 50px 50px;
    gap: 10px;
    justify-content: space-between;
    z-index: 1;
  }
  .under-slider01 .splide .splide__arrow {
    width: 30px;
    height: 30px;
  }
  .under-slider01 .splide .splide__arrow:hover {
    opacity: .5;
  }
  .under-slider01 .splide .splide__arrow.splide__arrow--next {
    right: 10px;
  }
  .under-slider01 .splide .splide__arrow.splide__arrow--prev {
    left: 10px;
  }

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

  .under-slider02 .item-img {
    position: relative;
    text-align: center;
  }
  .under-slider02 .item-img img {
    margin: auto;
    aspect-ratio: 10/7;
    object-fit: cover;
  }
}
/*------------
gallery-slider01
--------------*/
.gallery-slider01 {
  overflow: hidden;
}
.gallery-slider01 .splide__pagination {
  bottom: 150px;
}
.gallery-slider01 .splide__pagination .splide__pagination__page {
  background: #ccc;
}
.gallery-slider01 .splide__pagination .splide__pagination__page.is-active {
  background: #59B2AC;
}

.gallery-slider01 .splide {
  margin: 0 auto;
}
.gallery-slider01 .splide .splide__arrow svg {
  fill: #59B2AC !important;
}

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

.gallery-slider01 .splide__slide {
  opacity: 0.2;
  transition: opacity 0.5s ease-in-out;
}

.gallery-slider01 .splide__slide.is-active {
  opacity: 1;
}

.gallery-slider01 .splide__arrow--prev {
  top: 300px;
  left: calc((100% - 872px) / 2);
  transform: translateY(-50%) scaleX(1);
}

.gallery-slider01 .splide__arrow--next {
  top: 300px;
  right: calc((100% - 872px) / 2);
}

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

.gallery-slider01 .item-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 5px;
}

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

  .gallery-slider01 .item-ttl {
    line-height: 1.4;
  }

  .gallery-slider01 .splide__pagination {
    bottom: 20%;
  }
}
/*------------
gallery-slider02
--------------*/
.gallery-slider02 .splide__slide {
  display: flex;
  align-content: center;
  text-align: center;
  justify-content: center;
}

.gallery-slider02 .splide__slide img {
  max-height: 650px;
  object-fit: cover;
  object-position: 0 -40px;
  aspect-ratio: 1200/650;
}

.gallery-slider02 .thumb-wrapper {
  display: flex;
  justify-content: center;
  grid-gap: 8px;
  margin-top: 30px;
}

.gallery-slider02 .thumb-item {
  cursor: pointer;
  filter: grayscale(100%);
  transition: 0.3s;
  /*flex時追加*/
  width: 10%;
}

.gallery-slider02 .thumb-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-slider02 .thumb-item.is-active {
  filter: grayscale(0%);
  transform: scale(0.9);
}

.gallery-slider02 .splide .splide__arrow {
  top: auto;
  bottom: 50%;
  transform: translateY(50%);
}

@media (max-width: 800px) {
  .gallery-slider02 .splide__slide img {
    max-height: 300px;
  }

  .gallery-slider02 .thumb-item {
    cursor: pointer;
    filter: grayscale(100%);
    transition: 0.3s;
    /*flex時追加*/
    width: 20%;
  }

  .gallery-slider02 .thumb-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
  }

  .gallery-slider02 .thumb-item.is-active {
    filter: grayscale(0%);
    transform: scale(0.9);
  }

  .gallery-slider02 .splide .splide__arrow.splide__arrow--prev {
    left: 0px;
  }
  .gallery-slider02 .splide .splide__arrow.splide__arrow--next {
    right: 0px;
  }
}
/*-----------------------------------------------------------
下層用splide
-----------------------------------------------------------*/
/*各種色設定*/
:root {
  --splide-arrow-color: #7EC2C2;
  /*矢印*/
  --splide-focus-color: #7EC2C2;
  /*タブ移動によるフォーカス時のアウトライン*/
  --splide-pagination-color: #7EC2C2;
  /*アクティブ時のページネーション*/
  --splide-progress-color: #7EC2C2;
  /*プログレスバー*/
  --splide-toggle-color: #7EC2C2;
  /*再生ボタン*/
  --splide-track-color: #7EC2C2;
  /*サムネイルの枠*/
}

.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 {
  -ms-flex-align: center;
  align-items: center;
  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;
  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 {
  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 {
  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__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.splide__controls .splide__pagination {
  position: static;
}

.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 > .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%;
  transform: translateY(-50%);
  z-index: 1;
  transition: .2s;
}

.splide__arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--splide-arrow-color);
}

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

.splide__arrow:disabled {
  opacity: .3;
}

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

.splide__arrow--prev {
  left: 20px;
  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__pagination {
  bottom: 15px;
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ddd;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 5px;
  opacity: 1;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .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: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: background-color .2s ease;
  height: 29px;
  width: 29px;
}

.splide__toggle:hover {
  background: var(--splide-toggle-color);
}

.splide__toggle svg {
  fill: #fff;
  transition: fill .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 {
  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;
}

@media (max-width: 800px) {
  .splide__arrow {
    width: 25px;
    height: 25px;
  }

  .splide__arrow--prev {
    left: 10px;
  }

  .splide__arrow--next {
    right: 10px;
  }
}
/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  position: relative;
  color: #211815;
  background: #fff;
}
.footer ul + ul {
  margin-top: 0;
}
.footer a {
  color: #211815;
  text-decoration: none;
}
.footer img {
  border-radius: unset;
}
.footer .container {
  position: relative;
  width: 100%;
  max-width: none;
  z-index: 1;
}
.footer .wrapper {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}
.footer .wrapper .inner {
  display: grid;
  grid-template-columns: calc(490 / 1200 * 100%) calc(510 / 1200 * 100%);
  justify-content: space-between;
  position: relative;
  padding: calc(50 / 1200 * 100%) 0 calc(50 / 1200 * 100%);
}
.footer .l-wrap {
  position: relative;
}
.footer .f-logo-link {
  display: block;
  margin-bottom: calc(25 / 496 * 100%);
}
.footer .f-logo-link img {
  width: clamp(240px, calc(490 / 1800 * 100vw), 490px);
  transition: .5s;
}
.footer .footer-ttl {
  font-size: clamp(1.8rem, calc(21 / 1800 * 100vw), 2.1rem);
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}
.footer .address {
  display: block;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: clamp(1.2rem, calc(15 / 1400 * 100vw), 1.5rem);
  line-height: calc(30 / 17 * 1em);
  margin-bottom: 10px;
}
.footer .tel {
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-size: 2.6rem;
  color: #59B2AC;
  margin-bottom: 10px;
}
.footer .tel img {
  width: 26px;
}
.footer .tel span {
  font-family: "Lato", sans-serif;
  line-height: calc(28 / 21 * 1em);
}
.footer .site-map-ttl {
  border-bottom: 1px dotted #59B2AC;
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: #59B2AC;
  font-size: 1.8rem;
  width: 33%;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}
.footer .site-map {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: space-between;
  position: relative;
  row-gap: 15px;
}
.footer .site-map li ul {
  margin: -0.5em 0;
}
.footer .site-map .ttl {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.2rem, calc(15 / 1400 * 100vw), 1.5rem);
  line-height: calc(33 / 15 * 1em);
  font-weight: bold;
  padding-bottom: calc(10 / 15 * 1em);
  margin-top: -0.5em;
}
.footer .site-map .ttl::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #778086;
}
.footer .site-map .has-sub ul li a::before {
  content: "-";
  display: inline-block;
}
.footer .site-map a {
  display: flex;
  align-items: center;
  gap: .5em;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: clamp(1.2rem, calc(15 / 1800 * 100vw), 1.5rem);
  line-height: calc(33 / 15 * 1em);
  color: #211815;
}
.footer .site-map a:hover {
  color: #59B2AC;
  opacity: 1;
}
.footer .site-map a::before {
  content: "▶︎";
  color: #59B2AC;
  font-size: clamp(1rem, calc(12 / 1800 * 100vw), 1.2rem);
}

.f-copy {
  position: relative;
  width: 100%;
  font-size: clamp(1.1rem, calc(14 / 1800 * 100vw), 1.4rem);
  line-height: calc(19 / 14 * 1em);
  color: #59B2AC;
  padding: 0 0 calc(46 / 1200 * 100%);
  margin: auto;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif !important;
}
.f-copy .l-wrap {
  display: block;
  width: 95%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0;
}
.f-copy .l-wrap .inner {
  display: grid;
  justify-items: center;
}

.pagetop {
  position: absolute;
  top: 50px;
  right: clamp(15px, calc(27 / 1800 * 100vw), 27px);
  transform: translateY(-50%);
  z-index: 100;
  font-family: "Lato", sans-serif;
}
.pagetop a {
  position: relative;
  transition: transform .5s;
  z-index: 0;
  writing-mode: vertical-lr;
}
.pagetop a::before {
  content: "●";
  display: inline-block;
  color: #59B2AC;
  margin-bottom: 5px;
}
.pagetop a:hover {
  transform: translateY(-10px);
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .footer {
    padding-bottom: 50px;
  }
  .footer .wrapper {
    width: 95%;
  }
  .footer .wrapper .inner {
    grid-template-columns: 100%;
    gap: 45px;
    padding: 50px 2.5vw 0;
  }
  .footer .f-logo-link {
    margin-bottom: 10px;
    text-align: center;
  }
  .footer .f-logo-link img {
    width: 280px;
  }
  .footer .footer-ttl {
    text-align: center;
  }
  .footer .l-wrap {
    justify-items: center;
    width: 100%;
    padding: 0;
    margin: auto;
  }
  .footer .address {
    text-align: center;
  }
  .footer .tel {
    font-size: 22px;
    margin-bottom: 35px;
    justify-content: center;
  }
  .footer .time-table-wrap {
    grid-row: 3/4;
    grid-column: 1/3;
  }
  .footer .site-map-ttl {
    width: 100%;
  }
  .footer .site-map {
    grid-template-columns: repeat(2, 47%);
    justify-content: space-between;
    row-gap: 20px;
  }
  .footer .site-map .ttl {
    font-size: 13px;
    margin-right: 0;
  }
  .footer .site-map .ttl::before {
    width: 100%;
  }
  .footer .site-map li.has-sub {
    grid-row: 1/3;
    grid-column: 2/3;
    grid-template-columns: repeat(2, max-content);
  }
  .footer .site-map li.has-sub .sub-ttl-en {
    display: grid;
    grid-template-columns: max-content 1fr;
    width: 100%;
    font-size: 17px;
  }
  .footer .site-map li.has-sub .sub-ttl-en::after {
    width: calc(100% - 10px);
    margin-left: 10px;
  }
  .footer .site-map a {
    font-size: 13px;
  }
  .footer .site-map .sub-ttl-en {
    display: grid;
    grid-template-columns: max-content 1fr;
    width: 100%;
    font-size: 17px;
  }
  .footer .site-map .sub-ttl-en::after {
    width: calc(100% - 10px);
    margin-left: 10px;
  }
  .footer .f-copy {
    font-size: 13px;
    text-align: center;
  }
  .footer .f-copy .l-wrap {
    margin: 0 auto;
  }
  .footer .f-copy .l-wrap .inner {
    display: grid;
    justify-content: center;
    padding: 35px 0;
  }
  .footer .f-copy nav {
    font-size: 12px;
    margin-bottom: 1em;
  }
  .footer .pagetop {
    display: none;
  }

  .sp-navi {
    display: block;
  }

  .sp-navi-btns {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    border-top: 0px solid #FFF;
    background: #59B2AC;
    z-index: 10000;
  }
  .sp-navi-btns > * {
    flex: 1;
    position: relative;
  }
  .sp-navi-btns .sp-menu-btn {
    font-family: "Lato", sans-serif;
    font-size: 10px;
    line-height: calc(13 / 10 * 1em);
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }
  .sp-navi-btns .sp-menu-btn:not(.humberger) {
    border-right: 1px solid #FFF;
  }
  .sp-navi-btns .sp-menu-btn a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
    text-decoration: none;
    height: 100%;
    padding: 10px 0 4px;
  }
  .sp-navi-btns .sp-menu-btn a.linkNone {
    pointer-events: none;
    /* クリック無効 */
    cursor: default;
    /* カーソルを通常に */
    color: #333;
    /* 無効っぽい色に */
    background: #999;
  }
  .sp-navi-btns .sp-menu-btn.i_home a {
    padding: 8.3px 0 4px;
  }
  .sp-navi-btns .sp-menu-btn.i_tel a {
    padding: 9.7px 0 4px;
  }
  .sp-navi-btns .sp-menu-btn.i_access a {
    padding: 9.5px 0 1px;
  }
  .sp-navi-btns .ttl {
    display: block;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 10px;
    line-height: calc(13 / 10 * 1em);
    letter-spacing: 0;
    text-align: center;
  }
  .sp-navi-btns .humberger {
    position: relative;
    display: grid;
    justify-items: center;
    padding: 12.5px 0 4px;
    cursor: pointer;
  }
  .sp-navi-btns .humberger .ttl {
    align-self: flex-end;
  }
  .sp-navi-btns .humberger .line-wrap {
    position: relative;
    width: 13px;
    height: 11px;
  }
  .sp-navi-btns .humberger .line-wrap span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: 1px;
    transition: 0.4s;
    background: #FFF;
  }
  .sp-navi-btns .humberger .line-wrap span:nth-of-type(1) {
    top: 0;
  }
  .sp-navi-btns .humberger .line-wrap span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translateY(-50%, -50%);
  }
  .sp-navi-btns .humberger .line-wrap span:nth-of-type(3) {
    bottom: 0;
  }

  .humberger.is-open .line-wrap span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .humberger.is-open .line-wrap span:nth-of-type(2) {
    opacity: 0;
  }
  .humberger.is-open .line-wrap span:nth-of-type(3) {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(45deg);
  }
}
/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
:root {
  --vw: 1vw;
  /*behavior.jsで定義*/
  --s100vw: calc(var(--vw) * 100);
  --s50vw: calc(var(--vw) * 50);
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.is-fixed {
  position: fixed;
}

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

.fade {
  transition: opacity .5s;
}
.fade:hover {
  opacity: .5;
}

.fs11 {
  font-size: 11px;
}

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

.red {
  color: #F44336;
}

.marker {
  background: linear-gradient(transparent 70%, #FFE99F 30%);
}

.notice {
  font-size: .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;
}

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

@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;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
  padding: 0 20px 1px;
  transition: opacity 0.5s;
}
.btn-more:hover,
.btn-icon:hover,
.btn-tel:hover,
.btn-line:hover {
  opacity: 0.5;
}

.btn-more {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  position: relative;
  width: fit-content;
  height: 61px;
  padding: 0;
  color: #211815;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  border-radius: 0;
  background: transparent;
}
.btn-more::before {
  content: "";
  display: block;
  width: 61px;
  height: 61px;
  background: url(../images/share/btn_arrow.svg) no-repeat center/contain;
}

.btn-tel {
  background: #333;
  color: #fff;
}
.btn-tel i {
  font-size: 10px;
  margin-right: 10px;
}

.btn-icon {
  background: #6A9D89;
  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: 10px;
}
.btn-wrap.center {
  justify-content: center;
}

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

  .btn-wrap {
    display: grid;
  }

  .btn-more {
    width: fit-content;
    height: fit-content;
    font-size: 14px;
    margin: auto;
  }
  .btn-more::before {
    width: 30px;
    height: 30px;
  }
}
/*診療カレンダー*/
.business-calendar-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0;
  margin: 0;
  background: transparent;
}
.business-calendar-box > div {
  width: 100%;
  border-radius: 5px;
}

.business-calendar {
  text-align: center;
  border-top: 0 !important;
  border-left: 0 !important;
  width: 100%;
  background: none;
}
.business-calendar caption {
  position: relative;
  height: auto;
  padding: 0 0 10px;
  margin: 0 auto 4px;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.3rem, calc(16 / 1400 * 100vw), 1.6rem);
  line-height: calc(21 / 16 * 1em);
  color: #FFF;
  text-align: center;
  border: 0;
  border-bottom: 1px solid #FFF;
  background: none;
}
.business-calendar caption span {
  display: block;
  align-items: center;
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  color: #FFF;
  line-height: 1;
  font-size: 25px;
  vertical-align: -1px;
}
.business-calendar caption span.business-calendar-past {
  left: 0;
  margin: 0;
  transform: translate(0%, -4px);
}
.business-calendar caption span.business-calendar-future {
  right: 0;
  margin: 0;
  transform: translate(0%, -4px);
}
.business-calendar tr {
  height: 38px;
  border-bottom: 0px solid #DDDDDD;
}
.business-calendar td {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.1rem, calc(14 / 1024 * 100vw), 1.4rem);
  color: #000000;
  padding: 0 0 2em;
  background: none;
  background-clip: padding-box;
  border: 0;
  z-index: 0;
}
.business-calendar td:nth-last-of-type(1) {
  border-right: 0px solid #DDDDDD;
}
.business-calendar thead {
  position: relative;
  border-bottom: 0px solid #DED9D3;
  border: 0;
  background: none;
}
.business-calendar thead tr {
  border-top: 0px solid #DDDDDD;
}
.business-calendar thead th {
  width: 14%;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1rem, calc(12 / 1400 * 100vw), 1.2rem);
  color: #FFf;
  text-align: center;
  padding: 0;
  border: 0;
  background: transparent;
}
.business-calendar thead th:nth-of-type(1) {
  border-radius: 3px 0 0 3px;
}
.business-calendar thead th:nth-last-of-type(1) {
  border-radius: 0 3px 3px 0;
  border-right: 0px solid #DDDDDD;
}
.business-calendar tbody {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.2rem, calc(14 / 1024 * 100vw), 1.4rem);
  line-height: 1em;
  background: #FFF;
}
.business-calendar tbody tr {
  height: 55px;
  border-bottom: 0px solid #DED9D3;
}
.business-calendar tbody tr:nth-last-of-type(1) {
  border-bottom: 0px solid #DDDDDD;
}
.business-calendar tbody td {
  color: #211815;
  border: 1px solid #DDD;
  background: none;
}
.business-calendar tbody td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-47%, 40%);
  z-index: -1;
  opacity: 0;
}

.business-calendar-past a,
.business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 0%;
  white-space: nowrap;
  overflow: visible;
  position: relative;
  width: 30px;
  height: 30px;
}
.business-calendar-past a::before,
.business-calendar-future a::before {
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  background: url(../images/share/calendar_arrow.svg) no-repeat center/contain;
}

.business-calendar-future {
  justify-content: flex-end;
  margin-right: 10px;
}
.business-calendar-future a::before {
  right: 0;
  transform: rotate(180deg);
}

.business-calendar-past {
  margin-left: 10px;
}
.business-calendar-past a::before {
  left: 0;
  transform: rotate(0deg);
}

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

.business-calendar .attr0,
.business-calendar .attr1,
.business-calendar .attr2,
.business-calendar .attr3 {
  color: #000;
  background: none;
}
.business-calendar .attr0::before,
.business-calendar .attr1::before,
.business-calendar .attr2::before,
.business-calendar .attr3::before {
  opacity: 1;
}

.business-calendar .attr0 {
  color: #000;
}
.business-calendar .attr0::before {
  content: "—";
  display: block;
  position: absolute;
  top: 0;
  transform: translate(-50%, 70%);
  width: 24px;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: 24px;
  color: #000;
  background: none;
}

.business-calendar .attr1::before {
  background: #59B2AC;
}

.business-calendar .attr2::before {
  background: #4A9A3F;
}

.business-calendar .attr3::before {
  background: #F09E3B;
}

.list-event {
  display: flex;
}
.list-event li {
  font-size: 15px;
  line-height: 1;
  margin: 0 20px 0 0;
}
.list-event i {
  margin: 0 5px 0 0;
}
.list-event .event01 {
  color: #EF866B;
}
.list-event .event02 {
  color: #F7B46B;
}
.list-event .event03 {
  color: #A8DBA8;
}
.list-event .event04 {
  color: #B0D7D5;
}

.business-calendar-attribute {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 0;
  row-gap: 0;
  margin: 15px 0 0;
  padding: 0;
}
.business-calendar-attribute li {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  padding: 0 1em 0 0;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: clamp(1.1rem, calc(14 / 1024 * 100vw), 1.4rem);
  line-height: calc(19 / 14 * 1em);
  font-weight: bold;
  color: #FFf;
  list-style: none;
  background: none;
}
.business-calendar-attribute li::before {
  content: "●";
  display: block;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  background: none;
}
.business-calendar-attribute li.attr0 {
  background: none;
  color: #FFF;
}
.business-calendar-attribute li.attr0::before {
  content: "—";
  color: #FFF;
}
.business-calendar-attribute li.attr1 {
  background: none;
  color: #FFF;
}
.business-calendar-attribute li.attr1::before {
  color: #FFF;
}
.business-calendar-attribute li.attr2 {
  background: none;
  color: #FFF;
}
.business-calendar-attribute li.attr2::before {
  color: #FFF;
}
.business-calendar-attribute li.attr3 {
  background: none;
  color: #FFf;
}
.business-calendar-attribute li.attr3::before {
  color: #FFf;
}

.calender-wrap .txt.btm {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.1rem, calc(14 / 1024 * 100vw), 1.4rem);
  line-height: calc(24 / 14 * 1em);
}
.calender-wrap .txt.btm a {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .business-calendar-box {
    display: block;
    margin: 0;
    padding: 0;
  }
  .business-calendar-box > div {
    padding: 0;
  }
  .business-calendar-box > div + div {
    margin-top: 15px;
  }
  .business-calendar-box .list-event {
    display: block;
  }
  .business-calendar-box .list-event li + li {
    margin-top: 5px;
  }

  .business-calendar {
    margin-bottom: 0;
  }
  .business-calendar caption {
    font-size: 16px;
  }
  .business-calendar thead th {
    font-size: 13px;
  }
  .business-calendar tbody td {
    font-size: 13px;
  }
  .business-calendar tbody td::before {
    transform: translate(-50%, -12%);
  }

  .business-calendar-attribute {
    font-size: 13px;
    margin: 15px 0 0;
  }
}
/*インフォメーション*/
.dl-style01 {
  display: grid;
  grid-gap: 5px;
  margin-bottom: 30px;
}
.dl-style01 p {
  font-size: 1.4rem;
}
.dl-style01 .item {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-gap: 10px;
}
.dl-style01 dt {
  background: #59B2AC;
  color: #fff;
  padding: 2px;
  border-radius: 3px;
  text-align: center;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  line-height: 1.25;
}
.dl-style01 dd {
  background: #fff;
  font-size: 1.4rem;
  padding: 2px;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  line-height: 1.25;
}

/*診療時間*/
.time-table {
  border-radius: 10px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #59B2AC;
  overflow: hidden;
}
.time-table tr + tr {
  border-top: 1px solid #EDE6F2;
}
.time-table th,
.time-table td {
  text-align: center;
  padding: 10px;
  color: #211815;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}
.time-table th {
  background-color: #59B2AC;
  color: #fff;
}
.time-table th:first-child {
  width: 30%;
}
.time-table td {
  background-color: #fff;
}
.time-table + p {
  font-size: 14px;
}
.time-table + p span {
  color: #59B2AC;
}

@media (max-width: 800px) {
  .time-table th,
  .time-table td {
    padding: 5px;
    font-size: 1.2rem;
  }
  .time-table + p {
    font-size: 1.2rem;
  }
}
/*-----------------------------------------------------------
Inview
-----------------------------------------------------------*/
.inview {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.75s ease-out;
}

.inview_on {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 800px) {
  .inview {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.75s ease-out;
  }

  .inview_on {
    transform: translateY(0);
    opacity: 1;
  }
}
/*------------
Splide
--------------*/
.splide .splide__arrow--prev svg {
  transform: rotate(180deg);
}
.splide .splide__arrow svg {
  fill: #59B2AC !important;
}
.splide .splide__arrow--prev::after,
.splide .splide__arrow--next::after {
  content: none !important;
}

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

/*# sourceMappingURL=style.css.map */
