@charset "UTF-8";

:root {
  --color_bg: #fff;
  --color_text: #484644;
  --color_link: #484644;
  --color_border: #E5E3E0;
  --color_primary: #F59B40;
  --color_secondary: #95C48D;
  --color_tertiary: #F8E8D9;
  --color_quaternary: #F5F4EF;
  --font_base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_jp: "Noto Sans JP", sans-serif;
  --font_en: "Montserrat", 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;
  font-weight: 700;
}

[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: 120px;
}

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

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

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

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

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

/*------------
Header
--------------*/
.header-layout {
  background-color: #fff;
  padding: 0 40px 0 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  width: 100%;
}

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

.header-layout .h-tel {
  display: inline-flex;
  align-items: center;
  font-size: 2.3rem;
  font-family: var(--font_en);
  font-weight: 600;
  letter-spacing: 0.05em;
}

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

.header-layout .h-time {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-gap: 5px 10px;
  font-size: 1.2rem;
}

.header-layout .h-time dt {
  border: 1px solid #484644;
  text-align: center;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  font-weight: 700;
}

@media (max-width: 1199px) {

  .header-layout .h-time dt {
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

@media (max-width: 1024px) {
  .header-layout {
    padding: 16px;
    height: 82px;
  }

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

  .h-logo img {
    width: 133px;
  }
}

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

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

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

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

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

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

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

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

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

.gnavi-list>li>a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}

.gnavi-list>li>a::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color_primary);
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

.gnavi-list>li>a:hover::before {
  transform: scale(1, 1);
}

.gnavi-list>li>.no-link::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color_primary);
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

.gnavi-list>li>.no-link:hover::before {
  transform: scale(1, 1);
}

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

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

.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_quaternary);
  border-radius: 5px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 28px 25px;
  position: absolute;
  top: 30px;
  right: 50%;
  width: max-content;
  min-width: 150px;
  transform: translateX(50%);
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

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

.dropdown .sub-menu li {
  position: relative;
  padding-left: 15px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.dropdown .sub-menu li:hover {
  color: var(--color_primary);
}

.dropdown .sub-menu li+li {
  margin-top: 14px;
}

.dropdown .sub-menu li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #A8A7A6;
  border-right: 2px solid #A8A7A6;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.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: 120px 0 60px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  background: var(--color_tertiary);
  inset: 450px max(2.5%, 50% - 600px) 0 0;
  position: absolute;
  z-index: -1;
}

.hero .wrapper {
  position: relative;
  padding-left: 270px;
}

.hero .splide__slide img {
  object-fit: cover;
  border-radius: 0 0 0 180px;
  width: 100%;
}

.hero .splide__pagination {
  justify-content: flex-end;
  right: 30px;
}

.hero-catch {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  position: absolute;
  top: 93px;
  left: 9%;
  z-index: 5;
}

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

.hero-catch .ttl span {
  background-color: var(--color_primary);
  color: #fff;
  padding: 10px 0;
  border-radius: 5px;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 10px;
  writing-mode: vertical-lr;
  color: var(--color_text);
  left: 30px;
  bottom: 0;
  position: absolute;
  font-size: 1rem;
  font-family: var(--font_en);
  letter-spacing: 0.05em;
}

.hero-scroll::after {
  background: var(--color_text);
  content: "";
  display: block;
  height: 60px;
  width: 1px;
}

@media (max-width: 1480px) {
  .hero::before {
    inset: 400px max(2.5%, 50% - 500px) 0 0;
  }

  .hero .wrapper {
    padding-left: 170px;
  }

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

@media (max-width: 1250px) {
  .hero::before {
    inset: 350px max(2.5%, 50% - 400px) 0 0;
  }

  .hero .wrapper {
    padding-left: 150px;
  }

  .hero-catch {
    top: 40px;
  }

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

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

  .hero::before {
    content: "";
    inset: 250px max(2.5%, 50% - 120px) 0 0;
    position: absolute;
    z-index: -1;
  }

  .hero .wrapper {
    padding-left: 60px;
  }

  .hero .splide__slide img {
    height: 50vh;
    border-radius: 0 0 0 60px;
  }

  .hero .splide__pagination {
    display: none;
  }

  .hero-catch {
    top: 30px;
  }

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

  .hero-scroll {
    display: none;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-h2 {
  letter-spacing: 0.05em;
}

.t-h2 .en {
  display: inline-block;
  font-weight: 600;
  color: var(--color_primary);
  font-family: var(--font_en);
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1;
}

.t-h2 .jp {
  font-size: 4rem;
  padding-bottom: 20px;
  background: url(../images/t-h2_deco.svg) no-repeat left bottom/92px auto;
}

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

  .t-h2 .en {
    font-size: 1.6rem;
  }

  .t-h2 .jp {
    font-size: 3rem;
    padding-bottom: 15px;
    line-height: 1.3;
  }
}

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

.sec02 {
  padding: 100px 0;
}

.sec03 {
  padding: 100px 0 150px;
  position: relative;
}

.sec03::before {
  content: "";
  background: var(--color_tertiary);
  position: absolute;
  inset: 180px 0 0 max(2.5%, 50% - 800px);
  border-radius: 180px 0 0 0;
  z-index: -1;
}

.sec04 {
  padding: 140px 0 55px;
}

.sec05 {
  padding: 100px 0 150px;
  position: relative;
}

.sec05::before {
  content: "";
  background: #F5F4EF;
  position: absolute;
  inset: 180px max(2.5%, 50% - 800px) 0 0;
  border-radius: 0 180px 0 0;
  z-index: -1;
}

.sec06 {
  padding: 150px 0 65px;
}

.sec07 {
  padding: 100px 0 80px;
}

.sec08 {
  padding: 100px 0 185px;
}

@media (max-width: 800px) {

  .sec01,
  .sec02,
  .sec04,
  .sec06,
  .sec07,
  .sec08 {
    padding: 50px 0;
  }

  .sec03 {
    padding: 50px 0;
  }

  .sec03::before {
    inset: 120px 0 0 max(2.5%, 50% - 800px);
    border-radius: 60px 0 0 0;
  }

  .sec05 {
    padding: 50px 0;
  }

  .sec05::before {
    inset: 120px max(2.5%, 50% - 800px) 0 0;
    border-radius: 0 60px 0 0;
  }
}

/*------------
Post
--------------*/
.top-post-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-gap: 12.3%;
  min-height: 170px;
  position: relative;
}

.top-post-layout .l-ttl {
  letter-spacing: 0.05rem;
}

.top-post-layout .l-ttl .jp {
  display: block;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}

.top-post-layout .l-ttl .en {
  color: var(--color_primary);
  display: block;
  font-size: 1.4rem;
}

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

.top-post-layout .btn-more::after {
  width: 56px;
  height: 56px;
}

.list-top-news a {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid var(--color_border);
  padding: 19px 45px 19px 0;
  align-items: center;
  position: relative;
}

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

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

.list-top-news time {
  display: inline-block;
  margin-right: 10px;
  font-family: var(--font_en);
  color: #A8A7A6;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

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

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

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

  .top-post-layout .btn-more::after {
    width: 50px;
    height: 50px;
  }

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

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

  .list-top-news .list-ttl {
    font-size: 1.6rem;
  }
}

/*------------
sec02
--------------*/
.sec02-layout {
  display: flex;
  position: relative;
  z-index: 0;
  flex-direction: row-reverse;
  margin: 0 0 0 16.5%;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

.sec02-layout .l-img {
  width: 56.64%;
  margin: 0 0 0 6.5%;
}

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

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

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

.sec02-layout .l-ttl .en {
  display: inline-block;
  font-weight: 600;
  font-size: 2.2rem;
  font-family: var(--font_en);
  color: var(--color_primary);
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.sec02-layout .l-ttl .jp {
  font-size: 4.4rem;
  letter-spacing: 0.05em;
}

.sec02-layout .l-ttl .jp span {
  background-color: var(--color_primary);
  color: #fff;
  padding: 0 20px;
}

.sec02-layout .l-txt {
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 65px;
}

@media (max-width: 1724px) {
  .sec02-layout {
    margin: 0 auto;
    width: 90%;
  }
}

@media (max-width: 1599px) {
  .sec02-layout .l-ttl .jp {
    font-size: 4rem;
  }
}

@media (max-width: 1470px) {
  .sec02-layout .l-img {
    width: 50%;
  }
}

@media (max-width: 1244px) {
  .sec02-layout .l-img {
    margin: 0 0 0 5%;
  }

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

  .sec02-layout .l-ttl .jp {
    font-size: 3.6rem;
  }

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

@media (max-width: 800px) {
  .sec02-layout {
    display: block;
    margin: 0 auto;
    width: 90%;
  }

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

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

  .sec02-layout .l-ttl .en {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .sec02-layout .l-ttl .jp {
    font-size: 2.4rem;
  }

  .sec02-layout .l-ttl .jp span {
    padding: 0 10px 3px;
  }

  .sec02-layout .l-ttl .jp+.jp {
    margin-top: 3px;
  }

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

/*------------
sec03
--------------*/
.sec03 .t-h2 {
  margin-bottom: 90px;
}

.sec03-cardlayout {
  margin-bottom: 60px;
}

.sec03-cardlayout.col3 {
  gap: 5%;
}

.sec03-cardlayout li {
  display: block;
  position: relative;
  height: 482px;
}

.sec03-cardlayout img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.sec03-cardlayout .label {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  position: absolute;
  font-size: 2.1rem;
  left: 12px;
  top: -10px;
  background-color: var(--color_secondary);
  color: #fff;
  padding: 15px 5px;
  white-space: nowrap;
  width: 48px;
}

@media (max-width: 1250px) {
  .sec03-cardlayout {
    margin-bottom: 10px;
  }
}

@media (max-width: 800px) {
  .sec03 .t-h2 {
    margin-bottom: 30px;
  }

  .sec03-cardlayout {
    margin-bottom: 20px;
  }

  .sec03-cardlayout.col3 {
    gap: 30px;
  }

  .sec03-cardlayout li {
    min-height: 400px;
  }

  .sec03-cardlayout .label {
    font-size: 1.8rem;
    width: auto;
  }
}

/*------------
sec04
--------------*/
.sec04 .t-h2 {
  margin-bottom: 50px;
}

.sec04-layout {
  display: flex;
  position: relative;
  flex-direction: row-reverse;
  z-index: 0;
}

.sec04-layout .l-desc {
  flex: 1;
}

.sec04-layout .l-desc .l-desc-item+.l-desc-item {
  margin-top: 40px;
}

.sec04-layout .l-ttl {
  font-size: 2rem;
  border-bottom: 1px solid #484644;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.sec04-layout dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  margin-bottom: 15px;
}

.sec04-layout dl dt,
.sec04-layout dl dd {
  margin-bottom: 5px;
}

.sec04-layout dl dt {
  font-weight: 700;
}

.sec04-layout .time-table {
  margin-bottom: 20px;
}

.sec04-layout .l-map {
  margin: 0 -9% 0 5%;
}

.sec04-layout .l-map iframe {
  border-radius: 10px;
}

@media (max-width: 1280px) {
  .sec04-layout .l-map {
    margin: 0 0 0 5%;
  }

  .sec04-layout .l-map iframe {
    width: 500px;
  }
}

@media (max-width: 800px) {
  .sec04 .t-h2 {
    margin-bottom: 30px;
  }

  .sec04-layout {
    display: block;
  }

  .sec04-layout .l-desc .l-desc-item+.l-desc-item {
    margin-top: 20px;
  }

  .sec04-layout dl {
    grid-template-columns: 100px 1fr;
  }

  .sec04-layout .l-map {
    margin: 0 0 25px;
  }

  .sec04-layout .l-map iframe {
    vertical-align: bottom;
    width: 100%;
    height: 300px;
  }

  .sec04-layout .l-ttl {
    font-size: 2rem;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }
}

/*------------
sec05
--------------*/
.sec05 .t-h2 {
  margin-bottom: 55px;
  text-align: center;
}

.sec05 .t-h2 .jp {
  background: url(../images/t-h2_deco.svg) no-repeat center bottom/92px auto;
}

.sec05-cardlayout {
  display: flex;
  gap: 40px 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 140px;
}

.sec05-cardlayout>li {
  min-height: 357px;
  max-width: 320px;
  width: 320px;
}

.sec05-cardlayout>li a {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color_border);
  background-color: #fff;
  height: 100%;
  padding: 32px 35px 45px;
  position: relative;
  transition: transform 0.5s;
  border-radius: 10px;
}

.sec05-cardlayout>li a::before {
  content: "";
  border-style: solid;
  border-width: 13px;
  border-color: var(--color_primary);
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 10px 0 10px 0;
}

.sec05-cardlayout>li a::after {
  content: "";
  background: url(../images/share/arrow_w.svg) no-repeat center/contain;
  width: 13px;
  height: 10px;
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-radius: 10px 0 10px 0;
}

.sec05-cardlayout>li a:hover {
  transform: translateY(-10px);
}

.sec05-cardlayout>li .card-ttl {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 15px;
}

.sec05-cardlayout>li .card-img {
  text-align: center;
  margin-bottom: 10px;
}

.sec05-cardlayout>li .card-img img {
  display: inline-block;
}

.sec05-cardlayout .list-checkbox li {
  padding-left: 25px;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.sec05-layout {
  position: relative;
  margin-bottom: 90px;
}

.sec05-layout .l-img {
  position: absolute;
  width: 43%;
  top: -50px;
  right: -88px;
  z-index: 1;
}

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

.sec05-layout .l-desc {
  background: var(--color_tertiary);
  padding: 55px 400px 55px 55px;
  border-radius: 30px;
}

.sec05-layout .l-ttl {
  font-size: 2.8rem;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.sec05-layout .l-txt {
  line-height: 2;
  margin-bottom: 25px;
}

.sec05-layout .btn-wrap {
  gap: 55px;
}

.sec05-boxlayout {
  background: #fff;
  border: 2px solid var(--color_primary);
  border-radius: 30px;
  padding: 5% 7%;
}

.sec05-boxlayout .box-ttl {
  color: var(--color_primary);
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 23px;
  text-align: center;
}

.sec05-boxlayout .box-txt {
  text-align: center;
  margin-bottom: 30px;
  line-height: 2;
}

@media (max-width: 1300px) {
  .sec05-layout .l-img {
    width: 38%;
    right: -38px;
  }
}

@media (max-width: 1200px) {
  .sec05-layout .l-img {
    width: 35%;
    right: -18px;
  }
}

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

  .sec05-cardlayout {
    gap: 20px;
    margin-bottom: 40px;
  }

  .sec05-cardlayout li {
    flex: 0 0 100%;
    max-width: 100%;
  }

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

  .sec05-layout .l-img {
    width: 100%;
    top: 0;
    right: 0;
  }

  .sec05-layout .l-desc {
    padding: 250px 20px 20px;
    border-radius: 20px;
  }

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

  .sec05-layout .btn-wrap {
    gap: 20px;
  }

  .sec05-boxlayout {
    border-radius: 20px;
    padding: 20px;
  }

  .sec05-boxlayout .box-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .sec05-boxlayout .box-txt {
    text-align: left;
    margin-bottom: 30px;
  }
}

/*------------
sec06
--------------*/
.sec06-boxlayout {
  background: var(--color_primary);
  color: #fff;
  border-radius: 30px;
  padding: 5% 7% 6.7%;
}

.sec06-boxlayout .box-ttl {
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 45px;
}

.sec06-boxlayout .box-ttl .en {
  display: inline-block;
  font-weight: 600;
  font-family: var(--font_en);
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1;
}

.sec06-boxlayout .box-ttl .jp {
  font-size: 4rem;
  padding-bottom: 20px;
  background: url(../images/t-h2_deco_w.svg) no-repeat center bottom/92px auto;
}

.sec06-boxlayout .box-txt {
  text-align: center;
  margin-bottom: 45px;
  line-height: 2;
}

@media (max-width: 800px) {
  .sec06-boxlayout {
    border-radius: 20px;
    padding: 20px;
  }

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

  .sec06-boxlayout .box-ttl .en {
    font-size: 1.5rem;
  }

  .sec06-boxlayout .box-ttl .jp {
    font-size: 3rem;
    padding-bottom: 15px;
  }

  .sec06-boxlayout .box-txt {
    text-align: left;
    margin-bottom: 30px;
  }
}

/*------------
sec07
--------------*/
.sec07 .t-h2 {
  margin-bottom: 40px;
  text-align: center;
}

.sec07 .t-h2 .jp {
  background: url(../images/t-h2_deco.svg) no-repeat center bottom/92px auto;
}

.sec07-layout {
  display: flex;
  align-items: flex-start;
  padding: calc((100% - 1200px) / 2);
  flex-direction: row-reverse;
}

.sec07-layout .l-img {
  overflow: hidden;
  width: calc(100% - 500px);
  margin-right: -8.4%;
}

.sec07-layout .l-img img {
  width: 100%;
  border-radius: 10px;
}

.sec07-layout .l-desc {
  background-color: var(--color_quaternary);
  flex: 1;
  padding: 5% 6.5% 4.7%;
  margin: 60px -40px 0 0;
  position: relative;
  max-width: 640px;
  border-radius: 30px;
}

.sec07-layout .l-ttl {
  font-size: 2.8rem;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.sec07-layout .l-txt {
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

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

  .sec07-layout .l-img {
    width: 100%;
  }

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

  .sec07-layout .l-desc {
    padding: 20px 20px 30px;
    margin: -40px auto 0;
    max-width: 90%;
    border-radius: 20px;
  }

  .sec07-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .sec07-layout .l-txt {
    margin-bottom: 25px;
  }
}

/*------------
sec08
--------------*/
.sec08 .t-h2 {
  margin-bottom: 55px;
}

.sec08-boxlayout {
  background: #DFEFDC;
  border-radius: 30px;
  padding: 5.3% 7% 6.7%;
}

.sec08-boxlayout .list-btn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}

.sec08-boxlayout .list-btn li {
  font-size: 1.8rem;
}

.sec08-boxlayout .list-btn li a {
  display: block;
  background: #fff;
  color: var(--color_text);
  align-items: center;
  line-height: 1;
  min-height: 84px;
  padding: 31px 30px;
  transition: 0.3s;
  position: relative;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sec08-boxlayout .list-btn li a::before {
  content: "";
  display: block;
  background: url(../images/share/arrow_o.svg) no-repeat center/contain;
  width: 13px;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

@media (hover: hover) {
  .sec08-boxlayout .list-btn li a:is(:hover, :focus) {
    background-color: var(--color_primary);
    color: #fff;
  }

  .sec08-boxlayout .list-btn li a:is(:hover, :focus)::before {
    background: url(../images/share/arrow_w.svg) no-repeat center/contain;
  }
}

@media (max-width: 800px) {
  .sec08 .t-h2 {
    margin-bottom: 30px;
  }

  .sec08-boxlayout {
    border-radius: 20px;
    padding: 20px;
  }

  .sec08-boxlayout .list-btn {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

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

.u-page-ttl {
  line-height: 1.2;
  font-size: 4.6rem;
}

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

.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 {
    height: 220px;
    padding: 102px 10px 20px;
  }

  .u-page-ttl {
    font-size: 3rem;
  }
}

.u-h2 {
  font-size: 3rem;
  position: relative;
  text-align: center;
}

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

.u-h3 {
  font-size: 2.2rem;
  background-image: radial-gradient(circle, var(--color_primary) 1px, transparent 2px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 10px 5px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

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

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

.ttl-num {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}

.ttl-num .num {
  color: var(--color_primary);
  font-size: 6.5rem;
  font-family: var(--font_en);
  line-height: 46px;
  text-align: center;
}

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

  .u-h2::after {
    margin: 10px auto 30px;
  }

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

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

  .ttl-num {
    font-size: 2rem;
    align-items: center;
    margin-bottom: 25px;
  }

  .ttl-num .num {
    font-size: 3.8rem;
  }
}

.tall {
  padding-bottom: 80px;
}

.tall:first-child {
  padding-top: 80px;
}

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

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

.br20 {
  border-radius: 20px;
}

.u-img {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.hidden {
  overflow: hidden;
}

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

  .tall:first-child {
    padding-top: 50px;
  }

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

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

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

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

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

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

.list-check.col2 {
  gap: 5px 30px;
}

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

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

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

.list-checkbox li {
  font-weight: bold;
  position: relative;
  padding-left: 30px;
}

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

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

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

.list-num.col2 {
  gap: 5px 30px;
}

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

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

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

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

.list-price .list-intro {
  border-bottom: 1px dotted var(--color_primary);
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 0 0 5px;
}

.list-price .list-intro .price {
  font-family: var(--font_en);
}

.list-price .list-desc {
  color: #747474;
  font-size: 1.3rem;
  margin-top: 5px;
}

.list-card>li {
  display: flex;
  flex-direction: column;
  background-color: #DFEFDC;
  padding: 7%;
  border-radius: 20px;
}

.list-card .list-ttl {
  font-size: 2rem;
  border-bottom: 2px solid var(--color_secondary);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.list-card .list-disc li::marker {
  color: var(--color_primary);
}

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

@media (max-width: 800px) {
  .list-price .list-intro {
    font-size: 1.6rem;
  }
}

.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;
  font-size: 1.7rem;
  padding: 20px;
  border-radius: 20px 0 0 20px;
}

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

@media (max-width: 800px) {
  .dl-style01 .item {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

.card-style02>li {
  background-color: #fff;
  border: 2px solid var(--color_primary);
  padding: 7%;
  border-radius: 20px;
}

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

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

.card-style02 .card-ttl {
  text-align: center;
  margin-bottom: 15px;
}

@media (max-width: 800px) {

  .card-style01,
  .card-style02 {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
}

.flow-style {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}

.flow-style>li {
  background-color: var(--color_tertiary);
  padding: 25px;
  position: relative;
  border-radius: 20px;
}

.flow-style>li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent var(--color_secondary);
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
}

.flow-style .flow-num {
  font-size: 25px;
  line-height: 1;
  position: absolute;
  top: -15px;
  left: 30px;
  color: var(--color_primary);
}

.flow-style .flow-img {
  margin-bottom: 15px;
}

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

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

@media (max-width: 800px) {
  .flow-style {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .flow-style>li:not(:last-child)::after {
    top: auto;
    bottom: -28px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}

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

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

.table-style .bg01 {
  background-color: #EFEEE9;
  color: var(--color_text);
}

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

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

  .table-style.sp-col1 th,
  .table-style.sp-col1 td {
    display: block;
    padding: 10px;
  }

  .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-color: #DFEFDC;
  padding: 6% 8%;
  border-radius: 20px;
}

.box-style01.narrow {
  padding: 20px 30px;
}

.box-style01 .box-ttl01 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}

.box-style01 .box-ttl01.small {
  font-size: 2.2rem;
}

.box-style01 .box-ttl02 {
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.box-style01 .l-tel {
  display: inline-flex;
  align-items: flex-end;
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1;
  margin: 0px auto;
  white-space: nowrap;
  gap: 10px;
}

.box-style02 {
  border: 2px solid var(--color_primary);
  background: #fff;
  padding: 6% 8%;
  border-radius: 20px;
}

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

.box-style02 .box-ttl01.small {
  font-size: 2.2rem;
}

.box-style02 .box-ttl02 {
  font-size: 2rem;
  border-bottom: 2px solid var(--color_primary);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

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

  .box-style01.narrow {
    padding: 20px;
  }

  .box-style01 .box-ttl01 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .box-style01 .box-ttl01.small {
    font-size: 1.8rem;
  }

  .box-style01 .l-tel {
    font-size: 2.5rem;
    gap: 7px;
  }

  .box-style01 .l-tel img {
    width: 18px;
  }

  .box-style02 {
    padding: 30px 20px;
  }

  .box-style02 .box-ttl01 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .box-style02 .box-ttl01.small {
    font-size: 1.8rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.under-slider01 .item-img img {
  border-radius: 30px;
}

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

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

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

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

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

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

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

/*------------
レイアウト
--------------*/
.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: 10px;
}

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

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

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

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

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

.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-style {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}

.l-style .l-img {
  position: relative;
  width: 55.1%;
  z-index: 1;
}

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

.l-style .l-desc {
  background: var(--color_quaternary);
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
  flex: 1;
  border-radius: 30px;
}

.l-style .l-ttl {
  font-size: 2.8rem;
  margin-bottom: 40px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

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

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

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

.tel-layout .l-tel {
  display: inline-flex;
  align-items: flex-end;
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1;
  margin: 0 auto;
  white-space: nowrap;
  gap: 10px;
}

.staff-layout {
  display: flex;
  flex-direction: row-reverse;
}

.staff-layout .l-img {
  width: 410px;
  margin-left: 65px;
}

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

.staff-layout .l-desc {
  margin-top: 20px;
  flex: 1;
}

.staff-layout .job {
  color: var(--color_primary);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.staff-layout .name {
  border-bottom: 2px solid var(--color_border);
  line-height: 1;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.staff-layout .jp {
  display: inline;
  font-size: 3rem;
  font-weight: 500;
  margin-right: 25px;
}

.staff-layout .en {
  display: inline;
  font-size: 1.8rem;
  font-weight: 500;
}

@media (max-width: 800px) {

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

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

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

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

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

  .l-style {
    display: block;
  }

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

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

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

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

  .l-col2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tel-layout {
    padding: 6% 5%;
  }

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

  .tel-layout .l-tel {
    font-size: 2.5rem;
    gap: 7px;
  }

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

  .staff-layout {
    display: block;
  }

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

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

  .staff-layout .job {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .staff-layout .name {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .staff-layout .jp {
    font-size: 2.5rem;
    margin-right: 15px;
  }

  .staff-layout .en {
    font-size: 1.4rem;
  }
}

/*------------
Q&A
--------------*/
.faq-style {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

.faq-style .item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

.faq-style .faq-open-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 11px;
  transition: 0.3s;
}

.faq-style .faq-open-icon::before, .faq-style .faq-open-icon::after {
  content: "";
  display: block;
  background: var(--color_primary);
  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 .item>dt:hover .faq-icon {
  background-color: var(--color_primary);
  color: #fff;
}

.faq-style .faq-inner {
  padding-top: 5px;
}

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

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

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

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

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

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

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

  .faq-style .faq-open-icon {
    right: 0;
    top: 7px;
  }
}

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

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

.dl-privacy dt {
  border-top: 4px solid var(--color_border);
  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: 5rem;
}

.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;
  padding: 90px 0;
}

.footer::before {
  content: "";
  background: var(--color_tertiary);
  position: absolute;
  inset: 0 0 0 max(2.5%, 50% - 800px);
  border-radius: 180px 0 0 0;
  z-index: -1;
}

.f-layout {
  padding-bottom: 30px;
}

.f-layout .l-wrapper {
  display: grid;
  grid-template-columns: 40.6% 1fr;
  gap: 15.2%;
}

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

.f-address {
  margin-bottom: 5px;
}

.f-tel {
  display: inline-flex;
  align-items: center;
  font-size: 2.3rem;
  gap: 5px;
  font-family: var(--font_en);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.site-map {
  display: flex;
  gap: 50px;
  line-height: 1;
}

.f-links .no-link {
  margin-bottom: 30px;
  font-weight: 700;
}

.f-links .sub-menu>li {
  position: relative;
  padding-left: 15px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.f-links .sub-menu>li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #A8A7A6;
  border-right: 2px solid #A8A7A6;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.f-links .sub-menu>li+li {
  margin-top: 13px;
}

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

.copyright {
  text-align: right;
  font-size: 1.4rem;
}

.copyright small {
  font-size: 1.1rem;
}

.copyright-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

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

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

.pagetop {
  position: absolute;
  bottom: 83%;
  right: 40px;
  transition: transform 0.5s;
  z-index: 5;
}

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

@media (max-width: 1320px) {
  .f-layout .l-wrapper {
    gap: 9%;
  }
}

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

  .footer::before {
    border-radius: 60px 0 0 0;
  }

  .f-layout {
    padding-bottom: 50px;
  }

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

  .f-logo img {
    width: 133px;
  }

  .f-tel {
    margin-bottom: 10px;
  }

  .site-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .f-links .no-link {
    margin-bottom: 20px;
  }

  .copyright-links {
    margin-bottom: 0;
  }

  .pagetop {
    display: none;
  }
}

.sp-navi {
  display: none;
}

@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: 50px;
    z-index: 10000;
  }

  .sp-navi-btns .item {
    flex: 1;
    border-right: 1px solid #fff;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    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: 5px 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: 10px;
  }

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

  .sp-menu-btn {
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    z-index: 1010;
    background-color: var(--color_primary);
    padding: 10px;
    border-radius: 5px;
  }

  .sp-menu-btn span {
    background: #fff;
    position: absolute;
    width: 20px;
    height: 1px;
    right: 0;
    transition: 0.3s;
    transform-origin: center center;
  }

  .sp-menu-btn span:nth-of-type(1) {
    top: 15px;
    right: 14px;
  }

  .sp-menu-btn span:nth-of-type(2) {
    top: 23px;
    right: 14px;
  }

  .sp-menu-btn span:nth-of-type(3) {
    top: 31px;
    right: 14px;
  }

  .sp-menu-btn.is-open span {
    background-color: #fff;
  }

  .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 50%;
    left: 50%;
    transform-origin: center;
    translate: -50% -50%;
    width: 30px;
  }

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

  .sp-menu-btn.is-open span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    transform-origin: center;
    translate: -50% -50%;
    width: 30px;
  }

  .sp-logo {
    max-width: 150px;
    margin-bottom: 30px;
  }

  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: var(--color_tertiary);
    padding: 50px 30px 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    transform: translateX(60px);
    transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 0;
    z-index: 1000;
  }

  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
  }

  .sp-navi-list {
    margin: 0 0 50px;
  }

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

  .sp-navi-list>li>a {
    display: block;
    padding: 10px 0;
  }

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

  .sp-navi-list .sp-dropdown-btn .ttl {
    display: block;
    padding: 10px 0;
  }

  .sp-navi-list .sp-dropdown-plus {
    mask: url(../images/share/sp_navi_plus.svg) no-repeat center/11px;
    background-color: var(--color_primary);
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 47px;
    transition: 0.3s;
  }

  .sp-navi-list .is-on .sp-dropdown-plus {
    transform: rotate(45deg);
    transform-origin: center;
  }

  .sp-navi-list .sub-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    padding: 0 0 15px;
  }

  .sp-navi-list .sub-menu li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

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

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

.category-select-area {
  border: 1px solid var(--color_border);
  border-radius: var(--radius);
  margin-bottom: 8rem;
}

.category-select-area .item {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 4rem;
}

.category-select-area .item+.item {
  border-top: 1px solid var(--color_border);
}

.category-select-area .ttl {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-links a {
  display: block;
  border: 1px solid var(--color_border);
  border-radius: 100vmax;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 2px 15px;
  transition: 0.3s;
}

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

@media (max-width: 800px) {
  .category-select-area {
    border-radius: 10px;
    margin-bottom: 5rem;
  }

  .category-select-area .item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem;
  }
}

/*通常投稿*/
.list-under-post {
  border-top: 1px solid var(--color_border);
  margin-bottom: 50px;
}

.list-under-post article {
  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 var(--color_primary);
  border-right: 2px solid var(--color_primary);
  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 {
  border: 1px solid var(--color_border);
  width: 150px;
  margin-right: 25px;
  border-radius: 10px;
}

.list-under-post .list-img img {
  aspect-ratio: 7/5;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.list-under-post .list-desc {
  flex: 1;
  margin-bottom: 5px;
}

.list-under-post time {
  display: block;
  color: #A8A7A6;
  font-size: 1.4rem;
  font-family: var(--font_en);
  font-weight: 600;
}

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

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

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

/*お知らせ*/
.list-under-news {
  border-top: 1px solid #dfdfdf;
  margin-bottom: 30px;
}

.list-under-news a {
  display: flex;
  border-bottom: 1px solid #dfdfdf;
  padding: 20px 0;
}

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

.list-under-news time {
  display: inline-block;
  color: #888;
  margin-right: 25px;
}

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

/*症例紹介*/
.case-layout {
  background-color: #f5f5f5;
  padding: 6%;
}

.case-layout time {
  color: #aaa;
  display: block;
  font-size: 12px;
  margin-right: 15px;
}

.case-layout .category {
  display: inline-block;
  background-color: var(--color_primary);
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}

.case-layout .l-ttl {
  font-size: 24px;
  margin-bottom: 30px;
}

.case-layout .post-data {
  display: flex;
  margin-bottom: 20px;
}

.case-layout .before-after {
  margin-bottom: 30px;
}

.case-layout .l-table {
  background-color: #fff;
  border: 1px solid #eee;
}

.case-layout .l-table th,
.case-layout .l-table td {
  border: 1px solid #eee;
  line-height: 1.5;
  font-size: 15px;
  padding: 15px;
}

.case-layout .l-table th {
  background-color: #37414f;
  color: #fff;
  vertical-align: top;
  text-align: left;
  width: 25%;
}

.case-layout .l-btn {
  text-align: center;
  margin-top: 50px;
}

.case-layout .l-item {
  margin-top: 50px;
}

.case-layout .item-ttl {
  border-bottom: 1px solid var(--color_primary);
  font-size: 1.8rem;
  position: relative;
  padding: 0 0 12px;
  margin: 0 0 25px;
}

.case-layout .item-ttl::after {
  content: "";
  width: 25px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

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

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5%;
}

.before-after .item {
  text-align: center;
  position: relative;
}

.before-after figure {
  display: grid;
  place-items: center;
  height: 300px;
  position: relative;
}

.before-after figure img {
  object-fit: contain;
  object-position: center;
  max-height: 300px;
}

.before-after p::before, .before-after p::after {
  content: "-";
  margin: 0 5px;
}

.list-case-details>li {
  display: flex;
  flex-direction: row-reverse;
}

.list-case-details>li+li {
  border-top: 1px dashed #c8c8c8;
  margin-top: 30px;
  padding-top: 30px;
}

.list-case-details .list-img {
  width: 35%;
  margin-left: 30px;
}

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

.list-case-details .list-ttl {
  font-size: 17px;
}

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

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

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

.single-post-layout .post-data time {
  display: inline-block;
  color: #A8A7A6;
  font-family: var(--font_en);
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 20px;
}

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

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

.postdata a {
  text-decoration: underline;
}

.postdata .link {
  color: var(--color_primary);
}

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

.postdata strong {
  font-weight: 700;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ul li::marker {
  color: var(--color_primary);
  font-size: 1.5rem;
}

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

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

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

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

.postdata h2 {
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

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

.postdata h3 {
  font-size: 2rem;
  background-image: radial-gradient(circle, var(--color_primary) 1px, transparent 2px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 10px 5px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.postdata h4 {
  font-size: 1.8rem;
  padding-left: 25px;
  margin-bottom: 15px;
  position: relative;
}

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

.postdata .wp-block-button__link {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 50px;
  padding: 5px 20px;
  min-width: 160px;
  min-height: 44px;
  position: relative;
  transition: background-color 0.3s;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

  /*通常投稿*/
  .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-desc {
    flex: 1;
  }

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

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

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

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

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

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

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

  /*症例紹介*/
  .case-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .case-layout .post-data {
    display: flex;
    margin-bottom: 20px;
  }

  .case-layout .before-after {
    margin-bottom: 30px;
  }

  .case-layout .l-table th,
  .case-layout .l-table td {
    display: block;
    padding: 10px;
    font-size: 14px;
  }

  .case-layout .l-table th {
    width: 100%;
  }

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

  .case-layout .l-item {
    margin-top: 30px;
  }

  .case-layout .item-ttl {
    border-bottom: 1px solid var(--color_primary);
    font-size: 18px;
    position: relative;
    padding: 0 0 12px;
    margin: 0 0 25px;
  }

  .case-layout .item-ttl::after {
    content: "";
    width: 25px;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
  }

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

  .before-after {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .before-after figure {
    height: auto;
  }

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

  .list-case-details .list-img {
    width: 100%;
    margin: 0 0 25px;
  }

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

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

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

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

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

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

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

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

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

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

.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: 0 5vw;
    width: 100%;
  }

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

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

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

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

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

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

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

.sp-only {
  display: none;
}

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

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

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 1.1rem;
}

.fs14 {
  font-size: 1.4rem;
}

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

.red {
  color: #F44336;
}

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

.marker {
  background: linear-gradient(transparent 50%, #80FF00 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 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

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

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

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

  .sp-only {
    display: block;
  }

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

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

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

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

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

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

/*ボタン*/
.btn-out {
  padding-right: 15px;
  position: relative;
}

.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}

.btn-out::after {
  content: "";
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

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

.btn-more {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  position: relative;
  letter-spacing: 0.16em;
  min-width: 130px;
  transform: translateX(0);
  font-weight: 700;
}

.btn-more::after {
  content: "";
  background: url(../images/share/arrow-circle.svg) no-repeat center/contain;
  display: block;
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
  transform: translateX(0);
}

.btn-more:hover::after {
  transform: translateX(10px);
}

.btn-header {
  background: var(--color_primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  line-height: 1;
  min-height: 44px;
  min-width: 160px;
  padding: 10px;
  transition: opacity 0.5s;
  line-height: 1.5;
  border-radius: 22px;
  font-weight: 700;
}

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

.btn-tel {
  background: #fff;
  color: var(--color_text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  min-height: 76px;
  min-width: 280px;
  padding: 10px 20px;
  transition: 0.3s;
  border-radius: 50px;
  font-size: 1.9rem;
  font-family: var(--font_en);
  font-weight: 600;
  letter-spacing: 0.05em;
  gap: 5px;
}

.btn-reservation {
  background: #fff;
  color: var(--color_text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  min-height: 76px;
  min-width: 280px;
  padding: 10px 20px;
  position: relative;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.btn-reservation::before {
  content: "";
  display: block;
  background: url(../images/share/arrow_b.svg) no-repeat center/contain;
  width: 13px;
  height: 10px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

@media (hover: hover) {

  .btn-tel:is(:hover, :focus),
  .btn-reservation:is(:hover, :focus) {
    background-color: #DFEFDC;
  }
}

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

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

@media (max-width: 800px) {
  .btn-more::after {
    width: 50px;
    height: 50px;
  }

  .btn-header,
  .btn-contact {
    width: 100%;
  }

  .btn-tel,
  .btn-reservation {
    min-height: 56px;
  }
}

/*診療カレンダー*/
: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 {
  background: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.time-table-head {
  background-color: var(--color_primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

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

.time-table-body {
  border-left: 1px solid #A8A7A6;
  border-right: 1px solid #A8A7A6;
  border-bottom: 1px solid #A8A7A6;
}

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

.time-table-body .item:first-child {
  background-color: #EFEEE9;
  letter-spacing: 0;
  border-right: 1px solid #A8A7A6;
}

.time-table-head,
.time-table-body {
  display: grid;
  grid-template-columns: 125px repeat(6, 1fr) 60px;
}

.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: 85px repeat(6, 1fr) 50px !important;
  }
}

/*------------
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.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: #DFEFDC;
  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 #484644;
  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: -1.8em;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #E5E3E0;
  display: inline-block;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  height: 3px;
  width: 40px;
}

.splide__pagination__page.is-active {
  background: #484644;
  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;
}

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