@charset "UTF-8";
/*** The new CSS reset - version 1.9 (last updated 19.6.2023) ***/
:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

a,
button {
  cursor: revert;
}

menu,
ol,
ul {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}


/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
全ページ共通CSS
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
*, *:before, *:after {
  box-sizing: border-box;
}

body {
  font-family: Noto Sans JP, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  color: #444;
  counter-reset: number 0;
}
@media screen and (max-width: 599px) {
  body {
    font-size: 14px;
  }
}

img {
  display: block;
}

a:link, a:visited, a:hover, a:active, a:focus {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

p {
  text-align: justify;
}

.content-width {
  width: 80%;
  margin: 40px auto;
}
@media screen and (max-width: 1024px) {
  .content-width {
    width: 94%;
  }
}

a:not(.btn, #nav-toggle, .tel, .homelogo, .f-logo a, .important a) {
  background-image: linear-gradient(to right, #80bb54, #80bb54 50%, #444 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

a:not(.btn, #nav-toggle, .tel, .homelogo, .f-logo a, .important a):before {
  content: "";
  background: #80bb54;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
}

a:not(.btn, #nav-toggle, .tel, .homelogo, .important a):hover {
  background-position: 0;
}

a:not(.btn, #nav-toggle, .tel, .homelogo, .important a):hover::before {
  width: 100%;
}

h1 {
  font-family: Noto Serif JP, serif;
}

h2 {
  font-size: 48px;
  color: #444;
  padding: 10px;
  text-align: center;
  letter-spacing: 2px;
  padding: 0.2rem 0;
  background-image: linear-gradient(90deg, #a7e2fa 0 30%, #dedede 30%);
  background-repeat: no-repeat;
  background-size: 100% 3%;
  background-position: bottom;
  display: inline-block;
  margin-bottom: 30px;
  padding-top: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 599px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 27px;
  }
}
@media screen and (max-width: 599px) {
  h3 {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .text {
    padding-bottom: 30px;
  }
}

.btn {
  display: inline-block;
  border: 1px solid #444;
  padding: 12px 60px 14px;
  text-transform: uppercase;
  color: #444;
  font-size: 19px;
  text-decoration: none;
  letter-spacing: 0.2em;
  border-radius: 0;
  transition: all 0.5s ease-out;
  margin: 20px 0;
  background: linear-gradient(270deg, rgba(153, 233, 247, 0.8), rgba(193, 237, 245, 0.8), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  background-size: 300% 300%;
  background-position: 1% 50%;
}
.btn:hover {
  color: #00a1e5;
  border: 1px solid rgba(193, 164, 112, 0);
  background-position: 99% 50%;
}

.pcnone {
  display: none;
}

@media screen and (max-width: 1024px) {
  .spnone {
    display: none;
  }
  .pcnone {
    display: block;
  }
}
.bg {
  background: #E2EDD5;
  padding: 20px 0;
}

.flex {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto;
}
.flex .img {
  width: 45%;
}
.flex .text {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .flex {
    flex-wrap: wrap;
    margin: 24px auto;
  }
  .flex .img {
    width: 100%;
  }
  .flex .text {
    width: 100%;
  }
}

/* ナビアニメーション */
.nav-list a {
  display: inline-block;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.heder-fadeIn {
  animation-duration: 0.5s;
}

ul.nav-animetion li {
  opacity: 0;
  animation-name: header-fadeIn;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

ul.nav-animetion li:nth-child(1) {
  animation-delay: 0.2s;
}

ul.nav-animetion li:nth-child(2) {
  animation-delay: 0.4s;
}

ul.nav-animetion li:nth-child(3) {
  animation-delay: 0.6s;
}

ul.nav-animetion li:nth-child(4) {
  animation-delay: 0.8s;
}

ul.nav-animetion li:nth-child(5) {
  animation-delay: 1s;
}

ul.nav-animetion li:nth-child(6) {
  animation-delay: 1.2s;
}

ul.nav-animetion li:nth-child(7) {
  animation-delay: 1.4s;
}

@keyframes header-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ロゴアニメーション */
.logo {
  animation-name: header-logo-fade;
  animation-duration: 2s;
}

@keyframes header-logo-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*その場でふわ */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadein-time1 {
  animation-delay: 1s;
  animation-duration: 2s;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールでふわっと */
.fuwa-fade {
  opacity: 0;
  transition: opacity 3s;
}

.fuwa-fade.view {
  opacity: 1;
}

/* フェードアップ */
.fade-up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.fade-up.on {
  transform: translateY(0px);
  opacity: 1;
}

.timing02 {
  transition-delay: 0.2s;
}

.timing03 {
  transition-delay: 0.4s;
}

.timing04 {
  transition-delay: 0.6s;
}

.timing05 {
  transition-delay: 0.8s;
}

.timing06 {
  transition-delay: 1s;
}

/* トップテキストアニメーション */
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ふわふわ */
.fuwafuwa:before {
  animation: fuwafuwa 3s infinite ease-in-out 0.8s alternate;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
.fuwafuwa2 {
  animation: fuwafuwa2 3s infinite ease-in-out 0.8s alternate;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa2 {
  0% {
    transform: translate(0, 0) rotate(-10deg);
  }
  50% {
    transform: translate(0, -10px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(10deg);
  }
}
.annotation {
  text-align: center;
  margin-top: 20px;
}

/*========= 光りながら出現させるためのCSS ===============*/
.glowAnime span {
  opacity: 0;
}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span {
  animation: glow_anime_on 3s ease-out forwards;
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
下層共通CSS
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.sub .submv {
  position: relative;
  margin-top: 100px;
}
.sub .submv img {
  height: 50vh;
  width: 100vw;
  object-fit: cover;
  object-position: top right;
}
@media screen and (max-width: 768px) {
  .sub .submv {
    margin-top: 88px;
  }
}
.sub .subtitle {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  max-width: 210px;
  width: 100%;
  padding: 20px 40px;
  text-align: center;
  font-size: 20px;
}
.sub .sub-flexbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
Header
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
@media screen and (max-width: 599px) {
  header #brand {
    margin-top: 10px;
  }
}
header #brand a.homelogo {
  display: contents;
  width: 50%;
}
header #brand a.homelogo span {
  font-size: 40px;
  vertical-align: middle;
  padding-left: 20px;
}
@media screen and (max-width: 1024px) {
  header #brand a.homelogo span {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  header #brand a.homelogo span {
    font-size: 24px;
    padding-left: 10px;
    vertical-align: text-top;
  }
}
header #brand img {
  width: 12%;
  display: inline;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  header #brand img {
    width: 9%;
    padding-bottom: 0;
    padding-top: 16px;
    padding-left: 16px;
  }
}
@media screen and (max-width: 768px) {
  header #brand img {
    width: 10%;
  }
}
@media screen and (max-width: 599px) {
  header #brand img {
    width: 15%;
  }
}
header #brand a:link,
header #brand a:visited,
header #brand a:hover,
header #brand a:active {
  text-decoration: none;
  pointer-events: painted;
}
header .navigation {
  position: fixed;
  width: 100vw;
  background-color: #fff;
  z-index: 999;
  font-size: 16px;
  top: 0;
}
header .navigation .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
  height: 100px;
}
header .navigation .nav-container .nav-list {
  display: flex;
  align-items: baseline;
}
header .navigation .nav-container .nav-list li {
  margin: 0 15px;
  white-space: nowrap;
}
header .navigation .nav-container .nav-list li .tel {
  font-size: 24px;
  font-weight: bold;
  padding-left: 30px;
  position: relative;
}
header .navigation .nav-container .nav-list li .tel::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/tel.png) no-repeat bottom center;
  background-size: contain;
}
header .navigation .nav-container .nav-list li .tel:hover {
  color: #80bb54;
}
header .navigation .nav-container .nav-list li .tel:hover::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/telhover.png) no-repeat bottom center;
  background-size: contain;
}
header .navigation .nav-container .nav-list li .tel span {
  position: relative;
}
header .navigation .nav-container .nav-list li .tel span.ha::before {
  content: "は";
  width: 100%;
  height: auto;
  font-size: 14px;
  position: absolute;
  top: -15px;
  left: 0;
}
header .navigation .nav-container .nav-list li .tel span.ni::before {
  content: "に";
  width: 100%;
  height: auto;
  font-size: 14px;
  position: absolute;
  top: -15px;
  left: 0;
}
header .navigation .nav-container .nav-list li .tel span.yo::before {
  content: "よ";
  width: 100%;
  height: auto;
  font-size: 14px;
  position: absolute;
  top: -15px;
  left: 0;
}
header .navigation .nav-container .nav-list li .tel span.i::before {
  content: "い";
  width: 100%;
  height: auto;
  font-size: 14px;
  position: absolute;
  top: -15px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  header .navigation .nav-container .nav-list li .tel {
    font-size: 28px;
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  header .navigation .nav-container .nav-list {
    display: none;
    background-color: #fff;
    padding: 50px 30px 130px;
    height: 100vh;
  }
  header .navigation .nav-container .nav-list li {
    padding: 24px;
  }
  header .navigation .nav-container .nav-list li a:not(.tel) {
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  header .navigation .nav-container {
    display: block;
    text-align: left;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background: #fff;
    margin: 0;
    z-index: 9999;
    position: fixed;
    height: 88px;
    top: 0;
  }
}
@media screen and (max-width: 1024px) {
  header .navigation {
    font-size: 16px;
    position: relative;
  }
}
header .nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 30px;
  height: 30px;
  width: 30px;
  /* 開閉ボタン */
}
@media screen and (max-width: 1024px) {
  header .nav-mobile {
    display: block;
  }
}
header .nav-mobile #nav-toggle {
  position: absolute;
  left: 0;
  top: 35px;
  cursor: pointer;
  padding: 10px 36px 16px 0px;
  z-index: 9999;
}
header .nav-mobile #nav-toggle span, header .nav-mobile #nav-toggle span::before, header .nav-mobile #nav-toggle span::after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 36px;
  background: #444;
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
header .nav-mobile #nav-toggle span::before {
  top: -10px;
}
header .nav-mobile #nav-toggle span::after {
  bottom: -10px;
}
header .nav-mobile #nav-toggle.active span {
  width: 0;
}
header .nav-mobile #nav-toggle.active span::before {
  top: 0;
  transform: rotate(135deg);
}
header .nav-mobile #nav-toggle.active span::after {
  bottom: 0;
  transform: rotate(-135deg);
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
footer
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
footer {
  text-align: center;
  padding: 0;
  margin: 0;
  position: relative;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 80px;
  }
}
footer .f-flexbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  justify-content: center;
  margin: 0 auto 20px;
  padding-top: 50px;
  border-top: 1px dashed #80bb54;
  width: 94%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .f-flexbox {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 599px) {
  footer .f-flexbox {
    margin-top: 10px;
    margin: 0px auto 10px;
    padding-top: 0px;
    gap: 0;
  }
  footer .f-flexbox .pcnone {
    margin-top: 10px;
  }
}
footer .footer-schedule {
  width: 100%;
  text-align: left;
}
footer .footer-schedule h2 {
  font-size: 25px;
}
footer .footer-schedule .medical_table table {
  width: 100%;
  border: #2c436e solid 1px;
  border-collapse: collapse;
  background-color: #a7e2fa;
}
footer .footer-schedule .medical_table th {
  text-align: center;
  border: #fafafa solid 2px;
  color: #fafafa;
}
footer .footer-schedule .medical_table th:first-child {
  width: 35%;
  padding: 20px;
}
@media screen and (max-width: 599px) {
  footer .footer-schedule .medical_table th:first-child {
    padding: 10px;
  }
}
footer .footer-schedule .medical_table td {
  line-height: 38px;
  text-align: center;
  border: #fafafa solid 2px;
  vertical-align: middle;
}
footer .footer-schedule .medical_table td:first-child {
  width: 35%;
  padding: 20px;
  color: #fafafa;
}
@media screen and (max-width: 599px) {
  footer .footer-schedule .medical_table td:first-child {
    padding: 5px;
  }
}
footer .footer-schedule .medical_table .circle {
  border: 2px solid #fafafa;
  border-radius: 8px;
  display: block;
  height: 16px;
  margin: 5px auto;
  width: 16px;
}
footer .footer-schedule .medical_table .cross {
  color: #fafafa;
  display: block;
  height: 16px;
  margin: 5px auto;
  position: relative;
  top: 1px;
  transform: rotate(-45deg);
  width: 16px;
}
footer .footer-schedule .medical_table .cross::before {
  background: #fafafa;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
}
footer .footer-schedule .medical_table p {
  margin-top: 10px;
  text-align: end;
}
@media screen and (max-width: 599px) {
  footer .footer-schedule .medical_table p {
    text-align: left;
  }
}
footer .footer-schedule .medical_table p span {
  color: #ff0058;
}
footer .f-logo {
  margin: 30px 0;
}
@media screen and (max-width: 599px) {
  footer .f-logo {
    margin: 30px 0 15px;
  }
}
footer .f-logo a span {
  font-size: 50px;
  vertical-align: middle;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  footer .f-logo a span {
    font-size: 45px;
  }
}
@media screen and (max-width: 599px) {
  footer .f-logo a span {
    font-size: 35px;
    padding-left: 0;
  }
}
footer .f-logo img {
  width: 25%;
  display: inline;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  footer .f-logo img {
    width: 12%;
  }
}
@media screen and (max-width: 768px) {
  footer .f-logo img {
    width: 20%;
    margin: 16px auto 8px;
    display: block;
  }
}
footer .f-nav {
  width: 100%;
}
footer .f-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  footer .f-nav ul {
    padding-bottom: 10px;
    margin: 0 auto;
  }
}
footer .f-nav ul li {
  padding-left: 20px;
}
footer .f-addr {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px;
}
@media screen and (max-width: 599px) {
  footer .f-addr {
    margin: 20px 0;
  }
}
footer .f-addr .f-addr-tel {
  padding-top: 15px;
  text-align: justify;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
footer .f-addr .f-addr-tel p {
  color: #80bb54;
  display: inline-block;
  font-size: 18px;
  letter-spacing: 1px;
}
@media screen and (max-width: 599px) {
  footer .f-addr .f-addr-tel p {
    display: block;
    padding-bottom: 15px;
  }
}
footer .f-addr .f-addr-tel a {
  transition: all 0.3s ease 0s;
}
footer .f-addr .f-addr-tel .tel {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  padding-left: 0;
}
@media screen and (max-width: 599px) {
  footer .f-addr .f-addr-tel .tel {
    padding-left: 0;
    font-size: 30px;
  }
}
footer .f-addr .f-addr-tel .tel::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/tel.png) no-repeat bottom center;
  background-size: contain;
}
footer .f-addr .f-addr-tel .tel:hover {
  color: #80bb54;
}
footer .f-addr .f-addr-tel .tel:hover::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/telhover.png) no-repeat bottom center;
  background-size: contain;
}
footer .f-addr .f-addr-tel .tel span {
  position: relative;
}
footer .f-addr .f-addr-tel .tel span.ha::before {
  content: "は";
  width: 100%;
  height: auto;
  font-size: 14px;
  position: absolute;
  top: -15px;
  left: 0;
}
footer .f-addr .f-addr-tel .tel span.ni::before {
  content: "に";
  width: 100%;
  height: auto;
  font-size: 14px;
  position: absolute;
  top: -15px;
  left: 0;
}
footer .f-addr .f-addr-tel .tel span.yo::before {
  content: "よ";
  width: 100%;
  height: auto;
  font-size: 14px;
  position: absolute;
  top: -15px;
  left: 0;
}
footer .f-addr .f-addr-tel .tel span.i::before {
  content: "い";
  width: 100%;
  height: auto;
  font-size: 14px;
  position: absolute;
  top: -15px;
  left: 0;
}
footer .copyright {
  display: block;
  margin: 20px 0 15px 0px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    width: 100%;
  }
}
footer .f-content {
  position: absolute;
  top: 60%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  footer .f-content {
    top: 48%;
  }
}
@media screen and (max-width: 599px) {
  footer .f-content {
    top: 52%;
  }
}
footer .access.content-width {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  footer .access.content-width {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
footer .access .map {
  width: 100%;
}
footer .access .map iframe {
  width: 100%;
  height: 300px;
}

.contact-bnr {
  position: fixed;
  bottom: 0;
  width: 100%;
}
.contact-bnr a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #80bb54;
  padding: 24px 16px;
  color: #fafafa;
  line-height: 1.2;
}
.contact-bnr a h5.tel-no {
  font-size: 24px;
}
.contact-bnr a h5.tel-no::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/telbnr.png) no-repeat bottom center;
  background-size: contain;
}
.contact-bnr a h5 span {
  position: relative;
  line-height: 1.3em;
}
.contact-bnr a h5 span.ha::before {
  content: "は";
  width: 100%;
  height: auto;
  font-size: 12px;
  position: absolute;
  top: -15px;
  left: 0;
}
.contact-bnr a h5 span.ni::before {
  content: "に";
  width: 100%;
  height: auto;
  font-size: 12px;
  position: absolute;
  top: -15px;
  left: 0;
}
.contact-bnr a h5 span.yo::before {
  content: "よ";
  width: 100%;
  height: auto;
  font-size: 12px;
  position: absolute;
  top: -15px;
  left: 0;
}
.contact-bnr a h5 span.i::before {
  content: "い";
  width: 100%;
  height: auto;
  font-size: 12px;
  position: absolute;
  top: -15px;
  left: 0;
}

/* ===========================================================

    index

=========================================================== */
.home #mv {
  position: relative;
  margin-top: 100px;
  /*　背景画像設定　*/
}
.home #mv img {
  max-width: 100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100vh;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .home #mv {
    margin-top: 88px;
  }
}
.home #mv .slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .home #mv .slider {
    height: 60vh;
  }
}
.home #mv .slider-item01 {
  background: url(../img/AMU_1218.jpg);
}
@media screen and (max-width: 599px) {
  .home #mv .slider-item01 {
    background-position: 74% center !important;
  }
}
.home #mv .slider-item02 {
  background: url(../img/AMU_1423.jpg);
}
@media screen and (max-width: 599px) {
  .home #mv .slider-item02 {
    background-position: 43% center !important;
  }
}
.home #mv .slider-item03 {
  background: url(../img/AMU_1086.jpg);
}
.home #mv .slider-item04 {
  background: url(../img/AMU_1370.jpg);
}
@media screen and (max-width: 599px) {
  .home #mv .slider-item04 {
    background-position: 57% center !important;
  }
}
.home #mv .slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}
@media screen and (max-width: 768px) {
  .home #mv .slider-item {
    height: 60vh;
  }
}
.home #mv ul.slider {
  margin: 0;
  padding: 0;
  list-style: none;
}
.home #mv h1 {
  position: absolute;
  bottom: 20%;
  left: 0;
  z-index: 2;
  font-size: 40px;
  background: rgba(255, 255, 255, 0.8);
  width: 60%;
  padding: 20px 100px;
}
.home #mv h1 span {
  background: linear-gradient(to right, #00a1e5, #00ffbc);
  background: -webkit-linear-gradient(to right, #00a1e5, #00ffbc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .home #mv h1 {
    bottom: 24%;
    font-size: 20px;
    width: 100%;
    padding: 20px 40px;
  }
}
.home .scroll {
  display: none;
}
@media screen and (max-width: 768px) {
  .home .scroll {
    padding-top: 20px;
    position: relative;
    text-align: center;
  }
  .home .scroll.fadeIn {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 998;
  }
  .home .scroll::before {
    animation: scroll 2s infinite;
    display: inline-block;
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-bottom: solid 1px #fff;
    border-left: solid 1px #fff;
    transform: rotate(-45deg);
    top: -27px;
    right: 0;
    left: 0;
    margin: auto;
  }
  .home .scroll span.text {
    color: #fff;
  }
}
.home .news {
  margin-top: 40px;
  margin-bottom: 100px;
}
.home .news article {
  margin: 30px auto;
}
.home .news article .news-item {
  display: flex;
  padding: 20px 0;
  border-top: 1px dotted #ddd;
}
.home .news article .news-item:last-child {
  border-bottom: 1px dotted #ddd;
}
.home .news article .news-item .news-head {
  width: 200px;
}
.home .news article .news-item .news-head .news-date {
  text-align: center;
}
.home .news article .news-item .news-title {
  width: calc(100% - 200px);
  padding-left: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .home .news article .news-item {
    flex-wrap: wrap;
  }
  .home .news article .news-item .news-head {
    width: 100%;
  }
  .home .news article .news-item .news-head .news-date {
    text-align: left;
  }
  .home .news article .news-item .news-title {
    width: 100%;
    padding-left: 0;
  }
}
.home .mess .mess-content h3 {
  font-weight: 400;
}
.home .mess .mess-content .mess-title {
  text-align: center;
}
.home .mess .mess-content .mess-text .mess-h3 {
  margin-bottom: 55px;
  font-size: 25px;
}
.home .mess .mess-content .mess-text p {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .home .mess .mess-content .mess-text p {
    margin: 0 auto;
    width: 100%;
  }
}
.home .mess .mess-content .mess-img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home .mess .flex {
    flex-direction: column-reverse;
  }
}
.home .mess .text .director_name {
  margin-top: 20px;
  text-align: right;
}
.home .mess .text div {
  margin: 24px auto 0;
}
.home .important {
  margin-top: 64px;
  margin-bottom: 40px;
}
.home .important h3 {
  text-align: center;
}
.home .important ul li {
  width: 100%;
  margin: 10px auto;
}
.home .info .subject ul li {
  font-size: 24px;
  padding: 10px 0 10px 40px;
  position: relative;
}
.home .info .subject ul li::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../img/icon1.png) no-repeat center left;
  background-size: contain;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .home .info .subject ul li {
    font-size: 18px;
    padding-left: 30px;
  }
  .home .info .subject ul li::before {
    width: 20px;
    height: 20px;
  }
}
.home .info .medical_table table {
  width: 100%;
  border: #2c436e solid 1px;
  border-collapse: collapse;
}
.home .info .medical_table th {
  text-align: center;
  border: #2c436e solid 1px;
}
.home .info .medical_table th:first-child {
  width: 35%;
}
.home .info .medical_table td {
  line-height: 38px;
  text-align: center;
  border: #2c436e solid 1px;
  vertical-align: middle;
}
.home .info .medical_table td:first-child {
  width: 35%;
}
.home .info .medical_table .circle {
  border: 1px solid #2c436e;
  border-radius: 8px;
  display: block;
  height: 16px;
  margin: 5px auto;
  width: 16px;
}
.home .info .medical_table .cross {
  color: #2c436e;
  display: block;
  height: 16px;
  margin: 5px auto;
  position: relative;
  top: 1px;
  transform: rotate(-45deg);
  width: 16px;
}
.home .info .medical_table .cross::before {
  background: #2c436e;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
}
.home .medi-subject .flex {
  justify-content: space-evenly;
}
.home .medi-subject .subject-con {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .home .medi-subject .subject-con {
    width: 35%;
  }
}
.home .medi-subject .medi-btn {
  text-align: center;
}

.introduction .feature .text {
  text-align: center;
  width: 40%;
  margin: 80px auto 0;
}
.introduction .feature .text img {
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .introduction .feature .text {
    width: 90%;
    margin: 20px auto 0;
    padding-bottom: 0;
  }
  .introduction .feature .text img {
    margin-top: 20px;
    width: 20%;
  }
}
.introduction .feature .img.flex {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
}
.introduction .feature .img img {
  width: 48%;
}
@media screen and (max-width: 599px) {
  .introduction .feature .img img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.introduction .feature .title {
  font-size: 32px;
  position: relative;
  margin-bottom: 80px;
}
.introduction .feature .title::after {
  content: "";
  position: absolute;
  width: 80%;
  height: auto;
  border-bottom: 2px dashed #444;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  .introduction .feature .title {
    font-size: 24px;
  }
}
.introduction .feature .important {
  padding-top: 80px;
  margin-top: -80px;
}
.introduction .gallery .section-title {
  margin-top: 120px;
}
.introduction .gallery .lightbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .introduction .gallery .lightbox {
    grid-template-columns: 1fr;
  }
}
.introduction .gallery .lightbox div {
  max-width: 100%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .introduction .gallery .lightbox div {
    max-width: 100%;
    margin-top: 5px;
    margin-bottom: 0;
  }
}
.introduction .gallery .lightbox div .clickable img {
  object-fit: cover;
}
.introduction .gallery .lightbox div .clickable:hover {
  cursor: pointer;
}
.introduction .gallery .lightbox div .pbox {
  display: flex; /* 中央 */
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 100%;
  overflow: auto;
}
.introduction .gallery .lightbox div .pbox label img {
  margin: 10px;
}
@media screen and (max-width: 1024px) {
  .introduction .gallery .lightbox div .pbox label img {
    object-fit: contain;
    width: 100%;
    height: auto;
  }
}
.introduction .gallery .lightbox div .pbox::-webkit-scrollbar-track {
  background: none;
}
.introduction .gallery .lightbox div .pbox::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.introduction .gallery .lightbox div .pbox::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 5px;
}
.introduction .gallery .lightbox .intro-hidden {
  display: none;
}
.introduction .gallery .overlay {
  position: fixed; /* 背景 */
  background: rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.introduction .gallery .overlay .popWindow {
  max-height: 95%;
  max-width: 95%;
  transform: scale(0.3); /* クリックした直後のサイズ */
  z-index: 100010;
  font-size: 13px;
  line-height: 18px;
  margin: 10px auto;
  padding: 4px 10px;
  text-align: center;
  transition: all 0.5s 0s ease;
  display: flex; /* 中央 */
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.introduction .gallery .overlay .popWindow .ptitle {
  font-size: 15px;
  margin: 8px;
  color: #FFF;
}
.introduction .gallery .overlay .popWindow .close {
  position: relative;
  float: right;
  transition: all 5ms;
  font-size: 24px;
  line-height: inherit;
  font-weight: bold;
  text-decoration: none;
  color: #FFF;
  padding: 2px;
}
.introduction .gallery .overlay .popWindow .close:hover {
  color: #FFE07C;
}
.introduction .gallery .pop-up {
  display: none;
}
.introduction .gallery .pop-up:checked + .overlay {
  visibility: visible;
  opacity: 1;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.8784313725);
  width: 100%;
}
.introduction .gallery .pop-up:checked + .overlay .popWindow {
  transform: scale(1); /* 最終的なサイズ */
  height: 100%;
}
.introduction .disinfection .flexbox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.introduction .disinfection .flexbox div {
  width: 32%;
  padding: 10px 0 10px;
}
@media screen and (max-width: 599px) {
  .introduction .disinfection .flexbox {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .introduction .disinfection .flexbox div {
    width: 100%;
    padding: 5px 0;
  }
}
.introduction .f_standards .f_standards_flex {
  align-items: flex-start;
}
.introduction .f_standards .standards_text {
  width: 65%;
}
.introduction .f_standards .standards_text .text {
  width: 100%;
}
.introduction .f_standards .standards_text .text h4 {
  font-size: 1.1rem;
  font-weight: bolder;
}
.introduction .f_standards .standards_text .text h4::before {
  counter-increment: number 1;
  content: counter(number) " ";
}
@media screen and (max-width: 768px) {
  .introduction .f_standards .standards_text {
    width: 100%;
  }
}
.introduction .f_standards .standard_img {
  width: 32%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.introduction .f_standards .standard_img .standard {
  width: 100%;
  height: 100%;
}
.introduction .f_standards .standard_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 100%;
}
@media screen and (max-width: 768px) {
  .introduction .f_standards .standard_img {
    width: 100%;
  }
}
.introduction .f_standards .standard {
  margin: 20px 0;
}

.department .dcd {
  margin-top: 80px;
}

.recruit.sub .submv img {
  object-position: center center;
}
.recruit .text p:not(.mess p, .tea p) {
  text-align: center;
}
.recruit .mess .text {
  width: 60%;
}
.recruit .mess .text p {
  margin-top: 32px;
  font-size: 20px;
}
.recruit .mess .img {
  width: 30%;
}
.recruit .mess .group_photo {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recruit .mess .text {
    width: 100%;
    margin-top: 0;
  }
  .recruit .mess .text p {
    margin-top: 40px;
    font-size: 18px;
    margin-bottom: 40px;
  }
  .recruit .mess .img {
    width: 100%;
  }
}
.recruit .point {
  margin-top: 64px;
}
.recruit .point .points {
  width: 66%;
  margin: 0 auto;
}
.recruit .point .points div {
  width: 100%;
  padding: 10px 0 10px 64px;
  margin: 80px auto;
  position: relative;
}
.recruit .point .points div::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.recruit .point .points div.one::before {
  background: url(../img/point1.png) no-repeat center left;
  background-size: contain;
}
.recruit .point .points div.two::before {
  background: url(../img/point2.png) no-repeat center left;
  background-size: contain;
}
.recruit .point .points div.three::before {
  background: url(../img/point3.png) no-repeat center left;
  background-size: contain;
}
.recruit .point .points div p {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .recruit .point .points {
    width: 100%;
    margin: 0 auto;
  }
  .recruit .point .points div {
    margin: 30px auto;
  }
  .recruit .point .points div p {
    font-size: 18px;
  }
}
.recruit .point .flexbox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.recruit .point .flexbox div {
  width: 32%;
  padding: 10px 0 10px;
}
@media screen and (max-width: 768px) {
  .recruit .point .flexbox {
    flex-wrap: wrap;
  }
  .recruit .point .flexbox div {
    width: 100%;
  }
  .recruit .point .flexbox div::before {
    width: 40px;
    height: 40px;
    top: 0;
    transform: translate(0, 10px);
  }
  .recruit .point .flexbox div h4 {
    font-size: 18px;
  }
}
.recruit .point .tea.flex .text h5 {
  font-size: 32px;
  color: #88d9f9;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .recruit .point .tea.flex .text h5 {
    font-size: 24px;
  }
}
.recruit .point .tea.flex .text p {
  font-size: 18px;
  margin-top: 20px;
}
.recruit .point .tea.flex .img {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .recruit .point .tea.flex .img {
    width: 100%;
  }
}
.recruit .recruit-table table {
  width: 100%;
}
.recruit .recruit-table table tr {
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}
.recruit .recruit-table table tr th {
  width: 30%;
  padding: 24px 0;
  padding-left: 80px;
}
.recruit .recruit-table table tr td {
  width: 60%;
  padding: 24px 0;
}
@media screen and (max-width: 768px) {
  .recruit .recruit-table table tr th {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-bottom: 8px;
  }
  .recruit .recruit-table table tr td {
    display: block;
    width: 100%;
    padding-top: 8px;
  }
}
.recruit .contact_tel {
  margin: 40px auto;
}
.recruit .contact_tel p a {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .recruit .contact_tel p a {
    font-size: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
