@charset "UTF-8";

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

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

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

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

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

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

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

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

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

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

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
select {
  vertical-align: middle;
}

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

del {
  text-decoration: line-through;
}

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

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

img {
  vertical-align: top;
}

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "FOT-筑紫ゴシック Pr5 R", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  color: #333;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif JP";
  font-weight: 500;
}

.link {
  color: #A89374;
  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: 60px;
  }
}

main {
  background-color: #fff;
}

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

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

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

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

/*------------
Gnavi
--------------*/
/*normal*/
.gnavi {
  display: flex;
  gap: 30px;
  align-items: center;
}

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

.gnavi-list>li>a,
.gnavi-list>li>span {
  display: inline-block;
  font-family: "Noto Serif JP";
  letter-spacing: 0.05em;
}

.gnavi-list a:hover {
  color: #757575;
}

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

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

.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: #fff;
  border-radius: 5px;
  box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  font-family: "Noto Serif JP";
  font-size: 0.933rem;
  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: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

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

.h-tel {
  border: 1px solid #333;
  background: url(../images/share/icon_tel.svg) no-repeat center;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  transition: 0.3s;
}

.h-tel:hover {
  background: #333 url(../images/share/icon_tel_w.svg) no-repeat center;
}

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

  .h-logo {
    width: 150px;
  }

  .gnavi {
    display: none;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  padding-left: 5vw;
}

.hero-catch {
  font-family: "Noto Serif JP";
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  transform: translate(0, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 1);
}

.hero-catch .text01 {
  font-size: 2.0rem;
  margin-bottom: 1.0rem;
}

.hero-catch .text02 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.5rem;
}

.hero-catch .text02::before,
.hero-catch .text02::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 1);
  width: 24px;
  height: 1px;

}

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

.hero .splide__pagination {
  justify-content: flex-start;
  right: 10px;
}

.hero-news {
  color: #fff;
  background-color: rgba(77, 77, 77, 0.9);
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 30px;
  align-items: center;
  padding: 15px 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  min-width: 500px;
}

.hero-news-ttl {
  font-family: "Marcellus";
  font-size: 1.667rem;
}

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

  .hero-catch {
    top: 48%;
  }

  .hero-catch .text01 {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .hero-catch .text02 {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .hero-catch .text02::before,
  .hero-catch .text02::after {
    width: 20px;
  }

  .hero .splide__slide img {
    height: calc(100svh - 130px);
  }

  .hero .splide__pagination {
    justify-content: flex-start;
    right: 10px;
    bottom: 15px;
  }

  .hero-news {
    grid-template-columns: 1fr;
    grid-gap: 10px;
    padding: 25px 20px;
    position: static;
    min-height: 132px;
    min-width: 0;
  }

  .hero-news-ttl {
    font-size: 1.467rem;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}

.t-ttl::before {
  display: block;
  content: attr(data-en);
  font-family: "Marcellus";
  font-size: 1.2rem;
  margin-bottom: 0.3em;
  line-height: 1;
}

.t-ttl.center {
  text-align: center;
}

@media (max-width: 800px) {
  .t-ttl {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .t-ttl::before {
    font-size: 1.1rem;
  }
}

/*------------
Block
--------------*/
.sec01 {
  padding: 150px 0;
  text-align: center;
}

.sec01-ttl {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.sec01-txt {
  font-family: "Noto Serif JP";
  font-size: 1.333rem;
  line-height: 2.2;
}

.sec01-txt+.sec01-txt {
  margin-top: 35px;
}

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

  .sec01-ttl {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .sec01-txt {
    text-align: left;
    font-size: 1.067rem;
    line-height: 2;
  }
}

.sec02-layout {
  display: flex;
  align-items: center;
  gap: 8%;
  padding-left: calc((90% - 1300px) / 2);
  padding-right: 5%;
  margin-left: 5%;
}

.sec02-layout .l-img {
  width: 34.62%;
  min-width: 450px;
}

.sec02-layout .l-desc {
  flex: 1;
  max-width: 600px;
  text-align: justify;
}

@media (max-width: 800px) {
  .sec02-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0;
    margin: 0;
  }

  .sec02-layout .l-img {
    width: 100%;
    min-width: 0;
  }

  .sec02-layout .l-img img {
    object-fit: cover;
    height: 60vh;
  }

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

.sec03 {
  padding: 100px 0 200px;
}

.sec03-layout {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8%;
  padding-left: calc((90% - 1300px) / 2);
  padding-right: 5%;
  margin-left: 5%;
}

.sec03-layout .l-img {
  text-align: right;
  width: 61.54%;
}

.sec03-layout .l-desc {
  flex: 1;
  max-width: 400px;
  text-align: justify;
}

.sec03-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 20px;
  text-align: center;
}

.sec03-list .num {
  color: #fff;
  display: grid;
  place-items: center;
  background-color: #4D4D4D;
  font-family: "Marcellus";
  font-size: 2.333rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 30px;
}

.sec03-list .list-txt {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "Noto Serif JP";
  font-size: 1.467rem;
  line-height: 1.8;
  padding: 60px 15px;
  position: relative;
  transition: 0.3s;
}

.sec03-list .list-txt::before {
  content: "";
  background-color: #333;
  width: 1px;
  height: 30px;
  position: absolute;
  top: -15px;
  left: 50%;
}

.sec03-list a {
  display: block;
}

.sec03-list a:hover .list-txt {
  background-color: #4D4D4D;
  color: #fff;
}

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

  .sec03-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0;
    margin: 0;
  }

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

  .sec03-layout .l-img img {
    object-fit: cover;
    aspect-ratio: 1/1;
  }

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

  .sec03-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 20px;
  }

  .sec03-list .num {
    font-size: 1.167rem;
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
  }

  .sec03-list .list-txt {
    display: grid;
    place-items: center;
    aspect-ratio: 1/1;
    font-size: 1.067rem;
    padding: 20px 10px;
  }

  .sec03-list .list-txt br {
    display: none;
  }

  .sec03-list .list-txt::before {
    height: 20px;
    top: -10px;
  }
}

.sec04 {
  margin-bottom: 200px;
}

.sec04-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 10%;
}

.sec04-layout .l-img {
  width: 50%;
}

.sec04-layout .l-desc {
  flex: 1;
  text-align: justify;
  padding-top: 100px;
}

.sec04-layout .l-desc p+p {
  margin-top: 1.5rem;
}


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

  .sec04-layout {
    flex-direction: column;
    gap: 2.0rem;
  }

  .sec04-layout .l-img {
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
  }

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

  .sec04-layout .t-ttl {
    text-align: center;
  }
}

.sec05 {
  padding: 200px 0 200px;
}

.sec05-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.sec05-head .t-ttl {
  margin-bottom: 0;
}

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

  .sec05-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
  }

  .sec05-head .t-ttl {
    margin-bottom: 0;
  }
}

.sec06 {
  background: url(../images/sec06_bg.jpg) no-repeat center/cover;
  width: 90%;
  padding: 160px 0;
  margin: 0 auto;
}

.sec06-layout {
  padding-left: 50%;
}

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

  .sec06-layout {
    padding: 0;
  }
}

.sec07 {
  margin-bottom: 200px;
}

.sec07-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 20px;
  margin-bottom: 100px;
}

.sec07-list a {
  background-color: #EDEDED;
  display: block;
  text-align: center;
  padding: 35px;
  transition: 0.3s;
}

.sec07-list a:hover {
  background-color: #4D4D4D;
  color: #fff;
}

.sec07-list .list-img {
  margin-bottom: 25px;
}

.sec07-list .list-ttl::after {
  content: attr(data-en);
  display: block;
  color: #9D9D9D;
  font-family: "Marcellus";
}

.sec07-layout {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  background: #DADADC;
  max-width: 1024px;
  margin: 0 auto;
}

.sec07-layout .l-img {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.sec07-layout .l-img::before {
  content: "";
  background-image: linear-gradient(90deg, rgb(218, 218, 220) 0%, rgba(218, 218, 220, 0) 15%);
  position: absolute;
  inset: 0;
  z-index: 10;
}

.sec07-layout .l-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s;
}

.sec07-layout .l-ttl {
  flex: 1;
  font-size: 1.6rem;
  padding: 0 60px;
}

.sec07-layout .l-ttl::before {
  display: block;
  content: attr(data-en);
  font-family: "Marcellus";
  font-size: 1.333rem;
  margin-bottom: 0.5em;
}

.sec07-layout:hover .l-img img {
  transform: scale(1.1);
}

@media (max-width: 800px) {
  .sec07 {
    margin-bottom: 100px;
  }

  .sec07-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 50px;
  }

  .sec07-list a {
    display: grid;
    padding: 25px 15px;
    height: 100%;
  }

  .sec07-list .list-img {
    max-width: 70px;
    margin: 0 auto 15px;
  }

  .sec07-list .list-ttl {
    font-size: 0.867rem;
  }

  .sec07-layout {
    display: block;
  }

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

  .sec07-layout .l-img::before {
    display: none;
  }

  .sec07-layout .l-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .sec07-layout .l-ttl {
    font-size: 1.2rem;
    padding: 25px;
  }

  .sec07-layout .l-ttl::before {
    font-size: 1.1rem;
  }
}

.sec08-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.sec08-head .t-ttl {
  margin-bottom: 0;
}

.sec08-gallery {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 30px;
  margin-top: 100px;
  padding: 0 27px;
}

.sec08-gallery .item:nth-of-type(1) {
  grid-area: 1/1/3/5;
}

.sec08-gallery .item:nth-of-type(2) {
  grid-area: 1/5/3/8;
}

.sec08-gallery .item:nth-of-type(3) {
  grid-area: 1/8/3/10;
}

.sec08-gallery .item:nth-of-type(4) {
  grid-area: 1/10/2/12;
}

.sec08-gallery .item:nth-of-type(5) {
  grid-area: 2/10/3/12;
}

.sec08-gallery img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .sec08-head {
    margin-bottom: 2rem;
  }

  .sec08-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 1fr);
    grid-gap: 15px;
    margin-top: 50px;
    padding: 0 5%;
  }

  .sec08-gallery .item:nth-of-type(1) {
    grid-area: 1/1/5/2;
  }

  .sec08-gallery .item:nth-of-type(2) {
    grid-area: 1/2/5/3;
  }

  .sec08-gallery .item:nth-of-type(3) {
    grid-area: 5/1/9/2;
  }

  .sec08-gallery .item:nth-of-type(4) {
    grid-area: 5/2/7/3;
  }

  .sec08-gallery .item:nth-of-type(5) {
    grid-area: 7/2/9/3;
  }
}

.sec09 {}

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

.btn-recruit {
  display: grid;
  align-items: center;
  background-color: #4D4D4D;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 1.6rem;
  text-align: center;
  position: relative;
  height: 120px;
  transition: opacity 0.3s;
}

.btn-recruit::before {
  content: "";
  border: 1px solid #fff;
  position: absolute;
  inset: 10px;
}

.btn-recruit:hover {
  opacity: 0.8;
}

.sec09-gallery {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 30px;
  margin-top: 100px;
  padding: 0 27px;
}

.sec09-gallery .item:nth-of-type(1) {
  grid-area: 1/1/3/4;
}

.sec09-gallery .item:nth-of-type(2) {
  grid-area: 1/4/3/6;
}

.sec09-gallery .item:nth-of-type(3) {
  grid-area: 1/6/2/8;
}

.sec09-gallery .item:nth-of-type(4) {
  grid-area: 2/6/3/8;
}

.sec09-gallery .item:nth-of-type(5) {
  grid-area: 1/8/3/12;
}

.sec09-gallery img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sec09-map {
  margin-top: 30px;
}

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

@media (max-width: 800px) {
  .sec09 {}

  .sec09-layout {
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }

  .btn-recruit {
    font-size: 1.2rem;
    height: 80px;
  }

  .sec09-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 1fr);
    grid-gap: 15px;
    margin-top: 50px;
    padding: 0 5%;
  }

  .sec09-gallery .item:nth-of-type(1) {
    grid-area: 1/1/5/2;
  }

  .sec09-gallery .item:nth-of-type(2) {
    grid-area: 1/2/5/3;
  }

  .sec09-gallery .item:nth-of-type(3) {
    grid-area: 5/1/9/2;
  }

  .sec09-gallery .item:nth-of-type(4) {
    grid-area: 5/2/7/3;
  }

  .sec09-gallery .item:nth-of-type(5) {
    grid-area: 7/2/9/3;
  }

  .sec09-map {
    margin-top: 50px;
  }

  .sec09-map iframe {
    height: 400px;
  }
}

.sec10 {
  padding-bottom: 200px;
}

.sec10-list {
  display: grid;
  grid-gap: 35px;
}

.sec10-list+.sec10-list {
  margin-top: 40px;
}

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

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

.sec10-list .list-img {
  overflow: hidden;
  margin-bottom: 2rem;
}

.sec10-list .list-img img {
  transition: .3s;
  width: 100%;
}

.sec10-list .list-ttl {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.sec10-list .list-ttl::before {
  display: block;
  content: attr(data-en);
  color: #9D9D9D;
  font-family: "Marcellus";
  font-size: 2.1em;
  margin-bottom: 0.5em;
}

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

.sec10-btn {
  text-align: right;
  margin-top: 2rem;
}

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

  .sec10-list {
    grid-gap: 25px;
  }

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

  .sec10-list+.sec10-list {
    margin-top: 25px;
  }

  .sec10-list .list-img {
    margin-bottom: 1.5rem;
  }

  .sec10-list .list-ttl {
    font-size: 1.2rem;
  }

  .sec10-list .list-ttl::before {
    font-size: 1.8em;
    margin-bottom: 0.3em;
  }
}

.sec11 {
  margin-bottom: 200px;
}

.sec11-layout {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.sec11-layout .l-img {
  width: 50%;
}

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

.sec11-list li+li {
  margin-top: 15px;
}

.sec11-list a {
  display: grid;
  place-items: center;
  background-color: #EDEDED;
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  min-height: 125px;
  transition: .3s;
}

.sec11-list a:hover {
  background-color: #cfcfcf;
}

.sec11-list a::before {
  content: "";
  background-color: #BBB9B9;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translate(0, -50%);
}


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

  .sec11-layout {
    flex-direction: column;
  }

  .sec11-layout .l-img {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .sec11-layout .l-img img {
    object-fit: cover;
    aspect-ratio: 7/5;
  }

  .sec11-layout .l-desc {
    padding: 0;
    margin: 0;
  }

  .sec11-list li+li {
    margin-top: 15px;
  }

  .sec11-list a {
    font-size: 1.1rem;
    line-height: 1.5;
    min-height: 80px;
    padding: 0 25px;
  }

  .sec11-list a::before {
    width: 15px;
    height: 15px;
    left: -7px;
  }

}

.sec12 {
  margin-bottom: 200px;
}

.sec12-layout {
  display: flex;
  align-items: center;
}

.sec12-layout .l-img {
  width: 50%;
  position: relative;
}

.sec12-layout .l-img::before {
  display: block;
  content: attr(data-en);
  font-family: "Marcellus";
  font-size: 2.333rem;
  line-height: 1;
  position: absolute;
  top: 25px;
  right: -16px;
  writing-mode: vertical-rl;
  z-index: 1;
}

.sec12-layout .l-desc {
  flex: 1;
  padding-left: 70px;
  position: relative;
}

.sec12-layout .l-desc p+p {
  margin-top: 2.0rem;
}

.sec12-layout .l-ttl {
  font-size: 1.333rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 800px) {
  .sec12 {
    margin-bottom: 100px;
  }

  .sec12-layout {
    flex-direction: column;
    gap: 2.0rem;
  }

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

  .sec12-layout .l-desc {
    padding-left: 0;
  }

  .sec12-layout .l-ttl {
    font-size: 1.333rem;
    margin-bottom: 2.0rem;
  }
}



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

.top-post-layout01 .l-ttl {
  font-size: 2rem;
  margin-bottom: 15px;
}

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

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

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

.list-top-blog.col4 .list-img {
  margin-bottom: 10px;
}

.list-top-blog.col4 .list-ttl {
  font-size: 15px;
  line-height: 1.5;
}

.list-top-blog .list-img {
  border: 1px solid #eaeaea;
  margin-bottom: 20px;
  overflow: hidden;
}

.list-top-blog .list-img img {
  aspect-ratio: 7/5;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s;
}

.list-top-blog time {
  display: block;
  font-family: "Marcellus";
  font-size: 0.8rem;
}

.list-top-blog .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 1.067rem;
  overflow: hidden;
  margin-bottom: 10px;
}

.list-top-blog .category {
  display: inline-block;
  background-color: #707070;
  color: #fff;
  font-size: 11px;
  padding: 0 5px;
  margin-right: 5px;
}

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

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

.list-top-news a {
  display: flex;
  gap: 1rem;
}

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

.list-top-news time {
  display: inline-block;
  color: #aaa;
  font-family: "Marcellus";
  margin-top: 1px;
}

.list-top-news .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: "Noto Serif JP";
  max-width: 500px;
}

.list-top-case {
  border-top: 1px solid #dfdfdf;
}

.list-top-case a {
  display: block;
  border-bottom: 1px solid #dfdfdf;
  padding: 20px 0;
}

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

.list-top-case .list-data {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.list-top-case time {
  display: inline-block;
  color: #888;
  margin-right: 15px;
}

.list-top-case .category {
  display: inline-block;
  background-color: #333;
  color: #fff;
  font-size: 11px;
  padding: 0 5px;
  margin-right: 5px;
}

.list-top-case .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: "Noto Serif JP";
}

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

  .top-post-layout01 .l-ttl {
    font-size: 1.467rem;
  }

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

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

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

  .list-top-news a {
    display: block;
    line-height: 1.5;
  }

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

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

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

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

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

.sec13 {
  padding-top: 150px;
}

@media screen and (max-width: 800px) {
  .sec13 {
    padding-top: 80px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  background: url(../images/under/page_ttl_bg.jpg) no-repeat center/cover;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 60px;
  margin-top: 120px;
  height: 340px;
  margin-left: 5%;
}

.page-ttl h1 {
  font-size: 2.333rem;
  line-height: 1.2;
}

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

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

.breadcrumb ul li {
  display: inline;
}

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

.u-contents {
  padding: 150px 0;
  overflow: hidden;
}

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

@media (max-width: 800px) {
  .page-ttl {
    background: url(../images/under/page_ttl_bg.jpg) no-repeat center right 10%/cover;
    padding: 0 5% 20px;
    margin-top: 100px;
    height: 160px;
  }

  .page-ttl h1 {
    font-size: 1.667rem;
  }

  .u-contents {
    padding: 80px 0;
  }
}

.u-h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.u-h3 {
  font-size: 1.6rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.u-h3::after {
  content: "";
  background-color: #4D4D4D;
  width: 40px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.u-h4 {
  font-size: 1.333rem;
  margin-bottom: 1rem;
}

.u-num-ttl {
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid #4D4D4D;
  font-size: 1.467rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  min-height: 110px;
  position: relative;
  z-index: 0;
}

.u-num-ttl::before {
  display: block;
  color: rgba(157, 157, 157, 0.12);
  content: attr(data-en);
  font-family: "Marcellus";
  font-size: 7.333rem;
  line-height: 1;
  position: absolute;
  top: 0;
  z-index: -1;
}

.u-sub-ttl {
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  font-family: "Noto Serif JP";
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

.u-sub-ttl::before,
.u-sub-ttl::after {
  content: "-";
}

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

  .u-h3 {
    font-size: 1.467rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.8rem;
  }

  .u-h4 {
    font-size: 1.333rem;
    margin-bottom: 1rem;
  }

  .u-num-ttl {
    font-size: 1.333rem;
    padding-bottom: 0.8rem;
    margin-bottom: 2rem;
    min-height: 80px;
  }

  .u-num-ttl::before {
    font-size: 5.333rem;
  }
}

.tall {}

.tall+.tall {
  margin-top: 10rem;
}

.short+.short {
  margin-top: 5rem;
}

.x-short+.x-short {
  margin-top: 2.5rem;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall+.tall {
    margin-top: 4rem;
  }

  .short+.short {
    margin-top: 3rem;
  }

  .x-short+.x-short {
    margin-top: 2rem;
  }
}

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

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

.list-disc li:before {
  content: "・";
  color: #4D4D4D;
  display: block;
  position: absolute;
  left: 0;
}

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

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

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

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

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

.list-num>li:before {
  background-color: #4D4D4D;
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-family: "Marcellus";
  font-size: 11px;
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 20px;
  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: #4D4D4D;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 1.2rem;
  padding: 1.5rem;
}

.dl-style01 dt::before {
  display: block;
  content: attr(data-en);
  font-family: "Marcellus";
  font-size: 0.933rem;
  line-height: 1.5;
}

.dl-style01 dd {
  background: #EDEDED;
  padding: 1.5rem;
}

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

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

.card-style01>li {
  display: flex;
  flex-direction: column;
  background-color: #EDEDED;
  padding: 1.5rem;
}

.card-style01 .card-img {
  margin-bottom: 1rem;
}

.card-style01 .card-desc {
  margin-bottom: 1rem;
}

.card-style01 .card-ttl {
  font-size: 1.067rem;
  border-bottom: 1px solid #4D4D4D;
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
}

.card-style01 .card-btn {
  margin-top: auto;
}

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

.card-style01.col4 {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  line-height: 1.5;
}

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

  .card-style01.col2 {
    grid-template-columns: 1fr;
  }

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

.card-style02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 25px;
  margin-bottom: 5px;
}

.card-style02>li {
  display: flex;
  flex-direction: column;
}

.card-style02 .num {
  color: #fff;
  display: grid;
  place-items: center;
  background-color: #4D4D4D;
  font-family: "Marcellus";
  font-size: 2.333rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 30px;
}

.card-style02 .card-inner {
  flex: 1;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "Noto Serif JP";
  padding: 3rem 2rem;
  position: relative;
}

.card-style02 .card-inner::before {
  content: "";
  background-color: #333;
  width: 1px;
  height: 30px;
  position: absolute;
  top: -15px;
  left: 50%;
}

.card-style02 .card-ttl {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.8rem;
}

@media (max-width: 800px) {
  .card-style02 {
    grid-template-columns: 1fr;
    grid-gap: 40px 25px;
  }

  .card-style02 .num {
    font-size: 1.533rem;
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
  }
}

.card-style03 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px 25px;
  margin-bottom: 5px;
}

.card-style03>li {
  display: flex;
  flex-direction: column;
}

.card-style03 .num {
  color: #fff;
  display: grid;
  place-items: center;
  background-color: #4D4D4D;
  font-family: "Marcellus";
  font-size: 2.333rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 30px;
}

.card-style03 .card-inner {
  flex: 1;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "Noto Serif JP";
  padding: 3rem 2rem;
  position: relative;
}

.card-style03 .card-inner::before {
  content: "";
  background-color: #333;
  width: 1px;
  height: 30px;
  position: absolute;
  top: -15px;
  left: 50%;
}

.card-style03 .card-ttl {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.8rem;
}

@media (max-width: 800px) {
  .card-style03 {
    grid-template-columns: 1fr;
    grid-gap: 40px 25px;
  }

  .card-style03 .num {
    font-size: 1.533rem;
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
  }
}

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

.table-style01 th {
  background-color: #EDEDED;
  font-family: "FOT-筑紫ゴシック Pro B";
}

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

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

@media (max-width: 800px) {

  .table-style01 th,
  .table-style01 td {
    font-size: 0.933rem;
    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: #EDEDED;
  padding: 5%;
}

.box-style01 .box-ttl {
  font-size: 1.667rem;
  margin-bottom: 1rem;
}

.box-style02 {
  border: 1px solid #4D4D4D;
  padding: 5%;
}

.box-style02 .box-ttl {
  font-size: 1.667rem;
  margin-bottom: 1rem;
}

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

  .box-style01 .box-ttl {
    font-size: 1.333rem;
    margin-bottom: 1rem;
  }

  .box-style02 {
    padding: 5%;
  }

  .box-style02 .box-ttl {
    font-size: 1.333rem;
    margin-bottom: 1rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.under-slider01 .item-desc {
  margin-top: 1.5rem;
}

.under-slider01 .item-ttl {
  font-size: 1.2rem;
}

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

.under-slider02 figcaption {
  background: #fff;
  font-size: 11px;
  font-weight: bold;
  font-family: "FOT-筑紫ゴシック Pro B";
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

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

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

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

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

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

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

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

.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 #ccc;
  background-color: #ccc;
  color: #fff;
  top: 0;
  left: 0;
}

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

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

.faq-style .faq-open-icon {
  background: url(https://baboon.heteml.net/creative/coding/codepen/images/faq_arrow.svg) no-repeat center/contain;
  width: 10px;
  height: 21px;
  position: absolute;
  right: 30px;
  top: 24px;
  transition: transform 0.3s;
}

.faq-style .item>dt:hover .faq-icon {
  background-color: #ffa29d;
  color: #fff;
}

.faq-style .is-open .faq-icon {
  background-color: #ffa29d;
  color: #fff;
}

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

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

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

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

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

  .faq-style .faq-open-icon {
    width: 9px;
    height: 20px;
    right: 0;
    top: 19px;
  }
}

.flow-style01 {
  border: 1px solid #EDEDED;
  padding: 4rem;
  display: grid;
  gap: 40px;
}

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

.flow-style01>li:not(:last-child)::before {
  content: "";
  background-color: #4D4D4D;
  width: 1px;
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 40px;
}

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

.flow-style01 .flow-num {
  display: grid;
  place-items: center;
  background-color: #4D4D4D;
  border-radius: 50%;
  color: #fff;
  font-size: 1.867rem;
  font-family: "Marcellus";
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  width: 80px;
  height: 80px;
}

.flow-style01 .wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 5%;
}

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

.flow-style01 .flow-img img {
  object-fit: cover;
  aspect-ratio: 7/5;
  width: 100%;
  height: 100%;
}


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

.flow-style01 .flow-ttl {
  font-size: 1.333rem;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .flow-style01 {
    padding: 1.5rem;
    gap: 40px;
  }

  .flow-style01>li {
    grid-template-columns: 50px 1fr;
    grid-gap: 1.5rem;
  }

  .flow-style01>li:not(:last-child)::before {
    top: 50px;
    left: 25px;
  }

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

  .flow-style01 .flow-num {
    font-size: 1.333rem;
    width: 50px;
    height: 50px;
  }

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

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

  .flow-style01 .flow-desc {
    padding: 0;
    line-height: 1.8;
  }

  .flow-style01 .flow-ttl {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}

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

.flow-style02>li {
  background-color: #EDEDED;
  padding: 1.2rem;
  line-height: 1.5;
  position: relative;
}

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

.flow-style02 .flow-num {
  border: 1px solid #4D4D4D;
  font-family: "Marcellus";
  font-size: 0.867rem;
  line-height: 1;
  padding: 5px 20px;
  margin: 0 auto 0.5rem;
  width: fit-content;
}

.flow-style02 .flow-img {
  margin-bottom: 1rem;
}

.flow-style02 .flow-ttl {
  font-size: 1.133rem;
  text-align: center;
  margin-bottom: 1rem;
}

.flow-style02 .flow-btn {
  display: grid;
  grid-gap: 10px;
  margin-top: 2rem;
}

.flow-style02 .btn-more {
  font-size: 1rem;
  width: fit-content;
}

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

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



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

.flow-style03>li {
  background-color: #EDEDED;
  padding: 1.2rem;
  line-height: 1.5;
  position: relative;
}

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

.flow-style03 .flow-num {
  border: 1px solid #4D4D4D;
  font-family: "Marcellus";
  font-size: 0.867rem;
  line-height: 1;
  padding: 5px 20px;
  margin: 0 auto 0.5rem;
  width: fit-content;
}

.flow-style03 .flow-img {
  margin-bottom: 1rem;
}

.flow-style03 .flow-ttl {
  font-size: 1.133rem;
  text-align: center;
  margin-bottom: 1rem;
}

.flow-style03 .flow-ttl.equal-height {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 61px;
}

.flow-style03 .flow-btn {
  display: grid;
  grid-gap: 10px;
  margin-top: 2rem;
}

.flow-style03 .btn-more {
  font-size: 1rem;
  width: fit-content;
}

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

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

  .flow-style03 .flow-ttl.equal-height {
    display: block;
    min-height: 0;
  }
}











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

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

.l-imgR .l-img img,
.l-imgL .l-img img {
  object-fit: cover;
  aspect-ratio: 7/5;
  width: 100%;
  height: 100%;
}

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

@media (max-width: 800px) {

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

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

.layout-style01 {
  display: flex;
  align-items: center;
  gap: 8%;
}

.layout-style01 .l-img {
  width: 60%;
  margin-left: -10%;
}

.layout-style01 .l-desc {
  flex: 1;
  text-align: justify;
}

.layout-style01 .l-ttl {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.layout-style01 .l-ttl::before {
  display: block;
  content: attr(data-en);
  font-family: "Marcellus";
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.layout-style01 .l-sub-ttl {
  color: #9D9D9D;
  display: flex;
  gap: 15px;
  font-family: "Noto Serif JP";
  align-items: center;
}

.layout-style01 .l-sub-ttl::after {
  content: "";
  display: block;
  background-color: #9D9D9D;
  width: 20px;
  height: 1px;
}

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

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

.layout-style02 {
  display: flex;
  align-items: flex-start;
  /*gap: 8%;*/
  gap: 3%;
  padding-bottom: 50px;
  position: relative;
  z-index: 0;
}

.layout-style02::before {
  content: "";
  background-color: #EDEDED;
  height: 360px;
  position: absolute;
  top: 170px;
  left: -100%;
  right: 30%;
  z-index: -1;
}

.layout-style02 .l-img {
  width: 60%;
  margin-left: -10%;
}

.layout-style02 .l-img img {
  object-fit: cover;
  aspect-ratio: 7/5;
  width: 100%;
  height: 100%;
}

.layout-style02 .l-desc {
  flex: 1;
  text-align: justify;
}

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

.layout-style02 .l-ttl::before {
  display: block;
  content: attr(data-en);
  font-family: "Marcellus";
  font-size: 1.333rem;
  margin-bottom: 0.5rem;
}

.layout-style02 .l-sub-ttl {
  color: #9D9D9D;
  display: flex;
  gap: 15px;
  font-family: "Noto Serif JP";
  align-items: center;
}

.layout-style02 .l-sub-ttl::after {
  content: "";
  display: block;
  background-color: #9D9D9D;
  width: 20px;
  height: 1px;
}

.layout-style02 .l-read {
  border-left: 1px solid #333;
  padding-left: 4rem;
  margin-top: 2rem;
}

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

.layout-style02.reverse::before {
  top: 200px;
  left: 30%;
  right: -100%;
}

.layout-style02.reverse .l-img {
  margin: 0 -10% 0 0;
}

.layout-style03 {
  display: flex;
  align-items: flex-start;
  gap: 5%;
}

.layout-style03 .l-img {
  width: 40%;
}

.layout-style03 .l-img img {
  object-fit: cover;
  aspect-ratio: 7/5;
  width: 100%;
  height: 100%;
}

.layout-style03 .l-desc {
  flex: 1;
  text-align: justify;
}

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

.layout-style04 {
  display: flex;
  align-items: flex-start;
}

.layout-style04 .l-img img {
  object-fit: cover;
  aspect-ratio: 7/5;
  width: 100%;
  height: 100%;
}

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

.layout-style04 .l-desc {
  background: #f5f5f5;
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  flex: 1;
}

.layout-style04 .num {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 15px;
}

.layout-style04 .l-ttl {
  font-size: 24px;
  margin-bottom: 15px;
}

.layout-style04 .l-sub-ttl {
  display: flex;
  align-items: center;
  font-family: "Noto Serif JP";
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.layout-style04 .l-sub-ttl::before {
  content: "";
  background: #37414f;
  width: 30px;
  height: 2px;
  margin-right: 25px;
}

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

.layout-style04.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
}

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

.layout-col2 .col-ttl {
  border-bottom: 1px solid #4D4D4D;
  font-size: 1.333rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 800px) {
  .layout-style01 {
    display: grid;
    gap: 2.5rem;
  }

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

  .layout-style01 .l-ttl {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .layout-style01 .l-ttl::before {
    font-size: 1.1rem;
  }

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

  .layout-style02 {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 50px;
  }

  .layout-style02::before {
    height: auto;
    top: 170px;
    bottom: 0;
    left: -100%;
    right: 25%;
  }

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

  .layout-style02 .l-ttl {
    font-size: 1.667rem;
    margin-bottom: 1.5rem;
  }

  .layout-style02 .l-ttl::before {
    font-size: 1rem;
  }

  .layout-style02 .l-read {
    padding-left: 2rem;
    margin-top: 2rem;
  }

  .layout-style02.reverse::before {
    top: 170px;
    bottom: 0;
    left: 25%;
  }

  .layout-style02.reverse .l-img {
    margin: 0;
  }

  .layout-style03 {
    display: grid;
    gap: 2.5rem;
  }

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

  .layout-style04 {
    display: grid;
  }

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

  .layout-style04 .l-desc {
    padding: 150px 5% 25px;
    margin: -120px -5% 0;
  }

  .layout-style04 .l-ttl {
    font-size: 1.333rem;
  }

  .layout-style04.reverse .l-desc {
    padding: 150px 5% 25px;
    margin: -120px -5% 0;
  }

  .layout-col2 {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }

  .layout-col2 .col-ttl {
    font-size: 1.2rem;
  }
}

/*------------
お問い合わせ
--------------*/
.tel-layout {
  background: #4D4D4D;
  color: #fff;
  max-width: 800px;
  padding: 40px;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  border-bottom: 1px solid currentColor;
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 0.5rem;
  margin: 0 auto 2.5rem;
  width: fit-content;
}

.tel-layout .wrapper {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.tel-layout .l-tel {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: "Marcellus";
  font-size: 1.867rem;
  line-height: 1;
  white-space: nowrap;
}

.tel-layout .l-time {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 10px 15px;
  line-height: 1.5;
}

.tel-layout .l-time dt {
  border: 1px solid currentColor;
  text-align: center;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

  .tel-layout .wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .tel-layout p {
    text-align: center;
  }

  .tel-layout p+p {
    margin-top: 0.5rem;
  }
}

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

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

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

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

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

/*------------
Add
--------------*/
.price-style {
  display: grid;
  grid-gap: 20px;
}

.price-style .list-intro {
  border-bottom: 1px dotted #333;
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  justify-content: space-between;
  font-family: "Noto Serif JP";
  font-size: 1.2rem;
  padding: 0 0 5px;
}

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

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

  .price-style .list-intro {
    font-size: 1.067rem;
  }
}

.list-btns {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.list-btns a {
  display: inline-block;
  background-color: #4D4D4D;
  border: 1px solid #4D4D4D;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 1.333rem;
  position: relative;
  display: grid;
  place-items: center;
  min-width: 320px;
  height: 130px;
  transition: 0.3s;
}

.list-btns a::before {
  content: "";
  border: 1px solid #fff;
  position: absolute;
  inset: 10px;
}

.list-btns a:hover {
  background-color: #fff;
  color: #4D4D4D;
}

.list-btns a:hover::before {
  border-color: #4D4D4D;
}

@media (max-width: 800px) {
  .list-btns {
    flex-direction: column;
    gap: 1rem;
  }

  .list-btns a {
    font-size: 1.2rem;
    min-width: 0;
    height: 70px;
  }

  .list-btns a::before {
    inset: 5px;
  }
}

.staff-layout {
  padding-bottom: 60px;
  position: relative;
  z-index: 0;
}

.staff-layout::before {
  content: "";
  background-color: #EDEDED;
  position: absolute;
  top: 125px;
  bottom: 0;
  left: -10%;
  right: -100%;
  z-index: -1;
}

.staff-layout .wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 8%;
}

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

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

.staff-layout .job {
  border: 1px solid #4D4D4D;
  font-family: "Noto Serif JP";
  font-size: 0.933rem;
  line-height: 1;
  padding: 5px 20px;
  margin-bottom: 25px;
  width: fit-content;
}

.staff-layout .l-ttl {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
  margin-bottom: 100px;
}

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

.staff-layout .kana {
  color: #37414F;
  font-family: "Marcellus";
  font-size: 13px;
}

.staff-layout .l-ttl02 {
  border-bottom: 1px solid #4D4D4D;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.card-profile {
  margin-top: 50px;
}

.card-profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5%;
  font-size: 14px;
}

.card-profile .col {
  background-color: #fff;
  padding: 30px;
}

.card-profile .card-ttl {
  border-bottom: 1px solid #4D4D4D;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.dl-career {
  line-height: 1.5;
}

.dl-career .item {
  display: grid;
  grid-template-columns: 60px 1fr;
  border-bottom: 1px solid #EDEDED;
}

.dl-career dt {
  color: #9D9D9D;
  font-family: "Marcellus";
  padding: 10px 0;
}

.dl-career dd {
  padding: 10px 0;
}

@media (max-width: 800px) {
  .staff-layout .wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .staff-layout .l-img {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }

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

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

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

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

  .card-profile {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }

  .card-profile .col {
    padding: 20px;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: #4D4D4D;
  color: #fff;
  padding: 80px 0 0;
  margin-top: auto;
  position: relative;
}

.f-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 75px;
}

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

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

.f-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.site-map {
  display: flex;
  gap: 5%;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 57px;
  padding-left: 15%;
}

.f-links {
  display: grid;
  grid-gap: 0.5rem;
  min-width: 150px;
}

.f-links a {
  display: inline-block;
  font-family: "Noto Serif JP";
  background-image: linear-gradient(#fff, #fff);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.f-links a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.f-links .sub-menu {
  margin: 5px 0 0 15px;
}

.f-links .sub-menu>li::before {
  content: "-";
}

.copyright {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 0.85rem;
  padding: 10px 10px 50px;
}

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

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

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

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

.f-bg {
  background: url(../images/share/f_bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 633px;
  position: fixed;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
}

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

  .f-layout {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .site-map {
    gap: 1rem;
    justify-content: space-between;
    padding: 0;
  }

  .f-links {
    font-size: 0.867rem;
    grid-gap: 0.2rem;
    min-width: 120px;
  }

  .copyright {
    gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 10px 50px;
  }

  .f-bg {
    height: 300px;
  }
}

.sp-navi {
  display: none;
}

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

  .sp-navi-btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    box-shadow: 0 0 20px rgba(70, 70, 70, 0.2);
    background: #fff;
    font-weight: bold;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    height: 70px;
    z-index: 10;
  }

  .sp-navi-btns a {
    background: #4D4D4D;
    color: #fff;
    position: relative;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Marcellus";
    font-size: 13px;
    line-height: 1;
    padding: 8px;
  }

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

  .sp-menu-btn {
    cursor: pointer;
    position: fixed;
    top: 23px;
    right: 20px;
    width: 30px;
    height: 15px;
    z-index: 1010;
  }

  .sp-menu-btn::before {
    content: "MENU";
    color: #4D4D4D;
    font-family: "Noto Serif JP";
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
  }

  .sp-menu-btn span {
    background: #4D4D4D;
    position: absolute;
    width: 30px;
    height: 2px;
    right: 0;
    transition: 0.3s;
    transform-origin: center center;
  }

  .sp-menu-btn span:nth-of-type(1) {
    top: 0;
  }

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

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

  .sp-menu-btn.is-open::before {
    content: "CLOSE";
    color: #fff;
  }

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

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

  .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) translate(4px, -4px);
    width: 30px;
  }

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

  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #4D4D4D;
    color: #fff;
    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;
    font-family: "Noto Serif JP";
  }

  .sp-navi-list>li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sp-navi-list>li>a {
    display: block;
    background: url(../images/share/sp_navi_arrow.svg) no-repeat center right 15px/13px auto;
    padding: 10px 0;
  }

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

  .sp-navi-list .sp-dropdown::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 15px;
    right: 40px;
    width: 1px;
    height: 17px;
  }

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

  .sp-navi-list .sp-dropdown-plus {
    background: url(../images/share/sp_navi_plus.svg) no-repeat center/11px;
    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;*/
	padding left: 1em;
  }

  .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: 10px 40px 10px 0;
    font-size: 0.933rem;
	  line-height: 1.5;
  }

  .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: #4D4D4D;
    font-weight: bold;
    font-size: 0.933rem;
    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-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.category-area dl {
  display: flex;
  align-items: center;
  gap: 15px;
}

.category-area dl dt {
  font-family: "Marcellus";
  font-size: 1.067rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 5px;
}

.category-ttl {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.category-ttl::before {
  content: "";
  display: block;
  border-radius: 2px;
  background-color: #4D4D4D;
  width: 5px;
  height: 1.2em;
  margin-top: 3px;
}

.category-select,
.case-category-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: 2px;
  border: none;
  border: 1px solid #333;
  color: #333;
  font-size: 1rem;
  vertical-align: middle;
  padding: 5px 40px 5px 15px;
  margin: 0;
  width: 100%;
  max-width: 180px;
  height: 40px;
}

@media (max-width: 800px) {
  .category-area {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 15px;
  }
}

/*通常投稿*/
.list-under-post {
  border-top: 1px solid #eee;
  margin-bottom: 50px;
}

.list-under-post>li {
  border-bottom: 1px solid #eee;
}

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

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

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

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

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

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

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

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

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

.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 time {
  display: block;
  font-family: "Marcellus";
  margin-right: 15px;
}

.case-layout .category {
  display: inline-block;
  background-color: #707070;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 11px;
  padding: 0 5px;
}

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

.case-layout .post-data {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  margin-bottom: 20px;
}

.case-layout .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  grid-gap: 60px;
}

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

.case-layout .l-table {
  background-color: #fff;
}

.case-layout .l-table th,
.case-layout .l-table td {
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
  line-height: 1.5;
  padding: 15px 0;
}

.case-layout .l-table th {
  font-family: "Noto Serif JP";
  vertical-align: top;
  text-align: left;
  width: 25%;
}

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

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

.case-layout .item-ttl {
  border-bottom: 1px solid #333;
  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: 50px;
  padding-top: 50px;
  border-top: 1px solid #333;
}

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

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

.before-after .item+.item::after {
  content: "";
  background: url(../images/share/icon_case_arrow.svg) no-repeat center/contain;
  width: 14px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: -26px;
  transform: translateY(-50%);
}

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

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

.before-after p {
  font-family: "Marcellus";
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  bottom: -9px;
  right: 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;
}

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

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

.single-post-layout .l-ttl {
  font-size: 1.667rem;
  margin-bottom: 50px;
}

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

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

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

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

.postdata a {
  text-decoration: underline;
}

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

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

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

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

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

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

.postdata h2 {
  border-top: 2px solid #4D4D4D;
  border-bottom: 2px solid #4D4D4D;
  font-size: 1.6rem;
  padding: 15px 0;
  margin-bottom: 30px;
}

.postdata h3 {
  font-size: 1.467rem;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.postdata h3::before {
  content: "";
  display: block;
  border-radius: 2px;
  background-color: #4D4D4D;
  width: 4px;
  height: 1.2em;
  margin-top: 2px;
}

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

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

.postdata a {
  text-decoration: underline;
}

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

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

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

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

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

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

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

.post-number span,
.post-number a {
  display: inline-block;
  color: #333;
  background-color: #edeef0;
  font-size: 13px;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  transition: 0.3s;
  padding: 0 20px;
}

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

.post-number a:hover {
  background: #333;
  color: #fff;
}

.post-number .current {
  background: #333;
  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: #333;
  border: 1px solid #333;
  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: #333;
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid #333;
  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 #333;
  margin: 0 auto;
  top: 12px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background: #333;
}

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

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

@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-img img {
    height: 90px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .case-layout .before-after p {
    font-size: 2rem;
    right: 20px;
  }

  .case-layout .before-after .item+.item::after {
    display: none;
  }

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

  .case-layout .l-table th {
    width: 100px;
    padding-right: 15px;
  }

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

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

  .case-layout .item-ttl {
    border-bottom: 1px solid #333;
    font-size: 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;
    padding-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: 20px;
    margin-bottom: 30px;
  }
}

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

.sp-only {
  display: none;
}

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

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 11px;
}

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

.red {
  color: #F44336;
}

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

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

.border {
	border:1px solid #4D4D4D;
} 

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

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

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

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

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

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

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

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.pl {
  padding-left: 1em;
}

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

  .sp-only {
    display: block;
  }

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

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

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

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

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

/*ボタン*/
.btn-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-block;
  font-family: "Noto Serif JP";
  font-size: 1.067rem;
  padding-left: 20px;
  padding-bottom: 5px;
  line-height: 1;
  position: relative;
}

.btn-more::before {
  content: "";
  mask: url(../images/share/icon_btn.svg) no-repeat center/contain;
  background-color: #333;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 3px;
  left: 0;
  transition: 0.3s;
}

.btn-more::after {
  content: "";
  background-image: linear-gradient(#333, #333);
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 0;
}

.btn-more.is-white::before {
  background-color: #fff;
}

.btn-more.is-white::after {
  background-image: linear-gradient(#fff, #fff);
}

.btn-more:hover::before {
  transform: rotate(90deg);
}

.btn-more:hover::after {
  background-position: 0 100%;
  background-size: 100% 1px;
}

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

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

/*診療カレンダー*/
:root {
  --event01: #4D4D4D;
  --event02: #EFEFEF;
  --event03: #B5B5B5;
  --event04: #A89374;
}

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

.business-calendar-box-wrap .business-calendar {
  font-family: "Marcellus";
  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 {
  border-bottom: 3px double #4D4D4D;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  padding: 5px;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border-top: 1px solid #4D4D4D;
  border-bottom: 1px solid #4D4D4D;
  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 .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;
}

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

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

.list-event .event01 {
  color: 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;
  }

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

  .list-event {
    display: block;
  }

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

/*診療時間*/
.time-table {
  font-family: "FOT-筑紫ゴシック Pro B";
  text-align: center;
  margin-bottom: 5px;
}

.time-table-head .item {
  padding-bottom: 15px;
}

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

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

.time-table-body .item:first-child {
  letter-spacing: 0;
}

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

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

  .time-table-head .item {
    padding-bottom: 10px;
  }

  .time-table-body .item {
    font-size: 0.867rem;
    padding: 10px 0;
  }

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

  .time-table-txt {
    font-size: 0.867rem;
  }
}

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

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

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

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

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

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

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

.splide__slide img {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

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

.splide--rtl {
  direction: rtl;
}

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

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

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

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

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

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

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

.splide__arrow:disabled {
  opacity: 0.3;
}

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

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

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

.splide__pagination__page.is-active {
  background: #4D4D4D;
  transform: scale(1.4);
  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: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: none;
  }
}
