@charset "UTF-8";
/* Scss Document */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&display=swap');*/
:root {
  /* --text-color: #333333;
  --main-color: #5DB9B9;
  --sub-color: #A2C630;
  --hd-font: "fot-tsukuardgothic-std", sans-serif; */
  --text-color: #333333;
  --main-color: #646567;
  --sub-color: #034E95;
  --hd-font: "dnp-shuei-mincho-pr6n", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.7rem;
  /*font-family: "Noto Sans JP", sans-serif;*/
  font-family: "Zen Kaku Gothic New", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
  box-sizing: border-box;
  margin: 0;
  line-height: 1;
  height: 100%;
  letter-spacing: .03em;
  background-color: #fff;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  vertical-align: middle;
}

.tsuku-reg {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.tsuku.bld {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  color: var(--text-color);
  outline: none;
  transition: .2s;
}

a:hover {
  text-decoration: none;
  color: var(--sub-color);
  outline: none;
  transition: .2s;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a img {
  transition: .2s;
  display: block;
}

a img:hover {
  transition: .2s;
  opacity: .8;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.tab-only {
  display: none;
}

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

  .tab-only {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
    -webkit-text-size-adjust: 100%;
  }

  .sp-only {
    display: block;
  }
}

/*container系*/
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
}

@media screen and (max-width: 1400px) {
  .container {
    margin: 0 auto;
    max-width: none;
  }
}

@media screen and (max-width: 1260px) {
  .wrapper {
    margin: 0 auto;
  }
}

@media screen and (max-width: 980px) {
  .inner {
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .container {
    margin: 0 auto;
    padding: 0 30px;
  }

  .wrapper {
    margin: 0 auto;
    padding: 0 30px;
  }
}

@media screen and (max-width: 600px) {
  .container {
    margin: 0 auto;
    padding: 0 20px;
  }

  .wrapper {
    margin: 0 auto;
    padding: 0 20px;
  }
}

/*==========================
*header*
===========================*/
header {
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 500;
  padding: 10px 60px;
  transition: .3s;
  font-weight: 500;
  background-color: #fff;
  height: 90px;
  box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, .05);
}

#logo {
  width: 350px;
}

#gnav {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-family: var(--hd-font);
  font-weight: 700;
}

#gnav ul li {
  display: inline-block;
  margin-right: 40px;
  /*margin-right: max(3.4vw,30px);*/
  line-height: 70px;
}

#gnav ul li:last-child {
  margin-right: 0;
}

#gnav ul li a {
  display: block;
  height: 70px;
  transition: .2s;
}

#gnav ul li a:hover {
  color: var(--sub-color);
  transition: .2s;
}

.btn-recruit {
  width: 200px;
  color: #fff;
  line-height: 50px;
  height: 50px;
  font-size: 1.6rem;
  position: relative;
  text-align: center;
  background-color: #89b0be;
  border-radius: 4px;
}

.btn-recruit::after {
  content: '';
  display: block;
  height: 7px;
  aspect-ratio: cos(30deg);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #fff;
  position: absolute;
  right: 15px;
  top: 50%;
  transition: ease .3s;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.btn-recruit:hover {
  opacity: .8;
  transition: .3s;
}

#gnav_sp {
  display: none;
}

@media screen and (max-width: 1300px) {
  #logo {
    width: 300px;
  }

  #gnav {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 1230px) {
  #gnav_sp {
    display: block;
  }

  body {
    margin: 0;
  }

  header {
    width: 100%;
    position: fixed;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 14px;
    top: 0;
  }

  #logo {
    width: 210px;
  }

  #logo a {
    display: block;
    width: 100%;
    height: auto;
  }

  #gnav {
    display: none;
  }

  #gnav_sp {
    font-size: 1.6rem;
    display: block;
    line-height: 1;
    align-items: center;
    font-size: 1.8rem;
    font-family: var(--hd-font);
    font-weight: 700;
  }

  #gnav_sp a {
    text-decoration: none;
    color: #fff;
  }

  #gnav_sp .current a {
    color: #fff;
  }

  #gnav_sp .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
    opacity: 0;
    transition: opacity .5s;
  }

  #gnav_sp .overlay.open {
    width: 100%;
    opacity: 1;
    height: 100vh;
  }

  #gnav_sp .menu-trigger {
    display: block;
    width: 28px;
    height: 24px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000;
    transform: translateX(0);
    transition: transform .5s;
  }

  #gnav_sp .menu-trigger.active {
    transform: translateX(0);
  }

  #gnav_sp .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    transition: all .5s;
  }

  #gnav_sp .menu-trigger.active span {
    background-color: #fff;
  }

  #gnav_sp .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  #gnav_sp .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }

  #gnav_sp .menu-trigger span:nth-of-type(2) {
    top: 11px;
  }

  #gnav_sp .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  #gnav_sp .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  #gnav_sp .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
  }

  #gnav_sp nav {
    width: 90%;
    height: 100%;
    line-height: 2.5;
    background-color: var(--main-color);
    position: fixed;
    top: 0;
    right: 0;
    transform: translate(100%);
    transition: all .5s;
    z-index: 999;
    padding: 80px 0;
    overflow-y: scroll;
  }

  #gnav_sp nav.open {
    transform: translateZ(0);
  }

  #gnav_sp nav ul li {
    text-align: center;
    line-height: 2;
    font-size: 1.7rem;
    margin-bottom: 20px;
  }

  #gnav_sp nav ul li a:hover {
    color: var(--sub-color);
    /*color: #e89115;*/
  }

  #gnav_sp nav .menu li {
    border-bottom: solid 1px #b5dee8;
  }

  #gnav_sp .menu li:first-child {
    border-top: solid 1px #b5dee8;
  }

  #gnav_sp .menu__item {
    cursor: pointer;
    display: block;
  }

  #gnav_sp .menu__item__link {
    display: block;
    padding: 0;
    position: relative;
  }

  #gnav_sp .menu__item__link:after {
    display: block;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 15px;
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    content: "\f067";
  }

  #gnav_sp .menu__item__link.on:after {
    content: '\f068';
  }

  #gnav_sp .submenu {
    display: none;
  }

  #gnav_sp .submenu__item {
    color: #ffffff;
    padding-left: 1rem;
  }

  #gnav_sp .menu .submenu__item:last-child {
    border-bottom: none;
  }

  #gnav_sp .sp-contact {
    display: block;
    font-weight: bold;
    width: 100%;
    padding: 5px 0;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(90deg, #a5e3a0, #01b4b6);
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  #gnav_sp .sp-contact:hover {
    opacity: 0.8;
  }

  #gnav_sp .sp-tel {
    display: block;
    font-weight: bold;
    color: #5fbbd2;
    width: 100%;
    padding: 5px 0;
    text-align: center;
    border: solid 1px #5fbbd2;
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    margin: 1em auto;
  }

  #gnav_sp .sp-tel i,
  #gnav_sp .sp-contact i {
    padding-right: 5px;
  }

  #gnav_sp .sp-logo {
    width: 100%;
    margin-bottom: 1em;
    line-height: 1;
  }

  #gnav_sp .sp-logo img {
    width: 100%;
    height: auto;
  }

  .btn-reserve {
    width: 80%;
    height: 50px;
    line-height: 50px;
    margin: 30px auto 0;
    display: block;
  }

  section {
    overflow: hidden;
  }
}

/*-----Hero image-----*/
/*#hero-wrap #hero {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto 80px;
  /*background-position: center center;
  background-size: cover;
  background-image: url("../images/slide01.jpg");*/
/*border-radius: 50px;
}*/
#hero-wrap {
  background-color: #EFEFEF;
  width: 100%;
  height: 110vh;
  margin-top: 0;
  padding: 130px 60px 60px;
  position: relative;
}

#hero {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  z-index: 100;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroSlide 20s infinite;
  z-index: -1;
}

@keyframes heroSlide {
  0% {
    background-image: url("../images/slide01.jpg");
  }

  20% {
    background-image: url("../images/slide02.jpg");
  }

  40% {
    background-image: url("../images/slide03.jpg");
  }

  60% {
    background-image: url("../images/slide04.jpg");
  }

  80% {
    background-image: url("../images/slide05.jpg");
  }

  100% {
    background-image: url("../images/slide01.jpg");
  }
}

/*#hero-wrap #hero {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  z-index: 100;
  border-radius: 50px;
}*/
#hero-wrap #hero .catch {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 94%;
  z-index: 1;
  display: none;
}

#hero .catch .catch-text {
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
  font-family: var(--hd-font);
  text-shadow: 0 0 8px rgba(0, 0, 0, .5), 0 0 8px rgba(0, 0, 0, .5);
}

#hero .catch .catch-text dt {
  font-size: 4.5rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 20px;
}

#hero .catch .catch-text dd {
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 400;
}

#hero-wrap .hero-parking {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 35px 45px;
  text-align: center;
  /* border-top-left-radius: 30px; */
  z-index: 110;
}

#hero-wrap .hero-parking p {
  line-height: 1.7;
  text-align: center;
  font-size: 1.9rem;
  font-family: var(--hd-font);
}

#hero-wrap .hero-parking p span {
  font-weight: bold;
  text-decoration: underline;
  text-decoration-thickness: 0.7em;
  /* text-decoration-color: rgba(234, 104, 162, 0.3); */
  text-decoration-color: rgb(0 141 241 / 30%);
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

@media screen and (max-width: 1024px) {
  #hero {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  #hero-wrap {
    width: 100%;
    height: auto;
    /*height: 100vh;*/
    margin-top: 0;
    padding: 85px 30px 30px;
  }

  #hero-wrap #hero {
    margin: 0 auto;
    height: 60vh;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  #hero-wrap #hero .catch {
    top: 50%;
  }

  #hero .catch .catch-text {
    text-shadow: 0 0 4px rgba(0, 0, 0, .5), 0 0 4px rgba(0, 0, 0, .5), 0 0 4px rgba(0, 0, 0, .5);
  }

  #hero .catch .catch-text dt {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  #hero .catch .catch-text dd {
    font-size: 1.8rem;
    line-height: 1.7;
  }

  #hero-wrap .hero-parking {
    position: static;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 20px;
  }

  #hero-wrap .hero-parking p {
    line-height: 1.6;
    font-size: 1.7rem;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  #hero-wrap {
    padding: 85px 20px 30px;
  }

  #hero .catch .catch-text dt {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}

/*-----button-----*/
a {
  /*display: block;*/
  text-decoration: none;
}

.btn-more {
  position: relative;
  margin: 0 auto;
  width: 240px;
  height: 55px;
  line-height: 55px;
  display: flex;
  text-align: center;
  background-color: #ffffff;
  font-size: 1.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.btn-more span {
  border: 1px solid #736357;
  width: 100%;
  height: 100%;
  color: #736357;
  z-index: 10;
}

.btn-more span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background-color: #a40035;
  border: none;
  z-index: -1;
  transition: 0.5s ease;
}

.btn-more span:hover {
  color: #fff;
}

.btn-more span:hover:before {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .btn-more {
    width: 80%;
    height: 55px;
    margin: 0 auto;
    line-height: 55px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .btn-more {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    line-height: 50px;
    font-size: 1.5rem;
  }
}

/*------見出し-----*/
#top section h2 {
  color: var(--main-color);
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  font-family: var(--hd-font);
  font-weight: 400;
  /*margin-top: 30px;*/
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #top section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}

#top section h2::before {
  color: var(--main-color);
  text-align: center;
  font-size: 10rem;
  line-height: 1;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 600;
}

#top section h2::after {
  background-color: var(--main-color);
  content: '';
  width: 35px;
  height: 1px;
  margin: 20px auto 0;
  display: block;
}

#top section#feature h2::before {
  content: "Feature";
  display: block;
  letter-spacing: 1px;
  line-height: 1;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 500;
}

#top section#service h2::before {
  content: "Service";
  display: block;
  letter-spacing: 1px;
  line-height: 1;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 500;
}

#top section#access h2::before {
  content: "Access";
  display: block;
  letter-spacing: 1px;
  line-height: 1;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 500;
}

#top section#greeting h2::before {
  content: "Greeting";
  display: block;
  letter-spacing: 1px;
  line-height: 1;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 500;
}

#top section p {
  font-size: 1.8rem;
  line-height: 2;
}

/*-----ページ内リンク-----*/
#top section {
  margin-top: 60px;
  margin-bottom: 100px;
}

.page-link {
  margin-top: -70px;
  padding-top: 70px;
}

@media screen and (max-width: 768px) {
  #top section {
    margin-top: 30px;
    margin-bottom: 0;
  }

  #top section h2::before {
    font-size: 4.8rem;
  }

  #top section h2::after {
    margin: 15px auto 0;
  }

  #top section p {
    font-size: 1.7rem;
    line-height: 1.8;
  }

  #top #feature p {
    padding-bottom: 10px;
  }

  #top #feature p.last {
    padding-bottom: 30px;
  }

  .page-link {
    margin-top: -60px;
    padding-top: 60px;
  }
}

/*-----Top Notice-----*/
.top-notice {
  width: 70%;
  margin: 60px auto 0;
  padding: 20px;
  border-radius: 20px;
  border: solid 10px #daf5f5;
  text-align: center;
}

#top section .top-notice {
  font-size: 2rem;
  font-family: var(--hd-font);
  color: var(--main-color);
  font-weight: 700;
}

/*-----Top Feature-----*/
.top-style {
  position: relative;
  margin-bottom: 90px;
}

.top-style .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-style .bg {
  background-color: #EFEFEF;
  width: 45%;
  height: 100%;
  z-index: -1;
  position: absolute;
  bottom: -50px;
  left: 0;
}

.top-style .wrapper figure {
  width: 50%;
}

.top-style .wrapper figure img {
  border-radius: 20px;
}

.top-style .wrapper .inbox {
  width: 45%;
}

.top-style .inbox a {
  color: var(--sub-color);
}

.top-style .inbox a:hover {
  text-decoration: underline;
}

#feature h3 {
  color: var(--main-color);
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.5;
  font-family: var(--hd-font);
  font-weight: 600;
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .top-style .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  #feature h3 {
    text-align: center;
    font-size: 2.1rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .top-style {
    position: relative;
    margin-bottom: 50px;
  }

  #feature .top-style:last-of-type {
    margin-bottom: 0;
  }

  .top-style .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }

  .top-style .bg {
    width: 100%;
    height: 80%;
    bottom: -20px;
    left: 0;
  }

  .top-style .wrapper figure {
    width: 80%;
    margin: 0 auto 20px;
  }

  .top-style .wrapper .inbox {
    width: 100%;
  }

  #top #feture p:last-of-type {
    padding-bottom: 20px;
  }
}

.top-style_2 {
  position: relative;
  margin-bottom: 90px;
}

.top-style_2 .bg {
  background-color: #EFEFEF;
  width: 45%;
  height: 100%;
  z-index: -1;
  position: absolute;
  bottom: -50px;
  right: 0;
}

.top-style_2 .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-style_2 .wrapper figure {
  width: 50%;
}

.top-style_2 .wrapper figure img {
  border-radius: 20px;
}

.top-style_2 .wrapper .inbox {
  width: 45%;
}

@media screen and (max-width: 1024px) {
  .top-style_2 .inbox {
    width: 100%;
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .top-style_2 .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
  }

  .top-style_2 .bg {
    width: 100%;
    height: 80%;
    bottom: -20px;
    left: 0;
    padding-bottom: 15px;
  }

  .top-style_2 .wrapper figure {
    width: 80%;
    margin: 0 auto 20px;
  }

  .top-style_2 .wrapper .inbox {
    width: 100%;
  }

  .top-style_2 {
    position: relative;
    margin-bottom: 50px;
  }
}

/*-----Service-----*/
#top section#service {
  /*margin-top: 0;*/
}

#service .service-wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 4%;
}

#service .service-wrap .left {
  width: 40%;
}

#service .service-wrap .right {
  width: 60%;
}

#service .logo-md {
  width: 80%;
  margin: 0 auto 10px;
}

#service .department {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.5;
}

#service .department dd {
  text-align: center;
}

#service .department span:after {
  content: "・";
}

#service .department span:last-of-type:after {
  content: none;
}

#service ul {
  display: flex;
  justify-content: center;
  gap: 1em;
  font-size: 2rem;
  line-height: 1.3;
}

#service .gaikan {
  margin-bottom: 20px;
  width: 100%;
}

#service .gaikan img {
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  #service .service-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    gap: 4%;
  }

  #service .service-wrap .left {
    width: 100%;
    margin-bottom: 30px;
  }

  #service .gaikan {
    margin-bottom: 10px;
  }

  #service .department {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  #service ul {
    display: block;
    justify-content: center;
    gap: initial;
    text-align: center;
    font-size: 1.8rem;
    /*margin-top: 20px;*/
  }

  #service ul li:first-child {
    margin-bottom: 5px;
  }
}

/* medical serive time */
.schedule {
  width: 100%;
  border: solid 1px #ddd;
  margin-bottom: 10px;
}

.schedule tr {
  border-bottom: solid 1px #ddd;
}

.schedule tr:first-of-type {
  width: 100%;
  background-color: #DCE3EB;
}

.schedule tr:first-of-type th,
.schedule tr:first-of-type td {
  border-right: solid 1px #f2f2f2;
}

.schedule tr:first-of-type td:last-child {
  border-right: solid 1px #ddd;
}

.schedule tr span {
  color: var(--main-color);
}

.schedule th {
  padding: 20px;
  font-weight: 400;
  border-right: solid 1px #ddd;
  text-align: center;
  vertical-align: middle;
}

.schedule th time {
  padding-left: 5px;
}

.schedule td {
  padding: 20px;
  border-right: solid 1px #ddd;
  text-align: center;
  vertical-align: middle;
}

#top #service p span.blue {
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  #service .service-wrap .right {
    width: 100%;
    overflow: auto;
  }

  .schedule {
    font-size: 1.3rem;
    line-height: 1.3;
    vertical-align: middle;
    width: 100%;
    border: solid 1px #ddd;
    margin-bottom: 10px;
    border-collapse: collapse;
    /*min-width: 600px;*/
  }

  .schedule tr span {
    color: var(--main-color);
  }

  .schedule th {
    padding: 10px;
    vertical-align: middle;
  }

  .schedule th time {
    padding-left: 0;
    display: block;
  }

  .schedule td {
    padding: 10px;
    vertical-align: middle;
  }

  .schedule td span {
    vertical-align: middle;
  }

  #top #service .schedule+p {
    font-size: 1.5rem;
  }
}

/*-----Access-----*/
#access {
  position: relative;
}

#top section#access {
  margin-bottom: 0;
}

#access .bg {
  background-color: #EFEFEF;
  width: 100%;
  height: 65%;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
}

.gmap {
  width: 100%;
  margin: 0 auto 30px;
}

.gmap iframe {
  width: 100%;
  /*height:500px;*/
  border-radius: 30px;
  height: auto;
  aspect-ratio: 5 / 2;
}

#access .gmap+p {
  text-align: center;
}

#access h4 {
  color: var(--main-color);
  font-family: var(--hd-font);
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
}

#access h4::after {
  background-color: var(--main-color);
  content: '';
  width: 30px;
  height: 1px;
  margin: 15px auto 0;
  display: block;
}

#access .route-wrap .box-white span {
  line-height: 1.3;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 400;
  margin-top: 10px;
  display: inline-block;
}

#access .wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

#access .route-wrap .box-white {
  width: 50%;
  background-color: #fff;
  padding: 30px;
  border-radius: 30px;
  line-height: 2;
  font-size: 1.6rem;
}

#access .route-wrap .box-white dl {
  margin-top: 10px;
}

#access .route-wrap .box-white dl dt {
  font-family: var(--hd-font);
  font-weight: 700;
  font-family: var(--hd-font);
  font-size: 1.8rem;
}

#access .route-wrap .box-white span {
  color: var(--main-color);
}

#access .route-wrap li {
  position: relative;
  padding-left: 1.7em;
  line-height: 1.4;
  margin-bottom: 10px;
}

#access .route-wrap li:last-child {
  margin-bottom: 0px;
}

#access .route-wrap li strong {
  position: absolute;
  top: 0;
  left: 0;
}

#access a {
  color: var(--main-color);
}

#access a:hover {
  color: var(--sub-color);
}

@media screen and (max-width: 768px) {
  #access {
    margin-bottom: 0;
  }

  #access .bg {
    background-color: #EFEFEF;
    height: 85%;
  }

  .gmap {
    width: 100%;
    margin: 0 auto 10px;
  }

  .gmap iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
  }

  #top #access p {
    text-align: center;
    font-size: 1.6rem;
  }

  #access h4 {
    margin-bottom: 15px;
    font-size: 2rem;
    line-height: 1.3;
  }

  #access h4::after {
    background-color: var(--main-color);
    content: '';
    width: 30px;
    height: 1px;
    margin: 15px auto 0;
    display: block;
  }

  #access .route-wrap .box-white span {
    line-height: 1.3;
    font-size: 1.5rem;
    text-align: center;
  }

  #access .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 0;
  }

  #access .route-wrap .box-white {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    line-height: 1.8;
    font-size: 1.5rem;
  }

  #access .route-wrap .box-white dl {
    margin-top: 10px;
  }

  #access .route-wrap .box-white dl dt {
    font-size: 1.7rem;
    text-align: left;
  }

  #access .route-wrap .box-white span {
    color: var(--main-color);
  }
}

/*-----Footer------*/
footer {
  width: 100%;
  color: #ffffff;
  background-color: var(--main-color);
  padding: 25px 0;
  text-align: center;
}

footer small {
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 18px 0;
    text-align: center;
  }

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

@media screen and (max-width: 768px) {
  footer {
    width: 100%;
    height: auto;
    padding: 14px 0 17px;
    margin-bottom: 60px;
  }

  footer .cr {
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
  }
}

/*-----Animation------*/
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 0.7s;

  &.fadein-left {
    transform: translate(-30px, 0);
  }

  &.fadein-right {
    transform: translate(30px, 0);
  }

  &.fadein-up {
    transform: translate(0, -30px);
  }

  &.fadein-bottom {
    transform: translate(0, 30px);
  }

  &.scrollin {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}

.rotation {
  transition: all 3s;
  opacity: 0;

  &.rotation-x {
    transform: rotateX(180deg);
  }

  &.rotation-y {
    transform: rotateY(180deg);
  }

  &.rotation-clockwise {
    transform: rotate(-170deg);
  }

  &.rotation-counterclockwise {
    transform: rotate(170deg);
  }

  &.scrollin {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
  }
}

.slidein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 0.5s;

  &.slidein-left {
    transform: translate(-100%, 0);
  }

  &.slidein-right {
    transform: translate(100%, 0);
  }

  &.slidein-up {
    transform: translate(0, -100%);
  }

  &.slidein-bottom {
    transform: translate(0, 100%);
  }

  &.scrollin {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
  }
}

u {
  text-decoration: #01b4b6 dotted underline 2px;
}

.pc_none {
  display: none;
}

.sp_none {
  display: inline-block;
}

.pc_br {
  display: block;
}

.sp_br {
  display: none;
}

.pc_none {
  display: none;
}

.sp_none {
  display: inline-block;
}

.pc_br {
  display: block;
}

.sp_br {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_none {
    display: inline-block;
  }

  .sp_none {
    display: none;
  }

  .pc_br {
    display: none;
  }

  .sp_br {
    display: block;
  }
}

/*-------ご挨拶-------*/
#top #greeting {
  background-color: #DCE3EB;
  margin-top: 200px;
  margin-bottom: 0;
  /*margin-bottom: 60px;*/
}

#greeting h3 {
  color: var(--main-color);
  font-family: var(--hd-font);
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
}

#greeting h3::after {
  background-color: var(--main-color);
  content: '';
  width: 30px;
  height: 1px;
  margin: 15px auto 0;
  display: block;
}

#greeting .top-style {
  /* margin-bottom: 50px; */
  margin-bottom: 0;
  padding-bottom: 50px;
}

#greeting .top-style .wrapper {
  align-items: flex-start;
}

#greeting .top-style .wrapper figure {
  width: 35%;
}

#greeting .top-style .wrapper figure figcaption {
  text-align: center;
  margin-top: 30px;
  font-size: 2.4rem;
  color: var(--text-color);
  font-family: var(--hd-font);
  font-weight: 600;
}

#greeting .top-style .wrapper figure figcaption small {
  display: inline-block;
  font-size: 80%;
  margin-right: 1em;
}

#greeting .top-style .wrapper figure figcaption span {
  display: inline-block;
  font-size: 80%;
  margin-left: 1em;
  color: var(--main-color);
}

#greeting .top-style .wrapper .inbox {
  width: 60%;
}

#greeting .top-style .wrapper .inbox p {
  margin-bottom: 1em;
}

#greeting .top-style .wrapper .inbox p.heading {
  font-size: 2.8rem;
  color: var(--main-color);
  font-family: var(--hd-font);
  font-weight: 600;
  line-height: 1.4;
}

#greeting .top-style .bg {
  background-color: #fff;
  opacity: 0.1;
  width: 32%;
  height: 90%;
  z-index: -1;
  position: absolute;
  bottom: -30px;
  left: 0;
}

#greeting .greeting-box-list {
  padding: 0 0 100px;
}

#greeting .greeting-box-list .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

#greeting .greeting-box-list .wrapper .greeting-box {
  width: 50%;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 30px 35px;
}

#greeting .greeting-box-list .wrapper .greeting-box dl {
  display: grid;
  grid-template-columns: 5em 1fr;
  line-height: 1.4;
  margin-bottom: -15px;
}

#greeting .greeting-box-list .wrapper .greeting-box dl dt,
#greeting .greeting-box-list .wrapper .greeting-box dl dd {
  margin-bottom: 15px;
}

#greeting .greeting-box-list .wrapper .greeting-box ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 1em;
  line-height: 1.4;
}

#greeting .greeting-box-list .wrapper .greeting-box ul li:last-child {
  margin-bottom: 0px;
}

#greeting .greeting-box-list .wrapper .greeting-box ul li:before {
  content: '●';
  position: absolute;
  color: var(--sub-color);
  top: .9em;
  left: 0;
  font-size: .8rem;
  /*color: #5DB9B9;*/
}

@media screen and (max-width: 768px) {
  #top #greeting {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 20px;
  }

  #greeting h3 {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }

  #greeting .top-style {
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  #greeting .top-style .wrapper {
    align-items: flex-start;
  }

  #greeting .top-style .wrapper figure {
    width: 80%;
    margin-bottom: 20px;
  }

  #greeting .top-style .wrapper figure figcaption {
    margin-top: 15px;
    font-size: 2rem;
  }

  #greeting .top-style .wrapper .inbox {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  #greeting .top-style .bg {
    width: 100%;
  }

  #greeting .greeting-box-list {
    padding: 40px 0;
    margin-top: -20px;
  }

  #greeting .greeting-box-list .wrapper {
    max-width: 100%;
    flex-wrap: wrap;
  }

  #greeting .greeting-box-list .wrapper .greeting-box {
    width: 100%;
    font-size: 1.5rem;
    padding: 20px 20px 25px;
    border-radius: 15px;
  }

  #greeting .greeting-box-list .wrapper .greeting-box:first-of-type {
    margin-bottom: 0;
  }

  #greeting .greeting-box-list .wrapper .greeting-box dl {
    grid-template-columns: 4.5em 1fr;
    margin-bottom: -10px;
  }

  #greeting .greeting-box-list .wrapper .greeting-box dl dt,
  #greeting .greeting-box-list .wrapper .greeting-box dl dd {
    margin-bottom: 10px;
  }

  #greeting .greeting-box-list .wrapper .greeting-box ul li {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  #greeting .top-style .wrapper .inbox p.heading {
    font-size: 2rem;
    color: var(--main-color);
    font-family: var(--hd-font);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
  }
}

/* 2026.02.21追記 */
.recruit {
  background-color: #F4F9E5;
  text-align: center;
  padding: 35px;
}

.recruit-inner {
  padding: 25px 150px;
  background-color: #fff;
  border-radius: 10px;
  border: 5px solid #A2C630;
  width: fit-content;
  margin: 0 auto;
}

.recruit h4 {
  color: var(--main-color);
  font-family: var(--hd-font);
  margin-bottom: 12px;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.5;
}

.recruit p {
  line-height: 2;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 40px;
  background-color: var(--main-color);
  border-radius: 999px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease;
}

.more-btn:hover {
  opacity: 0.8;
  color: #fff !important;
}

.arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.arrow {
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 1px;
  transform: rotate(45deg);
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .recruit-inner {
    padding: 20px;
    width: auto;
  }

  .recruit {
    padding: 20px;
  }
}

/* 20260403 Web予約ボタン */
.rsv_btn {
  margin-left: 40px;
  background: #1F548F;
  padding: 15px 30px 15px 55px;
  border-radius: 40px;
  transition: 0.4s;
}

.rsv_btn:hover {
  opacity: 0.8;
}

.rsv_btn a {
  color: #fff;
}

.rsv_btn a span {
  position: relative;
}

.rsv_btn a span::before {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/web.png) no-repeat center / contain;
  width: 22px;
  height: 22px;
  top: 50%;
  transform: translateY(-50%);
  /*top: 4px;*/
  left: -30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.sp_bottom-menu {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1230px) {
  .sp_bottom-menu {
    visibility: visible;
    height: auto;
    overflow: visible;
  }

  .sp_bottom-menu__btn {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.04em;
    vertical-align: bottom;
    /* width: 25%; */
    height: 60px;
    line-height: 20px;
    /* background-color: rgba(255, 139, 143, 0.8862745098); */
    background-color: rgba(31, 84, 143, 0.8862745098);
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3215686275);
    font-family: "fot-tsukuardgothic-std", sans-serif;
    position: relative;
    padding: 32px 0 0;
    width: 50%;
  }

  a.sp_bottom-menu__btn:nth-of-type(2) {
    background-color: rgba(0, 140, 214, 0.88);
  }

  .sp_bottom-menu__btn--line {
    background-color: rgba(14, 211, 0, 0.9058823529) !important;
  }

  .sp_bottom-menu__btn--tel {
    background-color: rgba(93, 185, 185, 0.8862745098) !important;
    line-height: 1;
    padding: 25px 0 0;
  }

  .sp_bottom-menu__btn--tel.tel2 {
    background: rgba(162, 198, 48, 0.88) !important;
  }

  .sp_bottom-menu__btn--tel small {
    font-size: 80%;
  }

  /* .sp_bottom-menu__btn span {
    position: relative;
  } */
  /* .sp_bottom-menu__btn span::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 3px;
    left: -30px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background: url(../images/web.png) no-repeat center center / contain;
    margin-right: 5px;
  } */
  .sp_bottom-menu__btn::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 19px;
    height: 27px;
    background: url(../images/web.png) no-repeat center center / contain;
    margin-right: 5px;
  }

  .sp_bottom-menu__btn:nth-of-type(2)::before {
    background-image: url(../images/tel.png) !important;
  }

  .sp_bottom-menu__btn--line::before {
    width: 22px;
    height: 30px;
    background-image: url(../images/line.png) !important;
  }

  .sp_bottom-menu__btn--tel::before {
    top: 2px;
    width: 16px;
    height: 21px;
    background-image: url(../images/tel.png) !important;
  }
}

/* ボタンが複数あって文字上にアイコンを置くとき */
/* .sp_bottom-menu__btn::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background: url(../images/web.png) no-repeat center center / contain;
    margin-right: 5px;
} */

/* バナーエリア */
.banner {
  padding: 30px;
  background-color: #EFEFEF;
}

.banner-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-list li {
  width: 250px;
}

.banner-list img {
  width: 100%;
  height: auto;
  display: block;
}

/* 260424 */
.creditcard {
  width: 350px; 
  margin: 10px auto 0;
}
@media screen and (max-width: 1230px) {
  .creditcard {
   width: 280px; 
}
}

/* 20260430 アクセス動画追加 */
.mapvideo {
    width: 100%;
    margin: 100px auto 30px;
    display: flex;
}
.gmap {
    width: 50%;
    margin: 0;
}
.gmap iframe,
.video iframe {
    width: 100%;
    border-radius: 30px 0 0 30px;
    height: auto;
    aspect-ratio: 16 / 9;
}
.video iframe {
    border-radius: 0 30px 30px 0;
}
.video {
    width: 50%;
}
#top section p {
    text-align: center;
}
@media screen and (max-width: 768px) {
  .mapvideo {
    flex-direction: column;
    margin: 50px auto 30px;
  }
  .gmap {
    width: 100%;
    margin: 0;
  }
  .gmap iframe {
    border-radius: 15px 15px 0 0;
  }
  .video {
    width: 100%;
  }
  .video iframe {
    border-radius: 0 0 15px 15px;
  }
}

