@charset "UTF-8";

:root {
  --color_bg: #fff;
  --color_text: #45290E;
  --color_link: #2CAB30;
  --color_border: #E9F5E9;
  --color_primary: #2CAB30;
  --color_secondary: #F98728;
  --color_tertiary: #E9F5E9;
  --font_base: "FOT-筑紫A丸ゴシック Std R", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B", sans-serif;
  --font_en: "FOT-筑紫A丸ゴシック Std B", sans-serif;
  --easing: cubic-bezier(.12, 1, .5, 1);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  tab-size: 2;
}

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

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

:where(button) {
  all: unset;
}

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

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

textarea {
  resize: block;
}

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

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

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

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

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

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

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

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

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

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

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}

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

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

::selection {
  background: #d4dcd6;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
body {
  display: flex;
  flex-direction: column;
  font-family: var(--font_base);
  color: var(--color_text);
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

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

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

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

.link {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}

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

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

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

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

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

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

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

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

.container.wide02 {
  max-width: 1300px;
}

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: fixed;
  width: 100%;
  height: 90px;
  background-color: #fff;
  padding: 10px 20px 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

@media (max-width: 800px) {
  .header {
    padding: 10px;
    height: 82px;
  }

  .h-logo {
    width: 293px;
    margin: 0 auto;
  }
}

/*------------
Gnavi
--------------*/
/*normal*/
.gnavi-list {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  font-family: var(--font_jp);
  font-size: 1.5rem;
}

.gnavi-list>li>a {
  display: inline-block;
}

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

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

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

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

.dropdown>a:hover {
  opacity: 0.5;
}

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

.dropdown .sub-menu {
  display: grid;
  grid-gap: 5px;
  pointer-events: none;
  background-color: var(--color_tertiary);
  border-radius: 0 0 10px 10px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 20px 30px;
  position: absolute;
  top: 30px;
  right: 50%;
  width: max-content;
  min-width: 279px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

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

.dropdown .sub-menu li {
  list-style: disc;
  margin-left: 20px;
  letter-spacing: 0.07em;
}

.dropdown .sub-menu li::marker {
  color: var(--color_primary);
  font-size: 1.5rem;
}

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

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

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

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

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

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

.gnavi-drawer-links {
  display: grid;
  grid-gap: 30px;
}

.gnavi-drawer-links>li {
  font-size: 16px;
}

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

.gnavi-drawer-links>li>a:hover {
  text-decoration: none;
}

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

.gnavi-drawer-links .sub-menu>li>a:hover {
  text-decoration: underline;
}

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

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

.hero::before {
  content: "";
  background: url(../images/hero_bg.jpg) no-repeat center/cover;
  inset: 380px 0 0 max(2.5%, 50% - 700px);
  position: absolute;
  border-radius: 0 0 0 50px;
  z-index: -1;
}

.hero .wrapper {
  max-width: 95%;
  position: relative;
}

.hero .splide {
  text-align: right;
}

.hero .splide .splide__pagination__page {
  display: block;
}

.hero .splide .splide__slide img {
  border-radius: 0 0 50px 0;
  object-fit: cover;
}

.hero .splide .splide__pagination__page {
  display: block;
}

.hero .txt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px;
  writing-mode: vertical-lr;
  color: var(--color_secondary);
  right: -30px;
  bottom: 0;
  position: absolute;
}

.hero .txt::before {
  background: var(--color_secondary);
  content: "";
  display: block;
  height: 100px;
  width: 1px;
}

@media (max-width: 1400px) {
  .hero .txt {
    right: -50px;
  }
}

@media (max-width: 800px) {
  .hero {
    padding: 82px 0 52px;
  }

  .hero::before {
    inset: 200px 0 0 9%;
    border-radius: 0 0 0 20px;
  }

  .hero .wrapper {
    width: 92%;
  }

  .hero .splide .splide__controls {
    display: none;
  }

  .hero .splide .splide__slide img {
    border-radius: 0 0 20px 0;
  }

  .hero .txt {
    display: none;
  }
}

.hero-catch {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  position: absolute;
  top: 155px;
  right: 195px;
  white-space: nowrap;
  z-index: 5;
}

.hero-catch .ttl {
  font-size: 4.6rem;
  font-family: var(--font_jp);
  letter-spacing: 0.19em;
}

.hero-catch .ttl span {
  background-color: #fff;
  padding: 18px 10px;
  border-radius: 10px;
}

.hero-catch .ttl+.ttl {
  margin-right: 30px;
  transform: translateY(165px);
}

@media (max-width: 1200px) {
  .hero-catch .ttl+.ttl {
    margin-right: 16px;
  }
}

@media (max-width: 1400px) {
  .hero-catch {
    top: 80px;
    right: 100px;
  }

  .hero-catch .ttl {
    font-size: 4rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 1200px) {
  .hero-catch {
    top: 50px;
  }

  .hero-catch .ttl {
    font-size: 4.2rem;
    letter-spacing: 0.05em;
  }

  .hero-catch .ttl span {
    padding: 13px 8px;
  }
}

@media (max-width: 800px) {
  .hero-catch {
    writing-mode: horizontal-tb;
    top: auto;
    bottom: -20px;
    left: 5vw;
    right: 5vw;
  }

  .hero-catch .ttl {
    font-size: 2.5rem;
  }

  .hero-catch .ttl+.ttl {
    transform: translateX(75px);
    margin-top: 10px;
  }

  .hero-catch .ttl span {
    border-radius: 5px;
    padding: 5px 10px;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 60px;
  padding-top: 50px;
  background: url(../images/share/ttl_deco_01.png) no-repeat center top/76px auto;
}

@media (max-width: 800px) {
  .t-ttl {
    font-size: 3rem;
    margin-bottom: 30px;
    padding-top: 58px;
    line-height: 1.4;
  }
}

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

.sec02 {
  padding: 70px 0 60px;
}

.sec02 .t-ttl {
  margin-bottom: 65px;
}

.sec03 {
  padding: 50px 0 75px;
}

.sec04 {
  padding: 120px 0 110px;
  content: "";
  background: url(../images/sec04_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}

.sec05 {
  padding: 120px 0 0;
  position: relative;
}

.sec05::before {
  content: "";
  background: url(../images/sec05_bg.jpg) no-repeat center/cover;
  position: absolute;
  inset: 0 max(2.5%, 50% - 700px) 0 0;
  border-radius: 0 50px 50px 0;
  z-index: -1;
  top: 350px;
}

.sec06 {
  padding: 125px 0 120px;
}

.sec06 .t-ttl {
  margin-bottom: 50px;
}

@media (max-width: 800px) {

  .sec01,
  .sec03,
  .sec04,
  .sec05,
  .sec06 {
    padding: 50px 0;
  }

  .sec02 {
    padding: 50px 0;
  }

  .sec02 .t-ttl {
    margin-bottom: 30px;
  }

  .sec05::before {
    top: 200px;
  }

  .sec06 .t-ttl {
    margin-bottom: 30px;
  }
}

/*------------
sec01
--------------*/
.top-layout-sec01 {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0 40px;
  max-width: 1380px;
  width: 90%;
  margin: 0 auto 0 max(5%, 50% - 600px);
}

.top-layout-sec01 .l-img {
  width: 64.2%;
  text-align: center;
}

.top-layout-sec01 .l-desc {
  flex: 1;
}

.top-layout-sec01 .l-ttl {
  font-size: 3rem;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 20px;
  background: url(../images/ttl_deco_02.png) no-repeat left bottom/88px auto;
}

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

@media only screen and (max-width: 800px) {
  .top-layout-sec01 {
    display: block;
    margin: 0 auto;
  }

  .top-layout-sec01 .l-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .top-layout-sec01 .l-ttl {
    font-size: 2.3rem;
    line-height: 1.4;
    margin-bottom: 25px;
    padding-bottom: 25px;
    background-size: 71px auto;
  }

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

/*------------
sec02
--------------*/
.top-layout-sec02 {
  position: relative;
  padding: 87px 0 100px;
}

.top-layout-sec02::before {
  content: "";
  background: url(../images/sec02_bg.jpg) no-repeat center/cover;
  position: absolute;
  inset: 0 max(2.5%, 50% - 700px) 0 0;
  border-radius: 0 50px 50px 0;
  z-index: -1;
}

.top-layout-sec02 .l-ttl {
  text-align: center;
  font-size: 3rem;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 20px;
  background: url(../images/ttl_deco_02.png) no-repeat center bottom/88px auto;
}

.top-layout-sec02 .txt {
  text-align: center;
  margin-bottom: 50px;
  line-height: 2;
}

.top-layout-sec02 .top-card {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 60px;
  text-align: center;
  font-family: var(--font_jp);
}

.top-layout-sec02 .top-card .image-deco {
  margin-bottom: 20px;
}

.top-layout-sec02 .top-card .card-ttl {
  font-size: 2.5rem;
  margin-bottom: 15px;
  letter-spacing: 0.2em;
}

.top-layout-sec02 .top-card .card-txt {
  margin-bottom: 22px;
}

.top-layout-sec02.block01::after {
  background: url(../images/sec02_deco01.png) no-repeat center/contain;
  aspect-ratio: 159/253;
  width: 12%;
  content: "";
  display: block;
  height: auto;
  position: absolute;
  right: 140px;
  bottom: -12px;
  z-index: 3;
}

.top-layout-sec02.block02::before {
  inset: 0 0 0 max(2.5%, 50% - 700px);
  border-radius: 50px 0 0 50px;
}

.top-layout-sec02.block02::after {
  background: url(../images/sec02_deco02.png) no-repeat center/contain;
  aspect-ratio: 173/269;
  width: 10%;
  content: "";
  display: block;
  height: auto;
  position: absolute;
  left: 115px;
  bottom: 38px;
  z-index: 3;
}

.top-layout-sec02.block03::after {
  background: url(../images/sec02_deco03.png) no-repeat center/contain;
  aspect-ratio: 217/294;
  width: 12%;
  content: "";
  display: block;
  height: auto;
  position: absolute;
  right: 140px;
  bottom: -12px;
  z-index: 3;
}

.top-layout-sec02.block04::before {
  inset: 0 0 0 max(2.5%, 50% - 700px);
  border-radius: 50px 0 0 50px;
}

.top-layout-sec02.block04::after {
  background: url(../images/sec02_deco04.png) no-repeat center/contain;
  aspect-ratio: 111/307;
  width: 6.5%;
  content: "";
  display: block;
  height: auto;
  position: absolute;
  left: 165px;
  bottom: 35px;
  z-index: 3;
}

.top-layout-sec02+.top-layout-sec02 {
  margin-top: 80px;
}

@media (max-width: 1500px) {
  .top-layout-sec02.block01::after {
    width: 10%;
    right: 70px;
    bottom: 0;
  }

  .top-layout-sec02.block02::after {
    width: 8%;
    left: 45px;
    bottom: 0;
  }

  .top-layout-sec02.block03::after {
    width: 10%;
    right: 70px;
    bottom: 0;
  }

  .top-layout-sec02.block04::after {
    width: 5%;
    left: 65px;
    bottom: 0;
  }
}

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

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

  .top-layout-sec02 .txt {
    text-align: left;
  }

  .top-layout-sec02::before {
    border-radius: 0 20px 20px 0;
  }

  .top-layout-sec02 .top-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .top-layout-sec02 .top-card .card-ttl {
    margin-bottom: 10px;
  }

  .top-layout-sec02 .top-card .card-txt {
    margin-bottom: 10px;
  }

  .top-layout-sec02 .top-card .card-img {
    margin-bottom: 5px;
  }

  .top-layout-sec02.block01::after {
    width: 17%;
    right: 20px;
  }

  .top-layout-sec02.block02::after {
    width: 17%;
    left: 30px;
  }

  .top-layout-sec02.block03::after {
    width: 18%;
    right: 25px;
  }

  .top-layout-sec02.block04::after {
    width: 11.5%;
    left: 35px;
  }

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

/*------------
sec03
--------------*/
.top-layout-sec03 {
  display: flex;
  align-items: center;
  gap: 0 40px;
  max-width: 1380px;
  width: 90%;
  margin: 0 max(5%, 50% - 600px) 0 auto;
}

.top-layout-sec03 .l-img {
  width: 62.3%;
  text-align: center;
}

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

.top-layout-sec03 .l-ttl {
  font-size: 3rem;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 30px;
  background: url(../images/ttl_deco_02.png) no-repeat left bottom/88px auto;
}

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

@media only screen and (max-width: 800px) {
  .top-layout-sec03 {
    display: block;
    margin: 0 auto;
  }

  .top-layout-sec03 .l-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .top-layout-sec03 .l-ttl {
    font-size: 2.3rem;
    line-height: 1.4;
    margin-bottom: 25px;
    padding-bottom: 25px;
    background-size: 71px auto;
  }

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

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

.top-post-layout01 .t-ttl {
  text-align: left;
  background: url(../images/ttl_deco_01.png) no-repeat left top/76px auto;
  letter-spacing: 0.2em;
}

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

.top-post-layout01 .btn-more {
  min-width: 192px;
}

.list-top-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 38px;
}

.list-top-blog .list-img {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.list-top-blog .list-img img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 263 / 333;
  height: auto;
  transition: transform 0.5s;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

/*------------
sec05
--------------*/
.top-layout-sec05 {
  display: flex;
  align-items: center;
}

.top-layout-sec05.reverse {
  flex-direction: row-reverse;
}

.top-layout-sec05.reverse .l-img {
  margin: 0 0 0 17%;
}

.top-layout-sec05.reverse .l-desc .t-ttl {
  text-align: left;
  background: url(../images/ttl_deco_01.png) no-repeat left top/76px auto;
  letter-spacing: 0.1em;
}

.top-layout-sec05.reverse .l-desc .l-ttl {
  font-size: 3rem;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 20px;
  background: url(../images/ttl_deco_02.png) no-repeat left bottom/88px auto;
}

.top-layout-sec05.reverse .l-desc .txt {
  line-height: 2;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1500px) {
  .top-layout-sec05.reverse .l-img {
    margin: 0 0 0 10%;
  }
}

@media only screen and (max-width: 800px) {
  .top-layout-sec05 {
    display: block;
  }

  .top-layout-sec05.reverse {
    min-height: 555px;
  }

  .top-layout-sec05.reverse .l-img {
    margin: 0 0 30px 50%;
    top: 0;
    position: absolute;
  }

  .top-layout-sec05.reverse .l-desc {
    position: relative;
    top: 30px;
  }

  .top-layout-sec05.reverse .l-desc .l-ttl {
    font-size: 2.5rem;
    line-height: 1.6;
  }

  .top-layout-sec05.reverse .l-desc .l-ttl::before {
    top: 95px;
  }
}

/*------------
sec06
--------------*/
.top-layout-sec06 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4%;
}

.top-layout-sec06 .l-ttl {
  text-align: center;
  font-size: 3rem;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 20px;
  background: url(../images/ttl_deco_02.png) no-repeat center bottom/88px auto;
}

.top-layout-sec06 .list-top-news {
  border-top: 2px solid var(--color_primary);
  max-width: 490px;
  margin-bottom: 30px;
}

.top-layout-sec06 .list-top-news a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 1px solid var(--color_border);
  padding: 22px 0;
}

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

.top-layout-sec06 .list-top-news .post-item .post-data {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.top-layout-sec06 .list-top-news .post-item .post-data time {
  display: inline-block;
  color: var(--color_primary);
  font-size: 1.3rem;
  margin-right: 10px;
}

.top-layout-sec06 .list-top-news .post-item .post-data .category {
  display: inline-block;
  color: var(--color_secondary);
  font-size: 1.3rem;
  margin-right: 10px;
}

.top-layout-sec06 .list-top-news .post-item .ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-layout-sec06 .list-top-news .no-post {
  padding: 18px 0;
  border-bottom: 1px solid #fff;
}

@media (max-width: 800px) {
  .top-layout-sec06 {
    display: block;
    min-height: 0;
  }

  .top-layout-sec06 .item+.item {
    margin-top: 30px;
  }

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

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

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

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

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  padding: 90px 0 120px;
  overflow: hidden;
  position: relative;
}

.page-ttl::before {
  content: "";
  background: url(../images/under/page-ttl_bg.jpg) no-repeat center/cover;
  inset: 210px 0 0 max(2.5%, 50% - 700px);
  position: absolute;
  border-radius: 0 0 0 50px;
  z-index: -1;
}

.page-ttl .wrapper {
  max-width: 95%;
  position: relative;
}

.page-ttl img {
  border-radius: 0 0 50px 0;
  object-fit: cover;
	width: 100%;
}

.page-ttl .u-page-ttl {
  font-size: 4.6rem;
  line-height: 1.4;
  font-family: var(--font_jp);
  position: absolute;
  top: 50%;
  left: 5%;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

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

.breadcrumb ul li {
  display: inline;
}

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

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

@media (max-width: 800px) {
  .page-ttl {
    padding: 82px 0 52px;
  }

  .page-ttl::before {
    inset: 150px 0 0 9%;
    border-radius: 0 0 0 20px;
  }

  .page-ttl img {
    border-radius: 0 0 20px 0;
	  height: 230px;
  }

  .page-ttl .u-page-ttl {
    font-size: 3rem;
    top: 90px;
    left: 8vw;
  }

  .breadcrumb {
    margin-bottom: 15px;
  }
}

.u-h2 {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 60px;
  padding-top: 50px;
  background: url(../images/share/ttl_deco_01.png) no-repeat center top/76px auto;
}

.u-h3 {
  font-size: 3rem;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--color_primary);
  padding-bottom: 5px;
}

.u-h4 {
  font-size: 2.5rem;
  padding-left: 20px;
  margin-bottom: 15px;
  position: relative;
}

.u-h4::before {
  content: "";
  background: var(--color_secondary);
  width: 5px;
  height: 60%;
  max-height: 27px;
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 15px;
}

.u-h5 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--color_primary);
}

@media (max-width: 800px) {
  .u-h2 {
    font-size: 2.7rem;
    margin-bottom: 30px;
    padding-top: 58px;
    line-height: 1.4;
  }

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

  .u-h4 {
    font-size: 1.8rem;
  }

  .u-h5 {
    font-size: 1.6rem;
  }
}

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

.tall:first-of-type {
  padding-top: 100px;
}

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

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

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

.hidden {
  overflow: hidden;
}

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

  .tall:first-of-type {
    padding-top: 60px;
  }

  .tall:last-of-type {
    padding-bottom: 50px;
  }

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

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

.list-disc>li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
}

.list-disc>li::marker {
  color: var(--color_primary);
  font-size: 1.5rem;
}

.list-disc>li.white {
  color: #fff;
}

.list-disc>li.white::marker {
  color: #fff;
}

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

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

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

.list-check li::before {
  content: "";
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
  transform: rotate(-45deg);
  position: absolute;
  top: 10px;
  left: 0;
}

.list-check li.white::before {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

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

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

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

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

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

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

.dl-style01 dd {
  background: var(--color_tertiary);
  padding: 20px;
  border-radius: 0 20px 20px 0;
}

.dl-style02 {
  display: grid;
  grid-template-columns: 20% 78%;
  grid-gap: 10px;
}

.dl-style02 dt {
  font-family: var(--font_base);
}

@media (max-width: 800px) {

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

  .dl-style01 .item {
    grid-template-columns: 1fr;
  }

  .dl-style01 dt {
    border-radius: 10px 10px 0 0;
  }

  .dl-style01 dd {
    border-radius: 0 0 10px 10px;
  }

  .dl-style02 {
    grid-template-columns: 1fr;
    grid-gap: 3px;
  }
}

.card-style {
  display: grid;
  grid-gap: 25px;
}

.card-style>li {
  background-color: var(--color_tertiary);
  padding: 6%;
  border-radius: 20px;
}

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

.card-style .card-img img {
  border-radius: 20px;
}

.card-style .card-ttl {
  margin-bottom: 15px;
}

.other-style {
  display: grid;
  grid-gap: 40px;
}

.other-style .card-img img {
  border-radius: 20px;
}

.list-price li .intro {
  border-bottom: 1px dotted #CCCCCC;
  display: flex;
  justify-content: space-between;
  font-family: var(--font_jp);
  font-size: 1.8rem;
  padding: 0 0 5px;
}

.list-price li .desc {
  color: #747474;
  font-size: 1.3rem;
  padding: 5px 0 0;
}

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

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

.table-style01 {
  border-top: 1px solid #CCCCCC;
}

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

.table-style01 th {
  background-color: var(--color_tertiary);
  text-align: left;
}

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

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

.table-style02 .bg01 {
  background-color: var(--color_tertiary);
  color: var(--color_text);
}

.table-style03 {
  position: relative;
}

.table-style03::before {
  content: "";
  background: url(../images/under/table_bg.png) no-repeat center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 20px;
  left: 15px;
  z-index: 1;
  border-radius: 10px;
}

.table-style03 colgroup {
  display: none;
}

.table-style03 th,
.table-style03 td {
  border: 2px solid var(--color_primary);
  display: block;
  position: relative;
  z-index: 2;
}

.table-style03 th {
  background-color: var(--color_primary);
  color: #fff;
  text-align: left;
  border-radius: 10px 10px 0 0;
  font-size: 2rem;
  font-family: var(--font_jp);
  padding: 15px 30px;
}

.table-style03 td {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 30px;
}

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

@media (max-width: 800px) {
  .table-style01 colgroup {
    display: none;
  }

  .table-style01 th,
  .table-style01 td {
    display: block;
    padding: 10px;
  }

  .table-style01 th {
    border-bottom: none;
  }

  .table-style03 th {
    padding: 15px 20px;
  }

  .table-style03 td {
    padding: 20px 20px 30px;
  }

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

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

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

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

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

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

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

.box-style01 {
  background: url(../images/under/box-style01_bg.jpg) no-repeat center/cover;
  padding: 4.5% 13%;
  border-radius: 50px;
}

.box-style01 .box-ttl {
  font-size: 3rem;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 20px;
  background: url(../images/ttl_deco_02.png) no-repeat center bottom/88px auto;
}

.box-style01 .list-num {
  counter-reset: number;
  display: grid;
  grid-gap: 40px;
}

.box-style01 .list-num>li {
  padding-left: 50px;
  position: relative;
  display: flex;
  align-items: center;
}

.box-style01 .list-num .num {
  background-color: var(--color_secondary);
  border-radius: 25px;
  color: #fff;
  font-size: 2.1rem;
  font-family: var(--font_jp);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  text-align: center;
  padding-left: 2px;
  line-height: 36px;
  width: 36px;
  height: 36px;
}

.box-style01 .list-num li::before {
  display: none;
}

.box-style02 {
  background-color: var(--color_primary);
  padding: 5% 6%;
  border-radius: 10px;
  color: #fff;
}

.box-style02 .box-ttl {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 25px;
}

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

.box-style02 .list-disc>li::before {
  content: "";
  background: #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
}

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

.box-style03 {
  background-color: var(--color_tertiary);
  padding: 5% 6%;
  border-radius: 20px;
}

.box-style03 .box-ttl {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 25px;
}

.box-style04 {
  background-color: #fff;
  border: 2px solid var(--color_primary);
  padding: 5% 6%;
  border-radius: 50px;
}

.box-style04 .box-ttl {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 25px;
}

.tel-layout {
  background: var(--color_tertiary);
  max-width: 800px;
  padding: 4%;
  margin: 0 auto;
  border-radius: 50px;
}

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

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

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

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

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

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

  .box-style01 .box-ttl {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }

  .box-style01 .list-num {
    grid-gap: 25px;
  }

  .box-style01 .list-num>li {
    padding-left: 42px;
  }

  .box-style01 .list-num .num {
    font-size: 1.8rem;
    line-height: 30px;
    width: 30px;
    height: 30px;
  }

  .box-style02 {
    padding: 20px;
    border-radius: 20px;
  }

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

  .box-style03 {
    padding: 20px;
  }

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

  .box-style04 {
    padding: 20px;
    border-radius: 20px;
  }

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

  .tel-layout {
    padding: 20px;
    border-radius: 20px;
  }

  .tel-layout .l-ttl {
    font-size: 1.6rem;
    margin: 0 auto 15px;
  }

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

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

.list-anchor-link {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font_jp);
}

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

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

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

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

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

.faq-style {
  border-bottom: 1px solid #E5DED5;
}

.faq-style .item {
  border-top: 1px solid #E5DED5;
}

.faq-style .item>dt:hover .faq-icon {
  background-color: var(--color_primary);
  color: #fff;
}

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

.faq-style dt .faq-icon {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-style: normal;
}

.faq-style dd {
  display: none;
  padding: 0 50px 30px;
  position: relative;
}

.faq-style dd .faq-icon {
  background-color: var(--color_secondary);
  color: #fff;
  top: 0;
  left: 0;
  font-style: normal;
}

.faq-style .faq-ttl {
  font-weight: bold;
}

.faq-style .faq-icon {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  color: var(--color_text);
  font-size: 15px;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  transition: 0.3s;
}

.faq-style .faq-open-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.faq-style .faq-open-icon::before,
.faq-style .faq-open-icon::after {
  content: "";
  display: block;
  background: #593A2E;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before {
  width: 16px;
  height: 2px;
  transform: translateX(-50%);
}

.faq-style .faq-open-icon::after {
  width: 16px;
  height: 2px;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left;
  transition: transform 0.5s;
}

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

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

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

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

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

  .faq-style .faq-open-icon {
    width: 9px;
  }
}

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

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

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

.under-slider01 .splide__slide img {
  border-radius: 50px;
}

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

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

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

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

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

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

.under-slider .splide__slide img {
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.under-slider .thumb-wrapper {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 8px;
  margin-top: 30px;
}

.under-slider .thumb-item {
  cursor: pointer;
  filter: grayscale(100%);
  transition: 0.3s;
}

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

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

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

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

  .under-slider01 .splide__slide img {
    border-radius: 20px;
  }

  .under-slider .splide__slide img {
    max-height: 300px;
  }

  .under-slider .thumb-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }

  .under-slider .thumb-item {
    cursor: pointer;
    filter: grayscale(100%);
    transition: 0.3s;
  }

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

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

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

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

video.mp4 {
  display: inline-block;
}

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

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

/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

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

.l-imgR .l-img img,
.l-imgL .l-img img {
  border-radius: 20px;
  margin: 0 auto;
}

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

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

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

.l-imgR .l-desc .box-style01,
.l-imgL .l-desc .box-style01 {
  border-radius: 20px;
}

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

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

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

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

.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-style01-wrap {
  position: relative;
  padding: 0 5% 100px max(5%, 50% - 512px);
}

.l-style01-wrap::before {
  content: "";
  background: url(../images/under/l-style01_bg.jpg) no-repeat center/cover;
  position: absolute;
  inset: 24% max(15%, 50% - 512px) 0 0;
  border-radius: 0 50px 50px 0;
  z-index: -1;
}

.l-style01-wrap:has(.l-style01.reverse) {
  padding: 0 max(5%, 50% - 512px) 100px 5%;
}

.l-style01-wrap:has(.l-style01.reverse)::before {
  inset: 24% 0 0 max(15%, 50% - 512px);
  border-radius: 50px 0 0 50px;
}

.l-style01 {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  align-items: center;
  gap: 0 3.33%;
  z-index: 0;
  max-width: 1350px;
}

.l-style01 .l-img {
  width: 49.4%;
  position: relative;
}

.l-style01 .l-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #88CE89;
  border-radius: 20px;
  transform: rotate(3deg);
  z-index: -1;
}

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

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

.l-style01 .l-ttl {
  font-size: 4rem;
  margin-bottom: 20px;
  padding-top: 50px;
  background: url(../images/share/ttl_deco_01.png) no-repeat left top/76px auto;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.l-style01 .sub-ttl {
  font-family: var(--font_jp);
  letter-spacing: 0.15em;
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.l-style01 .sub-ttl::before {
  content: "";
  background: var(--color_secondary);
  width: 20px;
  height: 4px;
  margin-right: 15px;
  flex: 0 0 20px;
  border-radius: 2px;
}

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

.l-style01.reverse .l-img::before {
  transform: rotate(-3deg);
}

.l-style02 {
  display: flex;
  align-items: flex-start;
}

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

.l-style02 .l-img img {
  border-radius: 20px;
}

.l-style02 .l-desc {
  background: var(--color_tertiary);
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  text-align: justify;
  flex: 1;
  border-radius: 20px;
}

.l-style02 .l-ttl {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 20px;
  padding-bottom: 0;
  background: none;
}

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

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

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

.l-style02.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
  border-radius: 20px;
}

.l-style02.reverse .l-ttl {
  background: none;
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

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

  .l-imgR .image-deco,
  .l-imgL .image-deco {
    width: 90%;
    text-align: center;
    margin: 10px auto;
  }

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

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

  .l-style01-wrap,
  .l-style01-wrap:has(.l-style01.reverse) {
    padding: 0 5% 50px;
  }

  .l-style01-wrap::before,
  .l-style01-wrap:has(.l-style01.reverse)::before {
    inset: 100px 0 0 0;
    border-radius: 0;
  }

  .l-style01,
  .l-style01.reverse {
    display: block;
  }

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

  .l-style01 .l-ttl {
    font-size: 2.7rem;
    margin-bottom: 25px;
    padding-top: 60px;
  }

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

  .l-style02 {
    display: block;
  }

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

  .l-style02 .l-img img {
    border-radius: 0;
  }

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

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

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

  .l-style02 .l-sub-ttl::before {
    content: "";
    width: 20px;
    height: 2px;
    margin-right: 20px;
  }

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

/*------------
フロー
--------------*/
.flow-style {
  display: grid;
  gap: 40px;
}

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

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

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

.flow-style .flow-num {
  font-size: 30px;
  color: var(--color_primary);
  font-family: var(--font_jp);
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

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

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

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

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

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

.flow-style .flow-ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.flow-style .flow-tel {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  margin: 0 auto;
  white-space: nowrap;
  font-family: var(--font_jp);
  color: var(--color_primary);
}

.flow-style .flow-tel img {
  margin-right: 10px;
}

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

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

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

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

  .flow-style .flow-num {
    font-size: 25px;
  }

  .flow-style .flow-num::before {
    font-size: 12px;
    margin-bottom: 5px;
  }

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

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

  .flow-style .flow-ttl {
    margin-bottom: 10px;
  }

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

  .flow-style .flow-tel {
    font-size: 2rem;
  }
}

/*------------
モーダル
--------------*/
.fancyArea {
  display: grid;
  grid-gap: 25px;
}

.fancyArea a {
  cursor: pointer;
  display: block;
  position: relative;
  transition: opacity 0.5s;
}

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

.fancyArea a img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (hover: hover) {
  .fancyArea a:is(:hover, :focus) {
    opacity: 0.5;
  }
}

@media (max-width: 800px) {
  .fancyArea.col3 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}

/*------------
個人情報保護方針
--------------*/
.privacy-ttl {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}

.dl-privacy {
  margin-top: 5rem;
}

.dl-privacy dt {
  border-top: 2px solid var(--color_primary);
  font-size: 2rem;
  padding-top: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.dl-privacy dt::before {
  content: "";
  background-color: var(--color_red);
  width: 10px;
  height: 4px;
  position: absolute;
  top: -4px;
}

.dl-privacy dd {
  font-size: 1.5rem;
}

.dl-privacy dd+dt {
  margin-top: 4rem;
}

.list-privacy {
  display: grid;
  grid-gap: 2px;
  margin-top: 1.5rem;
}

.list-privacy li {
  position: relative;
  padding-left: 1.5rem;
}

.list-privacy li::before {
  content: "";
  background: var(--color_primary);
  border-radius: 100vmax;
  display: block;
  position: absolute;
  left: 0;
  top: 1.3rem;
  width: 0.5rem;
  height: 0.5rem;
}

/*------------
Add
--------------*/
/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  margin-top: auto;
  position: relative;
  background: var(--color_tertiary);
}

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

.footer .address {
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer .f-bnr {
  display: flex;
  gap: 20px;
}

@media (max-width: 800px) {
  .footer .f-bnr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}

.footer .f-layout {
  padding: 50px 0 60px;
}

.footer .f-layout .l-wrapper {
  display: grid;
  grid-template-columns: 36% 1fr;
  grid-gap: 9%;
}

@media (max-width: 1024px) {
  .footer .f-layout .l-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 800px) {
  .footer .f-layout .l-wrapper {
    margin-bottom: 0;
  }
}

.footer .f-layout .address {
  display: flex;
  gap: 17px;
  align-items: center;
  letter-spacing: 0.05em;
  line-height: 2;
}

@media (max-width: 800px) {
  .footer .f-layout .address {
    justify-content: center;
    line-height: 1.7;
  }
}

.footer .f-layout .h-tel {
  display: inline-flex;
  align-items: center;
  font-size: 2.3rem;
  font-family: var(--font_jp);
  letter-spacing: 0.1em;
}

.footer .f-layout .h-tel img {
  margin-right: 15px;
}

.footer .site-map {
  line-height: 1.5;
  font-family: var(--font_jp);
  padding-top: 12px;
  display: grid;
  grid-template-columns: 140px 1fr;
  grid-gap: 30px;
}

@media (max-width: 800px) {
  .footer .site-map {
    display: block;
    padding-top: 0;
    font-size: 1.5rem;
  }
}

.footer .copyright {
  background-color: var(--color_primary);
  color: #fff;
  font-size: 1.4rem;
  padding: 1px;
}

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

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

.footer .copyright .copyright-links a {
  line-height: 1;
}

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

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

.footer .copyright small {
  font-size: 1.2rem;
}

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

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

.footer .pagetop {
  position: absolute;
  bottom: 45px;
  right: 12px;
  transition: transform 0.5s;
  z-index: 5;
}

.footer .pagetop:hover {
  transform: translateY(-10px);
}

@media (max-width: 800px) {
  .footer .pagetop {
    bottom: 130px;
    right: 20px;
  }
}

@media (max-width: 1024px) {
  .footer .pagetop {
    padding-bottom: 65px;
  }
}

.footer .fixed-menu {
  border-radius: 4px 0 0 4px;
  background: #37414f;
  color: #fff;
  display: flex;
  position: fixed;
  top: 50%;
  right: 0;
  transition: transform 0.5s;
  transform: translate(400px, -50%);
  z-index: 10;
}

.footer .fixed-menu:hover {
  transform: translate(0, -50%);
}

.footer .fixed-menu .ttl {
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  line-height: 1;
  white-space: nowrap;
  font-feature-settings: normal;
  padding: 40px 0;
  width: 60px;
}

.footer .fixed-menu .ttl i {
  margin-bottom: 15px;
}

.footer .fixed-menu .inner {
  display: grid;
  place-items: center;
  padding: 15px;
  padding-left: 0;
  width: 400px;
}

.footer .fixed-menu .txt {
  font-size: 13px;
  text-align: center;
}

.footer .fixed-menu .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin: 15px 0;
}

.footer .fixed-menu .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  padding: 10px;
  min-width: 170px;
  min-height: 50px;
  width: 100%;
}

.footer .fixed-menu .btn img {
  margin-right: 10px;
}

.footer .fixed-menu .btn .small {
  display: block;
  font-size: 10px;
  margin-top: 5px;
}

@media (max-width: 800px) {
  .footer .fixed-menu {
    display: none;
  }
}

.footer .sp-navi {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

  .sp-navi-btns .item:last-child {
    border-right: none;
  }

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

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

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

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

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

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

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

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

  .sp-menu-btn .ttl {
    display: block;
    color: #fff;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

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

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

  .sp-navi-list {
    margin: 0 0 30px;
    font-family: var(--font_jp);
  }

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

  .sp-navi-list>li>a {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }

  .sp-navi-list>li .txt {
    padding-left: 20px;
  }

  .sp-navi-list>li.sp-dropdown {
    position: relative;
  }

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

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

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

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

  .sp-navi-list>li.sp-dropdown>a {
    padding: 15px 0;
    width: 85%;
  }

  .sp-navi-list>li .child {
    padding: 0 0 15px;
  }

  .sp-navi-list>li .child>ul>li {
    list-style: disc;
    margin-left: 20px;
    letter-spacing: 0.07em;
  }

  .sp-navi-list>li .child>ul>li::marker {
    color: var(--color_primary);
    font-size: 1.5rem;
  }

  .sp-navi-list>li .child>ul>li>a {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
  }

  .sp-navi-list .sub-menu {
    border-top: 1px solid var(--color_primary);
    display: none;
    padding: 0 0 15px;
  }

  .sp-navi-list .sub-menu li+li {
    border-top: 1px solid var(--color_primary);
  }

  .sp-navi-list .sub-menu a {
    display: block;
    background: url(../images/share/sp_navi_arrow.svg) no-repeat center right 15px/13px auto;
    padding: 5px 0;
    filter: brightness(0) saturate(100%) invert(23%) sepia(13%) saturate(726%) hue-rotate(345deg) brightness(97%) contrast(93%);
  }

  .sp-information {
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    padding: 20px 10px;
    line-height: 1.5;
    display: grid;
    gap: 10px;
  }

  .sp-information .item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: center;
  }

  .sp-information dt {
    border-right: 1px solid #BFE0D4;
    color: var(--color_primary);
    font-weight: bold;
    padding-right: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .sp-information dt img {
    object-fit: contain;
    width: 25px;
    height: 25px;
  }

  .sp-information a {
    display: inline-block;
  }

  .sp-navi-address {
    margin-bottom: 15px;
  }

  .sp-navi-bnr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}

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

@media (max-width: 800px) {
  .f-logo {
    text-align: center;
    margin-bottom: 20px;
  }

  .f-logo img {
    display: inline;
  }
}

.f-links01 {
  letter-spacing: 0.16em;
}

.f-links01>li+li {
  margin-top: 13px;
}

.f-links01 ul>li+li {
  margin-top: 13px;
}

.f-links01 a:hover {
  text-decoration: underline;
}

.f-links02 .sub-menu {
  display: grid;
  grid-gap: 13px;
  margin-top: 10px;
}

.f-links02 .sub-menu.col2 {
  grid-template-columns: 180px 1fr;
}

.f-links02 .sub-menu li {
  list-style: disc;
  margin-left: 20px;
  letter-spacing: 0.07em;
}

.f-links02 .sub-menu li a:hover {
  text-decoration: underline;
}

.f-links02 .sub-menu li::marker {
  color: var(--color_primary);
  font-size: 1.5rem;
}

@media (max-width: 800px) {
  .f-links01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 15px;
    margin-bottom: 30px;
  }

  .f-links01>li+li {
    margin-top: 0;
  }

  .f-links02 {
    display: block;
  }

  .f-links02.col2 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 15px;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  margin-bottom: 15px;
}

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

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

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

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

@media (hover: hover) {
  .list-post-type a:is(:hover, :focus) {
    background-color: var(--color_tertiary);
  }

  .list-post-type a:is(:hover, :focus) .list-ttl {
    text-decoration: underline;
  }
}

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

.list-post-type .list-img img {
  object-fit: cover;
  width: 100%;
  height: 105px;
  border: #E5DED5;
  border-radius: 10px;
}

.list-post-type .list-desc {
  flex: 1;
  font-size: 1.4rem;
}

.list-post-type time {
  display: block;
  color: var(--color_primary);
  font-size: 1.4rem;
}

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

.list-post-type .category {
  color: var(--color_secondary);
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  margin: 5px 10px 0 0;
}

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

@media (max-width: 800px) {
  .list-post-type a {
    padding: 20px 25px 20px 0;
  }

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

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

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

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

  .list-post-type time {
    font-size: 1rem;
  }

  .list-post-type .list-ttl {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .list-post-type .category {
    font-size: 1rem;
  }

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

/*詳細ページ*/
.single-post-layout {
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 50px;
  max-width: 1024px;
  width: 90%;
  margin: 0 auto 50px;
}

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

.single-post-layout .post-data {
  display: flex;
	flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  gap: 10px;
}

.single-post-layout .post-data time {
  display: block;
  color: var(--color_primary);
  font-size: 1.4rem;
}

.single-post-layout .post-data .category {
  color: var(--color_secondary);
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  margin: 0;
}

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

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

.postdata a {
  text-decoration: underline;
}

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

.postdata a:focus-visible {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
  font-family: var(--font_jp);
}

.postdata em {
  font-style: italic;
}

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

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

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

.postdata ol {
  counter-reset: number;
}

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

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

.postdata ol li>ol {
  counter-reset: number;
}

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

.postdata sup {
  font-size: 1.1rem;
  position: relative;
  top: -0.1em;
}

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

.postdata h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color_primary);
  padding-bottom: 5px;
}

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

.postdata h3::before {
  content: "";
  background: var(--color_secondary);
  width: 5px;
  height: 60%;
  max-height: 27px;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 15px;
}

.postdata h4 {
  font-size: 1.8rem;
  margin-top: 25px;
  margin-bottom: 15px;
}

.postdata {
  overflow-wrap: break-word;
}

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

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

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

.postdata .wp-block-button__link {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1;
  min-height: 50px;
  min-width: 240px;
  padding: 15px 40px 15px 40px;
  transition: 0.3s;
  position: relative;
  border-radius: 50px;
  text-decoration: none;
}

.postdata .wp-block-button__link::before {
  content: "";
  display: block;
  width: 9px;
  height: 11px;
  background: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transform: translateY(-50%);
  position: absolute;
  right: 19px;
  top: 50%;
  transition: 0.3s;
}

.postdata .wp-block-button__link::after {
  content: "";
  display: block;
  border: 1px solid #fff;
  position: absolute;
  inset: 3px;
  border-radius: 30px;
  transition: 0.3s;
}

@media (hover: hover) {
  .wp-block-button__link:is(:hover, :focus) {
    background: #fff;
    color: var(--color_primary);
  }

  .wp-block-button__link:is(:hover, :focus)::before {
    background-color: var(--color_primary);
  }

  .wp-block-button__link:is(:hover, :focus)::after {
    border-color: var(--color_primary);
  }
}

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

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

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

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

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

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

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

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

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

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

/*ブログ*/
.list-under-blog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}

.list-under-blog .list-img {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.list-under-blog .list-img img {
  object-fit: cover;
  width: 100%;
  height: 165px;
  transition: transform 0.5s;
  border-radius: 10px;
  border: 1px solid #CCCCCC;
}

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

.list-under-blog .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1.6rem;
}

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

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

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

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

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

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

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

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

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

.list-under-post .list-img img {
  object-fit: cover;
  width: 100%;
  height: 105px;
  border: 1px solid #CCCCCC;
}

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

.list-under-post time {
  display: block;
  color: #ADADAD;
  font-size: 1.1rem;
}

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

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

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

.no-post {
  white-space: nowrap;
}

/*お知らせ*/
.list-under-news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}

.list-under-news .list-img {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.list-under-news .list-img img {
  object-fit: cover;
  width: 100%;
  height: 165px;
  transition: transform 0.5s;
  border-radius: 10px;
  border: 1px solid #CCCCCC;
}

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

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

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

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

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

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

  .list-under-blog article {
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }
  .list-under-blog article.no-post {
    flex: 0 0 270px;
  }

  .list-under-blog a {
    line-height: 1.5;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .list-under-news article {
    flex: 0 0 244px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }

  .list-under-news article.no-post {
    flex: 0 0 270px;
  }

  .list-under-news a {
    line-height: 1.5;
  }

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

@media (max-width: 800px) {

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

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

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

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

.select-area .select-category {
  appearance: none;
  text-overflow: "";
  background: #fff url(https://baboon.heteml.net/creative/coding/codepen/images/select_arrow.svg) no-repeat right 10px center/20px auto;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: var(--color_text);
  font-size: 1.6rem;
  vertical-align: middle;
  height: 35px;
  min-width: 150px;
  padding: 5px 20px 5px 0;
  flex: 1;
}

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

.select-area .select-category-button {
  appearance: none;
  border-radius: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color_primary);
  background: #fff;
  border-radius: 50px;
  color: var(--color_primary);
  padding: 8px 20px;
  font-family: var(--font_jp);
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  flex: 0 0 68px;
}

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

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

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

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

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

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

.post-number a {
  background: var(--color_tertiary);
  color: var(--color_text);
  display: block;
  padding: 0 10px;
  margin: 0 5px 10px;
  line-height: 40px;
  text-align: center;
  min-width: 40px;
  text-decoration: none;
  transition: 0.5s;
  border-radius: 3px;
  color: var(--color_primary);
}

@media (hover: hover) {
  .post-number a:is(:hover, :focus) {
    background: var(--color_primary);
    color: #fff;
  }
}

.post-number .current {
  background: var(--color_primary);
  color: #fff;
  display: block;
  margin: 0 5px 10px;
  line-height: 40px;
  text-align: center;
  min-width: 40px;
  border-radius: 3px;
}

.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: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  font-size: 13px;
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
  border-radius: 3px;
}

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

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

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

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

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

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

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

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

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

.side-contents {
  width: 220px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sp-only {
  display: none !important;
}

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

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

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 1.1rem;
}

.bold,
.strong {
  font-weight: bold;
  font-family: FOT-筑紫A丸ゴシック Std B;
}

.color-red {
  color: #F44336;
}

.marker {
  background: linear-gradient(transparent 50%, var(--color_tertiary) 50%);
}

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

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

.mbXS {
  margin-bottom: 0.5rem !important;
}

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

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

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

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

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

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

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

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

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

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

  .sp-only {
    display: block !important;
  }

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

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

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

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

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

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

  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
  }
}

/*ボタン*/
.btn-more {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1;
  min-height: 50px;
  min-width: 240px;
  padding: 15px 20px;
  transition: 0.3s;
  position: relative;
  border-radius: 50px;
}

.btn-more::before {
  content: "";
  display: block;
  width: 9px;
  height: 11px;
  background: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transform: translateY(-50%);
  position: absolute;
  right: 19px;
  top: 50%;
  transition: 0.3s;
}

.btn-more::after {
  content: "";
  display: block;
  border: 1px solid #fff;
  position: absolute;
  inset: 3px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-more.wide {
  min-width: 270px;
}

.btn-more.narrow {
  min-width: 192px;
}

@media (hover: hover) {
  .btn-more:is(:hover, :focus) {
    background: #fff;
    color: var(--color_primary);
  }

  .btn-more:is(:hover, :focus)::before {
    background-color: var(--color_primary);
  }

  .btn-more:is(:hover, :focus)::after {
    border-color: var(--color_primary);
  }
}

.btn-more02 {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.16em;
  min-width: 130px;
  margin: 0 auto;
  transform: translateX(0);
}

.btn-more02 img {
  transition: transform 0.3s ease;
  transform: translateX(0);
}

.btn-more02:hover img {
  transform: translateX(10px);
}

.btn-more03 {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1;
  min-height: 50px;
  min-width: 210px;
  transition: 0.3s;
  position: relative;
  border-radius: 8px;
}

.btn-more03::before {
  content: "";
  background: var(--color_secondary);
  display: block;
  width: 40px;
  height: 2px;
  position: absolute;
  right: -20px;
  transition: transform 0.3s ease;
  transform: translateX(0);
}

.btn-more03:hover::before {
  transform: translateX(10px);
}

@media (hover: hover) {
  .btn-more03:is(:hover, :focus) {
    background: #fff;
    color: var(--color_primary);
  }
}

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

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

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

/*診療カレンダー*/
:root {
  --event01: #EF866B;
  --event02: #F7B46B;
  --event03: #A8DBA8;
  --event04: #B0D7D5;
}

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

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

.business-calendar-box-wrap .business-calendar caption {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}

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

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

.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}

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

.business-calendar-box-wrap .business-calendar th {
  background: #f1f3f4;
  border: 1px solid #dfdfdf;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  padding: 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid #dfdfdf;
  position: relative;
  font-size: 13px;
  padding: 5px;
  z-index: 0;
}

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

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

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

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

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

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

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

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

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

.business-calendar-box-wrap .business-calendar .attr2::before {
  background: var(--event03);
}

.business-calendar-box-wrap .business-calendar .attr3::before {
  background: var(--event04);
}

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

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

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

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

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

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

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

  .list-event {
    display: block;
  }

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

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

.time-table-head {
  background-color: #607D8B;
  color: #fff;
}

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

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

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

.time-table-body .item:first-child {
  background-color: #8299A3;
  color: #fff;
  letter-spacing: 0;
}

.time-table-head,
.time-table-body {
  display: grid;
  grid-template-columns: 120px repeat(7, 1fr);
}

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

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

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

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

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

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

/*画像の装飾*/
.image-deco {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.image-deco::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #333;
  border-radius: 20px;
  transform: rotate(-8deg);
  z-index: -1;
}

.image-deco img {
  border-radius: 20px;
}

.image-deco.green::before {
  background: #88CE89;
}

.image-deco.orange::before {
  background: #DB9861;
  transform: rotate(8deg);
}

.image-deco.yellow::before {
  background: #FAE77F;
}

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

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

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

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

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

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

.splide__progress__bar {
  width: 0;
}

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

.splide .splide__controls {
  position: absolute;
  inset: auto 0 20px 20px;
  z-index: 5;
}

.splide__controls {
  display: flex;
  align-items: center;
}

.splide__toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: background-color 0.2s ease;
  height: 24px;
  width: 24px;
}

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

.splide__toggle svg {
  fill: #2CAB30;
  transition: fill 0.2s ease;
  width: 11px;
  height: auto;
  border-radius: 1px;
}

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

.splide__track--draggable {
  -webkit-touch-callout: none;
  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 {
  align-items: center;
  background: var(--color_tertiary);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 64px;
  width: 64px;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid var(--color_primary);
  border-width: 2px 2px 0 0;
}

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

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

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

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

.splide__arrow:disabled {
  opacity: 0.3;
}

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

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

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

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

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

.splide__pagination {
  gap: 10px;
  bottom: 0.5em;
  left: 0;
  right: 0;
  z-index: 1;
}

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

.splide__pagination__page.is-active {
  background: var(--color_primary);
  z-index: 1;
}

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

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1400px) {
  .splide .splide__controls {
    inset: auto 0 20px 25px;
  }
}

@media (max-width: 1024px) {
  .hero .splide__slide img {
    border-radius: 0 25px 0 0;
  }
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(.5, 0, .14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */

.fancybox-button {
  background: rgba(30, 30, 30, .6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
  background: linear-gradient(to top,
      rgba(0, 0, 0, .85) 0%,
      rgba(0, 0, 0, .3) 50%,
      rgba(0, 0, 0, .15) 65%,
      rgba(0, 0, 0, .075) 75.5%,
      rgba(0, 0, 0, .037) 82.85%,
      rgba(0, 0, 0, .019) 88%,
      rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Transition effects */

.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

/* Share */

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, .1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .2s cubic-bezier(.25, .46, .45, .94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

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

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

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

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


/* ディレ追加 */
.card-style .bg-white{
  background-color: #fff;
  padding: 0;
}
