@charset "UTF-8";
:root {
  --color_bg: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: rgba(200, 200, 200, .5);
  --color_primary: #1963AD;
  --color_orange: #EF622E;
  --color_yellow: #F7BD36;
  --color_red: #D67373;
  --color_blue: #61ACF7;
  --color_green: #0EAA6E;
  --color_gray: #808080;
  --color_black: #5D5D5D;
  --font_base: "FP-ヒラギノ丸ゴ ProN W4","游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_jp: "FP-ヒラギノ丸ゴ StdN W6";
  --easing: cubic-bezier(.12,1,.5,1);
}

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

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

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  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, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

::selection {
  background: #d4dcd6;
}

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

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

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

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

.link {
  display: inline-block;
  text-decoration: underline;
  word-break: break-all;
  position: relative;
  text-wrap: pretty;
}
.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;
}

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

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 0;
}

.h-logo {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 0 0 20px 0;
  padding: 35px;
  max-width: 32.22vw;
}
.h-logo img {
  width: 100%;
}

.h-utility {
  display: flex;
  align-items: start;
  gap: 30px;
}

.h-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color_orange);
  border-radius: 100vmax;
  font-family: var(--font_jp);
  font-size: 2.5rem;
  color: #fff;
  margin-top: 2.4rem;
  padding: 10px 25px;
  transition: 0.2s;
}
.h-btn:hover {
  background-color: var(--color_primary);
}

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

.menu-btn {
  display: grid;
  align-items: flex-start;
  background-color: var(--color_primary);
  border-radius: 0 0 0 150px;
  width: 140px;
  height: 140px;
  color: #fff;
  font-size: 13px;
  transition: 0.2s;
  padding: 35px 0 40px 40px;
  text-align: center;
  box-sizing: border-box;
  z-index: 100;
}

.menu-btn-line {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
}
.menu-btn-line span {
  display: block;
  background-color: #fff;
  width: 41px;
  height: 1px;
  transition: 0.2s;
}

.menu-btn-txt {
  display: block;
  line-height: 1;
}

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

@media (max-width: 800px) {
  .h-logo {
    padding: 15px;
    max-width: 200px;
  }
  .menu-btn {
    border-radius: 0 0 0 150px;
    width: 80px;
    height: 80px;
    font-size: 13px;
    padding: 15px 0 20px 20px;
  }
  .menu-btn-line {
    gap: 5px;
  }
  .menu-btn-line span {
    width: 35px;
  }
  .menu-btn-txt {
    font-size: 10px;
  }
  .menu-btn.is-open .menu-btn-line span:nth-of-type(1) {
    transform: rotate(30deg) translate3d(3px, 7px, 0);
  }
  .menu-btn.is-open .menu-btn-line span:nth-of-type(3) {
    transform: rotate(-30deg) translate3d(1px, -5px, 0);
  }
}
/*------------
Gnavi
--------------*/
/*drawer*/
.gnavi-drawer {
  pointer-events: none;
  background-color: oklch(from #fff l c h/0.95);
  position: fixed;
  inset: 0 0 0 50%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
}
.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

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

.gnavi-drawer-links {
  display: grid;
  grid-gap: 30px;
}
.gnavi-drawer-links a {
  color: var(--color_black);
  background: url(../images/share/icon_nikukyu.svg) no-repeat center left;
  display: inline-block;
  font-size: 2rem;
  font-family: var(--font_jp);
  padding-left: 30px;
}
.gnavi-drawer-links a:hover {
  color: var(--color_primary);
}

@media (max-width: 800px) {
  .gnavi-drawer {
    inset: 0 0 0 20%;
  }
  .gnavi-drawer-container {
    padding: 50px 2.5rem;
  }
  .gnavi-drawer-links {
    display: grid;
    grid-gap: 15px;
  }
  .gnavi-drawer-links a {
    background: url(../images/share/icon_nikukyu.svg) no-repeat center left;
    font-size: 1.8rem;
    line-height: 1.5;
    padding-left: 30px;
  }
}
/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  background: url(../images/hero.jpg) no-repeat center center/cover;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-catch {
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 5;
}
.hero-catch .ttl {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.5);
  color: var(--color_primary);
  font-family: var(--font_jp);
  font-size: 6rem;
  line-height: 1.8;
  position: relative;
}
.hero-catch .ttl::before {
  content: "";
  background: url(../images/hero_symbol.svg) no-repeat center center/cover;
  width: 340px;
  height: 226px;
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  z-index: -1;
}

@media (max-width: 800px) {
  .hero {
    background: url(../images/hero.jpg) no-repeat center left 35%/cover;
    height: 100svh;
  }
  .hero-catch {
    position: absolute;
    bottom: 10%;
    left: 5%;
    right: 5%;
  }
  .hero-catch .ttl {
    font-size: 2.7rem;
    line-height: 1.8;
  }
  .hero-catch .ttl::before {
    width: 200px;
    height: 135px;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
  }
}
/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.contents {
  overflow: clip;
}

.t-ttl {
  text-align: center;
  margin-bottom: 30px;
}
.t-ttl [lang=en] {
  font-size: 14rem;
  color: var(--color_primary);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 20px;
}
.t-ttl .jp {
  font-size: 3rem;
  color: var(--color_black);
  line-height: 1.8;
}

@media (max-width: 800px) {
  .t-ttl {
    margin-bottom: 30px;
  }
  .t-ttl [lang=en] {
    font-size: 7rem;
    margin-bottom: 10px;
  }
  .t-ttl .jp {
    font-size: 2rem;
    line-height: 1.8;
  }
}
/*------------
Block
--------------*/
.sec01 {
  background: url(../images/sec01_bg.jpg) no-repeat center center/cover;
  padding: 120px 0;
}

.sec01-text {
  text-align: center;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 80px 0;
  }
  .sec01-text {
    text-align: left;
  }
}
.sec02 {
  padding: 120px 0;
  overflow: hidden;
}

.sec02-layout {
  display: grid;
  grid-template-areas: "desc img";
  grid-template-columns: 1fr 1fr;
  align-items: end;
  padding-bottom: 120px;
  position: relative;
  z-index: 0;
}
.sec02-layout::before {
  content: "";
  border-radius: 0 30px 30px 0;
  background: url(../images/sec02_bg.svg) no-repeat center center/cover;
  position: absolute;
  inset: 13rem 5% 0 -100%;
  z-index: -1;
}
.sec02-layout .l-img {
  grid-area: img;
  padding-left: 8%;
  position: relative;
  z-index: 0;
}
.sec02-layout .l-img::before {
  content: "";
  border-radius: 30px;
  background-color: var(--color_blue);
  position: absolute;
  inset: 10px -10px -10px 70px;
  z-index: -1;
}
.sec02-layout .l-img img {
  border-radius: 30px;
  width: 100%;
}
.sec02-layout .l-desc {
  grid-area: desc;
}
.sec02-layout .num {
  color: var(--color_yellow);
  font-size: 6rem;
  line-height: 1;
  font-family: var(--font_jp);
  margin-bottom: 5rem;
}
.sec02-layout .num span {
  font-size: 9rem;
}
.sec02-layout .l-ttl {
  font-size: 3rem;
  color: var(--color_black);
  margin-bottom: 20px;
}
.sec02-layout + .sec02-layout {
  margin-top: 40px;
}
.sec02-layout.reverse {
  grid-template-areas: "img desc";
}
.sec02-layout.reverse::before {
  content: "";
  border-radius: 30px 0 0 30px;
  inset: 13rem -100% 0 5%;
}
.sec02-layout.reverse .l-img {
  padding-left: 0;
  padding-right: 8%;
}
.sec02-layout.reverse .l-img::before {
  inset: 10px 70px -10px -10px;
}
.sec02-layout.reverse .num {
  text-align: right;
}

.sec02-illust01 {
  bottom: 0;
  right: -20%;
}

.sec02-illust02 {
  bottom: 0;
  left: -25%;
}

.sec02-illust03 {
  bottom: 0;
  right: -20%;
}

.sec02-illust04 {
  bottom: 0;
  left: -15%;
}

@media (max-width: 800px) {
  .sec02 {
    padding: 80px 0;
  }
  .sec02-layout {
    gap: 30px;
    grid-template-areas: "img" "desc";
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }
  .sec02-layout::before {
    border-radius: 20px;
    inset: 18rem -5vw 0;
  }
  .sec02-layout .l-img {
    padding-left: 0;
  }
  .sec02-layout .l-img img {
    border-radius: 30px;
  }
  .sec02-layout .num {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
  .sec02-layout .num span {
    font-size: 5rem;
  }
  .sec02-layout .l-ttl {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .sec02-layout + .sec02-layout {
    margin-top: 50px;
  }
  .sec02-layout.reverse {
    grid-template-areas: "img" "desc";
  }
  .sec02-layout.reverse::before {
    border-radius: 20px;
    inset: 18rem -5vw 0;
  }
  .sec02-layout.reverse .l-img {
    padding-right: 0;
  }
  .sec02-layout.reverse .num {
    text-align: right;
  }
  .sec02-illust01 {
    bottom: -5%;
    right: -15%;
    width: 150px;
    z-index: -1;
  }
  .sec02-illust02 {
    bottom: -10%;
    left: -5%;
    width: 120px;
  }
  .sec02-illust03 {
    bottom: -2%;
    right: 2%;
    width: 150px;
  }
  .sec02-illust04 {
    bottom: -10%;
    left: -5%;
    width: 80px;
  }
}
.sec03 {
  overflow: hidden;
  padding-bottom: 120px;
}
.sec03 .container {
  position: relative;
}

.sec03-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.4rem;
}
.sec03-list li:nth-child(2) {
  margin-top: 60px;
}
.sec03-list li:nth-child(3) {
  margin-top: 120px;
}
.sec03-list .num {
  margin: 0 auto -45px;
  position: relative;
  width: fit-content;
  z-index: 1;
}
.sec03-list .list-img {
  margin-bottom: 20px;
}
.sec03-list .list-img img {
  border-radius: 20px;
  width: 100%;
}
.sec03-list .list-ttl {
  color: var(--color_black);
  font-size: 2.3rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 15px;
}
.sec03-list p {
  text-align: justify;
}

.sec03-illust01,
.sec03-illust02,
.sec03-illust03,
.sec03-illust04 {
  z-index: -1;
}

.sec03-illust01 {
  top: 10%;
  left: -5%;
}

.sec03-illust02 {
  top: 10%;
  right: -5%;
}

.sec03-illust03 {
  bottom: -5%;
  left: -10%;
}

.sec03-illust04 {
  bottom: -5%;
  right: -10%;
}

@media (max-width: 800px) {
  .sec03-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sec03-list li:nth-child(2) {
    margin-top: 0;
  }
  .sec03-list li:nth-child(3) {
    margin-top: 0;
  }
  .sec03-illust01,
  .sec03-illust02,
  .sec03-illust03,
  .sec03-illust04 {
    z-index: 1;
  }
  .sec03-illust01 {
    display: none;
  }
  .sec03-illust02 {
    display: none;
  }
  .sec03-illust03 {
    width: 100px;
  }
  .sec03-illust04 {
    width: 100px;
  }
}
.sec04 {
  background: url(../images/sec04_bg.svg) no-repeat center center/cover;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.sec04 .container {
  position: relative;
  z-index: 1;
}

.sec04-text {
  color: var(--color_black);
  font-family: var(--font_jp);
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.sec04-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem;
}

.sec04-illust01 {
  bottom: -200px;
  left: 0;
}

.sec04-illust02 {
  bottom: -200px;
  right: 0;
}

@media (max-width: 800px) {
  .sec04 {
    padding: 60px 0;
  }
  .sec04-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 20px;
    max-width: 380px;
    margin: 0 auto;
  }
  .sec04-text {
    font-size: 1.8rem;
    padding: 0 50px;
    margin-bottom: 30px;
  }
  .sec04-illust01 {
    bottom: 50px;
    left: 0%;
    width: 110px;
  }
  .sec04-illust02 {
    bottom: 50px;
    right: 0%;
    width: 110px;
  }
}
.sec05 {
  padding: 120px 0;
}
.sec05 .container {
  position: relative;
}

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

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

.tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: -1px;
}

.tab-nav-item {
  cursor: pointer;
  background-color: #DDDDDD;
  border-radius: 10px 10px 0 0;
  color: #999;
  font-family: var(--font_jp);
  font-size: 2rem;
  padding: 10px 50px;
  text-align: center;
  transition: all 0.2s ease;
}
.tab-nav-item.blue {
  color: var(--color_primary);
  background-color: #F7FBFF;
  border: 1px solid var(--color_primary);
}
.tab-nav-item.red {
  color: var(--color_red);
  background-color: #FFE3E3;
  border: 1px solid var(--color_red);
}
.tab-nav-item.yellow {
  color: var(--color_yellow);
  background-color: #FEF2D5;
  border: 1px solid var(--color_yellow);
}
.tab-nav-item.is-active {
  color: #fff;
}
.tab-nav-item.is-active.blue {
  background-color: var(--color_primary);
}
.tab-nav-item.is-active.red {
  background-color: var(--color_red);
}
.tab-nav-item.is-active.yellow {
  background-color: var(--color_yellow);
}
.tab-panel-area {
  border: 1px solid #DDDDDD;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 5%;
}

@keyframes tabFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 800px) {
  .tab-list {
    border-bottom: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .tab-nav-item {
    border-radius: 2px;
    padding: 10px;
  }
}
.sec05-illust01,
.sec05-illust02,
.sec05-illust03 {
  z-index: -1;
}

.sec05-illust01 {
  top: 12%;
  left: -12%;
}

.sec05-illust02 {
  top: 50%;
  right: -15%;
}

.sec05-illust03 {
  bottom: -5%;
  left: -15%;
}

@media (max-width: 800px) {
  .sec05 {
    padding: 60px 0;
  }
  .tab-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: -1px;
  }
  .tab-nav-item {
    border-radius: 10px 10px 0 0;
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 10px;
  }
  .sec05-illust01,
  .sec05-illust02,
  .sec05-illust03 {
    z-index: -1;
  }
  .sec05-illust01 {
    top: 8%;
    left: -5%;
    width: 100px;
  }
  .sec05-illust02 {
    display: none;
  }
  .sec05-illust03 {
    bottom: -8%;
    left: -15%;
    width: 100px;
  }
}
.sec06 {
  padding-bottom: 120px;
  overflow: hidden;
}

.sec06-layout {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 4rem;
  grid-template-areas: "map desc";
}
.sec06-layout .l-map {
  grid-area: map;
}
.sec06-layout iframe {
  border-radius: 0 20px 20px 0;
  width: 100%;
  height: 100%;
}
.sec06-layout .l-desc {
  grid-area: desc;
  background: url(../images/sec06_bg01.jpg) no-repeat center center/cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 5rem;
  margin-right: 4rem;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.sec06-layout .l-logo {
  width: fit-content;
  margin: 0 auto 40px;
}
.sec06-layout .l-tel {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 0 auto;
}
.sec06-layout .tel {
  display: inline-flex;
  justify-content: center;
  font-family: var(--font_jp);
  font-size: 2.8rem;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.sec06-layout .l-address {
  display: inline-flex;
  gap: 10px;
  line-height: 1.5;
}
.sec06-layout .l-btn {
  text-align: center;
  margin-top: 30px;
}
.sec06-layout.reverse {
  grid-template-columns: 1fr 60%;
  grid-template-areas: "desc map";
}
.sec06-layout.reverse iframe {
  border-radius: 20px 0 0 20px;
}
.sec06-layout.reverse .l-desc {
  margin: 0 0 0 4rem;
}
.sec06-layout.yokohama .l-desc {
  background: url(../images/sec06_bg02.jpg) no-repeat center center/cover;
}
.sec06-layout.misaki .l-desc {
  background: url(../images/sec06_bg03.jpg) no-repeat center center/cover;
}
.sec06-layout + .sec06-layout {
  margin-top: 50px;
}

.sec06-illust01 {
  bottom: -5%;
  right: -5%;
}

.sec06-illust02 {
  bottom: -5%;
  left: -5%;
}

.sec06-illust03 {
  bottom: -5%;
  right: -5%;
}

@media (max-width: 1024px) {

  .sec06-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    grid-template-areas: "map" "desc";
    padding: 0 5%;
  }
  .sec06-layout iframe {
    border-radius: 20px;
    width: 100%;
    height: 250px;
  }
  .sec06-layout .l-desc {
    padding: 2.5rem;
    margin: 0;
    border-radius: 20px;
  }
  .sec06-layout .l-logo {
    margin: 0 auto 20px;
  }
  .sec06-layout .l-address {
    justify-content: flex-start;
    text-align: left;
  }
  .sec06-layout .l-btn {
    margin-top: 15px;
  }
  .sec06-layout.reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "map" "desc";
  }
  .sec06-layout.reverse iframe {
    border-radius: 20px;
  }
  .sec06-layout.reverse .l-desc {
    margin: 0;
  }
  .sec06-layout + .sec06-layout {
    margin-top: 50px;
  }
  .sec06-illust01 {
    pointer-events: none;
    bottom: -5%;
    right: -5%;
    width: 100px;
  }
  .sec06-illust02 {
    pointer-events: none;
    bottom: -5%;
    left: -5%;
    width: 100px;
  }
  .sec06-illust03 {
    pointer-events: none;
    bottom: -5%;
    right: -5%;
    width: 100px;
  }
}
@media (max-width: 800px) {
  .sec06 {
    padding-bottom: 60px;
  }
}
.sec07 {
  background: url(../images/sec07_bg.jpg) no-repeat center center/cover;
  padding: 140px 0;
}
.sec07 .container {
  position: relative;
  z-index: 0;
}

.sec07 .t-ttl {
  margin-bottom: 150px;
}

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

.sec07-layout {
  position: relative;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 6rem 40% 5rem 8rem;
  min-height: 445px;
}
.sec07-layout .l-img {
  position: absolute;
  bottom: 0;
  right: -5%;
}
.sec07-layout .en-img {
  position: absolute;
  top: -80px;
  left: -30px;
}
.sec07-layout .l-ttl {
  font-size: 3.5rem;
  color: var(--color_black);
  margin-bottom: 30px;
}
.sec07-layout.blue {
  background: url(../images/sec07_bg_blue.jpg) no-repeat center center/cover;
}
.sec07-layout.pink {
  background: url(../images/sec07_bg_pink.jpg) no-repeat center center/cover;
}
.sec07-layout.yellow {
  background: url(../images/sec07_bg_yellow.jpg) no-repeat center center/cover;
}
.sec07-layout.reverse {
  padding: 5rem 8rem 5rem 40%;
}
.sec07-layout.reverse .l-img {
  right: auto;
  left: -5%;
}
.sec07-layout.reverse .en-img {
  left: auto;
  right: -30px;
}
.sec07-layout.sec07-layout + .sec07-layout {
  margin-top: 200px;
}

.sec07-illust01 {
  top: 35%;
  left: -12%;
  z-index: -1;
}

.sec07-illust02 {
  top: 70%;
  right: -15%;
  z-index: -1;
}

.sec07-illust03 {
  bottom: -5%;
  left: -20%;
  z-index: -1;
}

@media (max-width: 1024px) {

  .sec07-layout {
    border-radius: 30px;
    padding: 2.5rem;
    min-height: 445px;
    font-size: 1.5rem;
  }
  .sec07-layout .l-img {
    position: static;
    max-width: 180px;
    margin: 0 auto 25px;
  }
  .sec07-layout .en-img {
    top: -25px;
    left: -15px;
    max-width: 280px;
  }
  .sec07-layout .l-ttl {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .sec07-layout.reverse {
    padding: 2.5rem;
  }
  .sec07-layout.reverse .en-img {
    left: auto;
    right: 5px;
  }
  .sec07-layout.sec07-layout + .sec07-layout {
    margin-top: 70px;
  }
  .sec07-illust01 {
    top: 35%;
    left: -10%;
    z-index: 2;
    width: 150px;
  }
  .sec07-illust02 {
    top: 68%;
    right: -10%;
    z-index: 2;
    width: 100px;
  }
  .sec07-illust03 {
    bottom: -5%;
    left: -10%;
    z-index: 2;
    width: 180px;
  }
}
@media (max-width: 800px) {
  .sec07 {
    padding: 80px 0;
  }
}
.sec08 {
  padding: 120px 0;
}
.sec08 .container {
  position: relative;
  z-index: 0;
}

.sec08-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.8rem;
}
.sec08-list li {
  border: 1px solid #DDDDDD;
  padding: 5rem 3rem;
  position: relative;
}
.sec08-list li + li::before {
  content: "";
  background-color: #808080;
  position: absolute;
  top: 50%;
  left: -29px;
  transform: translateY(-50%);
  width: 15px;
  height: 35px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.sec08-list .num {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  font-family: var(--font_jp);
  font-size: 2.5rem;
  color: var(--color_black);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: 5px;
}
.sec08-list .num span {
  font-size: 4rem;
}
.sec08-list .list-ttl {
  border-bottom: 1px solid #333;
  color: var(--color_black);
  font-size: 2.5rem;
  line-height: 1.5;
  width: fit-content;
  margin: 0 auto 20px;
}
.sec08-list .blue {
  border-color: var(--color_primary);
  background-color: #F7FBFF;
  box-shadow: 5px 5px 0 #AFD7FF;
}
.sec08-list .blue .num {
  color: var(--color_primary);
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #F7FBFF 50%, #F7FBFF 100%);
}
.sec08-list .blue .list-ttl {
  border-color: var(--color_primary);
}
.sec08-list .red {
  border-color: var(--color_red);
  background-color: #FFF4F4;
  box-shadow: 5px 5px 0 #FFD5D5;
}
.sec08-list .red .num {
  color: var(--color_red);
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #FFF4F4 50%, #FFF4F4 100%);
}
.sec08-list .red .list-ttl {
  border-color: var(--color_red);
}
.sec08-list .yellow {
  border-color: var(--color_yellow);
  background-color: #FFFAEF;
  box-shadow: 5px 5px 0 #FFE8B4;
}
.sec08-list .yellow .num {
  color: var(--color_yellow);
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #FFFAEF 50%, #FFFAEF 100%);
}
.sec08-list .yellow .list-ttl {
  border-color: var(--color_yellow);
}
.sec08-list .green {
  border-color: var(--color_green);
  background-color: #ECFCF6;
  box-shadow: 5px 5px 0 #C1F0DA;
}
.sec08-list .green .num {
  color: var(--color_green);
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #ECFCF6 50%, #ECFCF6 100%);
}
.sec08-list .green .list-ttl {
  border-color: var(--color_green);
}

.sec08-illust01 {
  top: 10%;
  left: -12%;
  z-index: -1;
}

.sec08-illust02 {
  top: 15%;
  right: -12%;
  z-index: -1;
}

.sec08-illust03 {
  bottom: -10%;
  left: -15%;
  z-index: -1;
}

.sec08-illust04 {
  bottom: -10%;
  right: -15%;
  z-index: -1;
}

@media (max-width: 800px) {
  .sec08 {
    padding: 120px 0;
  }
  .sec08 .container {
    position: relative;
    z-index: 0;
  }
  .sec08-list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .sec08-list li + li::before {
    top: -28px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .sec08-illust01 {
    top: -5%;
    left: -5%;
    z-index: -1;
    width: 60px;
  }
  .sec08-illust02 {
    top: -3%;
    right: -8%;
    z-index: -1;
    width: 100px;
  }
  .sec08-illust03 {
    bottom: -10%;
    left: -5%;
    z-index: -1;
    width: 100px;
  }
  .sec08-illust04 {
    bottom: -10%;
    right: -5%;
    z-index: -1;
    width: 100px;
  }
}
.sec09 {
  background: url(../images/sec09_bg.svg) no-repeat center center/cover;
  padding: 120px 0;
  min-height: 100vh;
}

.sec09-text {
  color: var(--color_black);
  font-family: var(--font_jp);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .sec09 {
    padding: 80px 0;
  }
}
/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.thanks-layout {
  max-width: 800px;
  margin: 0 auto;
}
.thanks-layout .l-ttl {
  text-align: center;
  font-size: 2.2rem;
  position: relative;
}
.thanks-layout .l-ttl::after {
  content: "";
  display: block;
  background-color: var(--color_primary);
  width: 50px;
  height: 2px;
  margin: 1rem auto 2rem;
}
.thanks-layout p {
  text-align: center;
}

@media (max-width: 800px) {
  .thanks-layout p {
    text-align: left;
  }
}
.u-h2 {
  margin-bottom: 50px;
}

.u-h3 {
  margin-bottom: 30px;
}

.u-h4 {
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .u-h2 {
    margin-bottom: 30px;
  }
  .u-h3 {
    margin-bottom: 20px;
  }
  .u-h4 {
    padding-left: 20px;
  }
}
.tall + .tall {
  margin-top: 120px;
}

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

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

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall + .tall {
    margin-top: 100px;
  }
  .short + .short {
    margin-top: 50px;
  }
}
.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;
  }
}
.table-style01 th,
.table-style01 td {
  border: 1px solid #DDDDDD;
  padding: 10px 25px;
  vertical-align: middle;
}
.table-style01 th {
  background-color: #DDDDDD;
  text-align: left;
  width: 20%;
}
.table-style01.blue th {
  background-color: var(--color_primary);
  color: #fff;
}
.table-style01.red th {
  background-color: var(--color_red);
  color: #fff;
}
.table-style01.yellow th {
  background-color: var(--color_yellow);
  color: #fff;
}

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

@media (max-width: 800px) {
  .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%;
  }
  .table-style01.sp-block colgroup {
    display: none;
  }
  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
    padding: 10px;
  }
  .table-style01.sp-block th {
    width: 100%;
  }
}
.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;
  }
}
/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background: url(../images/share/f_bg.jpg) no-repeat center center/cover;
  padding: 100px 0 0;
  margin-top: auto;
  position: relative;
}

.f-ttl {
  font-family: var(--font_jp);
  font-size: 3rem;
  color: var(--color_black);
  text-align: center;
  margin-bottom: 3rem;
}

.f-bnrs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.f-bnrs img {
  width: 100%;
}

.copyright {
  background-color: var(--color_primary);
  color: #fff;
  font-family: var(--font_jp);
  text-align: center;
  padding: 10px 0;
  margin-top: 100px;
}

.pagetop {
  position: absolute;
  bottom: 460px;
  right: 20px;
  transition: transform 0.5s;
  z-index: 5;
}
.pagetop:hover {
  transform: translateY(-10px);
}

.entry-btn {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 100vmax;
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 150px;
  z-index: 5;
}
.entry-btn::before {
  content: "";
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
  width: 200px;
  height: 200px;
  background: url(../images/share/entry_img02.svg) no-repeat center center/contain;
  animation: rotation 15s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.entry-btn-sp {
  display: none;
}

@media (max-width: 800px) {
  .footer {
    padding: 60px 0 60px;
  }
  .f-ttl {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .f-bnrs {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .pagetop {
    bottom: 130px;
    right: 20px;
  }
  .entry-btn {
    display: none;
  }
  .entry-btn-sp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: grid;
    place-items: center;
    text-align: center;
    background-color: var(--color_red);
    color: #fff;
    font-family: var(--font_jp);
    font-size: 2rem;
    padding: 10px 0;
    z-index: 5;
  }
  .entry-btn-sp::before {
    content: "";
    border: 1px solid #fff;
    position: absolute;
    inset: 3px;
  }
}
/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

.ab {
  position: absolute;
}

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

.fs11 {
  font-size: 1.1rem;
}

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

.color-red {
  color: #F44336;
}

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

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

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

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

.mbS {
  margin-bottom: 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;
}

.tac img {
  margin-inline: auto;
}

.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 {
  background: var(--color_primary);
  border-radius: 100vmax;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  font-size: 1.5rem;
  line-height: 1;
  min-height: 50px;
  min-width: 210px;
  padding: 15px 30px;
  transition: opacity 0.5s;
  line-height: 1.5;
  position: relative;
}
.btn-more::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.btn-more::after {
  content: "";
  border: 1px solid #fff;
  position: absolute;
  inset: 5px;
  border-radius: 100vmax;
}
.btn-more:hover {
  opacity: 0.5;
}

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

@media (max-width: 800px) {
  .btn-more {
    width: 100%;
  }
}
/*診療カレンダー*/
:root {
  --event01: #EF866B;
  --event02: #F7B46B;
  --event03: #A8DBA8;
  --event04: #B0D7D5;
}

.business-calendar-box-wrap {
  margin-bottom: 15px;
}
.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.business-calendar-box-wrap .business-calendar caption {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}
.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 25px;
  vertical-align: -1px;
}
.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  display: inline-block;
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 25px;
  height: 25px;
}
.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
  display: inline-block;
  content: "";
  border-style: solid;
  border-width: 7px 6px 7px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 10px;
  left: 10px;
}
.business-calendar-box-wrap .business-calendar-future a::before {
  transform: rotate(180deg);
}
.business-calendar-box-wrap .business-calendar th {
  background: #f1f3f4;
  border: 1px solid #dfdfdf;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  padding: 5px;
  width: 14%;
}
.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  border: 1px solid #dfdfdf;
  position: relative;
  font-size: 13px;
  padding: 5px;
  z-index: 0;
}
.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}
.business-calendar-box-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 15px;
}
.business-calendar-box-wrap.col2 {
  grid-template-columns: 1fr;
}
.business-calendar-box-wrap.col2 .business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3%;
}
.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
}
.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
  color: #fff;
}
.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before,
.business-calendar-box-wrap .business-calendar .attr2::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
  opacity: 1;
}
.business-calendar-box-wrap .business-calendar .attr0::before {
  background: var(--event01);
}
.business-calendar-box-wrap .business-calendar .attr1::before {
  background: var(--event02);
}
.business-calendar-box-wrap .business-calendar .attr2::before {
  background: var(--event03);
}
.business-calendar-box-wrap .business-calendar .attr3::before {
  background: var(--event04);
}

.list-event {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.list-event li {
  display: flex;
  gap: 5px;
  line-height: 1;
}
.list-event .event01 {
  color: var(--event01);
}
.list-event .event02 {
  color: var(--event02);
}
.list-event .event03 {
  color: var(--event03);
}
.list-event .event04 {
  color: var(--event04);
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .list-event {
    display: block;
  }
  .list-event li + li {
    margin-top: 5px;
  }
}
/*診療時間*/
.time-table {
  border: 1px solid #DFDFDF;
  background: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 5px;
}

.time-table-head {
  background-color: #607D8B;
  color: #fff;
}
.time-table-head .item {
  padding: 10px 0;
}

.time-table-body {
  border-top: 1px solid #DFDFDF;
}
.time-table-body .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.time-table-body .item:first-child {
  background-color: #8299A3;
  color: #fff;
  letter-spacing: 0;
}

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

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

@media (max-width: 800px) {
  .time-table-head {
    font-size: 12px;
  }
  .time-table-head .item {
    padding: 5px 0;
  }
  .time-table-body .item {
    padding: 5px 0;
    font-size: 13px;
  }
  .time-table-body .item:first-child {
    line-height: 1.3;
    font-size: 10px;
  }
  .time-table-head,
  .time-table-body {
    grid-template-columns: 90px repeat(7, 1fr) !important;
  }
}
