@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap");
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

/* FontFamily */
html {
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
  font-weight: 500;
  color: #737074;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4558689718vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

body {
  position: relative;
}

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

/* Remove default type */
ul,
ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* aside */
.aside {
  border-top: 1px solid #DCDDDD;
  border-top: 0.0625rem solid #DCDDDD;
}

.aside__inner.l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .aside__inner.l-inner {
    display: block;
    padding: 0;
  }
}

.aside__item {
  padding: 95px 0 100px;
  padding: 5.9375rem 0 6.25rem;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .aside__item {
    width: 100%;
  }
}

.aside__item-header {
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .aside__item-header {
    margin-bottom: 2.5rem;
  }
}

/* card */
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .card {
    display: block;
  }
}

.card__item {
  width: calc(33.33333% - 40px);
  margin-right: 60px;
  display: block;
}
@media screen and (max-width: 767px) {
  .card__item {
    width: 100%;
    max-width: 31.25rem;
    margin: 0 auto;
  }
}
.card__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .card__item:nth-child(3n) {
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .card__item:not(:last-child) {
    margin-bottom: 3.75rem;
  }
}

.card__item-img {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

.card__item-title {
  color: #0B68B4;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.card__item-text {
  font-size: 16px;
  font-size: 1rem;
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  color: #737074;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  padding-top: 150px;
  padding-top: 9.375rem;
}

.drawer__menu-item {
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
.drawer__menu-item a {
  padding: 0.8em 0;
  display: block;
}

/* このクラスを、jQueryで付与・削除する */
.drawer--active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* fnav */
.fnav {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .fnav {
    display: block;
  }
}

.fnav__menu {
  font-size: 16px;
  font-size: 1rem;
}

.fnav__menu-item {
  letter-spacing: 0.04em;
}
.fnav__menu-item a {
  display: block;
  padding: 9px 0;
  padding: 0.5625rem 0;
  font-weight: 700;
  text-decoration: underline;
}

.fnav__menu-item--nolink a {
  pointer-events: none;
  text-decoration: none;
}

.fnav__menu--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.fnav__menu--flex .fnav__menu-item:not(:last-child) {
  margin-right: 50px;
  margin-right: 3.125rem;
}
.fnav__menu--flex .fnav__menu-item:nth-child(3) {
  display: inline-block;
}
.fnav__menu--flex a {
  font-weight: 500;
}

/* footer */
.footer {
  background: #0B68B4;
  padding-top: 85px;
  padding-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 2.5rem;
  }
}

.footer__nav {
  margin-bottom: 85px;
  margin-bottom: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    margin-bottom: 2.5rem;
  }
}

.footer__copyright {
  font-family: "Lato", sans-serif;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  border-top: 1px solid #708FC9;
  border-top: 0.0625rem solid #708FC9;
  padding: 44px 0;
  padding: 2.75rem 0;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    padding: 1.25rem 0;
    font-size: 0.875rem;
  }
}

.footer__syoshin-banner {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__syoshin-banner {
    display: block;
    padding: 0 1.25rem;
  }
}

/* gnav */
.gnav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gnav__menu-item {
  text-align: center;
  color: #0B68B4;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.gnav__menu-item:not(:last-child) {
  margin-right: 35px;
  margin-right: 2.1875rem;
}
.gnav__menu-item a {
  display: block;
  padding: 30px 0;
  padding: 1.875rem 0;
}
.gnav__menu-item span {
  display: block;
  font-family: "Lato", sans-serif;
  color: #737074;
  font-size: 14px;
  font-size: 0.875rem;
}

/* nav position */
.nav_readme .nav_readme,
.nav_news .nav_news,
.nav_general .nav_general,
.nav_access .nav_access,
.nav_doctor .nav_doctor,
.nav_about .nav_about {
  opacity: 0.8;
}

/* guide */
.guide {
  padding: 50px 70px 75px;
  padding: 3.125rem 4.375rem 4.6875rem;
  border: 1px solid #DCDDDD;
  border: 0.0625rem solid #DCDDDD;
}
@media screen and (max-width: 767px) {
  .guide {
    padding: 2.5rem 1.25rem 3.125rem;
    max-width: 31.25rem;
    margin: 0 auto;
  }
}

.guide__title {
  font-size: 20px;
  font-size: 1.25rem;
  color: #0B68B4;
  margin-bottom: 55px;
  margin-bottom: 3.4375rem;
  text-align: center;
}

.guide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .guide__list {
    display: block;
    text-align: center;
  }
}

.guide__list-item {
  font-size: 16px;
  font-size: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .guide__list-item {
    font-size: 1.125rem;
  }
}
.guide__list-item a {
  padding-top: 70px;
  padding-top: 4.375rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .guide__list-item a {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .guide__list-item:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.guide__list-item:not(:last-child)::after {
  position: absolute;
  content: "";
  top: -10px;
  top: -0.625rem;
  right: -100%;
  width: 1px;
  width: 0.0625rem;
  height: 130px;
  height: 8.125rem;
  border-right: 1px dotted #DCDDDD;
  border-right: 0.0625rem dotted #DCDDDD;
}
@media screen and (max-width: 767px) {
  .guide__list-item:not(:last-child)::after {
    display: none;
  }
}

.guide__list-item--general a {
  background: url(../img/general-icon.png) no-repeat center top/54px;
  background: url(../img/general-icon.png) no-repeat center top/3.375rem;
}
@media screen and (max-width: 767px) {
  .guide__list-item--general a {
    background: url(../img/general-icon.png) no-repeat center top/4.375rem;
  }
}

.guide__list-item--cardiology a {
  background: url(../img/cardiology-icon.png) no-repeat center top/54px;
  background: url(../img/cardiology-icon.png) no-repeat center top/3.375rem;
}
@media screen and (max-width: 767px) {
  .guide__list-item--cardiology a {
    background: url(../img/cardiology-icon.png) no-repeat center top/4.375rem;
  }
}

.guide__list-item--lifestyle a {
  background: url(../img/lifestyle-icon.png) no-repeat center top/54px;
  background: url(../img/lifestyle-icon.png) no-repeat center top/3.375rem;
}
@media screen and (max-width: 767px) {
  .guide__list-item--lifestyle a {
    background: url(../img/lifestyle-icon.png) no-repeat center top/4.375rem;
  }
}

.guide__list-item--examination a {
  background: url(../img/examination-icon.png) no-repeat center top/54px;
  background: url(../img/examination-icon.png) no-repeat center top/3.375rem;
}
@media screen and (max-width: 767px) {
  .guide__list-item--examination a {
    background: url(../img/examination-icon.png) no-repeat center top/4.375rem;
  }
}

.guide__list-item--vaccination a {
  background: url(../img/vaccination-icon.png) no-repeat center top/54px;
  background: url(../img/vaccination-icon.png) no-repeat center top/3.375rem;
}
@media screen and (max-width: 767px) {
  .guide__list-item--vaccination a {
    background: url(../img/vaccination-icon.png) no-repeat center top/4.375rem;
  }
}

/* hamburger */
.hamburger {
  display: block;
  position: absolute;
  z-index: 300;
  right: 30px;
  right: 1.875rem;
  top: 15px;
  top: 0.9375rem;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  cursor: pointer;
  text-align: center;
}

.hamburger__border {
  display: block;
  position: absolute;
  width: 30px;
  width: 1.875rem;
  height: 3px;
  height: 0.1875rem;
  left: 6px;
  left: 0.375rem;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  top: 10px;
  top: 0.625rem;
}
.hamburger__border:nth-child(2) {
  top: 20px;
  top: 1.25rem;
}
.hamburger__border:nth-child(3) {
  top: 30px;
  top: 1.875rem;
}

/* ナビ開いてる時のボタン */
.hamburger--active .hamburger__border:nth-child(1) {
  top: 16px;
  top: 1rem;
  left: 6px;
  left: 0.375rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger--active .hamburger__border:nth-child(2), .hamburger--active .hamburger__border:nth-child(3) {
  top: 16px;
  top: 1rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* header */
.header {
  height: 142px;
  height: 8.875rem;
  background: #fff;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    height: 4.375rem;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  width: 320px;
  width: 20rem;
  margin-top: 120px;
  margin-top: 7.5rem;
  background: #fff;
  position: relative;
  padding: 37px;
  padding: 2.3125rem;
  margin-left: -40px;
  margin-left: -2.5rem;
  z-index: 500;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 9.375rem;
    margin-left: -1.25rem;
    margin-top: 3.75rem;
    padding: 1.25rem;
  }
}

.header__nav {
  padding-top: 20px;
  padding-top: 1.25rem;
}

.syoshin-btn a {
  display: block;
  position: fixed;
  top: 182px;
  right: 0;
  display: block;
  line-height: 80px;
  padding: 40px 0;
  background: #0B68B4;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .syoshin-btn {
    display: none;
  }
}

/* info */
.info {
  border-right: 1px solid #DCDDDD;
  border-right: 0.0625rem solid #DCDDDD;
  padding-right: 120px;
  padding-right: 7.5rem;
}
@media screen and (max-width: 767px) {
  .info {
    border-right: none;
    padding: 5rem 0;
  }
}

.info__inner.l-inner {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .info__inner.l-inner {
    padding: 0 1.25rem;
  }
}

.info__logo {
  width: 300px;
  width: 18.75rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.info__tell {
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  display: inline-block;
  letter-spacing: 0.04em;
}
.info__tell span {
  color: #0B68B4;
  font-size: 24px;
  font-size: 1.5rem;
}

.info__address {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
}

.info__google {
  color: #0B68B4;
  text-decoration: underline;
}

.info__distance {
  font-size: 16px;
  font-size: 1rem;
  padding-left: 50px;
  padding-left: 3.125rem;
  background: url(../img/train-icon.png) no-repeat center left/34px;
  background: url(../img/train-icon.png) no-repeat center left/2.125rem;
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1150px;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* menu */
.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .menu {
    display: block;
  }
}

.menu__item {
  border: 1px solid #0B68B4;
  border: 0.0625rem solid #0B68B4;
  text-align: center;
  color: #0B68B4;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .menu__item {
    font-size: 1.125rem;
    width: 100%;
    max-width: 31.25rem;
    margin: 0 auto;
    margin-bottom: 0.9375rem;
  }
}
.menu__item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  padding: 17px 0;
  padding: 1.0625rem 0;
}
.menu__item:hover {
  color: #fff;
  background: #0B68B4;
}
.menu__item:hover a {
  opacity: 1;
}

.menu__item--current {
  color: #fff;
  margin-top: -20px;
  margin-top: -1.25rem;
  border: none;
  position: relative;
  padding: 26px 0;
  padding: 1.625rem 0;
}
@media screen and (max-width: 767px) {
  .menu__item--current {
    background: #0B68B4;
    margin-top: 0;
    padding: 1.25rem;
    margin-bottom: 1.5625rem;
  }
}
.menu__item--current::before, .menu__item--current::after {
  position: absolute;
  content: "";
}
.menu__item--current::before {
  background: #0B68B4;
  width: 102%;
  height: 100%;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -5;
}
@media screen and (max-width: 767px) {
  .menu__item--current::before {
    display: none;
  }
}
.menu__item--current::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -19px;
  bottom: -1.1875rem;
  border-right: 20px solid transparent;
  border-right: 1.25rem solid transparent;
  border-top: 20px solid #0B68B4;
  border-top: 1.25rem solid #0B68B4;
  border-left: 20px solid transparent;
  border-left: 1.25rem solid transparent;
}
@media screen and (max-width: 767px) {
  .menu__item--current::after {
    bottom: -0.75rem;
    border-right: 0.8125rem solid transparent;
    border-top: 0.8125rem solid #0B68B4;
    border-left: 0.8125rem solid transparent;
  }
}

/* mv */
.mv {
  position: relative;
  height: 500px;
  height: 31.25rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 18.75rem;
  }
}
.mv::after {
  position: absolute;
  content: "";
  background: #737074;
  opacity: 0.4;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.mv__texts {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  z-index: 30;
}

.mv__title {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
  }
}

.mv__text {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3;
}

.mv--news {
  background: url(../img/mv-news.jpg) no-repeat center center/cover;
}

.mv--access {
  background: url(../img/mv-access.jpg) no-repeat center center/cover;
}

.mv--about {
  background: url(../img/mv-about.jpg) no-repeat center center/cover;
}

.mv--doctor {
  background: url(../img/mv-doctor.jpg) no-repeat center center/cover;
}

.mv--readme {
  background: url(../img/mv-readme.jpg) no-repeat center center/cover;
}

.mv--services {
  background: url(../img/mv-services.jpg) no-repeat center center/cover;
}

/* pagetop */
.pagetop {
  position: absolute;
  right: 0;
  bottom: 405px;
  bottom: 25.3125rem;
  background: #0B68B4;
  width: 80px;
  width: 5rem;
  height: 60px;
  height: 3.75rem;
}
@media screen and (max-width: 1023px) {
  .pagetop {
    bottom: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 3.75rem;
    bottom: 31.875rem;
  }
}
.pagetop::after {
  position: absolute;
  content: "";
  left: 27px;
  left: 1.6875rem;
  top: 27px;
  top: 1.6875rem;
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
  border-top: 1px solid #fff;
  border-top: 0.0625rem solid #fff;
  border-left: 1px solid #fff;
  border-left: 0.0625rem solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .pagetop::after {
    width: 1.25rem;
    height: 1.25rem;
    left: 1.25rem;
    top: 1.5625rem;
  }
}

/* related */
.related {
  padding: 120px 0;
  padding: 7.5rem 0;
  border-top: 1px solid #DCDDDD;
  border-top: 0.0625rem solid #DCDDDD;
}
@media screen and (max-width: 767px) {
  .related {
    padding: 5rem 0;
  }
}

.related__header {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .related__header {
    margin-bottom: 2.5rem;
  }
}

/* schedule */
.schedule {
  padding-left: 120px;
  padding-left: 7.5rem;
}
@media screen and (max-width: 1023px) {
  .schedule {
    padding-left: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .schedule {
    padding: 5rem 0 6.25rem;
  }
}

.schedule__inner {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .schedule__inner {
    padding: 0 1.25rem;
  }
}

.schedule__table {
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 767px) {
  .schedule__table {
    margin-bottom: 1.25rem;
  }
}

.schedule__list {
  width: 41px;
  width: 2.5625rem;
}
@media screen and (max-width: 1023px) {
  .schedule__list {
    width: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .schedule__list {
    font-size: 0.8125rem;
    width: 11%;
  }
}
.schedule__list:first-child {
  width: 145px;
  width: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .schedule__list:first-child {
    width: 32%;
  }
}
.schedule__list:not(:last-child) {
  margin-right: 8px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .schedule__list:not(:last-child) {
    margin-right: 0.25rem;
  }
}

.schedule__list-item {
  padding: 7px 0;
  padding: 0.4375rem 0;
}
@media screen and (max-width: 1023px) {
  .schedule__list-item {
    padding: 0.625rem 0;
  }
}
.schedule__list-item:not(:last-child) {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .schedule__list-item:not(:last-child) {
    margin-bottom: 0.25rem;
  }
}

.schedule__list-item--high.schedule__list-item {
  padding: 2px 0;
  padding: 0.125rem 0;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 1023px) {
  .schedule__list-item--high.schedule__list-item {
    padding: 0.1875rem 0;
  }
}
@media screen and (max-width: 767px) {
  .schedule__list-item--high.schedule__list-item {
    padding: 0.25rem;
  }
}

.schedule__list-item--low {
  padding: 4px 0;
  padding: 0.25rem 0;
}

.schedule__caution {
  font-size: 14px;
  font-size: 0.875rem;
}
.schedule__caution span {
  color: #E6002D;
}

/* section-box */
.section-box {
  padding: 55px 58px;
  padding: 3.4375rem 3.625rem;
  border: 1px solid #DCDDDD;
  border: 0.0625rem solid #DCDDDD;
}
@media screen and (max-width: 767px) {
  .section-box {
    padding: 1.875rem 1.25rem;
    max-width: 31.25rem;
    margin: 0 auto;
  }
}

.section-box__title {
  color: #0B68B4;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.section-box__list {
  font-size: 16px;
  font-size: 1rem;
}

.section-box__list-item {
  padding-left: 1.5em;
  text-indent: -1.5em;
  line-height: 1.8;
}
.section-box__list-item:not(:last-child) {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .section-box__list-item:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
.section-box__list-item span {
  color: #0B68B4;
}

/* section-header */
.section-header__subtitle {
  color: #0B68B4;
  font-size: 16px;
  font-size: 1rem;
}

.section-header__title {
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .section-header__title {
    font-size: 2.25rem;
  }
}

/* section-top */
.section-top__title {
  font-size: 28px;
  font-size: 1.75rem;
  color: #0B68B4;
  line-height: 2;
  margin-bottom: 23px;
  margin-bottom: 1.4375rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .section-top__title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.section-top__text {
  line-height: 2.5;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.055em;
}
@media screen and (max-width: 767px) {
  .section-top__text {
    line-height: 1.5;
  }
}
.section-top__text:not(:last-of-type) {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .section-top__text:not(:last-of-type) {
    margin-bottom: 1.25rem;
  }
}

/* services */
.services {
  padding: 140px 0 115px;
  padding: 8.75rem 0 7.1875rem;
}
@media screen and (max-width: 767px) {
  .services {
    padding: 5rem 0;
  }
}

.services__menu {
  margin-bottom: 67px;
  margin-bottom: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .services__menu {
    margin-bottom: 3.75rem;
  }
}

.services__texts {
  margin-bottom: 68px;
  margin-bottom: 4.25rem;
}
@media screen and (max-width: 767px) {
  .services__texts {
    margin-bottom: 5rem;
  }
}
.services__texts .section-top__text:not(:last-child) {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.services__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .services__boxes {
    display: block;
  }
}

.services__box {
  width: 47.3%;
}
@media screen and (max-width: 767px) {
  .services__box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .services__box:first-child {
    margin-bottom: 2.5rem;
  }
}

/* time */
.time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.time__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  color: #0B68B4;
}
.time__list:first-child {
  letter-spacing: 0.06em;
}

.time__list-item {
  border-radius: 0.1875rem;
  border: 1px solid #DCDDDD;
  border: 0.0625rem solid #DCDDDD;
}
.time__list-item:first-child {
  color: #fff;
  border: none;
  background: #0B68B4;
}
.time__list-item span {
  display: block;
}

.time__list-item-circle {
  color: #0093D7;
}

.time__list-item-slash {
  color: #737074;
}

.time__list-item-text {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.2;
  letter-spacing: 0;
}

/* about */
.about {
  padding: 108px 0 120px;
  padding: 6.75rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 5rem 0;
  }
}

.about__texts {
  margin-bottom: 47px;
  margin-bottom: 2.9375rem;
}

.about__box-title {
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
}

.about__box-list-item.section-box__list-item {
  border-top: 1px solid #DCDDDD;
  border-top: 0.0625rem solid #DCDDDD;
  padding: 20px 0;
  padding: 1.25rem 0;
  margin-bottom: 0;
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.about__box-list-item.section-box__list-item:last-child {
  padding-bottom: 0;
}

/* gallery */
.gallery {
  padding: 120px 0;
  padding: 7.5rem 0;
  border-top: 1px solid #DCDDDD;
  border-top: 0.0625rem solid #DCDDDD;
}
@media screen and (max-width: 767px) {
  .gallery {
    padding: 5rem 0;
  }
}

.gallery__header {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .gallery__header {
    margin-bottom: 2.5rem;
  }
}

.gallery__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -56px;
  margin-bottom: -3.5rem;
}
@media screen and (max-width: 767px) {
  .gallery__items {
    display: block;
  }
}

.gallery__item {
  width: calc(25% - 33.75px);
  margin-right: 45px;
  margin-bottom: 56px;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .gallery__item {
    width: 100%;
    max-width: 31.25rem;
    margin: 0 auto;
    margin-bottom: 3.75rem;
  }
}
.gallery__item:nth-child(1), .gallery__item:nth-child(2), .gallery__item:nth-child(3) {
  width: calc(33.33333% - 30px);
}
@media screen and (max-width: 767px) {
  .gallery__item:nth-child(1), .gallery__item:nth-child(2), .gallery__item:nth-child(3) {
    width: 100%;
  }
}
.gallery__item:nth-child(3), .gallery__item:nth-child(4n+3) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .gallery__item:nth-child(3), .gallery__item:nth-child(4n+3) {
    margin-right: auto;
  }
}

.gallery__item-img {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.gallery__item-text {
  font-size: 16px;
  font-size: 1rem;
}

/* access */
.access {
  padding: 108px 0 120px;
  padding: 6.75rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .access {
    padding: 5rem 0;
  }
}

.access__texts {
  margin-bottom: 65px;
  margin-bottom: 4.0625rem;
}

.access__link {
  color: #0B68B4;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .access__map-wrapper {
    max-width: 31.25rem;
    margin: 0 auto;
  }
}

.access__map {
  width: 100%;
  padding-top: 63.6363636364%;
  position: relative;
  margin-bottom: 62px;
  margin-bottom: 3.875rem;
}
.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .access__footer {
    display: block;
  }
}

.access__footer-img {
  width: 47.7%;
}
.access__footer-img + .access__footer-img {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .access__footer-img {
    width: 100%;
    max-width: 31.25rem;
    margin: 0 auto;
  }
}

.access__footer-items {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .access__footer-items {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}

.access__footer-item {
  position: relative;
  padding: 25px 0;
  padding: 1.5625rem 0;
  padding-left: 112px;
  padding-left: 7rem;
}
@media screen and (max-width: 767px) {
  .access__footer-item {
    padding-left: 6.25rem;
  }
}
.access__footer-item::after {
  position: absolute;
  content: "";
}
.access__footer-item:not(:last-child) {
  border-bottom: 1px dotted #DCDDDD;
  border-bottom: 0.0625rem dotted #DCDDDD;
}

.access__footer-item--train {
  background: url(../img/train-icon02.png) no-repeat left center/80px;
  background: url(../img/train-icon02.png) no-repeat left center/5rem;
}

.access__footer-item--bus {
  background: url(../img/bus-icon.png) no-repeat left center/80px;
  background: url(../img/bus-icon.png) no-repeat left center/5rem;
}

.access__footer-item--car {
  background: url(../img/car-icon.png) no-repeat left center/80px;
  background: url(../img/car-icon.png) no-repeat left center/5rem;
}

.access__footer-item-title {
  font-size: 20px;
  font-size: 1.25rem;
  color: #0B68B4;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .access__footer-item-title {
    font-size: 1.125rem;
    margin-bottom: 0.3125rem;
  }
}

.access__footer-item-text {
  font-size: 16px;
  font-size: 1rem;
}

/* cardiology */
/* doctor */
.doctor {
  padding: 120px 0 110px;
  padding: 7.5rem 0 6.875rem;
}
@media screen and (max-width: 767px) {
  .doctor {
    padding: 5rem 0;
  }
}

.doctor__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .doctor__inner {
    display: block;
  }
}

.doctor__body {
  width: 49%;
  padding-top: 37px;
  padding-top: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .doctor__body {
    width: 100%;
    padding-top: 0;
  }
}

.doctor__text.section-top__text {
  letter-spacing: 0.05em;
}
.doctor__text.section-top__text:not(:last-child) {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

.doctor__imgs {
  width: 45.5%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .doctor__imgs {
    width: 100%;
    max-width: 31.25rem;
    margin: 0 auto;
    margin-bottom: 3.75rem;
  }
}

.doctor__img {
  width: 90%;
  margin-left: auto;
  padding-top: 50px;
  padding-top: 3.125rem;
}

.doctor__box {
  color: #fff;
  background: #0B68B4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 25px;
  padding: 1.875rem 1.5625rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  width: 9.375rem;
}
@media screen and (max-width: 767px) {
  .doctor__box {
    padding: 1.5625rem 1.25rem;
    width: 8.3125rem;
  }
}

.doctor__enname {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}

.doctor__name {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 24px;
  font-size: 1.5rem;
}

.doctor__position {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .doctor__position {
    margin-right: 0.9375rem;
  }
}

/* history */
.history {
  padding: 115px 0;
  padding: 7.1875rem 0;
  border-top: 1px solid #DCDDDD;
  border-top: 0.0625rem solid #DCDDDD;
}
@media screen and (max-width: 767px) {
  .history {
    padding: 5rem 0;
  }
}

.history__header {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.history__list {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

.history__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  padding: 1.25rem;
  line-height: 1.45;
  border-bottom: 1px solid #DCDDDD;
  border-bottom: 0.0625rem solid #DCDDDD;
}
@media screen and (max-width: 767px) {
  .history__list-item {
    display: block;
    padding: 1.25rem 0;
  }
}
.history__list-item:first-child {
  border-top: 1px solid #DCDDDD;
  border-top: 0.0625rem solid #DCDDDD;
}

.history__list-date {
  color: #0B68B4;
  min-width: 100px;
  min-width: 6.25rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .history__list-date {
    margin-bottom: 0.625rem;
  }
}

.history__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .history__boxes {
    display: block;
  }
}

.history__box {
  width: 47.3%;
}
@media screen and (max-width: 767px) {
  .history__box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .history__box:first-child {
    margin-bottom: 2.5rem;
  }
}

/* examination */
.examination__caution {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  margin-top: 20px;
  margin-top: 1.25rem;
}
.examination__caution span {
  color: #E6002D;
}

/* general */
/* lifestyle */
.lifestyle__items {
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
}

/* news */
.news {
  padding: 65px 0 108px;
  padding: 4.0625rem 0 6.75rem;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 5rem 0;
  }
}

.news__item {
  padding: 50px 0;
  padding: 3.125rem 0;
}
.news__item:not(:last-child) {
  border-bottom: 1px solid #DCDDDD;
  border-bottom: 0.0625rem solid #DCDDDD;
}
@media screen and (max-width: 767px) {
  .news__item:not(:last-child) {
    padding: 2.5rem 0;
  }
}
.news__item:last-child {
  padding-bottom: 0;
}

.news__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 23px;
  margin-bottom: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .news__item-header {
    display: block;
  }
}

.news__item-date {
  color: #0B68B4;
  margin-right: 20px;
  margin-right: 1.25rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .news__item-date {
    font-size: 1rem;
    margin-bottom: 0.3125rem;
  }
}

.news__item-title {
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: 1.125rem;
  }
}

.news__item-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .news__item-text {
    line-height: 1.5;
  }
}
.news__item-text:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news__item-text:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}

/* readme */
.readme {
  padding: 108px 0 120px;
  padding: 6.75rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .readme {
    padding: 5rem 0;
  }
}

.readme__texts {
  margin-bottom: 47px;
  margin-bottom: 2.9375rem;
}

.readme__time {
  margin-bottom: 83px;
  margin-bottom: 5.1875rem;
}

.readme__table {
  margin-bottom: 17px;
  margin-bottom: 1.0625rem;
}

.readme__list {
  width: 10%;
}
@media screen and (max-width: 767px) {
  .readme__list {
    font-size: 0.8125rem;
    width: 11%;
  }
}
.readme__list:first-child {
  width: 35.5%;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .readme__list:first-child {
    width: 32%;
    letter-spacing: 0.05em;
  }
}
.readme__list:not(:last-child) {
  margin-right: 8px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .readme__list:not(:last-child) {
    margin-right: 0.25rem;
  }
}

.readme__list-item {
  padding: 12px 0;
  padding: 0.75rem 0;
}
@media screen and (max-width: 1023px) {
  .readme__list-item {
    padding: 0.625rem 0;
  }
}
.readme__list-item:not(:last-child) {
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

.readme__list-item--high.readme__list-item {
  padding: 6px 0;
  padding: 0.375rem 0;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 767px) {
  .readme__list-item--high.readme__list-item {
    margin-bottom: 0.25rem;
    padding: 0.25rem 0;
  }
}

.readme__list-item--low {
  padding: 6px 0;
  padding: 0.375rem 0;
}
@media screen and (max-width: 767px) {
  .readme__list-item--low {
    padding: 0.25rem 0;
  }
}

.readme__caution {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .readme__caution {
    font-size: 0.875rem;
  }
}
.readme__caution span {
  color: #E6002D;
}

.readme__box-list-item {
  line-height: 1.57;
}
.readme__box-list-item.section-box__list-item {
  padding: 15px;
  padding: 0.9375rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .readme__box-list-item.section-box__list-item {
    padding: 0.9375rem 0;
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
}
.readme__box-list-item.section-box__list-item:not(:last-child) {
  border-bottom: 1px dotted #DCDDDD;
  border-bottom: 0.0625rem dotted #DCDDDD;
}
.readme__box-list-item.section-box__list-item:first-child {
  padding-top: 0;
}
.readme__box-list-item.section-box__list-item:last-child {
  padding-bottom: 0;
}

.readme__box-list-caution {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 1em;
  text-indent: -1em;
}
.readme__box-list-caution span {
  color: #E6002D;
}

/* top-desc */
.top-desc {
  visibility: hidden;
  padding: 108px 0 120px;
  padding: 6.75rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .top-desc {
    padding: 5rem 0 6.25rem;
  }
}

.top-desc_on {
  visibility: visible;
}

.top-desc__texts {
  margin-bottom: 106px;
  margin-bottom: 6.625rem;
}
@media screen and (max-width: 767px) {
  .top-desc__texts {
    margin-bottom: 5rem;
  }
}

.top-desc__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-desc__items {
    display: block;
  }
}

.top-desc__item {
  width: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-desc__item {
    width: 100%;
    display: block;
    max-width: 31.25rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .top-desc__item:not(:last-child) {
    margin-bottom: 3.75rem;
  }
}
.top-desc__item:nth-child(even) {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .top-desc__item:nth-child(even) {
    margin-top: 0;
  }
}
.top-desc__item:nth-child(even) .top-desc__item-box {
  bottom: -50px;
  bottom: -3.125rem;
}
@media screen and (max-width: 767px) {
  .top-desc__item:nth-child(even) .top-desc__item-box {
    bottom: -1.875rem;
  }
}

.top-desc__item-entitle {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Lato", sans-serif;
  color: #B9B3B4;
  font-size: 24px;
  font-size: 1.5rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-desc__item-entitle {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    margin-left: 0;
    margin-bottom: 0.3125rem;
    font-size: 1.75rem;
  }
}

.top-desc__item-body {
  position: relative;
}

.top-desc__item-box {
  background: #fff;
  padding: 34px;
  padding: 2.125rem;
  padding-right: 0;
  position: absolute;
  right: -5px;
  right: -0.3125rem;
  bottom: 50px;
  bottom: 3.125rem;
  width: 56%;
}
@media screen and (max-width: 767px) {
  .top-desc__item-box {
    width: 65%;
    right: -0.625rem;
    bottom: -1.875rem;
    padding: 1.25rem;
  }
}

.top-desc__item-title {
  color: #0B68B4;
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .top-desc__item-title {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }
}

.top-desc__item-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top-desc__item-text {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

/* top-header */
.top-header {
  position: absolute;
  top: 0;
  width: 100%;
  background: transparent;
}

.top-header__logo {
  background: transparent;
}

/* top-mv */
.top-mv {
  display: none;
  max-height: 900px;
  max-height: 56.25rem;
  background: #0093d7;
}
.top-mv img {
  max-height: 900px;
  max-height: 56.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/* top-news */
.top-news {
  border-top: 1px solid #DCDDDD;
  border-top: 0.0625rem solid #DCDDDD;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 5rem 0;
  }
}

.top-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-news__inner {
    display: block;
  }
}

.top-news__titles {
  padding: 116px 0;
  padding: 7.25rem 0;
  border-right: 1px solid #DCDDDD;
  border-right: 0.0625rem solid #DCDDDD;
  padding-right: 120px;
  padding-right: 7.5rem;
}
@media screen and (max-width: 767px) {
  .top-news__titles {
    border-right: none;
    padding: 0;
  }
}

.top-news__header {
  margin-bottom: 73px;
  margin-bottom: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .top-news__header {
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .top-news__link-wrapper {
    text-align: center;
  }
}

.top-news__link {
  display: inline-block;
  border: 1px solid #DCDDDD;
  border: 0.0625rem solid #DCDDDD;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  padding: 12px;
  padding: 0.75rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  white-space: nowrap;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-news__link:hover {
  color: #fff;
  font-weight: 700;
  background: #737074;
}
.top-news__link:hover::before {
  background: #fff;
}
.top-news__link:hover::after {
  border-color: #fff;
}
.top-news__link::before, .top-news__link::after {
  position: absolute;
  content: "";
}
.top-news__link::before {
  left: 15px;
  left: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  width: 0.9375rem;
  height: 1px;
  height: 0.0625rem;
  background: #737074;
}
.top-news__link::after {
  left: 25px;
  left: 1.5625rem;
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  top: 21px;
  top: 1.3125rem;
  border-top: 1px solid #737074;
  border-top: 0.0625rem solid #737074;
  border-right: 1px solid #737074;
  border-right: 0.0625rem solid #737074;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.top-news__items {
  padding-left: 102px;
  padding-left: 6.375rem;
  max-width: 75%;
}
@media screen and (max-width: 1023px) {
  .top-news__items {
    padding-left: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .top-news__items {
    max-width: 100%;
    padding-left: 0;
    margin-bottom: 2.5rem;
  }
}

.top-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-size: 1rem;
  border-bottom: 1px solid #DCDDDD;
  border-bottom: 0.0625rem solid #DCDDDD;
  padding: 20px 0;
  padding: 1.25rem 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .top-news__item {
    display: block;
  }
}
.top-news__item:first-child {
  border-top: 1px solid #DCDDDD;
  border-top: 0.0625rem solid #DCDDDD;
}

.top-news__item-date {
  margin-right: 20px;
  margin-right: 1.25rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .top-news__item-date {
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}

.top-news__item-title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* top-yoyaku */
.top-yoyaku {
  display: none;
}
@media screen and (max-width: 767px) {
  .top-yoyaku {
    display: block;
    margin-bottom: 30px;
  }
  .top-yoyaku a {
    display: block;
    padding: 18px;
    background: #0B68B4;
    color: #fff;
    text-align: center;
  }
  .top-yoyaku a img {
    display: inline;
    width: 16px;
    margin-right: 8px;
    vertical-align: middle;
  }
}