@charset "UTF-8";
:root {
  --color_bg: #fff;
  --color_text: #333;
  --color_link: #56C3CC;
  --color_border: #9AA3A6;
  --color_primary: #56C3CC;
  --color_secondary: #38A1DB;
  --color_tertiary: #FFE646;
  --color_quaternary: #F6F6F6;
  --font_base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_en: "Montserrat", sans-seri;
  --font_num: "Ephesis", seri;
}

/*-----------------------------------------------------------
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.8rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

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

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

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}
.container.wide {
  max-width: 1300px;
}
.container.wide02 {
  max-width: 1460px;
}
.container.narrow {
  max-width: 800px;
}
.container.gray {
  background-color: var(--color_quaternary);
}

@media (max-width: 800px) {
  body {
    font-size: 1.5rem;
  }

  :target {
    scroll-margin-top: 72px;
  }
}
/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: fixed;
  width: 100%;
  z-index: 100;
}

.header-layout {
  padding:  1.5% 30px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 197px;
  width: 100%;
}
.header-layout .h-utility {
  display: flex;
  align-items: center;
}
.header-layout .h-contact {
  display: flex;
  align-items: center;
  grid-gap: 35px;
  margin-right: 30px;
}
.header-layout .h-tel {
  display: inline-flex;
  align-items: center;
  font-size: 2.3rem;
  gap: 10px;
  letter-spacing: 0.1em;
  font-style: italic;
  font-family: var(--font_en);
}
html.is-open {
  height: 100%;
  overflow: hidden;
}

.menu-btn {
  display: block;
  background: #fff;
  border: 1px solid #94D8F1;
  border-radius: 23px;
  width: 61px;
  height: 61px;
  background: #fff;
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  top: 0;
  right: 0;
  z-index: 9999;
}

.menu-btn span {
  background: linear-gradient(135deg, #94D8F1, #7CE2E4);
  position: absolute;
  width: 24px;
  height: 3px;
  transition: 0.4s;
  left: 50%;
  transform: translateX(-50%);
}
.menu-btn span:nth-of-type(1) {
  top: 20px;
}
.menu-btn span:nth-of-type(2) {
  top: 30px;
}
.menu-btn span:nth-of-type(3) {
  top: 40px;
}

.menu-btn.is-open span {
  background: linear-gradient(135deg, #94D8F1, #7CE2E4);
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 2px;
  transform-origin: center;
}
.menu-btn.is-open span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-btn.is-open span:nth-of-type(2) {
  display: none;
}
.menu-btn.is-open span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1650px) {
  .h-logo {
    width: 280px;
    height: 100%;
  }
}

@media (max-width: 1024px) {
  .h-logo {
    width: 111px;
    height: 61px;
  }

  .header-layout {
    padding: 10px;
    height: 70px;
  }

  .header-layout .h-utility {
    display: none;
  }
}
/*------------
Gnavi
--------------*/
/*normal*/
.gnavi-list {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
.gnavi-list > li > a {
  display: inline-block;
}
.gnavi-list a:hover {
  color: var(--color_primary);
}

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

/*drawer*/
.gnavi-drawer {
  display: none;
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
}
.gnavi-drawer.is-open {
  display: block;
  opacity: 1;
  pointer-events: all;
}

.gnavi-drawer-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color_quaternary);
  overflow-y: auto;
  align-items: center;
  padding: 83px 110px 100px 0;
}

.gnavi-logo {
  position: relative;
  top: -51px;
  left: 60px;
}

.gnavi-drawer-wrapper {
  display: flex;
  gap: 10.7%;
}

.gnavi-drawer-site-map {
  display: flex;
  gap: 125px;
  margin-bottom: 50px;
}

.gnavi-drawer-links > li {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.gnavi-drawer-links > li + li {
  margin-top: 35px;
}

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

.gnavi-drawer-other {
  display: flex;
  align-items: center;
  gap: 50px;
}

.gnavi-drawer-other .btn-navi {
  font-size: 1.6rem;
  width: 272px;
  height: 64px;
  gap: 10px;
}

.gnavi-drawer-other .sns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

@media (max-width: 1199px) {
  .gnavi-drawer-container {
    padding: 83px 60px 100px 0;
  }

  .gnavi-drawer-wrapper {
    gap: 40px;
  }

  .gnavi-drawer-wrapper figure {
    width: 600px;
    max-width: 100%;
  }

  .gnavi-drawer-site-map {
    gap: 30px;
  }

  .gnavi-drawer-links > li {
    font-size: 1.8rem;
  }

  .gnavi-drawer-links > li + li {
    margin-top: 20px;
  }

  .gnavi-drawer-other {
    gap: 30px;
  }

  .gnavi-drawer-other .btn-navi {
    font-size: 1.3rem;
    width: 200px;
    height: 50px;
  }

  .gnavi-drawer-other .btn-navi img {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 800px) {
  .gnavi-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
  }

  .gnavi-drawer-container {
    padding: 80px 30px 100px;
  }

  .gnavi-logo {
    top: -55px;
    left: 0;
  }

  .gnavi-drawer-wrapper {
    display: block;
  }

  .gnavi-drawer-wrapper figure {
    display: none;
  }

  .gnavi-drawer-site-map {
    gap: 25px;
    margin-bottom: 40px;
  }

  .gnavi-drawer-links > li {
    font-size: 1.5rem;
  }

  .gnavi-drawer-links > li + li {
    margin-top: 15px;
  }

  .gnavi-drawer-other {
    gap: 25px;
    justify-content: center;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  padding-bottom: 160px;
}
.hero .splide__slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.hero .splide__pagination {
  justify-content: flex-end;
  right: 10px;
}

.hero-catch {
  position: absolute;
  bottom: 40%;
  left: 5%;
  z-index: 5;
}
.hero-catch .ttl {
  font-size: 65px;
  font-weight: bold;
}
.hero-catch .sub-ttl {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 1199px) {
  .hero {
    padding-bottom: 100px;
  }
}

@media (max-width: 800px) {
  .hero {
    padding-bottom: 60px;
  }
  .hero .splide__slide img {
    height: 50vh;
  }
  .hero .splide__pagination {
    display: none;
  }
  .hero-catch {
    bottom: 50px;
    left: 5%;
  }
  .hero-catch .ttl {
    font-size: 30px;
  }
  .hero-catch .sub-ttl {
    font-size: 13px;
  }
}
/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-h2 {}

.t-h2 .en {
  font-size: clamp(60px, 6vw, 9.8rem);
  font-family: var(--font_en);
  font-style: italic;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 30px;
  white-space: nowrap;
}

.t-h2 .en span {
  color: var(--color_secondary);
}

.t-h2 .jp {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.t-h202 .en {
  font-size: clamp(180px, 16.8vw, 30.3rem);
  font-family: var(--font_en);
  color: oklch( from var(--color_secondary) l c h / 0.11);
  font-style: italic;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.15em;
  position: relative;
  left: -50px;
  white-space: nowrap;
}

.t-h202 .jp {
  font-size: 3rem;
  font-weight: 600;
  position: relative;
  left: 80px;
  top: -80px;
}

.t-ttl {
  text-align: center;
  margin-bottom: 50px;
}

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

@media (max-width: 1450px) {
  .t-h202 .jp {
    top: -60px;
  }
}

@media (max-width: 1199px) {
  .t-h202 .en {
    font-size: 16rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 800px) {

  .t-h2 .en {
    font-size: 4rem;
    margin-bottom: 6px;
    letter-spacing: 0.08em;
  }
  .t-h2 .jp {
    font-size: 2rem;
  }

  .t-h202 .en {
    font-size: 7rem;
    left: 0;
    letter-spacing: 0.05em;
  }

  .t-h202 .jp {
    font-size: 2rem;
    top: -27px;
    left: 10px;
  }

  .t-ttl {
    margin-bottom: 30px;
  }
}
/*------------
Block
--------------*/
.sec01 {
  padding: 130px 0 70px;
  background: url(../images/sec01_bg.jpg) no-repeat center / cover;
  width: 94%;
  height: 100%;
  z-index: 0;
  position: relative;
  margin: 0 auto 170px;
}

.sec02 {
  padding: 110px 0 170px;
  position: relative;
}

.sec02::before {
  content: "";
  position: absolute;
  background-color: var(--color_quaternary);
  width: 78%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.sec03 {
  padding: 180px 0 340px;
  background: url(../images/sec03_bg.jpg) no-repeat center / cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}

.sec04 {
  padding: 155px 0 170px;
  position: relative;
}

.sec04::before {
  content: "";
  position: absolute;
  background: url(../images/sec04_img01.jpg) no-repeat left / contain;
  width: 100%;
  height: 526px;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}

.sec04::after {
  content: "";
  position: absolute;
  background-color: var(--color_quaternary);
  width: 78%;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.sec05 {
  padding: 130px 0 260px;
  background: url(../images/sec05_bg.jpg) no-repeat center / cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}

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

.sec06::before {
  content: "";
  position: absolute;
  background-color: var(--color_quaternary);
  width: 79%;
  height: 91.5%;
  left: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 0 120px 0 0;
}

.sec07 {
  padding: 150px 0 0;
  position: relative;
}

.sec07::before {
  content: "";
  position: absolute;
  background-color: var(--color_quaternary);
  width: 79%;
  height: 90%;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 120px 0 0 0;
}

.sec08 {
  padding: 178px 0 170px;
}

.sec09 {
  padding: 180px 0 170px;
  background: url(../images/sec09_bg.jpg) no-repeat center / cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}

.sec10 {
  padding: 180px 0;
}

.sec11 {
  padding: 185px 0 175px;
  background: url(../images/sec11_bg.jpg) no-repeat center / cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}

.sec12 {
  padding: 180px 0 170px;
}

.sec13 {
  padding: 180px 0 170px;
  background-color: var(--color_quaternary);
}

.sec14 {
  padding: 220px 0 175px;
  background: url(../images/sec14_bg.jpg) no-repeat center / cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}

.sec14::before {
  content: "";
  position: absolute;
  background: url(../images/sec14-ttl_deco.svg) no-repeat center / contain;
  width: 398px;
  height: 100%;
  left: 9.5%;
  top: -80px;
  z-index: 1;
}

@media (max-width: 1450px) {
  .sec14::before {
    left: 5%;
    top: -110px;
  }
}

@media (max-width: 1199px) {
  .sec01 {
    padding: 70px 0;
    margin: 0 auto 100px;
  }

  .sec02 {
    padding: 100px 0;
  }

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

  .sec04 {
    padding: 155px 0 120px
  }

  .sec05 {
    padding: 120px 0 100px;
  }

  .sec06 {
    padding: 100px 0 0;
  }

  .sec06 .container.wide {
    margin-bottom: 100px;
  }

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

  .sec06-layout02 {
    padding: 100px 0;
  }

  .sec07 {
    padding: 100px 0 0;
  }

  .sec07 .container.wide {
    margin-bottom: 100px;
  }

  .sec07-layout + .sec07-layout {
    margin-top: 100px;
  }

  .sec07-layout02 {
    padding: 100px 0;
  }

  .sec08 {
    padding: 120px 0;
  }

  .sec09 {
    padding: 120px 0;
  }

  .sec10 {
    padding: 120px 0;
  }

  .sec11 {
    padding: 120px 0;
  }

  .sec12 {
    padding: 120px 0;
  }

  .sec13 {
    padding: 120px 0;
  }
}

@media (max-width: 800px) {
  .sec01,
  .sec02,
  .sec03,
  .sec04,
  .sec05,
  .sec08,
  .sec09,
  .sec10,
  .sec11,
  .sec12,
  .sec13 {
    padding: 50px 0;
  }

  .sec01 {
    margin: 0 auto;
  }

  .sec04::before {
    height: 160px;
  }

  .sec04::after {
    height: 97%;
  }

  .sec06 {
    padding: 50px 0 0;
  }

  .sec07 {
    padding: 50px 0 0;
  }

  .sec14 {
    padding: 100px 0 30px;
  }

  .sec14::before {
    width: 200px;
    left: 20px;
    top: -80px;
  }
}
/*------------
Post
--------------*/
.top-post-layout01 {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-gap: 50px;
  min-height: 170px;
  position: relative;
}
.top-post-layout01 .l-title {
  margin-bottom: 15px;
}
.top-post-layout01 .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.list-top-blog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 15px;
}
.list-top-blog .list-img {
  border: 1px solid #eaeaea;
  margin-bottom: 20px;
  overflow: hidden;
}
.list-top-blog .list-img img {
  object-fit: cover;
  width: 100%;
  height: 165px;
  transition: transform 0.5s;
}
.list-top-blog time {
  color: #aaa;
  display: block;
  font-size: 12px;
}
.list-top-blog .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-bottom: 10px;
}
.list-top-blog .category {
  display: inline-block;
  background-color: #333;
  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 {
  border-top: 1px solid #dfdfdf;
}
.list-top-news a {
  display: flex;
  border-bottom: 1px solid #dfdfdf;
  padding: 20px 0;
}
.list-top-news a:hover .list-ttl {
  text-decoration: underline;
}
.list-top-news time {
  display: inline-block;
  color: #888;
  margin-right: 25px;
}
.list-top-news .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.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 .list-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 .list-ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

@media (max-width: 800px) {
  .top-post-layout01 {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    min-height: 0;
  }
  .top-post-layout01 .l-btn {
    position: static;
    text-align: center;
  }
  .list-top-blog {
    display: flex;
    grid-gap: 0;
    flex-wrap: nowrap;
    margin: 0 -5vw 0 0;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
    overflow-x: auto;
  }
  .list-top-blog li {
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
  }
  .list-top-news a {
    display: block;
    line-height: 1.5;
    padding: 10px 0;
  }
  .list-top-news time {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .list-top-news .ttl {
    -webkit-line-clamp: 2;
  }
  .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;
  }
}

/*-----------------------------------------------------------
セクションレイアウト
-----------------------------------------------------------*/
.sec01 .t-h2 {
  margin-bottom: 180px;
}

.sec01-layout {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 6%;
  align-items: flex-start;
}

.sec01-layout .right {
  flex: 1;
}

.sec01-layout .t-h3 {
  font-size: 4.1rem;
  font-weight: 600;
  position: relative;
  padding: 20px 0 25px;
  margin-bottom: 55px;
}

.sec01-layout .t-h3::before {
  content: "";
  background: #333;
  width: 37px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sec01-layout .txt {
  font-size: 2rem;
  line-height: 2.3;
  letter-spacing: 0.15em;
}

@media (max-width: 1200px) {
  .sec01 .t-h2 {
    letter-spacing: 0.1em;
  }

  .sec01-layout .t-h3 {
    font-size: 3.6rem;
  }
}

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

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

  .sec01-layout .t-h3 {
    font-size: 2.2rem;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }

  .sec01-layout .txt {
    font-size: 1.7rem;
    letter-spacing: 0.1em;
  }
}

.sec02 .t-h2 {
  margin-bottom: 50px;
}

.sec02-layout {
  display: flex;
  gap: 0;
  margin: 0 0 0 -7.5%;
}

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


.sec02-layout .l-img {
  width: 56%;
  position: relative;
}

.sec02-layout .l-img.yellow::before {
  content: "";
  position: absolute;
  background: url(../images/sec02_img_deco01.png) no-repeat center / contain;
  width: 790px;
  height: 300px;
  left: -36%;
  top: -90px;
  z-index: -1;
}

.sec02-layout .l-img.pink::before {
  content: "";
  position: absolute;
  background: url(../images/sec02_img_deco02.png) no-repeat center / contain;
  width: 695px;
  height: 290px;
  left: -37%;
  top: -45px;
  z-index: -1;
}

.sec02-layout .l-desc {
  flex: 1;
  margin: 0 0 0 -2%;
}

.sec02-layout .job {
  font-size: 3rem;
  font-weight: 600;
}

.sec02-layout .l-ttl {
  font-size: 4.1rem;
  font-weight: 600;
  margin-bottom: 40px;
}

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

@media (max-width: 1600px) {
  .sec02-layout {
    gap: 8%;
    margin: 0;
  }

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

  .sec02-layout .l-img.yellow::before {
    left: -47%;
  }

  .sec02-layout .l-img.pink::before {
    left: -47%;
  }
}

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

  .sec02-layout {
    flex-direction: column;
    gap: 25px;
    margin: 0;
  }

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

  .sec02-layout .l-img {
    width: 100%;
    text-align: center;
  }

  .sec02-layout .l-img.yellow::before {
    width: 250px;
    height: 150px;
    left: -30px;
    top: -50px;
  }

  .sec02-layout .l-img.pink::before {
    width: 200px;
    height: 300px;
    left: -15px;
    top: -90px;
  }

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

  .sec02-layout .job {
    font-size: 2.3rem;
  }

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

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

.sec03 .t-h2 {
  margin-bottom: 45px;
}

.sec03 .sub-ttl{
  font-size: 4.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
}

.sec03 .catch {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.23em;
  line-height: 2.3;
}

.sec03 .txt {
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 2.3;
}

.sec03 .txt + .txt {
  margin-top: 40px;
}

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

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

  .sec03 .catch {
    font-size: 1.8rem;
    margin-bottom: 0;
    letter-spacing: 0.1em;
  }

  .sec03 .txt {
    text-align: left;
    line-height: 2;
  }

  .sec03 .txt + .txt {
    margin-top: 15px;
  }
}

.loop-slider {
  position: relative;
  top: -170px;
}

.loop-slider .splide__slide {
  width: calc((100% - (35px * 4)) / 4) !important;
  margin-right: 15px;
}

.loop-slider .splide__slide:last-child {
  margin-right: 0;
}

@media (max-width: 800px) {
  .loop-slider {
    top: -30px;
  }

  .loop-slider .splide__slide {
    width: calc(50%) !important;
  }
}

.sec04 .t-h2 {
  margin-bottom: 70px;
  color: #fff;
}

.sec04 .t-h2 .en {
  margin-bottom: 40px;
}

.sec04-layout {
  background-color: #fff;
  padding: 7% 8% 7% 9.5%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
  position: relative;
}

.sec04-layout::before {
  content: "";
  position: absolute;
  background: url(../images/sec04_deco.svg) no-repeat center / contain;
  border-radius: 5px;
  width: 430px;
  height: 79px;
  right: 6%;
  top: -50px;
  transform: rotate(-6deg);
  z-index: 2;
}

.sec04-layout .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 40px;
  margin-bottom: 50px;
}

.sec04-layout .list-item {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 10px;
  align-items: flex-start;
}

.sec04-layout .num {
  font-size: 2.8rem;
  font-family: var(--font_en);
  font-weight: 600;
  color: var(--color_primary);
  letter-spacing: 0.1em;
}

.sec04-layout .txt {
  font-size: 2.2rem;
  border-top: 1px solid #9AA3A6;
  margin-top: 25px;
  padding-top: 30px;
  letter-spacing: 0.2em;
}

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

  .sec04 .t-h2 .en {
    margin-bottom: 6px;
  }

  .sec04-layout {
    padding: 20px;
  }

  .sec04-layout::before {
    width: 200px;
    height: 79px;
    right: 0;
    top: -40px;
  }

  .sec04-layout .list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .sec04-layout .txt {
    font-size: 2rem;
  }
}

.sec05 .t-h2 {
  margin-bottom: 120px;
}

.sec05 .t-h2.narrow {
  margin-bottom: 50px;
}

.sec05 .t-h2.narrow .en {
  font-size: clamp(40px, 3.8vw, 5rem);
  margin-bottom: 25px;
  line-height: 1.6;
}

.sec05 .t-h2 .en {
  font-size: clamp(40px, 3.8vw, 5rem);
  margin-bottom: 20px;
}

.sec05 .t-h2 .jp {
  font-size: 2.2rem;
}

.sec05-layout .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.sec05-layout .list-item {
  display: flex;
  gap: 4%;
  align-items: flex-end;
}

.sec05-layout .list-item + .list-item {
  border-left: 1px solid #A2AAAF;
}

.sec05-layout .list-img {
  box-shadow: 0 3px 30px rgba(86, 195, 204, 0.16);
}

.sec05-layout .list-item.reverse {
  flex-direction: row-reverse;
  gap: 3%;
}

.sec05-layout .list-item.reverse .list-img {
  position: relative;
  top: 120px;
}

.sec05-layout .list-desc {
  text-align: center;
  padding: 0 7%;
}

.sec05-layout .list-item.reverse .list-desc {
  padding: 0 3%;
}

.sec05_btn {
  display: inline-flex;
}

@media (max-width: 1600px) {
  .sec05-layout .list-item.reverse .list-img {
    top: 0;
  }
}

@media (max-width: 1200px) {
  .sec05-layout .list-item {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 30px;
    align-items: flex-start;
  }

  .sec05-layout .list-item.reverse .list-desc {
    padding: 0;
  }

  .sec05-layout .list-img {
    width: 100%;
  }

  .sec05 .t-h2 {
    margin-bottom: 50px;
  }

  .sec05-layout .list-desc {
    padding: 0;
  }

  .sec05 .t-h2.narrow .en {
    line-height: 1.3;
  }
}

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

  .sec05 .t-h2 .en {
    font-size: 5rem;
    margin-bottom: 6px;
  }

  .sec05 .t-h2.narrow .en {
    line-height: 1.3;
    margin-bottom: 6px;
    font-size: 5rem;
  }

  .sec05 .t-h2 .jp {
    font-size: 2rem;
  }

  .sec05-layout .list {
    grid-template-columns: 1fr;
  }

  .sec05-layout .list-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding: 0;
  }

  .sec05-layout .list-item + .list-item {
    border-left: none;
    border-top: 1px solid #A2AAAF;
    padding-top: 40px;
    gap: 30px;
  }

  .sec05-layout .list-item.reverse {
    margin-bottom: 0;
  }

  .sec05-layout .list-img {
    width: 100%;
  }
}

.sec06 .container.wide {
  margin-bottom: 145px;
}

.sec06 .t-h202 {
  margin-bottom: 110px;
}

.sec06 .t-h3 {
  text-align: center;
  font-size: 4.1rem;
  font-weight: 600;
  margin-bottom: 135px;
  position: relative;
}

.sec06 .t-h3::before {
  content: "";
  position: absolute;
  background: url(../images/t-h3_deco.svg) no-repeat center / contain;
  width: 219px;
  height: 130px;
  left: 30%;
  top: -100px;
  z-index: 2;
}

.sec06 .t-h3::after {
  content: "";
  display: block;
  background: #333;
  width: 52px;
  height: 2px;
  margin: 12px auto 0;
}

.sec06-layout {
  display: flex;
  gap: 5%;
}

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

.sec06-layout .l-img {
  width: 56.64%;
}

.sec06-layout .l-img img {
  border-radius: 5px;
  box-shadow: 0 3px 30px rgba(86, 195, 204, 0.26);
}

.sec06-layout .l-desc {
  flex: 1;
  position: relative;
  top: -42px;
}

.sec06-layout.reverse {
  flex-direction: row-reverse;
  margin-right: -5%;
}

.sec06-layout .l-num {
  display: inline-block;
  font-size: 9.8rem;
  line-height: 1;
  margin-bottom: 15px;
  font-family: var(--font_num);
  font-weight: 400;
  color: var(--color_secondary);
  position: relative;
  left: -30px;
}

.sec06-layout.reverse .l-desc {
  max-width: 500px;
}

.sec06-layout .l-ttl {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 35px;
  letter-spacing: 0.09em;
  line-height: 1.6;
}

.sec06-layout .txt {
  line-height: 2;
  letter-spacing: 0.17em;
}

.sec06-layout02 {
  padding: 130px 0 140px;
  background: url(../images/sec06_bg.jpg) no-repeat center / cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}

.sec06-layout02 .t-h3 {
  margin-bottom: 42px;
  color: #fff;
}

.sec06-layout02 .t-h3::before {
  display: none;
}

.sec06-layout02 .t-h3::after {
  background: #fff;
}

.sec06-layout02 .txt {
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
  line-height: 2.3;
}

.sec06-card {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

@media (max-width: 1450px) {
  .sec06-layout .l-img {
    width: 48%;
  }

  .sec06-layout .l-num {
    font-size: 7.5rem;
    margin-bottom: 10px;
    left: -15px;
  }

  .sec06-layout.reverse {
    margin-right: 0;
  }
}

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

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

  .sec06 .t-h3 {
    font-size: 2.3rem;
    margin-bottom: 50px;
  }

  .sec06 .t-h3::before {
    width: 110px;
    height: 55px;
    left: 7%;
    top: -45px;
  }

  .sec06-layout {
    flex-direction: column;
    gap: 30px;
    margin: 0;
  }

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

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

  .sec06-layout.reverse {
    flex-direction: column;
    margin: 50px 0 0 0;
  }

  .sec06-layout .l-desc {
    padding: 0;
    top: 0;
  }

  .sec06-layout .l-num {
    font-size: 4rem;
    margin-bottom: 5px;
    left: 0;
  }

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

  .sec06-layout02 {
    padding: 50px 0;
  }

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

  .sec06-layout02 .txt {
    text-align: left;
    margin-bottom: 40px;
  }

  .sec06-card {
    flex-wrap: wrap;
    gap: 10px 15px;
    margin-bottom: 40px;
  }

  .sec06-card > li img {
    width: 150px;
    height: 150px;
  }
}

.sec07 .container.wide {
    margin-bottom: 140px;
}

.sec07 .t-h202 {
  margin-bottom: 120px;
}

.sec07 .t-h202 .en {
  letter-spacing: 0.12em;
  left: 0;
}

.sec07 .t-h202 .jp {
  left: 240px;
}

.sec07 .t-h3 {
  text-align: center;
  font-size: 4.1rem;
  font-weight: 600;
  margin-bottom: 125px;
  position: relative;
}

.sec07 .t-h3::before {
  content: "";
  position: absolute;
  background: url(../images/t-h3_deco.svg) no-repeat center / contain;
  width: 219px;
  height: 130px;
  left: 30%;
  top: -100px;
  z-index: 2;
}

.sec07 .t-h3::after {
  content: "";
  display: block;
  background: #333;
  width: 52px;
  height: 2px;
  margin: 20px auto 0;
}

.sec07-layout {
  display: flex;
  gap: 5%;
}

.sec07-layout + .sec07-layout {
  margin-top: 160px;
}

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

.sec07-layout .l-img img {
  border-radius: 5px;
  box-shadow: 0 3px 30px rgba(86, 195, 204, 0.26);
}

.sec07-layout .l-desc {
  flex: 1;
  position: relative;
  top: -42px;
}

.sec07-layout.reverse {
  flex-direction: row-reverse;
  margin-right: -5%;
}

.sec07-layout.reverse .l-desc {
    max-width: 500px;
}

.sec07-layout .l-num {
  display: inline-block;
  font-weight: bold;
  font-size: 9.8rem;
  line-height: 1;
  margin-bottom: 15px;
  font-family: var(--font_num);
  font-weight: 400;
  color: var(--color_secondary);
  position: relative;
  left: -30px;
}

.sec07-layout .l-ttl {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 35px;
  letter-spacing: 0.09em;
  line-height: 1.6;
}

.sec07-layout .txt {
  line-height: 2;
  letter-spacing: 0.17em;
}

.sec07-layout02 {
  padding: 130px 0 140px;
  background: url(../images/sec07_bg.jpg) no-repeat center / cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}

.sec07-layout02 .t-h3 {
  margin-bottom: 42px;
  color: #fff;
}

.sec07-layout02 .t-h3::before {
  display: none;
}

.sec07-layout02 .t-h3::after {
  background: #fff;
}

.sec07-layout02 .txt {
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
  line-height: 2.3;
}

.sec07-card {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

@media (max-width: 1450px) {
  .sec07 .t-h202 .jp {
    left: 80px;
  }
  .sec07-layout .l-img {
    width: 48%;
  }

  .sec07-layout .l-num {
    font-size: 7.5rem;
    margin-bottom: 10px;
    left: -15px;
  }

  .sec07-layout.reverse {
    margin-right: 0;
  }
}

@media (max-width: 1199px) {
  .sec07 .t-h202 .en {
    letter-spacing: 0.05em;
  }
}

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

  .sec07 .t-h202 {
    margin-bottom: 30px;
  }

  .sec07 .t-h202 .jp {
    left: 20px;
  }

  .sec07 .t-h3 {
    font-size: 2.3rem;
    margin-bottom: 50px;
  }

  .sec07 .t-h3::before {
    width: 110px;
    height: 55px;
    left: 7%;
    top: -45px;
  }

  .sec07-layout {
    flex-direction: column;
    gap: 30px;
    margin: 0;
  }

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

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

  .sec07-layout.reverse {
    flex-direction: column;
    margin: 50px 0 0 0;
  }

  .sec07-layout .l-desc {
    padding: 0;
    top: 0;
  }

  .sec07-layout .l-num {
    font-size: 4rem;
    margin-bottom: 5px;
    left: 0;
  }

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

  .sec07-layout02 {
    padding: 50px 0;
  }

  .sec07-layout02 .t-h3 {
    margin-bottom: 30px;
  }

  .sec07-layout02 .txt {
    text-align: left;
    margin-bottom: 40px;
  }

  .sec07-card {
    flex-wrap: wrap;
    gap: 10px 15px;
    margin-bottom: 40px;
  }

  .sec07-card > li img {
    width: 150px;
    height: 150px;
  }
}

.sec08 .t-h2 {
  margin-bottom: 70px;
}

@media (max-width: 1280px) {
  .sec08-slider {
    width: 900px;
    margin: 0 auto;
  }
}

@media (max-width: 1199px) {
  .sec08-slider {
    width: 650px;
  }
}

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

  .sec08-slider {
    width: 100%;
    padding: 0 25px;
  }
}

.sec09 .t-h2 {
  margin-bottom: 70px;
}

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

[data-tab-content].is-active {
  display: block;
  animation: tabFadeIn 0.7s ease 0s 1 normal;
}

.tab-list {
  display: flex;
  gap: 15px;
  margin: 0 30px;
}

.tab-nav-item {
  display: inline-block;
  cursor: pointer;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  color: var(--color_secondary);
  padding: 32px 20px;
  transition: all 0.2s ease;
  font-size: 2.2rem;
  font-weight: 600;
  width: 300px;
  text-align: center;
}

.tab-nav-item.border {
  border: 1px solid var(--color_secondary);
}

.tab-nav-item.is-active {
  background: var(--color_secondary);
  color: #FFF;
}

.tab-panel-area {
  background-color: #fff;
  padding: 7% 6.5% 7.5%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.11);
}

.tab-content.is-active {
}

@keyframes tabFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
  }
}

.sec09-list {

}

.sec09-list >li {
  display: flex;
  gap: 5%;
  padding: 68px 0;
}

.sec09-list >li:first-child {
  padding-top: 0;
}

.sec09-list >li:last-child {
  padding-bottom: 0;
}

.sec09-list >li + li {
  border-top: 1px solid var(--color_border);
}

.sec09-list .list-img img {
  border-radius: 5px;
  box-shadow: 0 3px 30px rgba(86, 195, 204, 0.26);
}

.sec09-list .list-desc {
  flex: 1;
}

.sec09-list .job {
  font-size: 1.8rem;
  font-weight: 600;
  background-color: rgb(126 225 229 / 0.34);
  padding: 7px 17px;
  border-radius: 20px;
}

.sec09-list .name {
  font-size: 3rem;
  font-weight: 600;
  margin: 10px 0 20px;
}

@media (max-width: 1199px) {
  .tab-list {
    margin: 0;
  }

  .tab-nav-item {
    padding: 15px 10px;
    font-size: 1.8rem;
  }
}

@media (max-width: 800px) {

  .sec09 .t-h2 {
    margin-bottom: 30px;
  }

  .tab-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .tab-nav-item {
    border-radius: 5px 5px 0 0;
    padding: 10px;
    width: auto;
  }

  .sec09-list >li {
    display: grid;
    grid-template-columns: 1fr;
    padding: 40px 0;
  }

  .sec09-list > li + li {
    border-top: none;
  }

  .sec09-list > li + li .list-img {
    border-top: 1px solid var(--color_border);
    padding-top: 40px;
  }

  .sec09-list >li:first-child {
    padding-top: 30px;
  }

  .sec09-list >li:last-child{
    padding-bottom: 40px;
  }
}

.sec10 .t-h2 {
  margin-bottom: 80px;
}

.sec10-flow {
  display: grid;
  gap: 40px;
}

.sec10-flow > li {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: 35px;
  position: relative;
  min-height: 240px;
}

.sec10-flow > li::after {
  content: "";
  background-color: #808B92;
  width: 1px;
  position: absolute;
  top: 35px;
  bottom: 0;
  left: 5px;
}

.sec10-flow .flow-deco {
  position: relative;
  left: -5px;
}

.sec10-flow .wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 70px;
}

.sec10-flow .flow-img {
  width: 28%;
}

.sec10-flow .flow-img img {
  border-radius: 5px;
  box-shadow: 0 3px 30px rgba(86, 195, 204, 0.26);
}

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

.sec10-flow .flow-ttl {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1;
  letter-spacing: 0.15em;
}

.sec10-flow .flow-ttl .time {
  color: var(--color_primary);
  font-family: var(--font_en);
}

.sec10-flow .flow-ttl .accessories {
  font-size: 1.6rem;
  font-weight: 600;
  background-color: #FFED7D;
  padding: 2px 5px;
  white-space: nowrap;
}

.sec10-flow .txt {
  letter-spacing: 0.18em;
}

@media (max-width: 1199px) {
  .sec10-flow .flow-ttl {
    font-size: 2.4rem;
    line-height: 1.3;
  }
}

@media (max-width: 800px) {

  .sec10 .t-h2 {
    margin-bottom: 30px;
  }

  .sec10-flow {
    gap: 40px;
  }

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

  .sec10-flow > li::after {
    top: 55px;
    left: 24px;
  }

  .sec10-flow .flow-deco {
    left: 12px;
  }

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

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

  .sec10-flow .flow-ttl {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }

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

.sec11 .t-h2 {
  margin-bottom: 70px;
}

.table-style01 tr {
  border-bottom: 2px solid var(--color_border);
  position: relative;
  font-size: 1.8rem;
  line-height: 2;
}

.table-style01 tr::before {
  content: "";
  background: var(--color_secondary);
  width: 261px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.table-style01 th,
.table-style01 td {
  padding: 28px 15px 28px 0;
}

.table-style01 th.pt0,
.table-style01 td.pt0{
  padding-top: 0;
}

.table-style01 th.pb0,
.table-style01 td.pb0{
  padding-bottom: 0;
}

.table-style01 th {
  text-align: left;
  width: 26%;
  vertical-align: text-top;
}

.table-style01 th >p {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.table-style01 td {
  vertical-align: middle;
}

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

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

@media (max-width: 800px) {

  .sec11 .t-h2 {
    margin-bottom: 30px;
  }

  .table-style01 tr {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }

  .table-style01 tr::before {
    width: 100px;
  }

  .table-style01 th {
    width: 38%;
  }

  .table-style01 th, .table-style01 td {
    padding: 20px 10px 20px 0;
  }

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

.sec12 .t-h2 {
  margin-bottom: 90px;
}

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

.sec12-flow > li {
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.11);
  padding: 40px 10%;
  position: relative;
  text-align: center;
}

.sec12-flow > li:not(:last-child)::after {
  content: "";
  background: url(../images/sec12-arrow.svg) no-repeat center / contain;
  position: absolute;
  width: 27px;
  height: 18px;
  top: 47%;
  right: -50px;
}

.sec12-flow .flow-num {
  font-size: 2.8rem;
  font-weight: 600;
  font-family: var(--font_en);
  color: var(--color_primary);
  line-height: 1;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.sec12-flow .flow-ttl {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.sec12-flow p {
  line-height: 2.3;
}

@media (max-width: 1220px) {
  .sec12-flow .flow-ttl {
    font-size: 2.4rem;
  }

  .sec12-flow p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

@media (max-width: 1199px) {
  .sec12-flow {
    gap: 50px;
  }

  .sec12-flow > li {
    padding: 40px 5%;
  }

  .sec12-flow p {
    font-size: 1.5rem;
  }

  .sec12-flow > li:not(:last-child)::after {
    right: -40px;
  }
}

@media (max-width: 800px) {

  .sec12 .t-h2 {
    margin-bottom: 30px;
  }

  .sec12-flow {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

.sec13 .t-h2 {
  margin-bottom: 35px;
}

.sec13 .form-privacy {
  background: #fff;
  padding: 54px 60px 30px;
  border: 1px dotted var(--color_primary);
  height: 506px;
  overflow-y: scroll;
}

.sec13 .form-privacy .ttl {
  font-size: 2rem;
}

.sec13 .scrollbar {
    border: solid 5px #fff;
}

.sec13 .privacy-policy {
  margin: 0 auto 40px;
}

.sec13 .privacy-policy .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.sec13 .privacy-policy .inner .consent {
  letter-spacing: 0.15em;
  flex: 1;
}

.sec13 .contact-form .hissu {
  margin-right: 35px;
}

.tel-layout {
  background: #fff;
  padding: 8% 5% 10.9%;
  margin: 0 auto;
}

.tel-layout .l-ttl {
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 45px;
  width: fit-content;
}

.tel-layout .l-tel {
  display: inline-flex;
  align-items: center;
  font-weight: normal;
  font-family: var(--font_en);
  font-size: 4.8rem;
  font-style: italic;
  line-height: 1;
  margin: 0 auto;
  white-space: nowrap;
  gap: 10px;
  letter-spacing: 0.15em;
}

@media (max-width: 1199px) {
  .sec13 .contact-form .hissu {
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media (max-width: 800px) {

  .sec13 .t-h2 {
    margin-bottom: 30px;
  }

  .sec13 .form-privacy {
    padding: 30px 20px;
  }

  .sec13 .privacy-policy .inner .consent {
    font-size: 14px;
  }

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

  .tel-layout {
    padding: 20px 15px;
  }
  .tel-layout .l-tel {
    font-size: 25px;
  }
  .tel-layout .l-tel img {
    width: 15px;
  }
}

.sec14-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.sec14-layout .txt {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
}

.sec14-ttl {
  font-size: 4.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

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

  }

  .sec14-layout .l-desc {
    margin-bottom: 10px;
  }

  .sec14-layout .txt {
    font-size: 1.8rem;
  }

  .sec14-layout img {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 0 auto;
  }

  .sec14-ttl {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }
}

.hidden {
  overflow: hidden;
}

.list-disc {
  display: grid;
  grid-gap: 5px;
}
.list-disc >li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
}
.list-disc >li::marker {
  color: var(--color_primary);
  font-size: 1.5rem;
}

.list-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: 4px;
  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: 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;
}

.dl-style01 {
  display: grid;
  grid-gap: 15px;
}
.dl-style01 .item {
  display: grid;
  grid-template-columns: 25% 75%;
}
.dl-style01 dt {
  background: rgba(0, 0, 0, 0.1);
  font-size: 17px;
  padding: 20px;
}
.dl-style01 dd {
  background: #f5f5f5;
  padding: 20px;
}

@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 {
  background-color: #f5f5f5;
  padding: 15px;
}
.card-style01 .card-img {
  margin-bottom: 20px;
}
.card-style01 .card-ttl {
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .card-style01 {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
}
.box-style01 {
  background-color: #f5f5f5;
  padding: 8%;
}
.box-style01 .box-title {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .box-style01 .box-title {
    margin-bottom: 20px;
  }
}
.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;
  }
}

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

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

/*------------
個人情報保護方針
--------------*/
.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: #333;
  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;
}

.f-layout {
  background-color: #fff;
  padding: 130px 0 90px;
}

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

.f-layout .address {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

.f-layout .sns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.f-layout .txt {
  line-height: 1.5;
}

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

.f-links {
  display: grid;
  grid-gap: 10px;
}
.f-links > li::before {
  content: "・";
}
.f-links a:hover {
  text-decoration: underline;
}
.f-links .sub-menu {
  margin: 5px 0 0 15px;
}
.f-links .sub-menu > li::before {
  content: "-";
}

.copyright {
  font-size: 1.5rem;
  text-align: center;
  padding-bottom: 100px;
}

.pagetop {
  position: absolute;
  bottom: 100px;
  right: 55px;
  z-index: 5;
}
.pagetop a {
  display: inline-block;
  background: #37414f;
  text-align: center;
  width: 50px;
  height: 50px;
  padding: 18px 0 0;
  transition: transform 0.5s;
  position: relative;
  z-index: 0;
}
.pagetop a:hover {
  transform: translateY(-10px);
}

@media (max-width: 800px) {
  .f-layout {
    padding: 50px 0 70px;
  }
  .f-layout .container {
    grid-template-columns: 1fr;
  }

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

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

  .f-layout .address {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .f-layout .sns {
    margin-top: 0;
  }

  .copyright {
    padding-bottom: 50px;
  }

  .pagetop {
    bottom: 130px;
    right: 20px;
  }
}
.fixed-menu {
  border-radius: 4px 0 0 4px;
  background: #37414f;
  color: #fff;
  display: flex;
  position: fixed;
  top: 50%;
  right: 0;
  transition: transform 0.5s;
  transform: translate(400px, -50%);
  z-index: 10;
}
.fixed-menu:hover {
  transform: translate(0, -50%);
}
.fixed-menu .ttl {
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  line-height: 1;
  white-space: nowrap;
  font-feature-settings: normal;
  padding: 40px 0;
  width: 60px;
}
.fixed-menu .ttl i {
  margin-bottom: 15px;
}
.fixed-menu .inner {
  display: grid;
  place-items: center;
  padding: 15px;
  padding-left: 0;
  width: 400px;
}
.fixed-menu .txt {
  font-size: 13px;
  text-align: center;
}
.fixed-menu .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin: 15px 0;
}
.fixed-menu .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  padding: 10px;
  min-width: 170px;
  min-height: 50px;
  width: 100%;
}
.fixed-menu .btn img {
  margin-right: 10px;
}
.fixed-menu .btn .small {
  display: block;
  font-size: 10px;
  margin-top: 5px;
}

@media (max-width: 800px) {
  .fixed-menu {
    display: none;
  }
}
@media (max-width: 800px) {
  .footer {
    padding-bottom: 60px;
  }
}
.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: 65px;
    z-index: 10000;
  }
  .sp-navi-btns > * {
		flex: 1;
		position: relative;
	}
	.sp-navi-btns .item {
		border-right: 1px solid #fff;
		font-size: 1rem;
		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: #fff;
		text-decoration: none;
		height: 100%;
		padding: 10px 0;
	}
	.sp-navi-btns .item .img {
		display: block;
	}
	.sp-navi-btns .item .img svg {
		-o-object-fit: cover;
		object-fit: cover;
		height: 20px;
		margin-bottom: 8px;
		stroke: #fff;
	}
	.sp-navi-btns .item .ttl {
		display: block;
	}

	.sp-menu-btn {
		background-color: transparent;
		border: none;
		cursor: pointer;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		padding-bottom: 10px;
	}
	.sp-menu-btn .ttl {
		display: block;
		color: #fff;
		font-size: 1rem;
		line-height: 1;
		letter-spacing: 0;
		text-align: center;
	}
	.sp-menu-btn span:not(.ttl) {
		background: #fff;
		position: absolute;
		left: 50%;
		width: 22px;
		height: 1px;
		transform: translateX(-50%);
		transition: 0.4s;
	}
	.sp-menu-btn span:not(.ttl):nth-of-type(1) {
		top: 20px;
	}
	.sp-menu-btn span:not(.ttl):nth-of-type(2) {
		top: 26px;
	}
	.sp-menu-btn span:not(.ttl):nth-of-type(3) {
		top: 32px;
	}

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

/*-----------------------------------------------------------
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: 1.1rem;
}

.fs25 {
  font-size: 2.5rem;
}

.semibold {
  font-weight: 500;
}

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

.red {
  color: #F44336;
}

.gray {
  color: #9AA3A6 !important;
}

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

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

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

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

.mbS {
  margin-bottom: 1.5rem !important;
}

.mbM {
  margin-bottom: 3rem !important;
}

.mbL {
  margin-bottom: 6rem !important;
}

.mbXL {
  margin-bottom: 9rem !important;
}

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

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

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

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

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

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }
  .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: 3rem !important;
  }
  .mbXL {
    margin-bottom: 5rem !important;
  }
  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
  }
}
/*ボタン*/
.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 {
  border: 1px solid #fff;
  border-radius: 32px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  min-height: 64px;
  min-width: 240px;
  padding: 15px 20px;
  transition: opacity 0.5s;
  font-weight: 600;
  font-size: 1.6rem;
}

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

.btn-entry {
  background: linear-gradient(135deg, #94D8F1, #7CE2E4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  min-height: 65px;
  min-width: 235px;
  padding: 15px;
  transition: opacity 0.5s;
  position: relative;
  border-radius: 33px;
  font-weight: 600;
  font-size: 1.5rem;
}
.btn-entry::before {
  content: "";
  background-color: #fff;
  width: 9px;
  height: 9px;
  border-radius: 50px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
a.btn-entry:hover,
.btn-entry:hover {
  opacity: 0.5;
}

.btn-navi {
  border: 1px solid #333;
  border-radius: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  min-height: 50px;
  min-width: 200px;
  padding: 15px;
  transition: opacity 0.5s;
  font-weight: 600;
  font-size: 1.3rem;
  gap: 8px;
}

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

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.btn-wrap.center {
  justify-content: center;
}

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

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

/*診療時間*/
.time-table {
  background: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 600;
}

.time-table-head {
}

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

.time-table-head .item:first-child {
  border-right: 1px solid #DFDFDF;
}

.time-table-body {
  border-top: 1px solid #DFDFDF;
}
.time-table-body .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 0;
  color: var(--color_primary);
}
.time-table-body .item:first-child {
  letter-spacing: 0.05em;
  border-right: 1px solid #DFDFDF;
  color: var(--color_text);
}

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

.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: 80px repeat(7, 1fr) !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 {
  display: 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 {
  background: url(../images/sec08_btn.svg) no-repeat center / contain;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.11);
  cursor: pointer;
  display: flex;
  height: 59px;
  width: 59px;
  border-radius: 50%;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow svg {
  display: none;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  display: none;
}

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

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

.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: -5.5em;
  transform: rotate(-180deg) translateY(50%);
}

.splide__arrow--next {
  right: -5.5em;
}

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

.splide__pagination {
  display: none;
}

.splide__pagination__page {
  background: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  display: inline-block;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  height: 10px;
  width: 10px;
}

.splide__pagination__page.is-active {
  background: var(--color_primary);
  z-index: 1;
}

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

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}

@media (max-width: 1199px) {

  .splide__arrow {
    height: 40px;
    width: 40px;
  }

  .splide__arrow--prev {
    left: -3em;
  }

  .splide__arrow--next {
    right: -3em;
  }
}

@media (max-width: 800px) {

  .splide__arrow {
    height: 30px;
    width: 30px;
  }

  .splide__arrow--prev {
    left: -2.5em;
  }

  .splide__arrow--next {
    right: -2.5em;
  }
}

.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--next {
  left: 1em;
  right: auto;
}

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

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

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

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