@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
 * v2.0 | 20110126
 * License: none (public domain)
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  vertical-align: top;
}

@keyframes hoverMenu {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutMask {
  0% {
    opacity: 1;
    z-index: 200;
  }
  99% {
    opacity: 0.02;
    z-index: 200;
  }
  100% {
    z-index: -1;
    opacity: 0;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(1rem);
  }
}
@keyframes textUp {
  0% {
    opacity: 0;
    transform: translateY(60%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes zoomLink {
  to {
    transform: scale(105%);
  }
}
.lang_en {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* */
@media screen and (min-width: 750px) {
  .pc_only {
    display: block;
  }
}
@media screen and (max-width: 749px) {
  .pc_only {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .sp_only {
    display: none;
  }
}
@media screen and (max-width: 749px) {
  .sp_only {
    display: block;
  }
}

#mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  z-index: 200;
}
#mask.action {
  animation: fadeOutMask 1s ease-in-out forwards;
}

.btn {
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  background: #86b8ba;
  text-decoration: none;
  color: #ffffff;
  border-radius: 10px;
  font-size: 1.125rem;
  padding: 0.875rem 2.5rem;
  position: relative;
  line-height: 1;
}
.btn:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5em);
  right: 2em;
  height: 1em;
  width: 1em;
  font-size: 10px;
  border-right: 1px solid #867d73;
  border-top: 1px solid #867d73;
  transform: rotate(45deg);
  border-color: #ffffff;
}
.btn:hover {
  opacity: 0.8;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 749px) {
  html {
    font-size: 12px;
  }
}
html.open {
  overflow: hidden;
}
html.open body {
  overflow: hidden;
}

body {
  position: relative;
  width: 100%;
  color: #000000;
}

a {
  text-decoration: none;
}

header .slider {
  position: relative;
  z-index: 1;
  height: 80vh;
  max-height: 1100px;
}
@media screen and (max-width: 749px) {
  header .slider {
    height: 50vh;
  }
}
header .slider .swiper-wrapper {
  overflow: hidden;
}
header .slider .swiper-wrapper .slide1 {
  height: 100%;
  background: url("../img/home/slide1.jpg") no-repeat center/cover;
}
header .slider .swiper-wrapper .slide2 {
  height: 100%;
  background: url("../img/home/slide2.jpg") no-repeat center/cover;
}
header .slider .swiper-wrapper .slide3 {
  height: 100%;
  background: url("../img/home/slide3.jpg") no-repeat center/cover;
}
header .slider .swiper-wrapper .swiper-slide > div {
  opacity: 0;
  height: 100%;
}
header .slider .swiper-wrapper .swiper-slide.swiper-slide-prev > div {
  animation: fadeOut 2s ease-in forwards;
}
header .slider .swiper-wrapper .swiper-slide.swiper-slide-active > div {
  animation: fadeIn 2s ease-in forwards;
}
header .visual_box {
  position: relative;
  z-index: 1;
  height: 80vh;
  max-height: 900px;
  background: url("../img/main.jpg") no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
}
header .visual_box .fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  animation: fadeOut 1.8s ease-in-out 0.5s forwards;
}
@media screen and (max-width: 749px) {
  header .visual_box {
    height: 40vh;
  }
}
header .nav_box {
  padding: 2rem 0;
}
header .nav_box .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
header .nav_box .inner .timeNav {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 439px;
  border-left: 5px solid #80cbeb;
  padding-left: 2rem;
}
header .nav_box .inner .timeNav span, header .nav_box .inner .timeNav strong {
  line-height: 1;
}
header .nav_box .inner .timeNav strong {
  color: #0098d8;
}
@media screen and (max-width: 1100px) {
  header .nav_box .inner .timeNav {
    display: none;
  }
}
header .nav_box .logo_box {
  width: 53.8011695906%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .nav_box .logo_box .sub {
  max-width: 304px;
  width: 41.3043478261%;
}
@media screen and (max-width: 1100px) {
  header .nav_box .logo_box {
    width: 100%;
  }
}
header .nav_box h1 {
  z-index: 3;
  width: 54.347826087%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}
header .nav_box h1 a {
  display: block;
  text-indent: -9999em;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 0;
  background: url("../img/common/logo.svg") no-repeat center/cover;
  padding-top: 21.5%;
}

#timeTable {
  flex-basis: 61.3839285714%;
}
#timeTable ul {
  margin-top: 0.5rem;
}
#timeTable ul li {
  color: #1a2c69;
}
@media screen and (max-width: 749px) {
  #timeTable ul li {
    letter-spacing: -1px;
  }
}
#timeTable table {
  width: 100%;
  display: block;
}
#timeTable table th, #timeTable table td {
  box-sizing: border-box;
  flex-basis: 12.9696969697%;
  display: block;
}
#timeTable table thead {
  display: block;
}
#timeTable table thead tr {
  display: flex;
  background: #0098d8;
  border-radius: 0.3125rem;
  box-sizing: border-box;
  padding: 0 4rem;
  gap: 2.1875rem;
}
@media screen and (max-width: 749px) {
  #timeTable table thead tr {
    padding: 0 2rem;
    gap: 0.625rem;
  }
}
#timeTable table thead th {
  padding: 1rem 0;
  text-align: center;
}
#timeTable table thead th span {
  display: block;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
}
#timeTable table thead th:first-child {
  flex-basis: 25.3894080997%;
}
@media screen and (max-width: 749px) {
  #timeTable table thead th:first-child {
    flex-basis: 32.7102803738%;
  }
}
#timeTable table tbody {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#timeTable table tbody tr {
  width: 100%;
  display: flex;
  padding: 0 4rem;
  gap: 2.1875rem;
  box-sizing: border-box;
  border-bottom: 1px solid #808080;
}
@media screen and (max-width: 749px) {
  #timeTable table tbody tr {
    padding: 0 2rem;
    gap: 0.625rem;
  }
}
#timeTable table tbody tr td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  height: 5rem;
}
#timeTable table tbody tr td span {
  text-align: center;
  line-height: 1;
  display: block;
  color: #000000;
}
#timeTable table tbody tr td:first-child {
  flex-basis: 25.3894080997%;
  font-family: "Urbanist", sans-serif;
  font-size: 500;
}
@media screen and (max-width: 749px) {
  #timeTable table tbody tr td:first-child {
    flex-basis: 32.7102803738%;
  }
}
#timeTable p {
  font-size: 1rem;
  margin-top: 2rem;
  line-height: 1;
}

footer {
  padding-top: 8rem;
}
footer .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
footer .inner .copyright {
  text-align: center;
  color: #000000;
  line-height: 1;
  margin-top: 4rem;
  padding-bottom: 2rem;
}
footer .inner .flex_box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  footer .inner .flex_box {
    display: block;
  }
}
footer .inner .flex_box .info_box {
  flex-basis: 32.8947368421%;
}
@media screen and (max-width: 749px) {
  footer .inner .flex_box .info_box {
    width: 90%;
    margin: 0 auto 3.125rem;
  }
}
footer .inner .flex_box .info_box .logo {
  margin-bottom: 3.125rem;
}
footer .inner .flex_box #timeTable {
  flex-basis: 61.8421052632%;
}

#page_top a {
  position: fixed;
  bottom: 10px;
  right: 1.25rem;
  width: 1em;
  height: 1em;
  background: url("../img/common/icon_gotop.svg") no-repeat center/cover;
  border-radius: 0.625rem;
  opacity: 0;
  transform: translateY(-100%);
  animation: fadeDown 0.5s ease-in-out forwards;
  z-index: 10;
}
@media screen and (min-width: 1099px) {
  #page_top a {
    font-size: 50px;
  }
}
@media screen and (max-width: 1100px) {
  #page_top a {
    font-size: 45px;
  }
}
@media screen and (max-width: 749px) {
  #page_top a {
    font-size: 40px;
  }
}
#page_top a span {
  display: block;
  text-indent: -9999em;
  overflow: hidden;
}
#page_top.on a {
  animation: fadeUp 0.5s ease-in-out forwards;
}

#bread_list ul {
  background: #ffffff;
  padding: 4rem 4rem 2.8125rem;
  border-radius: 3.125rem 3.125rem 0 0;
  box-sizing: border-box;
  display: flex;
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 749px) {
  #bread_list ul {
    padding: 4rem 1.5rem 2.8125rem;
  }
}
#bread_list ul li {
  color: #d1a59d;
}
#bread_list ul li a {
  color: #838383;
}
#bread_list ul li + li:before {
  content: ">";
  display: inline-block;
  color: #838383;
  transform: translateY(-0.2em);
  margin: 0 0.5em;
}

.page_title {
  position: relative;
  text-align: center;
  padding-bottom: 0.9375rem;
  margin-bottom: 2.8125rem;
}
.page_title h2 {
  color: #e1c4bf;
  font-size: 1.5rem;
}
.page_title h2::first-letter {
  color: #b6d4d6;
}
.page_title span {
  color: #867d73;
  font-size: 3.375rem;
  line-height: 1;
}
.page_title:before, .page_title:after {
  content: "";
  width: 1.875rem;
  height: 0.5rem;
  position: absolute;
  bottom: 0;
}
.page_title:before {
  left: calc(50% - 1.875rem);
  background: #86b8ba;
  border-radius: 0.25rem 0 0 0.25rem;
}
.page_title:after {
  right: calc(50% - 1.875rem);
  background: #dab7b1;
  border-radius: 0 0.25rem 0.25rem 0;
}

.page_title + .img_box img {
  width: 100%;
  height: auto;
}

.index .title {
  text-align: center;
  margin-bottom: 4rem;
}
.index .title:before {
  content: "";
  display: block;
  margin: 0 auto 2rem;
  width: 1em;
  height: 1em;
  background: url("../img/common/icon1.svg") no-repeat center/cover;
}
@media screen and (min-width: 1099px) {
  .index .title:before {
    font-size: 80px;
  }
}
@media screen and (max-width: 1100px) {
  .index .title:before {
    font-size: 65px;
  }
}
@media screen and (max-width: 749px) {
  .index .title:before {
    font-size: 50px;
  }
}
.index .title h2 {
  font-size: 2rem;
  font-weight: bold;
}
.index .title h2 span {
  display: block;
  line-height: 1;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #0098d8;
  font-family: "Urbanist", sans-serif;
}
.index .tel {
  display: flex;
  align-items: end;
  margin-top: 2rem;
}
@media screen and (max-width: 749px) {
  .index .tel {
    justify-content: center;
  }
}
.index .tel:before {
  content: "";
  width: 1em;
  height: 1em;
  font-size: 1rem;
  background: url("../img/common/icon_tel.svg") no-repeat center/cover;
  margin-bottom: 0.3125rem;
  margin-right: 0.3125rem;
}
.index .tel i {
  line-height: 1;
  font-size: 2rem;
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  color: #0098d8;
}
.index .address {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 749px) {
  .index .address {
    justify-content: center;
  }
}
.index .address:before {
  display: block;
  content: "";
  width: 1em;
  height: 1em;
  font-size: 1.25rem;
  background: url("../img/common/icon_map.svg") no-repeat center/cover;
}
.index section.bg {
  background: #f2fafd;
}
.index section.bg:before, .index section.bg:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 1.9736842105%;
  background: url("../img/common/bg.svg") no-repeat center/cover #ffffff;
}
.index section.bg:after {
  transform: rotate(180deg);
}
.index .content1 .inner .read {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
  position: relative;
  padding: 7.5rem 1.875rem;
}
@media screen and (max-width: 749px) {
  .index .content1 .inner .read {
    font-size: 1.625rem;
    text-align: left;
  }
}
.index .content1 .inner .read:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url("../img/common/icon1.svg") no-repeat center/cover;
  position: absolute;
  top: -0.668em;
  left: calc(50% - 0.5em);
  z-index: 10;
}
@media screen and (min-width: 1099px) {
  .index .content1 .inner .read:before {
    font-size: 200px;
  }
}
@media screen and (max-width: 1100px) {
  .index .content1 .inner .read:before {
    font-size: 150px;
  }
}
@media screen and (max-width: 749px) {
  .index .content1 .inner .read:before {
    font-size: 100px;
  }
}
.index .content2 .inner {
  padding: 6.125rem 0 8rem;
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.index .content2 .treatment_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 749px) {
  .index .content2 .treatment_box {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}
.index .content2 .treatment_box img {
  width: 100%;
  height: auto;
}
.index .content2 .treatment_box h3 {
  text-align: center;
  font-weight: bold;
  line-height: 1;
  margin: 2rem 0 0.875rem;
  font-size: 1.25rem;
}
.index .content2 .treatment_box p {
  font-size: 1rem;
  line-height: 2.2;
}
.index .content3 {
  padding: 8rem 0;
}
.index .content3 .inner {
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.index .content3 .sub_title {
  color: #0098d8;
  font-weight: bold;
  font-size: 1.5rem;
  position: relative;
  line-height: 1;
  padding-left: 1.3125rem;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #808080;
}
.index .content3 .sub_title:before {
  content: "";
  width: 5px;
  height: 1em;
  background: #80cbeb;
  position: absolute;
  top: 0;
  left: 0;
}
.index .content3 .flex_box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  .index .content3 .flex_box {
    display: block;
  }
}
.index .content3 .flex_box .img_box {
  flex-basis: 32.8947368421%;
}
.index .content3 .flex_box .img_box img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 749px) {
  .index .content3 .flex_box .img_box img {
    width: 70%;
    display: block;
    margin: 0 auto;
  }
}
.index .content3 .flex_box .img_box h3 {
  margin-top: 1.5625rem;
}
.index .content3 .flex_box .img_box h3 span {
  display: block;
  font-size: 1rem;
  text-align: center;
}
.index .content3 .flex_box .img_box h3 span + span {
  font-size: 1.5rem;
  margin-top: 0.8em;
}
.index .content3 .flex_box .img_box h3 span + span i {
  font-size: 1rem;
  display: inline-block;
  margin-left: 1em;
}
.index .content3 .flex_box .text_box {
  flex-basis: 61.8421052632%;
}
@media screen and (max-width: 749px) {
  .index .content3 .flex_box .text_box {
    margin-top: 1.875rem;
  }
}
.index .content3 .flex_box .text_box p {
  font-size: 1rem;
  line-height: 2.4;
}
.index .content3 .grid_box {
  margin-top: 8rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  .index .content3 .grid_box {
    display: block;
  }
}
.index .content3 .grid_box > div {
  flex-basis: 47.3684210526%;
}
@media screen and (max-width: 749px) {
  .index .content3 .grid_box > div + div {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 749px) {
  .index .content3 .grid_box {
    grid-template-columns: 1fr;
  }
}
.index .content3 .grid_box dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index .content3 .grid_box dl dt, .index .content3 .grid_box dl dd {
  line-height: 2.2;
}
.index .content3 .grid_box dl dt {
  flex-basis: 19.0972222222%;
}
@media screen and (max-width: 749px) {
  .index .content3 .grid_box dl dt {
    flex-basis: 22.5694444444%;
  }
}
.index .content3 .grid_box dl dd {
  flex-basis: 78.4722222222%;
}
@media screen and (max-width: 749px) {
  .index .content3 .grid_box dl dd {
    flex-basis: 75%;
  }
}
.index .content3 .grid_box ul li {
  position: relative;
  padding-left: 1.6875rem;
  line-height: 2.2;
}
.index .content3 .grid_box ul li:before {
  content: "";
  width: 1em;
  height: 1em;
  font-size: 0.625rem;
  border-radius: 0.5em;
  background: #0098d8;
  position: absolute;
  top: calc(50% - 0.5em);
  left: 0;
}
.index .content4 .inner {
  padding: 8rem 0;
  width: 90%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.index .content4 .flex_box {
  margin-top: 8rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  .index .content4 .flex_box {
    display: block;
  }
}
.index .content4 .flex_box > div {
  flex-basis: 47.3684210526%;
}
@media screen and (max-width: 749px) {
  .index .content4 .flex_box > div + div {
    margin-top: 4rem;
  }
}
.index .content4 .flex_box .map {
  height: 36rem;
}
.index .content4 .flex_box .map iframe {
  width: 100%;
  height: 100%;
}
.index .content4 .flex_box .text_box dl {
  padding: 2rem;
  background: #ffffff;
  margin-top: 2rem;
}
.index .content4 .flex_box .text_box dl dt {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #808080;
}
.index .content4 .flex_box .text_box dl dt:before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  font-size: 3.125rem;
}
.index .content4 .flex_box .text_box dl dt span {
  color: #0098d8;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
}
.index .content4 .flex_box .text_box dl dt.public:before {
  background: url("../img/common/icon_train.svg") no-repeat center/cover;
}
.index .content4 .flex_box .text_box dl dt.car:before {
  background: url("../img/common/icon_car.svg") no-repeat center/cover;
}
.index .content4 .flex_box .text_box dl dd ul li {
  position: relative;
  padding-left: 1.6875rem;
  line-height: 2.2;
}
.index .content4 .flex_box .text_box dl dd ul li:before {
  content: "";
  width: 1em;
  height: 1em;
  font-size: 0.625rem;
  border-radius: 0.5em;
  background: #0098d8;
  position: absolute;
  top: calc(50% - 0.5em);
  left: 0;
}

/*
.urbanist-<uniquifier> {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
  内科・肝臓内科・消化器内科
*/
/*# sourceMappingURL=style.css.map */