@charset "UTF-8";
/* 1.html5doctor.com Reset Stylesheet
-----------------------------------------*/
/* 【カラー設定】 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #FF6F00;
}
a:hover {
  opacity: 0.5;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* 1.5 リストマーカー無
-----------------------------------------*/
ol, ul {
  list-style: none;
}

/* 2．スクロールバーを常に表示
-----------------------------------------*/
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}
@media screen and (max-width: 768px) {
  section {
    scroll-margin-top: 20vw;
  }
}

/* 3．フォント関連半角英数字折り返しする
-----------------------------------------*/
body {
  word-break: break-all; /* 常に行末で改行 */
  word-wrap: break-word; /* 英数半角の改行 */
  font-family: "M PLUS 1p", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: justify; /*テキストを両端揃え*/
  text-justify: inter-ideograph; /*テキストを両端揃えIE用*/
  color: #464646;
  font-size: 16px;
}

p {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
}

/* 6．画像余白を消す
-----------------------------------------*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
}

.sp-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none !important;
  }
}

.pc-none {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .pc-none {
    display: block !important;
  }
}

.mb30 {
  margin-bottom: 30px;
}

.mb50 {
  margin-bottom: 50px;
}

.mt50 {
  margin-top: 50px !important;
}

.txt__center {
  text-align: center;
}

.txt__larger {
  font-size: 1.1rem;
}

.txt__large {
  font-size: 1.3rem;
}

.green-bold {
  color: #066FB7;
  font-weight: 500;
}

.red-large {
  color: #FF0000;
  font-size: 1.5rem;
}

.txt__red {
  color: #FF0000;
}

.fadein {
  opacity: 0;
  transform: translateY(0) scale(0.94);
  transition-property: opacity, transform;
  transition-duration: 0.8s, 0.8s;
  transition-timing-function: ease, ease;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

body {
  color: #333;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.5vw;
  }
}

a {
  color: #066FB7;
}
a:hover {
  text-decoration: none;
}

.flex-box {
  display: flex;
  justify-content: space-between;
}

h2 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  margin: 0 auto 20px;
  text-align: center;
}
h2 .eng {
  font-size: 16px;
  display: block;
}

a.btn-white {
  border: 1px solid #066FB7;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  width: 150px;
  text-align: center;
  position: relative;
  line-height: 1.5;
}
a.btn-white::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 1px solid #066FB7;
  border-right: 1px solid #066FB7;
  transform: rotate(45deg);
  right: 14px;
  top: calc(50% - 3px);
}

a.btn-orange {
  background: #FF6F00;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  display: block;
  text-align: center;
  line-height: 1.5;
  padding: 5px 0;
  position: relative;
}
a.btn-orange::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  right: 14px;
  top: calc(50% - 3px);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px calc((100% - 1280px) / 2);
  max-width: 1280px;
  margin: auto;
  position: relative;
  top: -100%;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  header {
    max-width: 94vw;
    padding: 2vw 3vw;
  }
}
header.active {
  position: fixed;
  top: 0;
  z-index: 100;
  background: #fff;
  width: 100%;
  transition: all 0.3s;
}
header div.logo {
  width: 280px;
}
@media screen and (max-width: 768px) {
  header div.logo {
    width: 40vw;
  }
}
header nav.header-nav {
  min-width: 540px;
}
header nav.header-nav ul {
  display: flex;
}
header nav.header-nav ul li {
  font-weight: bold;
  margin-right: 50px;
  position: relative;
}
header nav.header-nav ul li:last-child {
  margin-right: 0;
}
header nav.header-nav ul li.pd {
  position: relative;
}
header nav.header-nav ul li.pd::after {
  content: "";
  display: block;
  position: absolute;
  right: -17px;
  top: 10px;
  border-top: #066FB7 10px solid;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}
header nav.header-nav ul li a {
  color: #333;
  text-decoration: none;
  position: relative;
}
header nav.header-nav ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #066FB7;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
header nav.header-nav ul li a:hover {
  opacity: 1;
}
header nav.header-nav ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
header nav.header-nav ul li .dropdown {
  display: none; /* 初期状態では子メニューを非表示にする */
  position: absolute;
  top: 100%; /* 親メニューの下に配置する */
  left: 0;
  background-color: #fff;
  width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px;
}
header nav.header-nav ul li .dropdown li {
  font-weight: 300;
  margin-bottom: 10px;
}
header nav.header-nav ul li .dropdown li:last-child {
  margin-bottom: 0;
}
header nav.header-nav ul li:hover .dropdown {
  display: block; /* 親メニューにホバーしたときに子メニューを表示する */
}
@media screen and (max-width: 1050px) {
  header nav.header-nav {
    font-size: 13px;
    min-width: 390px;
  }
  header nav.header-nav ul li {
    margin-right: 25px;
  }
  header nav.header-nav ul li .dropdown {
    width: 150px;
  }
  header nav.header-nav ul li.pd::after {
    top: 7px;
  }
}
@media screen and (max-width: 768px) {
  header nav.header-nav {
    display: none;
  }
  header nav.header-nav.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    background-color: #fff;
    padding: 3vw;
    height: 100vh;
    box-sizing: border-box;
    padding: 10vw 5vw;
  }
  header nav.header-nav.active ul {
    display: block;
    min-width: auto;
    font-size: 4vw;
  }
  header nav.header-nav.active ul li .dropdown {
    display: block;
    position: relative;
    width: auto;
    box-shadow: none;
  }
  header nav.header-nav.active ul li.pd::after {
    display: none;
  }
}
header .header-tel {
  font-size: 24px;
  font-weight: bold;
  padding-left: 40px;
  background: url(../img/tel_blue.png) no-repeat left 0/contain;
  line-height: 1.4;
  min-width: 217px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  header .header-tel {
    font-size: 3.7vw;
    padding-left: 5.5vw;
    min-width: 30vw;
  }
}
header .header-smt-navi {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header-smt-navi {
    display: block;
    z-index: 1001;
    transition: all 0.5s;
  }
  header .header-smt-navi a {
    color: #333;
    text-decoration: none;
  }
  header .header-smt-navi a:hover {
    opacity: 1;
  }
  header .header-smt-navi p {
    font-size: 2.2vw;
    margin-top: -3.5vw;
  }
  header .header-smt-navi .menu_btn {
    display: block;
    position: relative;
  }
  header .header-smt-navi .menu_btn::before, header .header-smt-navi .menu_btn::after {
    width: 7vw;
    height: 1px;
    background: #333;
    content: "";
    position: absolute;
    top: 0.5vw;
    left: 1vw;
    display: block;
  }
  header .header-smt-navi .menu_btn::after {
    top: 2vw;
  }
  header .header-smt-navi.active {
    transition: all 0.5s;
  }
  header .header-smt-navi.active p {
    opacity: 0;
  }
  header .header-smt-navi.active .menu_btn::before {
    transform: rotate(30deg);
    top: 2vw;
  }
  header .header-smt-navi.active .menu_btn::after {
    transform: rotate(-30deg);
  }
}

footer {
  background: #066FB7;
  color: #fff;
}
footer .footer-inner {
  max-width: 1280px;
  margin: auto;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  footer .footer-inner {
    display: block;
  }
}
footer .footer-inner a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 1020px) {
  footer .footer-inner .info {
    min-width: 200px;
  }
}
footer .footer-inner .info h3 {
  font-size: 24px;
}
footer .footer-inner .info p {
  font-size: 13px;
}
footer .footer-inner .info .footer-tel {
  font-size: 20px;
  padding-left: 35px;
  background: url(../img/tel_w.png) no-repeat left top/contain;
  margin: 10px 0;
  line-height: 1.5;
  font-weight: 500;
}
footer .footer-inner .info ul li {
  list-style-type: disc;
  margin-left: 20px;
}
footer .footer-inner .link {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .footer-inner .link {
    display: block;
    margin-top: 5vw;
  }
}
footer .footer-inner .link ul {
  width: 200px;
}
@media screen and (max-width: 1020px) {
  footer .footer-inner .link ul {
    width: 160px;
  }
  footer .footer-inner .link ul li {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-inner .link ul {
    width: 48%;
    float: left;
    clear: left;
    margin-top: 3vw;
  }
  footer .footer-inner .link ul:nth-child(2n) {
    float: right;
    clear: right;
  }
}
footer .footer-inner .link ul:last-child {
  width: 100px;
}
@media screen and (max-width: 768px) {
  footer .footer-inner .link ul:last-child {
    width: 48%;
  }
}
footer .copyright {
  text-align: center;
  padding: 30px 0 20px;
  font-size: 12px;
  clear: both;
}

#page-top {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 50px;
  font-size: 77%;
  z-index: 9;
  width: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  #page-top {
    right: 5vw;
  }
}

/* モーダルと背景の指定 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 10;
}

/* モーダルの擬似要素の指定 */
.modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #066FB7;
  border-radius: 50%;
  cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 20px;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p {
  margin: 1em 0;
}

@media (min-width: 768px) {
  .tel-link {
    /* クリックイベントを無効にする */
    pointer-events: none;
    /* リンクの下線や色を外すなど、PCでの見た目を調整 */
    color: inherit; /* 親要素の色を継承 */
    text-decoration: none; /* 下線を削除 */
    cursor: default; /* マウスカーソルをデフォルトに戻す */
  }
}
#wrap.top {
  overflow-x: hidden;
}

#main-visual {
  overflow: hidden;
  height: 37vw;
}
@media screen and (max-width: 768px) {
  #main-visual {
    height: 77vw;
  }
}

#news {
  margin: 50px auto;
  max-width: 1280px;
}
@media screen and (max-width: 768px) {
  #news {
    width: 90vw;
    position: relative;
    margin: 10vw auto 20vw;
  }
}
#news .left-block {
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  #news .left-block {
    padding-left: 0;
  }
}
#news .left-block h2 {
  text-align: left;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  #news .left-block h2 {
    text-align: center;
  }
}
#news .left-block a.btn-white:hover {
  opacity: 1;
  background: #066FB7;
  color: #fff;
}
#news .left-block a.btn-white:hover::after {
  border-top-color: #fff;
  border-right-color: #fff;
}
@media screen and (max-width: 768px) {
  #news .left-block a.btn-white {
    position: absolute;
    bottom: -12vw;
    width: 30vw;
    left: calc(50% - 15vw);
  }
}
#news .right-block {
  width: calc(100% - 505px);
  margin-right: 30px;
}
@media screen and (max-width: 1050px) {
  #news .right-block {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #news .right-block {
    width: auto;
    margin-right: 0;
  }
}
#news .right-block ul li {
  border-bottom: 1px dotted #333;
  padding: 7px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#news .right-block ul li a {
  color: #333;
  text-decoration: none;
}
#news .right-block ul li a span.date {
  display: block;
  color: #555;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #news .flex-box {
    display: block;
  }
}

#hours-access {
  background-color: #D1ECFF;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #hours-access {
    padding: 10vw 0 5vw;
  }
}
#hours-access h2 {
  color: #000;
}
#hours-access .flex-box {
  max-width: 1020px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #hours-access .flex-box {
    display: block;
    margin: 5vw auto;
    width: 90vw;
  }
}
#hours-access .flex-box .left-block {
  width: 47%;
}
@media screen and (max-width: 768px) {
  #hours-access .flex-box .left-block {
    width: auto;
  }
}
#hours-access .flex-box .left-block img {
  max-width: 100%;
}
#hours-access .flex-box .left-block .booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.4;
  margin-top: 20px;
}
@media screen and (max-width: 930px) {
  #hours-access .flex-box .left-block .booking {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #hours-access .flex-box .left-block .booking {
    display: flex;
    width: 90%;
    margin: 3vw auto 0;
  }
}
#hours-access .flex-box .left-block .booking .text {
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #hours-access .flex-box .left-block .booking .text {
    font-size: 3.5vw;
  }
}
#hours-access .flex-box .left-block .booking .tel-no {
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.1em;
  padding-left: 50px;
  color: #000;
  background: url(../img/tel_black.png) no-repeat left top/contain;
}
@media screen and (max-width: 768px) {
  #hours-access .flex-box .left-block .booking .tel-no {
    font-size: 5vw;
    padding-left: 8vw;
  }
}
#hours-access .flex-box .left-block .uketsuke-time {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #hours-access .flex-box .left-block .uketsuke-time {
    width: 90%;
    font-size: 4vw;
    margin-left: auto;
    margin-right: auto;
  }
}
#hours-access .flex-box .right-block {
  width: 47%;
  min-width: 437px;
}
@media screen and (max-width: 768px) {
  #hours-access .flex-box .right-block {
    width: auto;
    min-width: auto;
    padding-top: 5vw;
  }
  #hours-access .flex-box .right-block h3, #hours-access .flex-box .right-block p {
    font-size: 4vw;
  }
}
#hours-access .flex-box .right-block iframe {
  height: 240px;
  width: 100%;
}
#hours-access a.btn-orange.access {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 0;
  letter-spacing: 0.1em;
  width: 400px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #hours-access a.btn-orange.access {
    font-size: 4vw;
    width: 90%;
    margin: 5vw auto;
  }
}
#hours-access a.btn-orange.access::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 30px;
}

#calendar {
  max-width: 1020px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #calendar .flex-box {
    display: block;
    width: 90vw;
    margin: auto;
  }
}
#calendar .p-calendar {
  width: 47%;
}
@media screen and (max-width: 768px) {
  #calendar .p-calendar {
    width: auto;
    margin-bottom: 5vw;
  }
}
#calendar .p-calendar .p-sec-eventList__hdg {
  text-align: center;
  background: #066FB7;
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 5px 0;
}
#calendar .p-calendar table.p-calendar__table {
  width: 100%;
  text-align: center;
  border: 1px solid #ccc;
}
#calendar .p-calendar table.p-calendar__table thead {
  background: #eee;
}
#calendar .p-calendar table.p-calendar__table thead th {
  font-weight: normal;
}
#calendar .p-calendar table.p-calendar__table tr {
  border-bottom: 1px solid #ccc;
}
#calendar .p-calendar table.p-calendar__table tr td.y-6, #calendar .p-calendar table.p-calendar__table tr td.holiday {
  background: #FFB1E0;
}
#calendar .p-calendar table.p-calendar__table tr td.megane {
  position: relative;
}
#calendar .p-calendar table.p-calendar__table tr td.megane::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #78D48C;
  border-radius: 50px;
  z-index: -1;
  top: 2px;
  left: calc(50% - 12px);
}
@media screen and (max-width: 768px) {
  #calendar .p-calendar table.p-calendar__table tr td.megane::after {
    width: 4vw;
    height: 4vw;
    top: 1vw;
    left: calc(50% - 2vw);
  }
}
#calendar .p-calendar table.p-calendar__table tr td.kensa {
  position: relative;
}
#calendar .p-calendar table.p-calendar__table tr td.kensa::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #CAA0FE;
  z-index: -1;
  top: 2px;
  left: calc(50% - 12px);
}
@media screen and (max-width: 768px) {
  #calendar .p-calendar table.p-calendar__table tr td.kensa::after {
    width: 4vw;
    height: 4vw;
    top: 1vw;
    left: calc(50% - 2vw);
  }
}
#calendar .p-calendar table.p-calendar__table tr td.change {
  position: relative;
}
#calendar .p-calendar table.p-calendar__table tr td.change::after {
  content: "";
  position: absolute;
  border-bottom: 22px solid #FAB374;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  z-index: -1;
  top: 2px;
  left: calc(50% - 14px);
}
@media screen and (max-width: 768px) {
  #calendar .p-calendar table.p-calendar__table tr td.change::after {
    border-bottom-width: 4vw;
    border-left-width: 2.5vw;
    border-right-width: 2.5vw;
    top: 1vw;
    left: calc(50% - 2vw);
  }
}
#calendar .info {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  font-weight: medium;
}
@media screen and (max-width: 768px) {
  #calendar .info {
    width: 90vw;
    margin: 0 auto;
    flex-wrap: wrap;
  }
}
#calendar .info li {
  margin-right: 25px;
  padding-left: 30px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #calendar .info li {
    margin-right: 4vw;
    padding-left: 5.5vw;
    font-size: 3.5vw;
    width: 38%;
    margin-top: 2vw;
  }
}
#calendar .info li.holiday {
  position: relative;
}
#calendar .info li.holiday::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #FFB1E0;
}
@media screen and (max-width: 768px) {
  #calendar .info li.holiday::after {
    width: 4vw;
    height: 4vw;
  }
}
#calendar .info li.megane {
  position: relative;
}
#calendar .info li.megane::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #78D48C;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #calendar .info li.megane::after {
    width: 4vw;
    height: 4vw;
  }
}
#calendar .info li.kensa {
  position: relative;
}
#calendar .info li.kensa::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #CAA0FE;
}
@media screen and (max-width: 768px) {
  #calendar .info li.kensa::after {
    width: 4vw;
    height: 4vw;
  }
}
#calendar .info li.change {
  position: relative;
}
#calendar .info li.change::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 20px solid #FAB374;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
}
@media screen and (max-width: 768px) {
  #calendar .info li.change::after {
    border-bottom-width: 4vw;
    border-left-width: 2.5vw;
    border-right-width: 2.5vw;
  }
}

#treatment {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #treatment .flex-box {
    display: block;
  }
}
#treatment .image-box {
  max-width: 1020px;
  margin: auto;
}
#treatment .image-box .inner-box {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #treatment .image-box .inner-box {
    width: 75vw;
    margin: 0 auto 10vw;
  }
}
#treatment .image-box .inner-box figure {
  border: 1px solid #ccc;
  text-align: center;
}
#treatment .image-box .inner-box figure figcaption {
  padding: 8px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
#treatment .image-box .inner-box span.info {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.4;
  display: block;
}
@media screen and (max-width: 768px) {
  #treatment .image-box .inner-box span.info {
    font-size: 3.5vw;
  }
}
#treatment .title-blue {
  max-width: 725px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #treatment .title-blue {
    width: 90vw;
    margin-top: 0;
  }
}
#treatment .title-blue .inner-box {
  border: 1px solid #ccc;
  width: 47%;
}
@media screen and (max-width: 768px) {
  #treatment .title-blue .inner-box {
    width: auto;
    border: 1px solid #fff;
  }
}
#treatment .title-blue .inner-box h3.back-blue {
  text-align: center;
  font-size: 20px;
  background-color: #D1ECFF;
  padding: 8px 0;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #treatment .title-blue .inner-box h3.back-blue {
    font-size: 4.5vw;
    position: relative;
  }
  #treatment .title-blue .inner-box h3.back-blue::after {
    content: "";
    display: block;
    position: absolute;
    border-left: 12px solid #066FB7;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    right: 7vw;
    top: calc(50% - 7px);
  }
  #treatment .title-blue .inner-box h3.back-blue.active::after {
    transform: rotate(90deg);
  }
}
#treatment .title-blue .inner-box p {
  padding: 15px;
}
@media screen and (max-width: 768px) {
  #treatment .title-blue .inner-box p {
    font-size: 4vw;
  }
  #treatment .title-blue .inner-box p.accordion-content {
    display: none;
  }
}
#treatment .back-blue-box {
  max-width: 1020px;
  margin: 80px auto 30px;
}
@media screen and (max-width: 768px) {
  #treatment .back-blue-box {
    margin-top: 10vw;
    width: 90vw;
  }
}
#treatment .back-blue-box .inner-box {
  width: 46%;
  display: flex;
  justify-content: space-between;
  background: #D1ECFF;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #treatment .back-blue-box .inner-box {
    width: auto;
    margin-top: 5vw;
  }
}
#treatment .back-blue-box .inner-box figure {
  max-width: 185px;
  width: 40%;
}
#treatment .back-blue-box .inner-box .text {
  width: 55%;
  margin: 15px 0;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #treatment .back-blue-box .inner-box .text {
    font-size: 3.3vw;
    margin: 0;
  }
}
#treatment .santei {
  text-align: center;
}
#treatment .santei .modal-open {
  color: #066FB7;
  text-decoration: underline;
  font-size: 15px;
  font-weight: medium;
  cursor: pointer;
}

#howto {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #howto {
    width: 90vw;
    margin: 20vw auto 0;
  }
}
#howto .tabs {
  max-width: 777px;
  margin: 40px auto;
  overflow: hidden;
  padding-bottom: 0;
  width: 100%;
  /*タブのスタイル*/
  /*ラジオボタンを全て消す*/
  /*タブ切り替えの中身のスタイル*/
  /*選択されているタブのコンテンツのみを表示*/
  /*選択されているタブのスタイルを変える*/
}
@media screen and (max-width: 768px) {
  #howto .tabs {
    margin-top: 5vw;
  }
}
#howto .tabs .tab_item {
  width: 45%;
  float: left;
  transition: all 0.2s ease;
  text-align: center;
  background: #066FB7;
  color: #fff;
  font-weight: 400;
  padding: 5px 0;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #howto .tabs .tab_item {
    font-size: 5vw;
  }
}
#howto .tabs .tab_item.nodisplay {
  display: none;
}
#howto .tabs .tab_item::after {
  content: "";
  display: block;
  position: absolute;
  right: 118px;
  top: 16px;
  border-top: #fff 10px solid;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  transform: rotate(-90deg);
}
@media screen and (max-width: 768px) {
  #howto .tabs .tab_item::after {
    right: 4vw;
    top: 4.5vw;
  }
}
#howto .tabs .tab_item:hover {
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  #howto .tabs .tab_item:hover {
    opacity: 1;
  }
}
#howto .tabs .tab_content {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #howto .tabs .tab_content {
    margin-top: 5vw;
  }
}
#howto .tabs .tab_content .tab_content_description .flex-box {
  position: relative;
}
#howto .tabs .tab_content .tab_content_description .flex-box::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  transform: rotate(135deg);
  right: calc(50% - 20px);
  bottom: -40px;
}
@media screen and (max-width: 768px) {
  #howto .tabs .tab_content .tab_content_description .flex-box::after {
    width: 8vw;
    height: 8vw;
  }
}
#howto .tabs .tab_content .tab_content_description .flex-box:last-child::after {
  display: none;
}
#howto .tabs #entry .tab_content h3 {
  background: transparent;
  font-size: 1.6rem;
}
#howto .tabs label.tab_item {
  display: block;
  margin: 0 2.5% 50px 2.5%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #howto .tabs label.tab_item {
    margin-bottom: 5vw;
  }
}
#howto .tabs label.tab_item:hover {
  text-decoration: underline;
}
#howto .tabs input[name=tab_item] {
  display: none;
}
#howto .tabs .tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}
#howto .tabs #tab_list01:checked ~ #tab_list01_content,
#howto .tabs #tab_list02:checked ~ #tab_list02_content {
  display: block;
}
#howto .tabs input:checked + .tab_item {
  background: #D1ECFF;
  color: #066FB7;
}
#howto .tabs input:checked + .tab_item::after {
  border-top: #066FB7 10px solid;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  transform: rotate(0);
}
#howto .tabs .flex-box {
  max-width: 625px;
  margin: 0 auto 80px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #howto .tabs .flex-box:last-child {
    margin-bottom: 0;
  }
}
#howto .tabs .flex-box figure {
  width: 167px;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  #howto .tabs .flex-box figure {
    width: 25vw;
    overflow: hidden;
  }
  #howto .tabs .flex-box figure img {
    max-width: 140%;
  }
}
#howto .tabs .flex-box .text {
  width: calc(100% - 197px);
}
@media screen and (max-width: 768px) {
  #howto .tabs .flex-box .text {
    width: 70vw;
  }
}
#howto .tabs .flex-box .text .title {
  font-size: 20px;
  font-weight: bold;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #howto .tabs .flex-box .text .title {
    font-size: 5vw;
  }
}
#howto .tabs .flex-box .text .title::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 0;
  width: 25px;
  height: 1px;
  background: #000;
}
#howto .tabs .flex-box .text p {
  margin-top: 30px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #howto .tabs .flex-box .text p {
    font-size: 3.5vw;
    margin-top: 5vw;
  }
}

@media screen and (max-width: 768px) {
  #about {
    margin-top: 25vw;
  }
}
#about .eyecatch {
  max-width: 1800px;
  height: 345px;
  margin: 30px auto 50px;
  background: url(../img/top/about_mv.jpg) no-repeat top left/cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  #about .eyecatch {
    margin-top: 5vw;
    width: 100vw;
    background: url(../img/top/about_mv_sp.jpg) no-repeat top left/cover;
  }
}
#about .eyecatch .text {
  width: 488px;
  box-sizing: border-box;
  padding: 20px 30px;
  font-size: 24px;
  font-weight: bold;
  background: rgba(6, 111, 183, 0.8);
  color: #fff;
  position: absolute;
  top: calc(50% - 60px);
  right: calc(50% - 350px);
}
@media screen and (max-width: 768px) {
  #about .eyecatch .text {
    width: 90vw;
    top: 5vw;
    right: 0;
    padding: 3vw 5vw;
    font-size: 4.5vw;
  }
}
#about .message {
  max-width: 960px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  #about .message {
    width: 90vw;
  }
  #about .message.flex-box {
    display: block;
  }
}
#about .message .left-box {
  width: 245px;
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  #about .message .left-box {
    width: 45%;
    margin-right: 5%;
    float: left;
  }
}
#about .message .left-box figure figcaption {
  margin: 15px 10px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  #about .message .left-box figure figcaption {
    font-size: 3.5vw;
    margin-top: 2vw;
    line-height: 1.5;
  }
}
#about .message .left-box figure figcaption .text-large {
  font-size: 16px;
}
#about .message .text {
  width: calc(100% - 295px);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #about .message .text {
    width: auto;
  }
  #about .message .text p {
    font-size: 4vw;
  }
}
#about .message .text .link {
  margin-top: 30px;
  text-align: center;
}
#about .message .text .link a {
  display: block;
  width: 210px;
  margin: auto;
  background: #066FB7;
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  padding: 5px 0;
  text-decoration: none;
}
#about .text-comment {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  margin: 20px auto;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #about .text-comment {
    font-size: 5vw;
  }
}
#about .picture-area figure:first-child {
  margin-left: -15px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  #about .picture-area figure:first-child {
    margin-left: 0;
    margin-right: 5px;
  }
}
#about .picture-area figure:last-child {
  margin-right: -15px;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  #about .picture-area figure:last-child {
    margin-right: 0;
    margin-left: 5px;
  }
}

.slider {
  width: 850px;
  margin: 100px auto 50px;
}
@media screen and (max-width: 768px) {
  .slider {
    width: 100%;
    margin: 8vw auto;
  }
}
.slider figure figcaption {
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .slider figure figcaption {
    font-size: 3vw;
  }
}
.slider .slick-list {
  overflow: visible;
}
.slider .slick-slide {
  margin: 0 35px;
}
@media screen and (max-width: 768px) {
  .slider .slick-slide {
    margin: 0 3vw;
  }
}
.slider .slick-prev {
  left: 45px;
  top: calc(50% - 30px);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .slider .slick-prev {
    left: 10vw;
    top: calc(50% - 6vw);
  }
}
.slider .slick-prev::before {
  content: "";
  border-right: 20px solid #ccc;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  font-size: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .slider .slick-prev::before {
    border-right: 3vw solid #ccc;
    border-top: 3vw solid transparent;
    border-bottom: 3vw solid transparent;
  }
}
.slider .slick-next {
  right: 45px;
  top: calc(50% - 30px);
}
@media screen and (max-width: 768px) {
  .slider .slick-next {
    right: 10vw;
    top: calc(50% - 6vw);
  }
}
.slider .slick-next::before {
  content: "";
  border-left: 20px solid #ccc;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  font-size: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .slider .slick-next::before {
    border-left: 3vw solid #ccc;
    border-top: 3vw solid transparent;
    border-bottom: 3vw solid transparent;
  }
}

.map {
  max-width: 960px;
  margin: 0 auto 80px;
}
.map h3 {
  color: #066FB7;
  border-bottom: 1px solid #066FB7;
  margin-bottom: 20px;
  font-size: 20px;
}
.map iframe {
  width: 500px;
  height: 500px;
}

.teikei .teikei-inner {
  max-width: 960px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .teikei .teikei-inner {
    width: 90%;
  }
}
.teikei .teikei-inner a {
  display: block;
  width: 32%;
  margin-right: 1%;
  color: #333;
  margin-top: 30px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .teikei .teikei-inner a {
    width: 48%;
    margin-right: auto;
  }
}
.teikei .teikei-inner a:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .teikei .teikei-inner a:nth-child(3n) {
    margin-right: auto;
  }
}
.teikei .teikei-inner a h3 {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .teikei .teikei-inner a h3 {
    font-size: 4vw;
  }
}

.page-header {
  height: 260px;
  background: url(../img/about/header-about.jpg) no-repeat right top/70%;
  display: flex;
  align-items: center;
  max-width: 1500px;
  margin: auto;
}
@media screen and (max-width: 1250px) {
  .page-header {
    background-size: cover;
    background-position: 30vw top;
  }
}
@media screen and (max-width: 768px) {
  .page-header {
    display: block;
    background-position: left 20vw;
    background-size: 100%;
    height: 87vw;
    background-image: url(../img/about/header-about_sp.jpg);
  }
}
.page-header.examination {
  background-image: url(../img/examination/header-examination.jpg);
}
@media screen and (max-width: 768px) {
  .page-header.examination {
    background-image: url(../img/examination/header-examination_sp.jpg);
  }
}
.page-header.home {
  background-image: url(../img/home/header-home.jpg);
}
@media screen and (max-width: 768px) {
  .page-header.home {
    background-image: url(../img/home/header-home_sp.jpg);
  }
}
.page-header.items {
  background-image: url(../img/items/header-items.jpg);
}
@media screen and (max-width: 768px) {
  .page-header.items {
    background-image: url(../img/items/header-items_sp.jpg);
  }
}
.page-header.access {
  background-image: url(../img/access/header-access.jpg);
}
@media screen and (max-width: 768px) {
  .page-header.access {
    background-image: url(../img/access/header-access_sp.jpg);
  }
}
.page-header.news {
  background-image: url(../img/news/header-news.jpg);
}
@media screen and (max-width: 768px) {
  .page-header.news {
    background-image: url(../img/news/header-news_sp.jpg);
  }
}
.page-header.notice {
  background-image: url(../img/notice/header-notice.jpg);
}
@media screen and (max-width: 768px) {
  .page-header.notice {
    background-image: url(../img/notice/header-notice_sp.jpg);
  }
}
.page-header h1 {
  font-size: 24px;
  margin: 0 76% 0 auto;
  background: #fff;
  padding: 0 20px;
}
@media screen and (max-width: 1250px) {
  .page-header h1 {
    margin: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-header h1 {
    margin: 0;
    line-height: 1.4;
    padding: 5vw 7vw;
  }
}
.page-header h1 span.eng {
  font-size: 16px;
  display: block;
}

.breadcrumb {
  font-size: 14px;
  margin: 20px auto;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin: 5vw;
  }
}
.breadcrumb ul {
  display: flex;
}
.breadcrumb ul li {
  padding-right: 35px;
  position: relative;
}
.breadcrumb ul li::after {
  content: ">";
  position: absolute;
  right: 12px;
}
.breadcrumb ul li:last-child::after {
  content: "";
}
.breadcrumb ul li a {
  color: #555;
  text-decoration: none;
}

.content h3 {
  font-weight: bold;
  font-size: 20px;
  color: #066FB7;
  line-height: 1.5;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #066FB7;
}
.content p {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .content p {
    font-size: 4vw;
  }
}
.content .other {
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .content .other {
    font-size: 4vw;
  }
}
.content ul.basic-list {
  margin: 10px 0;
}
.content ul.basic-list li {
  margin-left: 24px;
  list-style-type: disc;
}
@media screen and (max-width: 768px) {
  .content ul.basic-list li {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .content figure {
    margin-top: 4vw;
  }
}

.about .content {
  min-width: 1020px;
}
@media screen and (max-width: 768px) {
  .about .content {
    min-width: auto;
  }
}

div.greetings {
  max-width: 960px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  div.greetings {
    width: 90vw;
  }
}
div.greetings h2 {
  margin: 30px auto 40px;
}
@media screen and (max-width: 768px) {
  div.greetings h2 {
    margin: 10vw auto 5vw;
  }
}
div.greetings .dr-history {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  div.greetings .dr-history {
    margin-top: 4vw;
  }
  div.greetings .dr-history p {
    font-size: 3.5vw;
  }
}
div.greetings .flex-box figure {
  width: 245px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  div.greetings .flex-box figure {
    width: 35%;
    margin-right: 5%;
  }
}
div.greetings .flex-box figure figcaption {
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.5;
}
div.greetings .flex-box .text {
  width: calc(100% - 285px);
}
@media screen and (max-width: 768px) {
  div.greetings .flex-box .text {
    width: auto;
  }
  div.greetings .flex-box .text.pic-side {
    width: 60%;
  }
}
div.greetings .flex-box .text p + p {
  margin-top: 20px;
}
div.greetings .flex-box .text .flex-box {
  justify-content: left;
}
div.greetings .flex-box .text .info {
  margin-top: 60px;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  div.greetings .flex-box .text .info {
    margin-top: 3vw;
    line-height: 1.5;
    margin-right: 0;
  }
  div.greetings .flex-box .text .info .txt__large {
    font-size: 4vw;
  }
}
div.greetings .flex-box .text .info .txt__large {
  font-weight: bold;
}
div.greetings .flex-box .text .info ul {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  div.greetings .flex-box .text .info ul {
    margin-top: 2vw;
  }
}
div.greetings .flex-box .text .info ul li {
  margin-left: 16px;
  list-style-type: disc;
}

.eye-info {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .eye-info {
    margin-top: 10vw;
  }
}
.eye-info .eye-info_comment {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .eye-info .eye-info_comment {
    font-size: 6vw;
    line-height: 1.5;
  }
}
.eye-info .eye-info_list {
  margin-top: 30px;
  height: 456px;
  background: url(../img/about/eye-info.png) no-repeat 48% 70px/343px #D1ECFF;
}
@media screen and (max-width: 768px) {
  .eye-info .eye-info_list {
    margin-top: 8vw;
    height: 120vw;
    background: url(../img/about/eye-info_sp.png) no-repeat left top/100%;
  }
}
.eye-info .eye-info_list ul {
  position: relative;
  width: 1000px;
  height: 456px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .eye-info .eye-info_list ul {
    width: auto;
    height: auto;
  }
}
.eye-info .eye-info_list ul li {
  position: absolute;
}
.eye-info .eye-info_list ul li a {
  color: #000;
  text-decoration: none;
}
.eye-info .eye-info_list ul li.mabuta {
  top: 70px;
  left: 90px;
}
@media screen and (max-width: 768px) {
  .eye-info .eye-info_list ul li.mabuta {
    top: 27vw;
    left: 5vw;
  }
}
.eye-info .eye-info_list ul li.suisho {
  top: 50px;
  left: 600px;
}
@media screen and (max-width: 768px) {
  .eye-info .eye-info_list ul li.suisho {
    top: 8vw;
    left: 69vw;
  }
}
.eye-info .eye-info_list ul li.kurome {
  top: 245px;
  left: 100px;
}
@media screen and (max-width: 768px) {
  .eye-info .eye-info_list ul li.kurome {
    top: 78vw;
    left: 5vw;
  }
}
.eye-info .eye-info_list ul li.chame {
  top: 162px;
  left: 656px;
}
@media screen and (max-width: 768px) {
  .eye-info .eye-info_list ul li.chame {
    top: 19vw;
    left: 50vw;
  }
}
.eye-info .eye-info_list ul li.namida {
  top: 300px;
  left: 580px;
}
@media screen and (max-width: 768px) {
  .eye-info .eye-info_list ul li.namida {
    top: 62vw;
    left: 73vw;
  }
}
.eye-info .eye-info_list ul li.shirome {
  top: 359px;
  left: 364px;
}
@media screen and (max-width: 768px) {
  .eye-info .eye-info_list ul li.shirome {
    top: 89vw;
    left: 50vw;
  }
}
.eye-info .eye-info_content {
  max-width: 960px;
  margin: 30px auto;
}
@media screen and (max-width: 768px) {
  .eye-info .eye-info_content {
    width: 90vw;
  }
}
.eye-info .eye-info_content h3 {
  margin-top: 30px;
}
.eye-info .eye-info_content .explanation {
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  padding-bottom: 20px;
}
.eye-info .eye-info_content .explanation .open {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  padding-top: 30px;
  background-image: linear-gradient(to bottom, transparent, white);
}
.eye-info .eye-info_content .explanation .open a {
  background: #fff;
  display: inline-block;
  padding: 0 5px;
  font-weight: bold;
}

.logo-info {
  margin: 100px auto;
  max-width: 830px;
}
@media screen and (max-width: 768px) {
  .logo-info {
    margin: 0 auto 10vw;
    width: 90vw;
  }
}
.logo-info h2 {
  margin-bottom: 40px;
}
.logo-info figure.logo {
  max-width: 640px;
  margin: auto;
}
.logo-info .flex-box {
  margin-top: 80px;
}
.logo-info .flex-box figure {
  width: 213px;
  margin-right: 50px;
}
.logo-info .flex-box figure figcaption {
  color: #555;
  font-size: 12px;
  text-align: center;
  margin-top: 5px;
}
.logo-info .flex-box .text {
  width: calc(100% - 263px);
}
@media screen and (max-width: 768px) {
  .logo-info .flex-box .text {
    width: auto;
  }
  .logo-info .flex-box .text figure {
    display: block;
    width: 55vw;
    margin: 0 auto 5vw;
  }
  .logo-info .flex-box .text figure figcaption {
    font-size: 3vw;
  }
}

.ganka {
  max-width: 1200px;
  margin: 20px auto;
}
@media screen and (max-width: 1200px) {
  .ganka {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .ganka {
    padding: 0 5vw;
  }
  .ganka .message-text {
    font-size: 6vw;
  }
}
.ganka .flex-box {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .ganka .flex-box {
    display: block;
  }
}
.ganka .flex-box figure {
  max-width: 553px;
  margin-left: 40px;
  width: 45%;
}
@media screen and (max-width: 768px) {
  .ganka .flex-box figure {
    width: auto;
    max-width: none;
    margin-left: 0;
  }
}
.ganka .flex-box .text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .ganka .flex-box .text {
    width: auto;
  }
}
.ganka .flex-box.circle-area {
  justify-content: space-around;
  width: 1000px;
  margin: 50px auto 30px;
}
@media screen and (max-width: 768px) {
  .ganka .flex-box.circle-area {
    width: auto;
  }
}
.ganka .flex-box.circle-area .circle-area_inner {
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ganka .flex-box.circle-area .circle-area_inner {
    padding: 10vw;
  }
}
.ganka .flex-box.circle-area .circle-area_inner::after {
  content: "";
  display: block;
  width: 445px;
  height: 445px;
  position: absolute;
  top: 0;
  left: -100px;
  background: #D1ECFF;
  z-index: -1;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .ganka .flex-box.circle-area .circle-area_inner::after {
    width: 90vw;
    height: 90vw;
    left: 0;
  }
}
.ganka .flex-box.circle-area .circle-area_inner h4 {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .ganka .flex-box.circle-area .circle-area_inner h4 {
    font-size: 5vw;
    text-align: center;
    margin-top: 5vw;
  }
}
.ganka .flex-box.circle-area .circle-area_inner ul {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .ganka .flex-box.circle-area .circle-area_inner ul {
    margin-top: 3vw;
  }
}
.ganka .flex-box.circle-area .circle-area_inner ul li {
  margin-left: 40px;
  list-style-type: disc;
}
@media screen and (max-width: 768px) {
  .ganka .flex-box.circle-area .circle-area_inner ul li {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  .ganka .flex-box.circle-area .circle-area_inner:last-child {
    margin-top: 8vw;
    margin-bottom: 16vw;
  }
  .ganka .flex-box.circle-area .circle-area_inner:last-child h4 {
    margin-top: 9vw;
  }
}

.taisho {
  max-width: 1200px;
  padding: 25px 50px;
  margin: 100px auto 20px;
  background: #D1ECFF;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .taisho {
    margin: 8vw auto 5vw;
    padding: 5vw;
  }
}
.taisho h3 {
  border: 0;
  color: #333;
  width: 550px;
  background: #fff;
  text-align: center;
  padding: 10px 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .taisho h3 {
    width: auto;
    font-size: 5vw;
  }
  .taisho h3 .sp-small {
    font-size: 4vw;
    display: block;
  }
}
.taisho ul {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .taisho ul {
    margin-top: 4vw;
  }
}
.taisho ul li {
  width: 22%;
  margin-right: 4%;
  line-height: 96px;
  text-align: center;
  background: #fff;
  position: relative;
  font-size: 20px;
  color: #066FB7;
  margin-bottom: 30px;
  padding-bottom: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .taisho ul li {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  .taisho ul li {
    width: 48%;
    margin-bottom: 4vw;
    padding-bottom: 6vw;
    line-height: 16vw;
    font-size: 3.8vw;
    font-weight: 500;
  }
  .taisho ul li:nth-child(2n) {
    margin-right: 0;
  }
}
.taisho ul li:nth-child(4n) {
  margin-right: 0;
}
.taisho ul li:last-child {
  margin-bottom: 0;
}
.taisho ul li span.under-text {
  position: absolute;
  line-height: 1;
  font-size: 14px;
  color: #000;
  background: #9BD6FF;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
}
@media screen and (max-width: 1100px) {
  .taisho ul li span.under-text {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 768px) {
  .taisho ul li span.under-text {
    font-size: 3vw;
    font-weight: normal;
  }
}
.taisho ul li.border__red {
  border: 2px solid #FF0000;
}
.taisho ul li a {
  text-decoration: none;
  display: block;
}
.taisho .txt__red {
  text-align: right;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .taisho .txt__red {
    font-size: 3.5vw;
    text-align: left;
    margin-left: 4vw;
    text-indent: -4vw;
    margin-top: 5vw;
  }
}

.shonika {
  max-width: 1200px;
  margin: 100px auto;
}
@media screen and (max-width: 1200px) {
  .shonika {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .shonika {
    padding: 0 5vw;
  }
}
.shonika figure.float-right {
  float: right;
  margin-left: 5%;
  max-width: 550px;
  width: 45%;
}
.shonika h3 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .shonika h3 {
    width: auto;
  }
}
.shonika h4 {
  margin: 40px 0 20px;
}
@media screen and (max-width: 768px) {
  .shonika h4 {
    font-size: 4vw;
  }
}
.shonika h5 {
  text-decoration: underline;
  font-weight: normal;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .shonika h5 {
    font-size: 4vw;
  }
}
.shonika .flex-box {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .shonika .flex-box {
    margin-top: 8vw;
    display: block;
  }
}
.shonika .flex-box .example {
  width: 49%;
  background: #D1ECFF;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .shonika .flex-box .example {
    width: auto;
  }
}
.shonika .flex-box .example h3 {
  width: auto;
  color: #333;
  border: 0;
  background: #fff;
  padding: 10px;
  font-weight: 300;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .shonika .flex-box .example h3 {
    margin-bottom: 5vw;
  }
}
.shonika .flex-box .example .example-block {
  width: 80%;
  margin: 0 auto 80px;
  background: #fff;
  padding: 5px 0;
  border-radius: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .shonika .flex-box .example .example-block {
    font-size: 4.5vw;
    border-radius: 5vw;
  }
  .shonika .flex-box .example .example-block .small-text {
    font-size: 3.5vw;
  }
}
.shonika .flex-box .example .example-block::before, .shonika .flex-box .example .example-block::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #066FB7;
  border-right: 2px solid #066FB7;
  transform: rotate(135deg);
  left: calc(50% - 5px);
  bottom: -60px;
}
.shonika .flex-box .example .example-block::before {
  width: 2px;
  height: 50px;
  background: #066FB7;
  border: 0;
  transform: rotate(0);
  left: 50%;
}
.shonika .flex-box .example .example-block.last {
  margin-bottom: 50px;
}
.shonika .flex-box .example .example-block.last::before, .shonika .flex-box .example .example-block.last::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .shonika .flex-box .example .example-block.last {
    margin-bottom: 5vw;
  }
}
.shonika .flex-box figure {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .shonika .flex-box figure {
    width: auto;
  }
}

.treatment {
  background: #EDFDF0;
  padding: 50px 0 150px;
}
@media screen and (max-width: 768px) {
  .treatment {
    padding: 5vw 0 10vw;
  }
}
.treatment .treatment-inner {
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .treatment .treatment-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .treatment .treatment-inner {
    padding: 0 5vw;
  }
}
.treatment .treatment-inner h2 {
  background: #D1ECFF;
  font-size: 20px;
  font-weight: normal;
  padding: 5px 30px;
  margin-bottom: 40px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .treatment .treatment-inner h2 {
    padding: 2vw 4vw;
    margin-bottom: 5vw;
  }
  .treatment .treatment-inner h2 .small-text {
    font-size: 3.5vw;
  }
}
.treatment .treatment-inner h3 {
  margin-bottom: 0;
  margin-top: 30px;
  font-size: 16px;
  padding-bottom: 0;
  border: 0;
}
@media screen and (max-width: 768px) {
  .treatment .treatment-inner h3 {
    margin-top: 5vw;
  }
}

@media screen and (max-width: 768px) {
  #treatment .inner-box figure {
    margin-top: 0;
  }
}
#treatment .inner-box h3 {
  border: 0;
  margin-bottom: 0;
  color: #333;
}

.home-medical-care_inner, .access_inner, .news_inner, .notice_inner, .items_inner {
  max-width: 920px;
  margin: 0 auto 80px;
  padding: 0 30px;
  box-sizing: border-box;
}
.home-medical-care_inner h2, .access_inner h2, .news_inner h2, .notice_inner h2, .items_inner h2 {
  margin-top: 100px;
  font-weight: normal;
}
.home-medical-care_inner .under-title, .access_inner .under-title, .news_inner .under-title, .notice_inner .under-title, .items_inner .under-title {
  text-align: center;
  margin-top: 50px;
}
.home-medical-care_inner figure.image, .access_inner figure.image, .news_inner figure.image, .notice_inner figure.image, .items_inner figure.image {
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .flex-box.info-wrap, .access_inner .flex-box.info-wrap, .news_inner .flex-box.info-wrap, .notice_inner .flex-box.info-wrap, .items_inner .flex-box.info-wrap {
    display: block;
  }
}
.home-medical-care_inner .flex-box.info-wrap .info-block, .access_inner .flex-box.info-wrap .info-block, .news_inner .flex-box.info-wrap .info-block, .notice_inner .flex-box.info-wrap .info-block, .items_inner .flex-box.info-wrap .info-block {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .flex-box.info-wrap .info-block, .access_inner .flex-box.info-wrap .info-block, .news_inner .flex-box.info-wrap .info-block, .notice_inner .flex-box.info-wrap .info-block, .items_inner .flex-box.info-wrap .info-block {
    width: auto;
    margin-bottom: 4vw;
  }
}
.home-medical-care_inner .tabs, .access_inner .tabs, .news_inner .tabs, .notice_inner .tabs, .items_inner .tabs {
  max-width: 777px;
  margin: 40px auto;
  overflow: hidden;
  padding-bottom: 0;
  width: 100%;
  /*タブのスタイル*/
  /*ラジオボタンを全て消す*/
  /*タブ切り替えの中身のスタイル*/
  /*選択されているタブのコンテンツのみを表示*/
  /*選択されているタブのスタイルを変える*/
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .tabs, .access_inner .tabs, .news_inner .tabs, .notice_inner .tabs, .items_inner .tabs {
    margin-top: 5vw;
  }
}
.home-medical-care_inner .tabs .tab_item, .access_inner .tabs .tab_item, .news_inner .tabs .tab_item, .notice_inner .tabs .tab_item, .items_inner .tabs .tab_item {
  width: 45%;
  float: left;
  transition: all 0.2s ease;
  text-align: center;
  background: #066FB7;
  color: #fff;
  font-weight: 400;
  padding: 5px 0;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .tabs .tab_item, .access_inner .tabs .tab_item, .news_inner .tabs .tab_item, .notice_inner .tabs .tab_item, .items_inner .tabs .tab_item {
    font-size: 5vw;
  }
}
.home-medical-care_inner .tabs .tab_item.nodisplay, .access_inner .tabs .tab_item.nodisplay, .news_inner .tabs .tab_item.nodisplay, .notice_inner .tabs .tab_item.nodisplay, .items_inner .tabs .tab_item.nodisplay {
  display: none;
}
.home-medical-care_inner .tabs .tab_item::after, .access_inner .tabs .tab_item::after, .news_inner .tabs .tab_item::after, .notice_inner .tabs .tab_item::after, .items_inner .tabs .tab_item::after {
  content: "";
  display: block;
  position: absolute;
  right: 118px;
  top: 16px;
  border-top: #fff 10px solid;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  transform: rotate(-90deg);
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .tabs .tab_item::after, .access_inner .tabs .tab_item::after, .news_inner .tabs .tab_item::after, .notice_inner .tabs .tab_item::after, .items_inner .tabs .tab_item::after {
    right: 2vw;
    top: 4.5vw;
  }
}
.home-medical-care_inner .tabs .tab_item:hover, .access_inner .tabs .tab_item:hover, .news_inner .tabs .tab_item:hover, .notice_inner .tabs .tab_item:hover, .items_inner .tabs .tab_item:hover {
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .tabs .tab_item:hover, .access_inner .tabs .tab_item:hover, .news_inner .tabs .tab_item:hover, .notice_inner .tabs .tab_item:hover, .items_inner .tabs .tab_item:hover {
    opacity: 1;
  }
}
.home-medical-care_inner .tabs .tab_content, .access_inner .tabs .tab_content, .news_inner .tabs .tab_content, .notice_inner .tabs .tab_content, .items_inner .tabs .tab_content {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .tabs .tab_content, .access_inner .tabs .tab_content, .news_inner .tabs .tab_content, .notice_inner .tabs .tab_content, .items_inner .tabs .tab_content {
    margin-top: 5vw;
  }
}
.home-medical-care_inner .tabs .tab_content .tab_content_description .flex-box, .access_inner .tabs .tab_content .tab_content_description .flex-box, .news_inner .tabs .tab_content .tab_content_description .flex-box, .notice_inner .tabs .tab_content .tab_content_description .flex-box, .items_inner .tabs .tab_content .tab_content_description .flex-box {
  position: relative;
}
.home-medical-care_inner .tabs .tab_content .tab_content_description .flex-box::after, .access_inner .tabs .tab_content .tab_content_description .flex-box::after, .news_inner .tabs .tab_content .tab_content_description .flex-box::after, .notice_inner .tabs .tab_content .tab_content_description .flex-box::after, .items_inner .tabs .tab_content .tab_content_description .flex-box::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  transform: rotate(135deg);
  right: calc(50% - 20px);
  bottom: -40px;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .tabs .tab_content .tab_content_description .flex-box::after, .access_inner .tabs .tab_content .tab_content_description .flex-box::after, .news_inner .tabs .tab_content .tab_content_description .flex-box::after, .notice_inner .tabs .tab_content .tab_content_description .flex-box::after, .items_inner .tabs .tab_content .tab_content_description .flex-box::after {
    width: 8vw;
    height: 8vw;
  }
}
.home-medical-care_inner .tabs .tab_content .tab_content_description .flex-box:last-child::after, .access_inner .tabs .tab_content .tab_content_description .flex-box:last-child::after, .news_inner .tabs .tab_content .tab_content_description .flex-box:last-child::after, .notice_inner .tabs .tab_content .tab_content_description .flex-box:last-child::after, .items_inner .tabs .tab_content .tab_content_description .flex-box:last-child::after {
  display: none;
}
.home-medical-care_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow, .access_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow, .news_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow, .notice_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow, .items_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow {
  margin-bottom: 40px;
}
.home-medical-care_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow::after, .access_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow::after, .news_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow::after, .notice_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow::after, .items_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow::after {
  display: none;
}
.home-medical-care_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow .text p, .access_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow .text p, .news_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow .text p, .notice_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow .text p, .items_inner .tabs .tab_content .tab_content_description .flex-box.no-arrow .text p {
  text-align: left;
}
.home-medical-care_inner .tabs .tab_content .shop, .access_inner .tabs .tab_content .shop, .news_inner .tabs .tab_content .shop, .notice_inner .tabs .tab_content .shop, .items_inner .tabs .tab_content .shop {
  text-align: center;
}
.home-medical-care_inner .tabs .tab_content .shop a, .access_inner .tabs .tab_content .shop a, .news_inner .tabs .tab_content .shop a, .notice_inner .tabs .tab_content .shop a, .items_inner .tabs .tab_content .shop a {
  color: #333;
  text-decoration: none;
}
.home-medical-care_inner .tabs .tab_content .att, .access_inner .tabs .tab_content .att, .news_inner .tabs .tab_content .att, .notice_inner .tabs .tab_content .att, .items_inner .tabs .tab_content .att {
  padding-bottom: 30px;
}
.home-medical-care_inner .tabs .tab_content .att ul li, .access_inner .tabs .tab_content .att ul li, .news_inner .tabs .tab_content .att ul li, .notice_inner .tabs .tab_content .att ul li, .items_inner .tabs .tab_content .att ul li {
  color: #FF0000;
  font-weight: bold;
  text-align: center;
}
.home-medical-care_inner .tabs .tab_content .att h4, .access_inner .tabs .tab_content .att h4, .news_inner .tabs .tab_content .att h4, .notice_inner .tabs .tab_content .att h4, .items_inner .tabs .tab_content .att h4 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.home-medical-care_inner .tabs .tab_content .att p, .access_inner .tabs .tab_content .att p, .news_inner .tabs .tab_content .att p, .notice_inner .tabs .tab_content .att p, .items_inner .tabs .tab_content .att p {
  text-align: center;
}
.home-medical-care_inner .tabs #entry .tab_content h3, .access_inner .tabs #entry .tab_content h3, .news_inner .tabs #entry .tab_content h3, .notice_inner .tabs #entry .tab_content h3, .items_inner .tabs #entry .tab_content h3 {
  background: transparent;
  font-size: 1.6rem;
}
.home-medical-care_inner .tabs label.tab_item, .access_inner .tabs label.tab_item, .news_inner .tabs label.tab_item, .notice_inner .tabs label.tab_item, .items_inner .tabs label.tab_item {
  display: block;
  margin: 0 2.5% 50px 2.5%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .tabs label.tab_item, .access_inner .tabs label.tab_item, .news_inner .tabs label.tab_item, .notice_inner .tabs label.tab_item, .items_inner .tabs label.tab_item {
    margin-bottom: 5vw;
  }
}
.home-medical-care_inner .tabs label.tab_item:hover, .access_inner .tabs label.tab_item:hover, .news_inner .tabs label.tab_item:hover, .notice_inner .tabs label.tab_item:hover, .items_inner .tabs label.tab_item:hover {
  text-decoration: underline;
}
.home-medical-care_inner .tabs input[name=tab_item2], .access_inner .tabs input[name=tab_item2], .news_inner .tabs input[name=tab_item2], .notice_inner .tabs input[name=tab_item2], .items_inner .tabs input[name=tab_item2] {
  display: none;
}
.home-medical-care_inner .tabs .tab_content, .access_inner .tabs .tab_content, .news_inner .tabs .tab_content, .notice_inner .tabs .tab_content, .items_inner .tabs .tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}
.home-medical-care_inner .tabs #tab_list01_2:checked ~ #tab_list01_content_2,
.home-medical-care_inner .tabs #tab_list02_2:checked ~ #tab_list02_content_2, .access_inner .tabs #tab_list01_2:checked ~ #tab_list01_content_2,
.access_inner .tabs #tab_list02_2:checked ~ #tab_list02_content_2, .news_inner .tabs #tab_list01_2:checked ~ #tab_list01_content_2,
.news_inner .tabs #tab_list02_2:checked ~ #tab_list02_content_2, .notice_inner .tabs #tab_list01_2:checked ~ #tab_list01_content_2,
.notice_inner .tabs #tab_list02_2:checked ~ #tab_list02_content_2, .items_inner .tabs #tab_list01_2:checked ~ #tab_list01_content_2,
.items_inner .tabs #tab_list02_2:checked ~ #tab_list02_content_2 {
  display: block;
}
.home-medical-care_inner .tabs input:checked + .tab_item, .access_inner .tabs input:checked + .tab_item, .news_inner .tabs input:checked + .tab_item, .notice_inner .tabs input:checked + .tab_item, .items_inner .tabs input:checked + .tab_item {
  background: #D1ECFF;
  color: #066FB7;
}
.home-medical-care_inner .tabs input:checked + .tab_item::after, .access_inner .tabs input:checked + .tab_item::after, .news_inner .tabs input:checked + .tab_item::after, .notice_inner .tabs input:checked + .tab_item::after, .items_inner .tabs input:checked + .tab_item::after {
  border-top: #066FB7 10px solid;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  transform: rotate(0);
}
.home-medical-care_inner .tabs .flex-box, .access_inner .tabs .flex-box, .news_inner .tabs .flex-box, .notice_inner .tabs .flex-box, .items_inner .tabs .flex-box {
  max-width: 625px;
  margin: 0 auto 80px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .tabs .flex-box:last-child, .access_inner .tabs .flex-box:last-child, .news_inner .tabs .flex-box:last-child, .notice_inner .tabs .flex-box:last-child, .items_inner .tabs .flex-box:last-child {
    margin-bottom: 0;
  }
}
.home-medical-care_inner .tabs .flex-box figure, .access_inner .tabs .flex-box figure, .news_inner .tabs .flex-box figure, .notice_inner .tabs .flex-box figure, .items_inner .tabs .flex-box figure {
  width: 167px;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .tabs .flex-box figure, .access_inner .tabs .flex-box figure, .news_inner .tabs .flex-box figure, .notice_inner .tabs .flex-box figure, .items_inner .tabs .flex-box figure {
    width: 25vw;
    overflow: hidden;
  }
  .home-medical-care_inner .tabs .flex-box figure img, .access_inner .tabs .flex-box figure img, .news_inner .tabs .flex-box figure img, .notice_inner .tabs .flex-box figure img, .items_inner .tabs .flex-box figure img {
    max-width: 140%;
  }
}
.home-medical-care_inner .tabs .flex-box .text, .access_inner .tabs .flex-box .text, .news_inner .tabs .flex-box .text, .notice_inner .tabs .flex-box .text, .items_inner .tabs .flex-box .text {
  width: calc(100% - 197px);
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .tabs .flex-box .text, .access_inner .tabs .flex-box .text, .news_inner .tabs .flex-box .text, .notice_inner .tabs .flex-box .text, .items_inner .tabs .flex-box .text {
    width: 90vw;
  }
}
.home-medical-care_inner .tabs .flex-box .text .title, .access_inner .tabs .flex-box .text .title, .news_inner .tabs .flex-box .text .title, .notice_inner .tabs .flex-box .text .title, .items_inner .tabs .flex-box .text .title {
  font-size: 20px;
  font-weight: bold;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .tabs .flex-box .text .title, .access_inner .tabs .flex-box .text .title, .news_inner .tabs .flex-box .text .title, .notice_inner .tabs .flex-box .text .title, .items_inner .tabs .flex-box .text .title {
    font-size: 5vw;
  }
}
.home-medical-care_inner .tabs .flex-box .text .title::before, .access_inner .tabs .flex-box .text .title::before, .news_inner .tabs .flex-box .text .title::before, .notice_inner .tabs .flex-box .text .title::before, .items_inner .tabs .flex-box .text .title::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 0;
  width: 25px;
  height: 1px;
  background: #000;
}
.home-medical-care_inner .tabs .flex-box .text p, .access_inner .tabs .flex-box .text p, .news_inner .tabs .flex-box .text p, .notice_inner .tabs .flex-box .text p, .items_inner .tabs .flex-box .text p {
  margin-top: 30px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .tabs .flex-box .text p, .access_inner .tabs .flex-box .text p, .news_inner .tabs .flex-box .text p, .notice_inner .tabs .flex-box .text p, .items_inner .tabs .flex-box .text p {
    font-size: 3.5vw;
    margin-top: 5vw;
  }
}
.home-medical-care_inner.mc .flex-box, .access_inner.mc .flex-box, .news_inner.mc .flex-box, .notice_inner.mc .flex-box, .items_inner.mc .flex-box {
  justify-content: center;
  width: auto;
  text-align: center;
}
.home-medical-care_inner.mc .flex-box .text .title, .access_inner.mc .flex-box .text .title, .news_inner.mc .flex-box .text .title, .notice_inner.mc .flex-box .text .title, .items_inner.mc .flex-box .text .title {
  padding-left: 0;
}
.home-medical-care_inner.mc .flex-box .text .title::before, .access_inner.mc .flex-box .text .title::before, .news_inner.mc .flex-box .text .title::before, .notice_inner.mc .flex-box .text .title::before, .items_inner.mc .flex-box .text .title::before {
  display: none;
}

@media screen and (max-width: 768px) {
  .news_inner {
    padding: 0 5vw;
  }
}
.news_inner ul li {
  position: relative;
  padding: 5px 0 5px 110px;
  border-bottom: 1px dotted #ccc;
}
@media screen and (max-width: 768px) {
  .news_inner ul li {
    padding-left: 24vw;
  }
}
.news_inner ul li a {
  text-decoration: none;
  color: #333;
}
.news_inner ul li a:hover {
  text-decoration: underline;
}
.news_inner ul li a .date {
  color: #555;
  display: inline-block;
  padding-right: 30px;
  position: absolute;
  left: 0;
}
.news_inner .day {
  color: #555;
  font-size: 14px;
  margin: 5px 0 20px;
}
.news_inner nav.paging {
  text-align: center;
  margin: 30px auto;
}
.news_inner nav.paging a, .news_inner nav.paging span {
  display: inline-block;
  padding: 0 5px;
  margin: 5px;
  width: 20px;
  line-height: 1.8rem;
  text-align: center;
  border-radius: 20px;
  background: #066FB7;
  color: #fff;
}
.news_inner nav.paging a {
  color: #066FB7;
  text-decoration: none;
  background: #fff;
  transition: box-shadow 0.2s;
  position: relative;
}
.news_inner nav.paging a:hover {
  color: #fff;
  background: #066FB7;
  opacity: 1;
}
.news_inner img {
  margin: 30px 0;
}
.news_inner .back-page {
  margin: 30px auto 40px;
}
.news_inner .back-page a {
  width: 150px;
  margin: auto;
  display: block;
  text-align: center;
  font-size: 16px;
  position: relative;
  color: #066FB7;
}
.news_inner .back-page a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  transform: rotate(45deg);
  border-bottom: 1px solid #066FB7;
  border-left: 1px solid #066FB7;
  width: 8px;
  height: 8px;
}

.items_inner {
  max-width: 960px;
}
.items_inner .flex-box {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .items_inner .flex-box {
    display: block;
  }
}
.items_inner .flex-box figure {
  width: 48%;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .items_inner .flex-box figure {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .items_inner .flex-box figure.image {
    margin-bottom: 5vw;
  }
}
.items_inner .flex-box figure.image img.vertical {
  width: 67%;
  margin: auto;
  display: block;
}
.items_inner .flex-box figure figcaption {
  text-align: center;
}
.items_inner .flex-box .text {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .items_inner .flex-box .text {
    width: auto;
    margin-bottom: 10vw;
  }
  .items_inner .flex-box .text h4 {
    font-size: 4vw;
  }
}
.items_inner p + .flex-box, .items_inner p + h4 {
  margin-top: 20px;
}

.home-medical-care_inner .flex-box.double {
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .flex-box.double {
    display: block;
  }
}
.home-medical-care_inner .flex-box.double .flex-inner {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .flex-box.double .flex-inner {
    width: auto;
  }
}
.home-medical-care_inner .flex-box.double .flex-inner .booking {
  align-items: center;
  justify-content: space-between;
  line-height: 1.4;
}
.home-medical-care_inner .flex-box.double .flex-inner .image {
  margin: 20px auto;
}
.home-medical-care_inner .flex-box.double .flex-inner .tel-no {
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.1em;
  padding-left: 70px;
  color: #000;
  background: url(../img/tel_black.png) no-repeat left top/contain;
}
@media screen and (max-width: 768px) {
  .home-medical-care_inner .flex-box.double .flex-inner .tel-no {
    font-size: 5vw;
    padding-left: 11vw;
  }
}
.home-medical-care_inner .flex-box.double .flex-inner .uketsuke {
  margin-top: 30px;
  margin-left: 80px;
  text-indent: -80px;
}
.home-medical-care_inner .flex-box.double .flex-inner .map {
  width: 70%;
  margin: 0 auto 20px;
}
.home-medical-care_inner p + h3 {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .access_inner {
    padding: 0 5vw;
  }
}
.access_inner iframe {
  width: 100%;
  margin: 30px auto 50px;
}
@media screen and (max-width: 768px) {
  .access_inner .flex-box {
    display: block;
  }
}
.access_inner .mejirushi {
  margin: 30px auto;
}
@media screen and (max-width: 768px) {
  .access_inner .mejirushi {
    margin-top: 0;
  }
}
.access_inner .mejirushi figure {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .access_inner .mejirushi figure {
    width: auto;
  }
}
.access_inner figcaption {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .access_inner figcaption {
    text-align: left;
  }
}
.access_inner .uketsuke-time {
  margin-top: 10px;
  font-size: 14px;
}

.notice_inner.mc h2 {
  font-weight: bold;
  margin-bottom: 50px;
}
.notice_inner figure.img-megane {
  max-width: 500px;
  width: 90%;
  margin: auto;
}

.history .history-inner {
  max-width: 830px;
  margin: 50px auto 100px;
}
@media screen and (max-width: 768px) {
  .history .history-inner {
    margin-top: 8vw;
    margin-bottom: 40px;
    width: 90vw;
  }
}
.history .history-inner dl {
  position: relative;
  padding-bottom: 40px;
  clear: both;
  overflow: hidden;
}
.history .history-inner dl::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 32px;
  height: 100%;
  width: 1px;
  z-index: -1;
  background: #555;
}
@media screen and (max-width: 768px) {
  .history .history-inner dl::before {
    left: 30px;
  }
}
.history .history-inner dl dt {
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  font-weight: 300;
  line-height: 4rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .history .history-inner dl dt {
    font-size: 7vw;
    width: 20vw;
    line-height: 10vw;
    top: 3vw;
  }
}
.history .history-inner dl dd {
  width: calc(100% - 210px);
  margin-left: 210px;
  text-indent: -45px;
  padding-top: 8px;
  padding-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .history .history-inner dl dd {
    margin-left: 20vw;
    width: 65vw;
    padding-top: 4vw;
    text-indent: 0;
    font-size: 4vw;
  }
}
.history .history-inner dl dd div.topic {
  background: #eee;
  margin-top: 10px;
  padding: 10px 15px;
  text-indent: 0;
  width: calc(100% - 300px);
  font-size: 0.9rem;
}
@media screen and (max-width: 768px) {
  .history .history-inner dl dd div.topic {
    width: auto;
  }
}
.history .history-inner dl dd span.month {
  display: inline-block;
  width: 45px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .history .history-inner dl dd span.month {
    display: block;
    width: auto;
    text-align: left;
  }
}
.history .history-inner dl dd figure {
  width: 220px;
  float: right;
}
@media screen and (max-width: 768px) {
  .history .history-inner dl dd figure {
    float: none;
  }
}
.history .sendai {
  max-width: 650px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .history .sendai {
    width: 90%;
    display: block;
    position: relative;
  }
}
.history .sendai figure {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .history .sendai figure {
    width: 25vw;
  }
}
.history .sendai .text {
  padding: 0 40px;
  width: calc(100% - 300px);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .history .sendai .text {
    width: auto;
    padding: 0;
    position: absolute;
    top: 0;
    left: 29vw;
  }
}/*# sourceMappingURL=style.css.map */