@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
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;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin: 0 !important;
}

body {
  position: relative;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  color: #111;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
  overflow-x: hidden;
  /*ハンバーガー用*/
  animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
}

/*プランカラー*/
.orange {
  color: #ef801c;
}

.bold {
  font-weight: 700;
}

.mainColor {
  color: #6E81BF;
}

small {
  font-size: 15px;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5;
  display: inline-block;
  margin: 5px 0 0;
}
small:before {
  content: "※";
  color: red;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

* {
  box-sizing: border-box;
}

p a, li a, dl a {
  color: #000;
  text-decoration: none;
}
p a:hover, li a:hover, dl a:hover {
  transition: all 0.3s ease 0s;
}

ul li {
  list-style: none;
  text-align: left;
}

/* 点滅 */
.blink {
  animation: blinking 0.9s ease-in-out infinite alternate;
}

@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
sup {
  font-size: 70%;
  vertical-align: top;
  position: relative;
  top: -0.5em;
  font-weight: bold;
  color: #ef801c;
}

a.outLink:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  line-height: 1;
  margin: 0 0 0 7px;
  font-weight: bold;
}

/* -----------------------------------------------------------
mixin
----------------------------------------------------------- */
/* flexベンダープレフィックス */
/* プレフィックス */
/* インデント　*/
/* チェックボックス　*/
/* チェックボックス　*/
/* -----------------------------------------------------------
（PC表示）ボタン（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .btn a {
    display: inline-block;
    margin: 0 10px 50px;
    padding: 15px 80px 15px 60px;
    color: #fff;
    position: relative;
    text-align: center;
    font-size: 17px;
    background: #6E81BF;
    font-weight: 500;
    /* eachが使える */
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none !important;
  }
  .btn a:after {
    content: "";
    display: inline-block;
    width: 21px;
    height: 21px;
    background-image: url("../images/arrow_btn.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .btn a:hover {
    transition: all 0.3s ease 0s;
  }
  .btn a:hover:after {
    right: 28px;
  }
}
/* -----------------------------------------------------------
（SP表示）ボタン（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .btn a {
    display: inline-block;
    background: #6E81BF;
    color: #fff;
    text-decoration: none;
    padding: 10px 60px 10px 40px;
    position: relative;
    font-weight: bold;
    /* eachが使える */
    border-radius: 50px;
    text-decoration: none !important;
  }
  .btn a:after {
    content: "";
    display: inline-block;
    width: 21px;
    height: 21px;
    background-image: url("../images/arrow_btn.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .btn a:hover {
    transition: all 0.3s ease 0s;
    background-color: rgb(245.8818181818, 248.0272727273, 252.3181818182);
  }
  .btn a:hover:after {
    content: "→";
    right: 20px;
  }
}
/* -----------------------------------------------------------
リスト
----------------------------------------------------------- */
.list_none {
  height: auto;
  margin: 0 0 20px;
}
.list_none li {
  margin: 0 0 10px;
  line-height: 22px;
  list-style: none;
  font-size: 18px;
}
.list_none li:last-of-type {
  margin: 0;
}
.list_none li span {
  font-weight: bold;
}

/* ・（中黑）リスト */
.list_disc {
  margin: 0 0 20px;
  padding-left: 25px;
}
.list_disc li {
  list-style: disc;
  margin: 0 0 10px 0;
  line-height: 150%;
  font-size: 18px;
}
.list_disc li:last-of-type {
  margin: 0;
}
.list_disc li span {
  font-weight: bold;
}

/* 1.2.3.（数字） リスト */
.list_number {
  margin: 0 0 20px;
  padding-left: 25px;
}
.list_number li {
  list-style: decimal;
  margin: 0 0 10px;
  line-height: 150%;
  font-size: 18px;
}
.list_number li:last-of-type {
  margin: 0;
}

/* ✓（チェックマーク）リスト */
.list_check li {
  margin: 0 0 20px 0;
  padding-left: 30px;
  font-size: 18px;
}
.list_check li span {
  font-weight: bold;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c8";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  margin-right: 15px;
  margin-left: -30px;
  color: #000;
}

/* ※マークリスト */
.list_kome {
  margin: 0 0 30px;
}
.list_kome li {
  margin: 0 0 10px 0;
  padding-left: 1em;
  font-size: 18px;
}
.list_kome li span {
  font-weight: bold;
}
.list_kome li:before {
  content: "※";
  font-weight: bold;
  line-height: 1;
  margin-right: 5px;
  margin-left: -1em;
}

/* -----------------------------------------------------------
（PC表示）ハンバーガーメニューボタン（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  /*pcは無し*/
}
/* -----------------------------------------------------------
（SP表示）ハンバーガーメニューボタン（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #overlay-button {
    position: fixed;
    right: 0;
    top: 0;
    padding: 23px 10px 25px;
    z-index: 5;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    background: #6E81BF;
    border-radius: 0 0 0 6px;
    /*&:after {
    	content: "MENU";
    	color: #fff;
    	position: absolute;
    	bottom: 10px;
    	margin: auto;
    	left: 0;
    	right: 0;
    	text-align: center;
    	font-weight: 600;
    }*/
  }
  #overlay-button span {
    height: 3px;
    width: 35px;
    border-radius: 2px;
    background-color: #fff;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
  }
  #overlay-button span:before {
    top: -12px;
    visibility: visible;
  }
  #overlay-button span:after {
    top: 12px;
  }
  #overlay-button span:before, #overlay-button span:after {
    height: 3px;
    width: 35px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
  }
  #overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    color: #fff;
  }
  input[type=checkbox] {
    display: none;
  }
  input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
  }
  input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
  }
  input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(10px, 9px);
  }
  /*input[type=checkbox]:checked ~ #overlay-button:after {
  	content: "CLOSE";
  	color: $maincolor;feature
  	position: absolute;
  	bottom: 10px;
  }*/
  input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  #overlay-input:checked ~ #overlay {
    visibility: visible;
    opacity: 1;
    pointer-events: auto; /* ←クリック可能に戻す */
  }
  #access #overlay #overlay_access dd {
    display: none;
  }
  #overlay {
    width: 100%;
    height: 100vh;
    background: #f2f2f2;
    z-index: 3;
    visibility: hidden;
    position: fixed;
    padding: 0 0 140px;
    box-sizing: border-box;
    text-align: center;
    overflow: auto;
  }
  #overlay .overlay_head {
    height: 70px;
    margin: 0 0 20px;
    padding: 7px 10px 0;
  }
  #overlay .overlay_head .logo {
    margin: 0;
    width: 280px;
    line-height: 1;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  #overlay .overlay_head .logo {
    width: 72vw;
  }
}
@media screen and (max-width: 999px) {
  #overlay .overlay_head .logo img {
    width: 100%;
    height: auto;
  }
  #overlay .overlay_head dl {
    display: none;
  }
  #overlay .overlay_head p {
    font-size: 3vw;
    color: #6E81BF;
    font-weight: 500;
    text-align: left;
    margin: 1px 0 0 15px;
  }
  #overlay .overlay_head p span {
    font-size: 4vw;
    font-weight: 500;
  }
  #overlay .overlay_head p span:nth-of-type(1) {
    margin-right: -5px;
  }
  #overlay .overlay_head p span:nth-of-type(2) {
    margin: 0 0 0 -10px;
  }
  #overlay .overlay_head p span:nth-of-type(3) {
    margin-left: 2px;
  }
  #overlay .overlayArea .overlay_inner {
    width: 90%;
    height: auto;
    margin: 0 auto 30px;
    box-sizing: border-box;
    background: #fff;
    border: double 3px #ccc;
  }
  #overlay .overlayArea .overlay_inner .overlayBox {
    text-align: left;
  }
  #overlay .overlayArea .overlay_inner .overlayBox:last-of-type dt {
    border-bottom: none;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt {
    cursor: pointer;
    padding: 15px;
    background: #f6f6f6;
    border-bottom: dashed 1px rgb(220.5, 220.5, 220.5);
    color: #5C4843;
    font-weight: 500;
    position: relative;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt:last-of-type {
    border-bottom: none;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    line-height: 1;
    margin: auto;
    color: red;
    position: absolute;
    height: 5px;
    right: 15px;
    top: 0;
    bottom: 0;
    font-weight: bold;
    color: #6E81BF;
    transform: translateY(-5px);
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt a {
    display: block;
    color: #5C4843;
    position: relative;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt label {
    display: block;
    width: 100%;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dd {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dd a {
    padding: 10px 15px;
    display: block;
    color: #333;
    font-weight: 500;
    border-bottom: dashed 1px rgb(220.5, 220.5, 220.5);
    font-size: 16px;
    color: #5C4843;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dd a span {
    font-size: 14px;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dd a:before {
    content: "┗";
    font-weight: bold;
    color: #ccc;
    margin-right: 10px;
  }
  #overlay .overlayArea .overlay_inner .overlayBox input:checked + dt:after {
    transform: translateX(5px) rotate(90deg);
  }
  #overlay .overlayArea .overlay_inner .overlayBox input:checked ~ dd {
    max-height: 300px;
  }
}
/* -----------------------------------------------------------
（PC表示）ヘッダー（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  header {
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 2;
  }
  header .header {
    position: relative;
  }
  header .header_inner {
    display: flex;
    justify-content: space-between;
    margin: 0 0 20px;
    align-items: flex-start;
  }
  header .header_inner h1.logo {
    width: 597px;
    height: 94px;
  }
}
@media print and (min-width: 1201px) and (max-width: 1400px), screen and (min-width: 1000px) and (min-width: 1201px) and (max-width: 1400px) {
  header .header_inner h1.logo {
    width: 500px;
    height: auto;
  }
  header .header_inner h1.logo img {
    width: 100%;
    height: auto;
  }
}
@media print and (min-width: 1101px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1101px) and (max-width: 1200px) {
  header .header_inner h1.logo {
    width: 450px;
    height: auto;
  }
  header .header_inner h1.logo img {
    width: 100%;
    height: auto;
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  header .header_inner h1.logo {
    width: 400px;
    height: auto;
  }
}
@media print, screen and (min-width: 1000px) {
  header .header_inner h1.logo img {
    width: 100%;
    height: auto;
  }
  header .header_inner .right {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  header .header_inner .right dl {
    position: relative;
    padding: 0 0 0 50px;
    text-align: center;
    align-items: center;
    font-size: 50px;
  }
}
@media print and (min-width: 1101px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1101px) and (max-width: 1300px) {
  header .header_inner .right dl {
    padding: 0 0 0 45px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  header .header_inner .right dl {
    padding: 0 0 0 40px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .header_inner .right dl:before {
    content: "";
    display: block;
    width: 36px;
    height: 58px;
    background-image: url(../images/icon_header_phone.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 6px;
    margin: auto;
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  header .header_inner .right dl:before {
    width: 30px;
    height: 48px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .header_inner .right dl dt {
    font-size: 17px;
    font-weight: bold;
    color: #5C4843;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  header .header_inner .right dl dt {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .header_inner .right dl dd:nth-of-type(1) {
    color: #6E81BF;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 0.8;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  header .header_inner .right dl dd:nth-of-type(1) {
    font-size: 36px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .header_inner .right dl dd:nth-of-type(2) {
    font-size: 14px;
    text-decoration: underline;
    display: block;
    line-height: 20px;
    margin: 11px 0 0;
  }
  header .header_inner .right dl dd:nth-of-type(2) a {
    color: #5C4843;
    font-weight: 600;
  }
  header .header_inner .right ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 0 20px;
    width: 250px;
  }
}
@media print and (min-width: 1101px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1101px) and (max-width: 1200px) {
  header .header_inner .right ul {
    width: 230px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  header .header_inner .right ul {
    width: 200px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .header_inner .right ul li {
    width: calc((100% - 10px) / 2);
    line-height: 1.4;
  }
  header .header_inner .right ul li.webR a {
    background: #6E81BF;
  }
  header .header_inner .right ul li.webR a span {
    display: block;
    margin: 3px 0 0;
    font-size: 15px;
    line-height: 1.2;
  }
  header .header_inner .right ul li.webR a:before {
    width: 28px;
    height: 28px;
    background-image: url("../images/icon_header_web.png");
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  header .header_inner .right ul li.webR a:before {
    width: 28px;
    height: 28px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .header_inner .right ul li.webR a:hover {
    background: rgb(99.3851674641, 119.776076555, 186.3148325359);
  }
  header .header_inner .right ul li.lineR a {
    background: #71BF6E;
  }
  header .header_inner .right ul li.lineR a:before {
    width: 28px;
    height: 28px;
    background-image: url("../images/icon_header_line.png");
  }
  header .header_inner .right ul li.lineR a:hover {
    background: rgb(102.604784689, 186.3148325359, 99.3851674641);
  }
  header .header_inner .right ul li.medicalQuestionnaire {
    width: 100%;
  }
  header .header_inner .right ul li.medicalQuestionnaire a {
    width: 100%;
    height: 30px;
    color: #5C4843;
    padding: 0;
    margin: 5px 0 0;
    text-decoration: underline;
    font-size: 16px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  header .header_inner .right ul li.medicalQuestionnaire a {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .header_inner .right ul li.medicalQuestionnaire a:hover {
    color: rgb(77.2452830189, 60.4528301887, 56.2547169811);
  }
  header .header_inner .right ul li.medicalQuestionnaire a:before {
    width: 16px;
    height: 16px;
    background-image: url("../images/icon_header_medicalQuestionnaire.png");
    position: static;
    transform: translateY(-2px);
    margin-right: 7px;
  }
  header .header_inner .right ul li.medicalQuestionnaire a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    line-height: 1;
    margin: 0 0 0 5px;
    position: static;
    font-weight: bold;
    transform: translateY(-6px);
  }
  header .header_inner .right ul li a {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    display: block;
    height: 70px;
    color: #fff;
    padding: 5px 0 0;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
  }
}
@media print and (min-width: 1101px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1101px) and (max-width: 1300px) {
  header .header_inner .right ul li a {
    font-size: 18px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  header .header_inner .right ul li a {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .header_inner .right ul li a:before {
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
    bottom: 8px;
    left: 0;
    right: 0;
    margin: auto;
  }
  header .header_inner .right ul li a:hover:before {
    bottom: 9px;
  }
  header .header_inner .right ul li a:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-image: url("../images/header_after.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 7px;
    bottom: 7px;
  }
  header .main_nav_pc {
    margin: 0 0 20px;
    text-align: right;
    width: 100%;
  }
  header .main_nav_pc nav {
    text-align: right;
  }
  header .main_nav_pc #nav ul {
    overflow: hidden;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  header .main_nav_pc #nav ul li:last-of-type a {
    margin: 0;
  }
  header .main_nav_pc #nav ul li a {
    position: relative;
    display: block;
    margin: 0 20px 0 0;
    padding: 10px 25px;
    font-size: 18px;
    color: #5C4843;
    background-repeat: no-repeat;
    background-position: top 50px center;
    font-weight: 500;
    background: #EEF2FA;
    /* eachが使える */
    border-radius: 50px;
    font-weight: bold;
  }
}
@media print and (min-width: 1201px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1201px) and (max-width: 1300px) {
  header .main_nav_pc #nav ul li a {
    font-size: 18px;
    margin: 0 10px 0 0;
    padding: 10px 20px;
  }
}
@media print and (min-width: 1151px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1151px) and (max-width: 1200px) {
  header .main_nav_pc #nav ul li a {
    font-size: 18px;
    margin: 0 10px 0 0;
    padding: 10px 15px;
  }
}
@media print and (min-width: 1051px) and (max-width: 1150px), screen and (min-width: 1000px) and (min-width: 1051px) and (max-width: 1150px) {
  header .main_nav_pc #nav ul li a {
    font-size: 16px;
    margin: 0 10px 0 0;
    padding: 10px 15px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1050px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1050px) {
  header .main_nav_pc #nav ul li a {
    font-size: 15px;
    margin: 0 10px 0 0;
    padding: 10px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .main_nav_pc #nav ul li a:hover {
    filter: brightness(102%);
  }
  header .main_nav_pc #nav ul li a i {
    margin: 0 0 0 10px;
    font-size: 13px;
  }
  header .main_nav_pc #nav ul li ul {
    display: none;
    position: absolute;
    z-index: 3;
    margin: auto;
    padding: 0;
    transform: translateY(10px);
  }
  header .main_nav_pc #nav ul li ul li {
    background-image: none !important;
    padding: 0;
  }
  header .main_nav_pc #nav ul li ul li:first-of-type a {
    border-radius: 10px 10px 0 0;
  }
  header .main_nav_pc #nav ul li ul li:last-of-type a {
    border-radius: 0 0 10px 10px;
  }
  header .main_nav_pc #nav ul li ul li a {
    padding: 15px;
    font-size: 17px;
    margin: 0;
    text-align: center;
    color: #5C4843;
    background: #EEF2FA;
    border-bottom: dashed 1px white;
    /* eachが使える */
    border-radius: 0;
  }
  header .main_nav_pc #nav ul li ul li a span {
    font-size: 14px;
  }
  header .main_nav_pc #nav ul li ul li a:after {
    content: none;
  }
  header .main_nav_pc #nav ul li ul li a:hover {
    filter: brightness(102%);
  }
  header .main_nav_pc #nav ul li ul li:last-child a {
    border-bottom: none;
  }
  header .main_nav_pc #nav ul li:nth-of-type(2) ul {
    transform: translateX(0) translateY(10px);
    width: 180px;
  }
  header .main_nav_pc #nav ul li:nth-of-type(3) ul {
    transform: translateX(9px) translateY(10px);
    width: 220px;
  }
  header .main_nav_pc #nav ul li:nth-of-type(4) ul {
    transform: translateX(-28px) translateY(10px);
    width: 200px;
  }
  header .main_nav_pc #nav ul li:nth-of-type(5) ul {
    transform: translateX(-25px) translateY(10px);
    width: 320px;
  }
  header .main_nav_pc #nav ul li:nth-of-type(5) ul li a {
    padding: 15px 20px 15px 10px;
  }
  header .main_nav_pc #nav ul li:nth-of-type(6) ul {
    transform: translateX(-40px) translateY(10px);
    width: 230px;
  }
  section {
    height: auto;
    margin: 0 auto;
  }
}
/* -----------------------------------------------------------
（SP表示）ヘッダー（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  header {
    margin: 0;
  }
  header .header {
    position: fixed;
    width: 100%;
    z-index: 2;
  }
  header .logo {
    margin: 0;
    width: 100%;
    line-height: 1;
    padding: 7px 0 0 10px;
    background: #fff;
  }
  header .logo img {
    width: 280px;
    height: auto;
    margin: 0 0 5px;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  header .logo img {
    width: 72vw;
  }
}
@media screen and (max-width: 999px) {
  header .logo h2 {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 0 5px;
  }
  header .right {
    position: fixed;
    bottom: 0;
    z-index: 2;
    width: 100%;
  }
  header .right ul {
    display: none;
  }
  header .main_nav_pc {
    display: none;
  }
}
/* スクロール
----------------------------------------*/
/*スクロールバーの横幅指定*/
.deco::-webkit-scrollbar {
  width: 7px;
}

/*スクロールバーの背景色・角丸指定*/
.deco::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #fafafa;
}

/*スクロールバーの色・角丸指定*/
.deco::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #ddd;
}

/* -----------------------------------------------------------
（PC表示）MV（トップページのみ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .mv {
    padding: 216px 0 0;
  }
  .mv .copy {
    position: absolute;
    left: 0;
    bottom: -15px;
    background: #fff;
    font-size: 24px;
    padding: 20px 130px 20px 30px;
    line-height: 1.4;
    border-radius: 0 20px 0 0;
    color: #5a3825;
    font-weight: 500;
    letter-spacing: 0.03em;
    z-index: 2;
  }
  .mv .copy:after {
    content: "";
    display: inline-block;
    width: 81px;
    height: 167px;
    background-image: url(../images/mv_copy_family.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 30px;
    bottom: 15px;
  }
  .mv .openDate {
    position: absolute;
    background: #E1EAF8;
    right: 40px;
    bottom: 20px;
    display: block;
    width: 340px;
    height: auto;
    /* eachが使える */
    border-radius: 10px;
    text-align: left;
    padding: 10px 10px 20px;
    z-index: 2;
  }
  .mv .openDate p {
    color: #5C4843;
    font-family: "Zen Maru Gothic";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.9px;
    text-align: center;
  }
  .mv .openDate .mon {
    background: #6E81BF;
    color: #fff;
    width: 30px;
    height: 30px;
    display: inline-block;
    /* eachが使える */
    border-radius: 50%;
    text-align: center;
    margin: 0 5px;
    padding: 1px 0 0 2px;
    font-size: 20px;
    transform: translateY(-6px);
  }
  .mv .openDate .color {
    color: #6E81BF;
    font-family: "Zen Maru Gothic";
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 1.8px;
    display: inline-block;
    margin: 0 5px;
  }
  .mv .openDate .color2 {
    color: #6E81BF;
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 1.2px;
    display: inline-block;
    text-indent: -0.3em;
  }
  .mv .openDate .boldTxt {
    color: #5C4843;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px; /* 145.833% */
    letter-spacing: 1.2px;
  }
  .mv .openDate ul {
    display: flex;
    justify-content: center;
  }
  .mv .openDate ul li {
    background: #6E81BF;
    padding: 5px 10px;
    font-size: 18px;
    color: #fff;
    margin: 10px 5px 0;
    font-weight: 500;
  }
  .mv .openDate .nairankai {
    background: #6EA5BF;
    color: #fff;
    width: 123px;
    height: 123px;
    /* eachが使える */
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: -50px;
    padding: 20px 0 0;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
  }
  .mv .openDate .nairankai .kai {
    font-size: 20px;
  }
  .mv .openDate .nairankai .nichiji {
    display: block;
    margin: 0;
    padding: 0;
    text-indent: 0.3em;
    font-size: 22px;
  }
  .mv .openDate .nairankai .sat {
    color: #6EA5BF;
    background: #fff;
    width: 20px;
    height: 20px;
    display: inline-block;
    /* eachが使える */
    border-radius: 50%;
    text-align: center;
    margin: 2px 5px 0;
    padding: 1px 0 0 0;
    font-size: 12px;
    text-indent: 0;
    transform: translateY(-2px);
  }
  .mv .openDate .nairankai .time {
    font-size: 15px;
  }
  .swiper {
    margin: 0 0 20px;
  }
  .swiper .swiper-wrapper {
    transition-timing-function: linear;
  }
  .swiper .swiper-slide {
    width: auto;
    height: calc(100vh - 240px);
    margin-right: 20px !important;
  }
  .swiper .swiper-slide img {
    width: auto;
    height: 100%;
    /* eachが使える */
    border-radius: 15px;
  }
}
/* -----------------------------------------------------------
（SP表示）MV（トップページのみ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .swiper {
    margin: 0 0 18px;
    padding-top: 65px !important;
  }
  .swiper .copy {
    position: absolute;
    left: 0;
    bottom: -1px;
    background: #fff;
    font-size: 16px;
    padding: 13px 90px 0 15px;
    line-height: 1.4;
    border-radius: 0 20px 0 0;
    color: #5a3825;
    font-weight: 500;
    letter-spacing: 0.03em;
    z-index: 2;
  }
  .swiper .copy:after {
    content: "";
    display: inline-block;
    width: 65px;
    height: 134px;
    background-image: url(../images/mv_copy_family.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 15px;
    bottom: 0;
  }
  .swiper .swiper-wrapper {
    transition-timing-function: linear;
  }
  .swiper .swiper-slide {
    width: auto;
    height: 450px;
    margin-right: 20px !important;
  }
  .swiper .swiper-slide img {
    width: auto;
    height: 100%;
    /* eachが使える */
    border-radius: 15px;
  }
}
/* -----------------------------------------------------------
（PC表示）お知らせ（トップページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .info {
    margin: 0 auto;
    padding: 100px 0;
    background: #F4F7FC;
    width: 100%;
  }
  .info .info_inner {
    max-width: 1240px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
  }
  .info .info_left {
    text-align: center;
    width: 380px;
    margin: 0 20px 50px 0;
  }
  .info .info_left h3 {
    color: #333;
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 30px;
  }
  .info .info_left h3:before {
    content: "INFORMATION";
    display: block;
    color: #6E81BF;
    margin: 0 0 10px;
    position: relative;
    font-weight: 500;
    text-align: center;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
  }
  .info .info_left p a {
    text-decoration: none;
    background: rgb(252.45, 252.45, 252.45);
    margin: 0 auto;
    padding: 10px 50px 10px 30px;
    /* eachが使える */
    border-radius: 50px;
    position: relative;
    display: table;
  }
  .info .info_left p a:hover {
    background: #fff;
  }
  .info .info_left p a:after {
    content: "→";
    height: 10px;
    margin: auto;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 10px;
  }
  .info .info_left p a:hover:after {
    right: 18px;
    color: #6E81BF;
  }
  .info .info_right {
    width: calc(100% - 400px);
  }
  .info .info_right .info_box {
    width: 100%;
    max-height: 280px;
    overflow: auto;
    margin: 0 0 50px;
    padding: 5px 0 0;
    background: rgb(252.45, 252.45, 252.45);
    /* eachが使える */
    border-radius: 10px;
  }
  .info .info_right .info_box a {
    display: block;
    color: #5C4843;
    border-bottom: dashed 1px rgb(236.7, 242.8, 255);
  }
  .info .info_right .info_box a:last-of-type {
    border-bottom: none;
  }
  .info .info_right .info_box a:hover {
    background: white;
  }
  .info .info_right .info_box a:hover dl:after {
    transform: translateX(2px);
    color: #6E81BF;
  }
  .info .info_right .info_box a dl {
    display: flex;
    padding: 20px 5px 20px 30px;
    align-items: center;
  }
  .info .info_right .info_box a dl dt:nth-of-type(1) {
    color: #5C4843;
    display: inline-block;
    margin: 0 20px 0 0;
    width: 100px;
    text-align: center;
  }
  .info .info_right .info_box a dl dt:nth-of-type(2) {
    color: #fff;
    display: block;
    margin: 0 20px 0 0;
    padding: 5px 0;
    width: 135px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    /* eachが使える */
    border-radius: 6px;
  }
  .info .info_right .info_box a dl dt:nth-of-type(2).notice_label {
    background: #6E81BF;
  }
  .info .info_right .info_box a dl dt:nth-of-type(2).blog_label {
    background: #6EA5BF;
  }
  .info .info_right .info_box a dl dd {
    font-weight: 400;
    width: calc(100% - 235px);
    letter-spacing: 0.1em;
    padding: 0 15px 0 0;
    font-weight: 500;
    line-height: 1.4;
    color: #5C4843;
  }
  .info .info_right .info_box a dl:after {
    content: "→";
    margin: 2px 20px 0 0;
  }
  .info .info_right .info_box a dl:after:hover {
    color: #6E81BF;
  }
  .info ul.btnFlex {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
  }
  .info ul.btnFlex li {
    text-align: center;
  }
  .info ul.btnFlex li:nth-of-type(1) a {
    background: #6E81BF;
  }
  .info ul.btnFlex li:nth-of-type(1) a:hover {
    background: rgb(99.3851674641, 119.776076555, 186.3148325359);
  }
  .info ul.btnFlex li:nth-of-type(2) a {
    background: #6EA5BF;
  }
  .info ul.btnFlex li:nth-of-type(2) a:hover {
    background: rgb(99.3851674641, 158.4114832536, 186.3148325359);
  }
  .info ul.btnFlex li a {
    display: inline-block;
    margin: 0 18px 50px;
    padding: 15px 30px 15px 0;
    color: #fff;
    position: relative;
    text-align: center;
    font-size: 17px;
    background: #FAFAFA;
    font-weight: 500;
    /* eachが使える */
    border-radius: 60px;
    width: 250px;
  }
  .info ul.btnFlex li a:after {
    content: "";
    display: inline-block;
    width: 21px;
    height: 21px;
    background-image: url("../images/arrow_btn.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .info ul.btnFlex li a:hover {
    transition: all 0.3s ease 0s;
  }
  .info ul.btnFlex li a:hover:after {
    right: 28px;
  }
  .info .mask {
    border: dashed 1px #6E81BF;
    margin: 0 0 50px;
    padding: 30px 30px 30px 220px;
    color: #6E81BF;
    display: flex;
    /* eachが使える */
    border-radius: 6px;
    text-align: left;
    position: relative;
    width: 100%;
    background: #FCFDFF;
    overflow: visible;
  }
  .info .mask h3 {
    font-size: 30px;
  }
  .info .mask:before {
    content: "";
    display: inline-block;
    width: 217px;
    height: 243px;
    margin: 0;
    background-image: url(../images/mask.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: absolute;
    left: -20px;
    bottom: 0;
  }
  .info .mask h4 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 500;
  }
  .info .mask p {
    font-weight: 400;
    font-size: 17px;
    color: #333;
    line-height: 30px;
    font-weight: 400;
  }
}
@media print and (min-width: 1000px) and (max-width: 1220px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1220px) {
  .info .mask p {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1000px) {
  .info .bnrFlex {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .info .bnrFlex li {
    width: calc((100% - 40px) / 2);
  }
  .info .bnrFlex li a:hover {
    opacity: 0.9;
  }
  .info .bnrFlex li a img {
    width: 100%;
    height: auto;
  }
}
/* -----------------------------------------------------------
（SP表示）お知らせ（トップページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .info {
    margin: 0 auto;
    padding: 40px 0;
    background: #F4F7FC;
    width: 100%;
    overflow: hidden;
  }
  .info .info_inner {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
  }
  .info .info_left {
    text-align: center;
    margin: 0;
  }
  .info .info_left h3 {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 20px;
  }
  .info .info_left h3:before {
    content: "INFORMATION";
    display: block;
    color: #6E81BF;
    margin: 0 0 10px;
    position: relative;
    font-weight: 500;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
  }
  .info .info_right {
    width: 100%;
  }
  .info .info_right .info_box {
    width: 100%;
    max-height: 400px;
    overflow: auto;
    margin: 0 0 40px;
    padding: 5px 0 20px;
    background: #fcfdff;
    /* eachが使える */
    border-radius: 10px;
  }
  .info .info_right .info_box a {
    display: block;
    color: #5C4843;
  }
  .info .info_right .info_box a:hover {
    background: white;
  }
  .info .info_right .info_box a:hover dl:after {
    transform: translateX(2px);
  }
  .info .info_right .info_box a dl {
    border-bottom: dashed 1px rgb(226.5, 236, 255);
    display: flex;
    flex-wrap: wrap;
    padding: 20px 20px;
    align-items: center;
  }
  .info .info_right .info_box a dl dt:nth-of-type(1) {
    color: #5C4843;
    display: inline-block;
    letter-spacing: 0.2em;
    margin: 0 15px 0 0;
  }
  .info .info_right .info_box a dl dt:nth-of-type(2) {
    color: #fff;
    display: block;
    margin: 0;
    padding: 3px 0;
    width: 100px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    /* eachが使える */
    border-radius: 6px;
  }
  .info .info_right .info_box a dl dt:nth-of-type(2).notice_label {
    background: #6E81BF;
  }
  .info .info_right .info_box a dl dt:nth-of-type(2).blog_label {
    background: #6EA5BF;
  }
  .info .info_right .info_box a dl dd {
    width: 100%;
    font-size: 17px;
    letter-spacing: 0.1em;
    padding: 10px 10px 0 0;
    font-weight: 500;
    line-height: 1.4;
    color: #5C4843;
  }
  .info ul.btnFlex {
    display: flex;
    justify-content: space-between;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
  }
  .info ul.btnFlex li {
    text-align: center;
    width: calc((100% - 10px) / 2);
  }
  .info ul.btnFlex li:nth-of-type(1) a {
    background: #6E81BF;
  }
  .info ul.btnFlex li:nth-of-type(1) a:hover {
    background: rgb(99.3851674641, 119.776076555, 186.3148325359);
  }
  .info ul.btnFlex li:nth-of-type(2) a {
    background: #6EA5BF;
  }
  .info ul.btnFlex li:nth-of-type(2) a:hover {
    background: rgb(99.3851674641, 158.4114832536, 186.3148325359);
  }
  .info ul.btnFlex li a {
    display: inline-block;
    margin: 0 0 30px;
    padding: 15px 0;
    color: #fff;
    position: relative;
    text-align: center;
    font-size: 16px;
    letter-spacing: -0.1em;
    background: #FAFAFA;
    font-weight: 500;
    /* eachが使える */
    border-radius: 60px;
    width: 100%;
  }
  .info ul.btnFlex li a:after {
    content: "";
    display: inline-block;
    width: 21px;
    height: 21px;
    background-image: url("../images/arrow_btn.png");
    background-size: contain;
    vertical-align: middle;
    margin: 0 0 0 8px;
  }
  .info p.kasan {
    text-align: center;
  }
  .info p.kasan a {
    text-decoration: none;
    background: #fff;
    margin: 0 auto 30px;
    padding: 15px 20px;
    /* eachが使える */
    border-radius: 50px;
    display: inline-block;
    font-size: 17px;
  }
  .info .mask {
    border: dashed 1px #6E81BF;
    margin: 0 0 30px;
    padding: 30px;
    color: #6E81BF;
    display: flex;
    /* eachが使える */
    border-radius: 6px;
    text-align: left;
    position: relative;
    width: 100%;
    background: #FCFDFF;
  }
  .info .mask h4 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 500;
  }
  .info .mask p {
    font-weight: 400;
    font-size: 17px;
    color: #333;
    line-height: 30px;
    font-weight: 400;
  }
}
@media screen and (max-width: 999px) and (min-width: 1000px) and (max-width: 1220px) {
  .info .mask p {
    font-size: 16px;
  }
}
@media screen and (max-width: 999px) {
  .info .bnrFlex {
    width: 100%;
  }
  .info .bnrFlex li {
    width: 100%;
    margin: 0 0 20px;
  }
  .info .bnrFlex li:last-of-type {
    margin: 0;
  }
  .info .bnrFlex li a:hover {
    opacity: 0.9;
  }
  .info .bnrFlex li a img {
    width: 100%;
    height: auto;
  }
}
/* -----------------------------------------------------------
（PC表示）メインエリア
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  main {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 0;
  }
  body:not(#index) main {
    max-width: 1240px;
    padding: 0 20px;
  }
  main .anchorPoint {
    scroll-margin-top: 200px; /* ヘッダー高さ */
  }
}
/* -----------------------------------------------------------
（SP表示）メインエリア
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  main {
    padding: 0;
  }
  body:not(#index) main {
    padding: 0 20px;
  }
  main .anchorPoint {
    scroll-margin-top: 70px; /* ヘッダー高さ */
  }
  main .openDate {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 20px 10px 23px;
    z-index: 1;
    background: #E1EAF8;
  }
  main .openDate p {
    color: #5C4843;
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.9px;
    margin: 0 auto;
  }
  main .openDate .color {
    color: #6E81BF;
    font-family: "Zen Maru Gothic";
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 1.8px;
    display: inline-block;
    margin: 0 5px;
  }
  main .openDate .color2 {
    color: #6E81BF;
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 1.2px;
    display: inline-block;
    text-indent: -0.3em;
  }
  main .openDate .boldTxt {
    color: #5C4843;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 2px;
  }
  main .openDate .mon {
    background: #6E81BF;
    color: #fff;
    width: 28px;
    height: 28px;
    display: inline-block;
    /* eachが使える */
    border-radius: 50%;
    text-align: center;
    margin: 0 5px;
    padding: 0 0 0 2px;
    font-size: 16px;
    transform: translateY(-5px);
  }
  main .openDate ul {
    display: flex;
    justify-content: center;
    margin: 5px 0 0;
  }
  main .openDate ul li {
    background: #6E81BF;
    padding: 5px 10px;
    font-size: 15px;
    color: #fff;
    margin: 3px 5px 0;
    font-weight: 500;
  }
  main .openDate .nairankai {
    background: #6EA5BF;
    color: #fff;
    width: 100px;
    height: 100px;
    /* eachが使える */
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -200px;
    left: 0;
    margin: auto;
    padding: 10px 0 0;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    font-size: 16px;
    position: absolute;
  }
  main .openDate .nairankai .nichiji {
    display: block;
    font-size: 22px;
    margin: 0;
    padding: 0;
    text-indent: 0.3em;
  }
  main .openDate .nairankai .sat {
    color: #6EA5BF;
    background: #fff;
    width: 20px;
    height: 20px;
    display: inline-block;
    /* eachが使える */
    border-radius: 50%;
    text-align: center;
    margin: 2px 5px 0;
    padding: 0;
    font-size: 14px;
    text-indent: 0;
    transform: translateY(-2px);
  }
  main .openDate .nairankai .time {
    font-size: 14px;
    display: block;
  }
}
/* -----------------------------------------------------------
   -----------------------------------------------------------
●●●●●●●● 下層ページ ●●●●●●●●
-----------------------------------------------------------
----------------------------------------------------------- */
/* -----------------------------------------------------------
（PC表示）ページタイトル（下層ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .pageTitle {
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
    padding: 216px 30px 0;
    text-align: center;
    box-sizing: border-box;
    background-position: top center;
  }
  .pageTitle .pageTitle_inner {
    height: 350px;
    margin: 0 0 60px;
    padding: 105px 0 0;
    /* eachが使える */
    border-radius: 20px;
    background-position: center center;
  }
  #base .pageTitle .pageTitle_inner {
    background: #EEF2FA;
  }
  #information .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_information.jpg);
  }
  #clinic .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_clinic__.jpg);
    background-position: top center;
  }
  #guide .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_gui_de__.jpg);
  }
  #treatment .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_treatment.jpg);
  }
  #disease .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_disease.jpg);
  }
  #access .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_access.jpg);
  }
  #sports .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_sports_.jpg);
    background-size: cover;
  }
  #pediatric .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_pediatric_.jpg);
  }
  #rehabilitation .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_rehabilitation__.jpg);
  }
  #osteoporosis .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_osteoporosis_.jpg);
  }
  #accident .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_accident_.jpg);
  }
  #privateTreatment .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_privateTreatment_.jpg);
    background-position: bottom -208px right -210px;
  }
  #regenerativeMedicine .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_regenerativeMedicine_.jpg);
    background-position: bottom center;
  }
}
@media print, screen and (min-width: 1000px) and (min-width: 1486px) {
  #regenerativeMedicine .pageTitle .pageTitle_inner {
    background-size: 100% auto;
  }
}
@media print and (min-width: 1000px) and (max-width: 1485px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1485px) {
  #regenerativeMedicine .pageTitle .pageTitle_inner {
    background-size: auto 100%;
  }
}
@media print, screen and (min-width: 1000px) {
  #recruit .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_recruit.jpg);
    background-size: cover;
  }
  .pageTitle .pageTitle_inner h2 {
    background: rgba(255, 255, 255, 0.85);
    display: inline-block;
    padding: 30px;
    font-weight: 500;
    bottom: 100px;
    font-size: 40px;
    color: #5C4843;
    line-height: 1.3;
    /* eachが使える */
    border-radius: 20px;
  }
  .pageTitle .pageTitle_inner h2:after {
    color: #6E81BF;
    font-size: 20px;
    display: block;
    margin: 5px 0 0;
    animation: fadein 0.6s 0s ease-in-out forwards;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
  @keyframes fadein {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #base .pageTitle .pageTitle_inner h2:after {
    content: "BASE";
  }
  #clinic .pageTitle .pageTitle_inner h2:after {
    content: "CLINIC";
  }
  #guide .pageTitle .pageTitle_inner h2:after {
    content: "GUIDE";
  }
  #treatment .pageTitle .pageTitle_inner h2:after {
    content: "TREATMENT";
  }
  #disease .pageTitle .pageTitle_inner h2:after {
    content: "DISEASE";
  }
  #access .pageTitle .pageTitle_inner h2:after {
    content: "ACCESS";
  }
  #pediatric .pageTitle .pageTitle_inner h2:after {
    content: "PEDIATRIC";
  }
  #sports .pageTitle .pageTitle_inner h2:after {
    content: "SPORTS";
  }
  #rehabilitation .pageTitle .pageTitle_inner h2:after {
    content: "REHABILITATION";
  }
  #osteoporosis .pageTitle .pageTitle_inner h2:after {
    content: "OSTEOPOROSIS";
  }
  #accident .pageTitle .pageTitle_inner h2:after {
    content: "ACCIDENT";
  }
  #privateTreatment .pageTitle .pageTitle_inner h2:after {
    content: "PRIVATE TREATMENT";
  }
  #regenerativeMedicine .pageTitle .pageTitle_inner h2:after {
    content: "REGENERATIVE MEDICINE";
  }
}
/* -----------------------------------------------------------
（SP表示）ページタイトル（下層ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .pageTitle {
    width: 100%;
    padding: 70px 10px 0;
    margin: 0 auto 20px;
    text-align: center;
    box-sizing: border-box;
  }
  .pageTitle .pageTitle_inner {
    padding: 55px 0 0;
    /* eachが使える */
    border-radius: 10px;
    height: 190px;
    background-position: center center;
    background-size: auto 100%;
  }
  #base .pageTitle .pageTitle_inner {
    background-image: #eee;
  }
  #information .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_information.jpg);
  }
  #clinic .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_clinic__.jpg);
  }
  #guide .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_gui_de__.jpg);
  }
  #treatment .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_treatment_.jpg);
  }
  #disease .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_disease_.jpg);
  }
  #access .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_access_.jpg);
  }
  #sports .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_sports_.jpg);
    background-size: cover;
  }
  #pediatric .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_pediatric_.jpg);
    background-size: 150%;
    background-position: bottom -40px center;
  }
  #rehabilitation .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_rehabilitation__.jpg);
  }
  #osteoporosis .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_osteoporosis_.jpg);
  }
  #accident .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_accident_.jpg);
  }
  #privateTreatment .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_privateTreatment_.jpg);
    background-size: 150%;
    background-position: bottom center;
  }
  #regenerativeMedicine .pageTitle .pageTitle_inner {
    background-image: url(../images/pageTitle_regenerativeMedicine_.jpg);
  }
  #recruit .pageTitle .pageTitle_inner {
    background-image: url(../images/sp/pageTitle_recruit.jpg);
    background-size: cover;
  }
  .pageTitle .pageTitle_inner h2 {
    background: rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding: 15px;
    font-weight: 600;
    bottom: 100px;
    font-size: 24px;
    color: #5C4843;
    line-height: 1.3;
    /* eachが使える */
    border-radius: 10px;
  }
  .pageTitle .pageTitle_inner h2:after {
    color: #6E81BF;
    font-size: 16px;
    display: block;
    margin: 5px 0 0;
  }
  #base .pageTitle .pageTitle_inner h2:after {
    content: "BASE";
  }
  #clinic .pageTitle .pageTitle_inner h2:after {
    content: "CLINIC";
  }
  #guide .pageTitle .pageTitle_inner h2:after {
    content: "GUIDE";
  }
  #treatment .pageTitle .pageTitle_inner h2:after {
    content: "TREATMENT";
  }
  #disease .pageTitle .pageTitle_inner h2:after {
    content: "DISEASE";
  }
  #access .pageTitle .pageTitle_inner h2:after {
    content: "ACCESS";
  }
  #pediatric .pageTitle .pageTitle_inner h2:after {
    content: "PEDIATRIC";
  }
  #sports .pageTitle .pageTitle_inner h2:after {
    content: "SPORTS";
  }
  #rehabilitation .pageTitle .pageTitle_inner h2:after {
    content: "REHABILITATION";
  }
  #osteoporosis .pageTitle .pageTitle_inner h2:after {
    content: "OSTEOPOROSIS";
  }
  #accident .pageTitle .pageTitle_inner h2:after {
    content: "ACCIDENT";
  }
  #privateTreatment .pageTitle .pageTitle_inner h2:after {
    content: "PRIVATE TREATMENT";
  }
  #regenerativeMedicine .pageTitle .pageTitle_inner h2:after {
    content: "REGENERATIVE MEDICINE";
  }
}
/* -----------------------------------------------------------
（PC表示）当院の特徴 FEATURE（トップページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .feature {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
  }
  .feature h3 {
    writing-mode: vertical-rl;
    font-size: 30px;
    color: #5C4843;
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    position: absolute;
    top: 100px;
    right: 0;
  }
  .feature h3:before {
    content: "FEATURE";
    font-size: 88px;
    transform: rotate(0);
    margin: 0 0 0 20px;
    font-weight: 500;
  }
  .feature ul {
    width: calc(100% - 180px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .feature ul li {
    width: calc((100% - 160px) / 3);
    margin: 0 0 70px;
    text-align: center;
    color: #5C4843;
    font-weight: 500;
    font-size: 22px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  .feature ul li {
    width: calc((100% - 100px) / 3);
    font-size: 18px;
    margin: 0 0 40px;
  }
}
@media print, screen and (min-width: 1000px) {
  .feature ul li .img_wrap {
    display: block;
    margin: 0 0 20px;
    position: relative;
    width: 100%;
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  .feature ul li .img_wrap {
    margin: 0 0 10px;
  }
}
@media print, screen and (min-width: 1000px) {
  .feature ul li .img_wrap img {
    width: 100%;
    height: auto;
  }
  .feature ul li .img_wrap:before {
    content: "";
    display: inline-block;
    width: 93px;
    height: 93px;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: -15px;
    left: -30px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  .feature ul li .img_wrap:before {
    width: 60px;
    height: 60px;
    bottom: -15px;
    left: -10px;
  }
}
@media print, screen and (min-width: 1000px) {
  .feature ul li span.kakko {
    font-size: 16px;
    display: block;
  }
  .feature ul li span.btn a {
    font-size: 17px;
    margin: 20px 0 0;
    background: #EEF2FA;
    color: #5C4843;
    padding: 5px 60px 5px 40px;
  }
  .feature ul li span.btn a:hover {
    background: rgb(245.8818181818, 248.0272727273, 252.3181818182);
  }
  .feature ul li span.btn a:after {
    background-image: url("../images/arrow_btn_brown.png");
  }
  .feature ul:nth-of-type(1) li:nth-of-type(1) .img_wrap:before {
    background-image: url(../images/index_feature_01_.png);
  }
  .feature ul:nth-of-type(1) li:nth-of-type(2) .img_wrap:before {
    background-image: url(../images/index_feature_02_.png);
  }
  .feature ul:nth-of-type(1) li:nth-of-type(3) .img_wrap:before {
    background-image: url(../images/index_feature_03_.png);
  }
  .feature ul:nth-of-type(2) {
    margin-left: 5%;
  }
  .feature ul:nth-of-type(2) li {
    margin-bottom: 0;
  }
  .feature ul:nth-of-type(2) li:nth-of-type(1) .img_wrap:before {
    background-image: url(../images/index_feature_04_.png);
  }
  .feature ul:nth-of-type(2) li:nth-of-type(2) .img_wrap:before {
    background-image: url(../images/index_feature_05_.png);
  }
  .feature ul:nth-of-type(2) li:nth-of-type(3) .img_wrap:before {
    background-image: url(../images/index_feature_06_.png);
  }
  .feature ul:nth-of-type(2) li:nth-of-type(3):after {
    content: "お会計の\a待ち時間が\aゼロに！";
    white-space: pre;
    background: #71BF6E;
    display: block;
    width: 110px;
    height: 110px;
    /* eachが使える */
    border-radius: 50%;
    box-sizing: border-box;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    padding: 18px 0 0;
    position: absolute;
    top: 30px;
    right: 15px;
  }
}
/* -----------------------------------------------------------
（SP表示）当院の特徴 FEATURE（トップページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .feature {
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px 30px;
    overflow: visible;
  }
  .feature h3 {
    font-size: 20px;
    color: #5C4843;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin: 0 0 20px;
  }
  .feature h3:before {
    content: "FEATURE";
    font-size: 54px;
    transform: rotate(0);
    margin: 0 0 10px -2px;
    font-weight: 500;
    display: block;
    line-height: 1;
  }
  .feature ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .feature ul li {
    width: 100%;
    margin: 0 0 30px;
    text-align: center;
    color: #5C4843;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
  }
  .feature ul li .img_wrap {
    display: block;
    margin: 0 0 10px;
    position: relative;
  }
  .feature ul li .img_wrap img {
    width: 100%;
    height: auto;
  }
  .feature ul li .img_wrap:before {
    content: "";
    display: inline-block;
    width: 70px;
    height: 70px;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: -15px;
    left: -10px;
  }
  .feature ul li span.kakko {
    font-size: 16px;
    display: block;
    line-height: 1.5;
  }
  .feature ul li span.btn a {
    font-size: 17px;
    margin: 20px 0 0;
    background: #EEF2FA;
    color: #5C4843;
    padding: 5px 60px 5px 40px;
  }
  .feature ul li span.btn a:hover {
    background: rgb(245.8818181818, 248.0272727273, 252.3181818182);
  }
  .feature ul li span.btn a:after {
    background-image: url("../images/arrow_btn_brown.png");
  }
  .feature ul:nth-of-type(1) {
    justify-content: space-between;
  }
  .feature ul:nth-of-type(1) li:nth-of-type(1) .img_wrap:before {
    background-image: url(../images/index_feature_01_.png);
  }
  .feature ul:nth-of-type(1) li:nth-of-type(2) .img_wrap:before {
    background-image: url(../images/index_feature_02_.png);
  }
  .feature ul:nth-of-type(1) li:nth-of-type(3) .img_wrap:before {
    background-image: url(../images/index_feature_03_.png);
  }
  .feature ul:nth-of-type(2) {
    justify-content: center;
  }
  .feature ul:nth-of-type(2) li {
    margin: 0 0 30px;
  }
  .feature ul:nth-of-type(2) li:last-of-type {
    margin: 0;
  }
  .feature ul:nth-of-type(2) li:nth-of-type(1) .img_wrap:before {
    background-image: url(../images/index_feature_04_.png);
  }
  .feature ul:nth-of-type(2) li:nth-of-type(2) .img_wrap:before {
    background-image: url(../images/index_feature_05_.png);
  }
  .feature ul:nth-of-type(2) li:nth-of-type(3) .img_wrap:before {
    background-image: url(../images/index_feature_06_.png);
  }
  .feature ul:nth-of-type(2) li:nth-of-type(3):after {
    content: "お会計の\a待ち時間が\aゼロに！";
    white-space: pre;
    background: #71BF6E;
    display: block;
    width: 110px;
    height: 110px;
    /* eachが使える */
    border-radius: 50%;
    box-sizing: border-box;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    padding: 18px 0 0;
    position: absolute;
    top: -10px;
    right: 5px;
  }
}
/* -----------------------------------------------------------
（PC表示）診療内容（トップページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .treatment {
    width: 100%;
    padding: 100px 20px;
    background: url("../images/index_treatment.jpg");
    position: relative;
  }
  .treatment .treatment_inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    display: flex;
  }
  .treatment .treatment_inner h3 {
    writing-mode: vertical-rl;
    font-size: 30px;
    color: #fff;
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    margin-right: 60px;
    font-weight: 500;
  }
  .treatment .treatment_inner h3:after {
    content: "TREATMENT";
    font-size: 88px;
    transform: translateY(-5px);
  }
  .treatment .treatment_inner .treatment_menu ul {
    max-width: 1020px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 22px;
  }
  .treatment .treatment_inner .treatment_menu ul li {
    width: calc((100% - 90px) / 4);
    margin: 0 0 30px;
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(n+4) a {
    font-size: 24px;
    letter-spacing: -0.05em;
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(n+4) a span {
    letter-spacing: 0;
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(1) a:before {
    background-image: url(../images/index_treatment_orthopedics.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(2) a:before {
    background-image: url(../images/index_treatment_sports.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(3) a:before {
    background-image: url(../images/index_treatment_pediatricOrthopedics.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(4) a {
    letter-spacing: -0.1em;
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(4) a:before {
    background-image: url(../images/index_treatment_rehabilitation.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(5) a:before {
    background-image: url(../images/index_treatment_osteoporosis.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(6) a:before {
    background-image: url(../images/index_treatment_accident.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(7) a {
    letter-spacing: -0.05em;
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(7) a:before {
    background-image: url(../images/index_treatment_non-insurance.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(8) a:before {
    background-image: url(../images/index_treatment_regenerativeMedicine.png);
  }
  .treatment .treatment_inner .treatment_menu ul li a {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    height: auto;
    /* eachが使える */
    border-radius: 10px;
    padding: 95px 0 20px;
    text-align: center;
    color: #6E81BF;
    font-size: 25px;
    font-weight: 500;
    position: relative;
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  .treatment .treatment_inner .treatment_menu ul li a {
    font-size: 23px;
  }
}
@media print, screen and (min-width: 1000px) {
  .treatment .treatment_inner .treatment_menu ul li a span {
    display: block;
    font-size: 20px;
    color: #5C4843;
    letter-spacing: 0;
  }
}
@media print and (min-width: 1101px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1101px) and (max-width: 1300px) {
  .treatment .treatment_inner .treatment_menu ul li a span {
    font-size: 18px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  .treatment .treatment_inner .treatment_menu ul li a span {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1000px) {
  .treatment .treatment_inner .treatment_menu ul li a:before {
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    width: 97px;
    height: 97px;
    left: 0;
    right: 0;
    margin: auto;
    top: -10px;
  }
  .treatment .treatment_inner .treatment_menu ul li a:hover {
    background: #fff;
  }
  .treatment .treatment_inner .treatment_menu ul li a:hover:before {
    top: -12px;
  }
  .treatment .treatment_inner .treatment_menu ul li a:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../images/index_treatment_arrow.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
  .treatment .treatment_illust li {
    position: absolute;
  }
  .treatment .treatment_illust li:nth-of-type(1) {
    left: -700px;
    right: 0;
    margin: auto;
    width: 211px;
    bottom: -50px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1300px) {
  .treatment .treatment_illust li:nth-of-type(1) {
    left: -50%;
  }
}
@media print, screen and (min-width: 1000px) {
  .treatment .treatment_illust li:nth-of-type(2) {
    left: 0;
    right: -500px;
    margin: auto;
    width: 154px;
    bottom: -30px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1300px) {
  .treatment .treatment_illust li:nth-of-type(2) {
    right: -40%;
  }
}
@media print, screen and (min-width: 1000px) {
  .treatment .treatment_illust li:nth-of-type(3) {
    left: 0;
    right: -1000px;
    margin: auto;
    width: 154px;
    bottom: -40px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1300px) {
  .treatment .treatment_illust li:nth-of-type(3) {
    right: -80%;
  }
}
@media print, screen and (min-width: 1000px) {
  .treatment p.btn {
    text-align: center;
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .treatment p.btn a:hover {
    background: rgb(99.3851674641, 119.776076555, 186.3148325359);
  }
}
/* -----------------------------------------------------------
（SP表示）診療内容（トップページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .treatment {
    width: 100%;
    padding: 30px 20px 50px;
    background: url("../images/index_treatment.jpg");
    position: relative;
    background-position: center center;
  }
  .treatment .treatment_inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
  }
  .treatment .treatment_inner h3 {
    font-size: 20px;
    color: #5C4843;
    font-weight: 500;
    margin: 0 0 40px;
    color: #fff;
    position: relative;
    z-index: 1;
  }
  .treatment .treatment_inner h3:before {
    content: "TREATMENT";
    font-size: 54px;
    transform: rotate(0);
    margin: 0 0 10px -5px;
    font-weight: 500;
    display: block;
    line-height: 1;
  }
  .treatment .treatment_inner .treatment_menu ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 22px;
  }
  .treatment .treatment_inner .treatment_menu ul li {
    width: 100%;
    margin: 0 0 20px;
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(1) a:before {
    background-image: url(../images/index_treatment_orthopedics.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(2) a:before {
    background-image: url(../images/index_treatment_sports.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(3) a:before {
    background-image: url(../images/index_treatment_pediatricOrthopedics.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(4) a:before {
    background-image: url(../images/index_treatment_rehabilitation.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(5) a:before {
    background-image: url(../images/index_treatment_osteoporosis.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(6) a:before {
    background-image: url(../images/index_treatment_accident.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(7) a:before {
    background-image: url(../images/index_treatment_non-insurance.png);
  }
  .treatment .treatment_inner .treatment_menu ul li:nth-of-type(8) a:before {
    background-image: url(../images/index_treatment_regenerativeMedicine.png);
  }
  .treatment .treatment_inner .treatment_menu ul li a span {
    display: block;
    font-size: 14px;
    color: #5C4843;
    line-height: 1;
  }
  .treatment .treatment_inner .treatment_menu ul li a:hover {
    background: #fff;
  }
  .treatment .treatment_inner .treatment_menu ul li a:hover:before {
    top: -12px;
  }
  .treatment .treatment_inner .treatment_menu ul li a:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../images/index_treatment_arrow.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
  .treatment .treatment_inner .treatment_menu ul li {
    width: calc((100% - 20px) / 2);
    margin: 0 0 30px;
  }
  .treatment .treatment_inner .treatment_menu ul li a {
    text-align: center;
    padding: 40px 0 25px;
    display: block;
    background: rgba(255, 255, 255, 0.95);
    height: auto;
    /* eachが使える */
    border-radius: 10px;
    color: #6E81BF;
    font-size: 19px;
    font-weight: 500;
    position: relative;
    letter-spacing: -0.15em;
    text-indent: -0.15em;
  }
  .treatment .treatment_inner .treatment_menu ul li a span {
    letter-spacing: 0;
  }
  .treatment .treatment_inner .treatment_menu ul li a:before {
    content: "";
    display: block;
    background-size: contain;
    position: absolute;
    width: 60px;
    height: 60px;
    left: 10px;
    margin: auto;
    top: -20px;
    left: 0;
    right: 0;
  }
  .treatment .treatment_illust li {
    position: absolute;
  }
  .treatment .treatment_illust li img {
    width: 100%;
    height: auto;
  }
  .treatment .treatment_illust li:nth-of-type(1) {
    left: 10px;
    width: 100px;
    bottom: -60px;
  }
  .treatment .treatment_illust li:nth-of-type(2) {
    right: 5px;
    width: 90px;
    top: 20px;
    z-index: 0;
  }
  .treatment .treatment_illust li:nth-of-type(3) {
    right: 10px;
    margin: auto;
    width: 90px;
    bottom: -70px;
  }
  .treatment p.btn {
    text-align: center;
    margin: 10px auto 0;
  }
  .treatment p.btn a:hover {
    background: rgb(99.3851674641, 119.776076555, 186.3148325359);
  }
}
/* -----------------------------------------------------------
（PC表示）フッター（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  footer {
    padding: 87px 0 100px;
    /*body:not(#index) & {
    	padding: 50px 0 180px;
    }*/
  }
  footer .footer_head {
    text-align: center;
  }
  footer .footer_head h3 {
    width: 170px;
    margin: 0 auto;
    text-align: center;
  }
  footer .footer_head h3 img {
    width: 100%;
    margin: 0 auto 30px;
  }
  footer .footer_head p {
    font-size: 24px;
    line-height: 1.5;
  }
  footer .footer_head p .logoBlue {
    color: #6E81BF;
  }
  footer .footer_head p .logoBrown {
    color: #5C4843;
  }
  footer .footer_head p .txtL {
    font-size: 32px;
  }
  footer .footer_head p .txtM {
    font-size: 24px;
  }
  footer .footer_head p .bold {
    font-weight: 500;
  }
  footer .footer_inner {
    max-width: 1240px;
    width: 100%;
    padding: 80px 20px 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  footer .footer_inner .clinicSummary {
    width: calc((100% - 40px) / 2);
  }
  footer .footer_inner .clinicSummary dl {
    padding: 22px 0 15px;
    display: flex;
    letter-spacing: 0.1em;
    border-top: dashed 1px #ADADAD;
    font-size: 17px;
  }
  footer .footer_inner .clinicSummary dl:last-of-type {
    border-bottom: dashed 1px #ADADAD;
    margin: 0 0 30px;
  }
  footer .footer_inner .clinicSummary dl dt {
    width: 150px;
    box-sizing: border-box;
    font-weight: bold;
    margin: 0 0 10px;
    color: #333;
    font-size: 17px;
  }
  footer .footer_inner .clinicSummary dl dd {
    font-size: 17px;
  }
  footer .footer_inner .clinicSummary dl dd ul {
    margin: 0 0 10px;
  }
  footer .footer_inner .clinicSummary dl dd li {
    font-size: 17px;
  }
  footer .footer_inner .clinicSummary dl dd.tel a {
    font-weight: bold;
    color: #6E81BF;
    font-size: 150%;
  }
  footer .footer_inner .clinicSummary dl dd.medicalPartner:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    line-height: 1;
    margin: 0 0 0 5px;
    font-weight: bold;
  }
  footer .footer_inner .clinicSummary dl dd.medicalPartner a {
    text-decoration: underline;
  }
  footer .footer_inner .clinicSummary p.parkingAvailable {
    font-weight: bold;
    color: #6E81BF;
    font-size: 20px;
    margin: 0 0 10px;
  }
  footer .footer_inner .clinicSummary p.parkingAvailable:before {
    font-family: "Font Awesome 5 Free";
    content: "\f540";
    line-height: 1;
    margin: 0 10px 0 0;
  }
  footer .footer_inner .clinicSummary p.barrier-free {
    font-weight: bold;
    color: #6E81BF;
    font-size: 20px;
    margin: 0 0 30px;
  }
  footer .footer_inner .clinicSummary p.barrier-free:before {
    font-family: "Font Awesome 5 Free";
    content: "\f193";
    line-height: 1;
    margin: 0 8px 0 0;
  }
  footer .footer_inner .clinicSummary .timeTable {
    width: 100%;
    font-size: 17px;
  }
  footer .footer_inner .clinicSummary .timeTable table {
    width: 100%;
    border: solid 1px #999;
    margin: 30px 0 20px;
    text-align: center;
    border-collapse: collapse;
    /* eachが使える */
    border-radius: 10px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1150px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1150px) {
  footer .footer_inner .clinicSummary .timeTable table {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1000px) {
  footer .footer_inner .clinicSummary .timeTable table thead th, footer .footer_inner .clinicSummary .timeTable table thead td {
    width: 33.333%;
  }
  footer .footer_inner .clinicSummary .timeTable table thead th {
    background: #6E81BF;
    padding: 10px;
    border-bottom: solid 1px #999;
    color: #fff;
  }
  footer .footer_inner .clinicSummary .timeTable table thead td {
    color: #6E81BF;
    background: #EEF2FA;
    font-weight: bold;
  }
  footer .footer_inner .clinicSummary .timeTable table tbody tr th {
    color: #333;
    background: #EEF2FA;
    font-weight: 500;
    vertical-align: middle;
  }
  footer .footer_inner .clinicSummary .timeTable table tbody tr:nth-of-type(4) th {
    padding: 10px 10px 15px;
    color: #333;
    background: #f9f9f9;
    font-weight: 600;
  }
  footer .footer_inner .clinicSummary .timeTable table tbody tr:nth-of-type(4) th span {
    display: block;
    font-weight: 500;
    font-size: 15px;
    margin: 10px 0 0;
  }
  footer .footer_inner .clinicSummary .timeTable table tbody tr:nth-of-type(4) th a {
    color: #333;
    text-decoration: underline;
  }
  footer .footer_inner .clinicSummary .timeTable table tr th, footer .footer_inner .clinicSummary .timeTable table tr td {
    border-collapse: collapse;
    border: solid 1px #6E81BF;
    padding: 10px;
    line-height: 1.5;
  }
  footer .footer_inner .clinicSummary .timeTable table tr td {
    font-weight: 500;
  }
  footer .footer_inner .clinicSummary .timeTable table tr td span.bold {
    color: #6E81BF;
  }
  footer .footer_inner .exterior {
    width: calc((100% - 40px) / 2);
    /*Googleマップで拡大地図を表示ボタン*/
    /*電車・バス・車・自転車でご来院の方へボタン*/
  }
  footer .footer_inner .exterior .googleMap {
    width: 100%;
  }
  footer .footer_inner .exterior .googleMap iframe {
    width: 100%;
    height: 820px;
    margin: 0 0 20px;
    vertical-align: bottom;
    /* eachが使える */
    border-radius: 10px;
  }
  footer .footer_inner .exterior p a {
    display: block;
    border: solid 2px #5C4843;
    font-size: 18px;
    margin: 0 0 20px;
    padding: 10px;
    color: #5C4843;
    text-align: center;
    /* eachが使える */
    border-radius: 10px;
    font-weight: 500;
    background: rgb(252.45, 252.45, 252.45);
  }
  footer .footer_inner .exterior p a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
  }
  footer .footer_inner .exterior p a:hover {
    background: #fff;
  }
  footer .footer_inner .exterior ul {
    display: flex;
    justify-content: space-between;
  }
  footer .footer_inner .exterior ul li {
    width: calc((100% - 40px) / 3);
    font-size: 16px;
  }
  footer .footer_inner .exterior ul li a {
    display: block;
    border: solid 2px #6E81BF;
    color: #6E81BF;
    background: rgb(252.45, 252.45, 252.45);
    width: 100%;
    text-align: center;
    padding: 15px 0;
    /* eachが使える */
    border-radius: 10px;
    font-weight: 500;
    font-size: 18px;
  }
  footer .footer_inner .exterior ul li a:hover {
    background: #fff;
  }
  footer .footerFix_sp {
    display: none !important;
  }
  footer .googleCalendar {
    max-width: 1240px;
    width: 100%;
    margin: 50px auto 0;
    padding: 0 20px;
  }
  footer .googleCalendar h3 {
    color: #5C4843;
    margin: 0 0 10px;
    font-size: 24px;
    text-align: center;
  }
  footer .googleCalendar ul {
    display: flex;
    justify-content: center;
    margin: 0 0 20px;
  }
  footer .googleCalendar ul li {
    margin-right: 20px;
  }
  footer .googleCalendar ul li span.am {
    color: #4285f4;
  }
  footer .googleCalendar ul li span.pm {
    color: #009688;
  }
  footer .googleCalendar ul li span.closed {
    color: #616161;
  }
  footer .googleCalendar .cal-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  footer .googleCalendar .cal-wrapper .cal-container {
    width: calc((100% - 40px) / 2);
    height: 500px;
    position: relative;
  }
  footer .googleCalendar .cal-wrapper .cal-container .kakushi_top {
    width: 40px;
    height: 36px;
    background: #eef2f8;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 10px 0 0;
  }
  footer .googleCalendar .cal-wrapper .cal-container .kakushi_bottom {
    width: 40px;
    height: 26px;
    background: #eef2f8;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 0 0 10px 0;
  }
  footer .googleCalendar .cal-wrapper .cal-container iframe {
    width: 100%;
    height: 500px;
  }
  footer .googleCalendar .cal-wrapper .cal-container iframe.no-nav {
    pointer-events: none;
  }
  footer .grandeur {
    text-align: center;
    margin: 0 auto;
  }
  footer .grandeur dt {
    font-weight: 600;
    font-size: 12px;
    margin: 0 0 5px;
  }
  footer .grandeur dd a {
    border: none;
    outline: none;
  }
  footer .grandeur dd a img {
    width: 160px;
    height: auto;
  }
  footer #pagetop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    text-align: center;
    z-index: 1;
  }
  footer #pagetop a:before {
    content: "";
    display: inline-block;
    width: 70px;
    height: 70px;
    background-image: url("../images/pagetop.png");
    background-size: contain;
    vertical-align: middle;
  }
  footer .copyright {
    color: #333;
    text-align: center;
    padding: 80px 0 70px;
    font-weight: 400;
    font-size: 18px;
  }
  footer .copyright a {
    color: #333;
    font-weight: 500;
  }
  footer .footerFix_sp {
    display: none;
  }
}
/* -----------------------------------------------------------
（SP表示）フッター（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  footer {
    padding: 20px 0 180px;
  }
  footer .footer_head {
    text-align: center;
  }
  footer .footer_head h3 {
    width: 100px;
    margin: 0 auto;
    text-align: center;
  }
  footer .footer_head h3 img {
    width: 100%;
    margin: 0 auto 10px;
  }
  footer .footer_head p {
    font-size: 20px;
    line-height: 1.2;
  }
  footer .footer_head p:nth-of-type(1) {
    text-indent: 0.5em;
  }
  footer .footer_head p:nth-of-type(1) {
    text-indent: 0.5em;
  }
  footer .footer_head p:nth-of-type(2) {
    margin: 10px 0 0;
    line-height: 1.5;
  }
  footer .footer_head p .logoBlue {
    color: #6E81BF;
  }
  footer .footer_head p .logoBrown {
    color: #5C4843;
  }
  footer .footer_head p .txtL {
    font-size: 28px;
  }
  footer .footer_head p .txtM {
    font-size: 24px;
  }
  footer .footer_head p .bold {
    font-weight: 500;
    display: inline-block;
    margin: 0 5px;
    text-indent: 0;
  }
  footer .footer_inner {
    width: 100%;
    padding: 30px 20px 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  footer .footer_inner h3 img {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 20px;
  }
  footer .footer_inner h4 {
    border: solid 1px #6E81BF;
    display: inline-block;
    margin: 0 0 20px;
    padding: 10px 20px;
    color: #6E81BF;
    font-size: 17px;
  }
  footer .footer_inner .clinicSummary {
    width: 100%;
    order: 1;
    margin: 0;
  }
  footer .footer_inner .clinicSummary dl {
    padding: 22px 0 15px;
    letter-spacing: 0.1em;
    border-top: dashed 1px #ADADAD;
    color: #5C4843;
    font-size: 18px;
  }
  footer .footer_inner .clinicSummary dl:last-of-type {
    border-bottom: dashed 1px #ADADAD;
    margin: 0 0 20px;
  }
  footer .footer_inner .clinicSummary dl:nth-of-type(3) a {
    color: #6E81BF;
    font-weight: bold;
  }
  footer .footer_inner .clinicSummary dl dt {
    width: 100%;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 17px;
    margin: 0 0 5px;
  }
  footer .footer_inner .clinicSummary dl dd {
    color: #111;
    font-size: 17px;
    line-height: 1.4;
  }
  footer .footer_inner .clinicSummary dl dd li {
    font-size: 17px;
  }
}
@media screen and (max-width: 999px) and (min-width: 1070px) {
  footer .footer_inner .clinicSummary dl dd br {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  footer .footer_inner .clinicSummary dl dd.tel a {
    font-weight: bold;
    color: #6E81BF;
    font-size: 150%;
  }
  footer .footer_inner .clinicSummary dl dd.medicalPartner:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    line-height: 1;
    margin: 0 0 0 5px;
    font-weight: bold;
  }
  footer .footer_inner .clinicSummary dl dd.medicalPartner a {
    text-decoration: underline;
  }
  footer .footer_inner .clinicSummary p.parkingAvailable {
    font-weight: bold;
    color: #6E81BF;
    font-size: 18px;
    margin: 0 0 10px;
  }
  footer .footer_inner .clinicSummary p.parkingAvailable:before {
    font-family: "Font Awesome 5 Free";
    content: "\f540";
    line-height: 1;
    margin: 0 10px 0 0;
  }
  footer .footer_inner p.parkingAvailable {
    font-weight: bold;
    color: #6E81BF;
    font-size: 18px;
    margin: 0 0 10px;
  }
  footer .footer_inner p.parkingAvailable:before {
    font-family: "Font Awesome 5 Free";
    content: "\f540";
    line-height: 1;
    margin: 0 10px 0 0;
  }
  footer .footer_inner p.barrier-free {
    font-weight: bold;
    color: #6E81BF;
    font-size: 18px;
    margin: 0 0 30px;
  }
  footer .footer_inner p.barrier-free:before {
    font-family: "Font Awesome 5 Free";
    content: "\f193";
    line-height: 1;
    margin: 0 7px 0 0;
  }
  footer .footer_inner .timeTable {
    width: 100%;
    font-size: 17px;
  }
  footer .footer_inner .timeTable table {
    width: 100%;
    border: solid 1px #999;
    margin: 30px 0 0;
    text-align: center;
    border-collapse: collapse;
    /* eachが使える */
    border-radius: 10px;
  }
}
@media screen and (max-width: 999px) and (min-width: 1000px) and (max-width: 1150px) {
  footer .footer_inner .timeTable table {
    font-size: 16px;
  }
}
@media screen and (max-width: 999px) {
  footer .footer_inner .timeTable table thead th, footer .footer_inner .timeTable table thead td {
    width: 33.333%;
  }
  footer .footer_inner .timeTable table thead th {
    background: #6E81BF;
    padding: 10px;
    border-bottom: solid 1px #999;
    color: #fff;
  }
  footer .footer_inner .timeTable table thead td {
    color: #6E81BF;
    background: #EEF2FA;
    font-weight: bold;
  }
  footer .footer_inner .timeTable table tbody tr th {
    color: #333;
    background: #EEF2FA;
    font-weight: 500;
  }
  footer .footer_inner .timeTable table tbody tr:nth-of-type(4) th {
    padding: 10px 10px 15px;
    color: #333;
    background: #f9f9f9;
    font-weight: bold;
  }
  footer .footer_inner .timeTable table tbody tr:nth-of-type(4) th a {
    color: #333;
    text-decoration: underline;
  }
  footer .footer_inner .timeTable table tbody tr:nth-of-type(4) th span {
    display: block;
    font-weight: 500;
    font-size: 15px;
    margin: 10px 0 0;
    padding: 0 0 0 1em;
    text-align: left;
  }
  footer .footer_inner .timeTable table tbody tr:nth-of-type(4) th span:before {
    content: "※";
    margin-left: -1em;
    color: orange;
  }
  footer .footer_inner .timeTable table tr th, footer .footer_inner .timeTable table tr td {
    border-collapse: collapse;
    border: solid 1px #6E81BF;
    padding: 10px;
    line-height: 1.3;
    vertical-align: middle;
  }
  footer .footer_inner .timeTable table tr td span.bold {
    color: #6E81BF;
  }
  footer .footer_inner .exterior {
    width: 100%;
    order: 2;
    /*Googleマップで拡大地図を表示ボタン*/
    /*電車・バス・車・自転車でご来院の方へボタン*/
  }
  footer .footer_inner .exterior .googleMap {
    width: 100%;
  }
  footer .footer_inner .exterior .googleMap iframe {
    height: 550px;
    /* eachが使える */
    border-radius: 10px;
    margin: 0 0 20px;
  }
  footer .footer_inner .exterior p a {
    display: block;
    border: solid 2px #5C4843;
    margin: 20px 0;
    padding: 10px;
    color: #5C4843;
    text-align: center;
    /* eachが使える */
    border-radius: 10px;
    font-weight: 500;
    background: rgb(252.45, 252.45, 252.45);
  }
  footer .footer_inner .exterior p a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
  }
  footer .footer_inner .exterior p a:hover {
    background: #fff;
  }
  footer .footer_inner .exterior ul {
    display: flex;
    justify-content: space-between;
  }
  footer .footer_inner .exterior ul li {
    width: calc((100% - 20px) / 3);
    font-size: 16px;
  }
  footer .footer_inner .exterior ul li a {
    display: block;
    border: solid 2px #6E81BF;
    color: #6E81BF;
    background: rgb(252.45, 252.45, 252.45);
    width: 100%;
    text-align: center;
    padding: 15px 0;
    /* eachが使える */
    border-radius: 10px;
    font-weight: 500;
  }
  footer .footer_inner .exterior ul li a span {
    letter-spacing: -0.1em;
  }
  footer .footer_inner .exterior ul li a:hover {
    background: #fff;
  }
  footer .googleMap {
    width: 100%;
  }
  footer .googleMap iframe {
    width: 100%;
    margin: 10px 0 0;
    height: 600px;
  }
  footer .googleCalendar {
    max-width: 1240px;
    width: 100%;
    margin: 50px auto 0;
    padding: 0 20px;
  }
  footer .googleCalendar h3 {
    color: #5C4843;
    margin: 0 0 10px;
    font-size: 24px;
  }
  footer .googleCalendar ul {
    display: flex;
    margin: 0 0 20px;
  }
  footer .googleCalendar ul li {
    margin-right: 20px;
  }
  footer .googleCalendar ul li span.am {
    color: #4285f4;
  }
  footer .googleCalendar ul li span.pm {
    color: #009688;
  }
  footer .googleCalendar ul li span.closed {
    color: #616161;
  }
  footer .googleCalendar .cal-wrapper .cal-container {
    width: 100%;
    height: 500px;
    position: relative;
    margin: 0 0 30px;
  }
  footer .googleCalendar .cal-wrapper .cal-container .kakushi_top {
    width: 40px;
    height: 36px;
    background: #eef2f8;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 10px 0 0;
  }
  footer .googleCalendar .cal-wrapper .cal-container .kakushi_bottom {
    width: 40px;
    height: 26px;
    background: #eef2f8;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 0 0 10px 0;
  }
  footer .googleCalendar .cal-wrapper .cal-container iframe {
    width: 100%;
    height: 500px;
  }
  footer .googleCalendar .cal-wrapper .cal-container iframe.no-nav {
    pointer-events: none;
  }
  footer .footerFix_sp {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    background: #6E81BF;
    flex-wrap: wrap;
    z-index: 1;
    pointer-events: auto;
  }
  footer .footerFix_sp::before {
    content: "ご予約・お問い合わせはお気軽に";
    margin: 0 auto 8px;
    display: block;
    color: #fff;
    font-weight: 600;
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  footer .footerFix_sp li {
    width: calc((100% - 30px) / 3);
    height: auto;
  }
  footer .footerFix_sp li a {
    display: block;
    height: auto;
    padding: 5px 0 0;
    text-align: center;
    background: rgb(249.9, 249.9, 249.9);
    color: #5C4843;
    font-weight: 500;
    /* eachが使える */
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
  }
  footer .footerFix_sp li a:hover {
    background: #fff;
  }
  footer .footerFix_sp li a:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
    background-size: contain;
  }
  footer .footerFix_sp li:nth-of-type(1) a:before {
    background-image: url(../images/sp/icon_footerFix_phone.png);
  }
  footer .footerFix_sp li:nth-of-type(2) {
    width: calc((100% - 30px) / 3);
  }
  footer .footerFix_sp li:nth-of-type(2) a {
    width: 100%;
  }
  footer .footerFix_sp li:nth-of-type(2) a span {
    display: block;
    font-size: 14px;
    line-height: 1.75;
  }
  footer .footerFix_sp li:nth-of-type(2) a:before {
    background-image: url(../images/sp/icon_footerFix_calendar.png);
  }
  footer .footerFix_sp li:nth-of-type(3) a:before {
    background-image: url(../images/sp/icon_footerFix_line.png);
  }
  footer .footerFix_sp li:nth-of-type(4) {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  footer .footerFix_sp li:nth-of-type(4) a {
    background: none;
    color: #fff;
    text-decoration: underline;
    line-height: 1;
    text-align: center;
    padding: 5px 0 0;
  }
  footer .footerFix_sp li:nth-of-type(4) a:before {
    content: none;
  }
  footer .grandeur {
    text-align: center;
    margin: 0;
  }
  footer .grandeur dt {
    font-weight: 500;
    font-size: 11px;
    color: #656464;
    margin: 0 0 5px;
  }
  footer .grandeur dd a {
    border: none;
    outline: none;
  }
  footer .grandeur dd a img {
    width: 160px;
    height: auto;
  }
  footer #pagetop {
    position: fixed;
    bottom: 80px;
    right: 5px;
    text-align: center;
    z-index: 2;
  }
  footer #pagetop a span {
    display: block;
    color: #a5acbf;
    font-size: 10px;
    padding-top: 5px;
    font-weight: 700;
  }
  footer #pagetop a:before {
    content: ""; /*何も入れない*/
    display: inline-block; /*忘れずに！*/
    width: 50px; /*画像の幅*/
    height: 50px; /*画像の高さ*/
    background-image: url("../images/pagetop.png");
    background-size: contain;
    vertical-align: middle;
  }
  footer .googleMap {
    margin: 30px 0 0;
  }
  footer .googleMap iframe {
    width: 100%;
    height: 400px;
  }
  footer .copyright {
    color: #333;
    text-align: center;
    padding: 40px 0 40px;
    font-weight: 400;
    letter-spacing: -0.8px;
  }
  footer .copyright a {
    color: #333;
  }
}
/* -----------------------------------------------------------
（PC表示）パンくずリスト（下層ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 961px) {
  .breadcrumbArea {
    max-width: 1240px;
    width: 100%;
    margin: 100px auto 0;
  }
  .breadcrumbArea .breadcrumb {
    border: dashed 1px #5C4843;
    padding: 10px 20px;
    list-style: none;
  }
  .breadcrumbArea .breadcrumb li {
    display: inline; /*横に並ぶように*/
    list-style: none;
    font-size: 12px;
  }
  .breadcrumbArea .breadcrumb li:after {
    /* >を表示*/
    content: ">";
    padding: 0 0.5em;
    color: #5C4843;
  }
  .breadcrumbArea .breadcrumb li:last-child:after {
    content: "";
  }
  .breadcrumbArea .breadcrumb li a {
    text-decoration: none;
    color: #5C4843;
    font-weight: bold;
  }
  .breadcrumbArea .breadcrumb li a:hover {
    text-decoration: underline;
  }
}
/* -----------------------------------------------------------
（SP表示）パンくずリスト（下層ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 960px) {
  .breadcrumbArea {
    border: dashed 1px #5C4843;
    margin: 0;
  }
  .breadcrumbArea .breadcrumb {
    margin: 0;
    padding: 5px 10px;
    list-style: none;
  }
  .breadcrumbArea .breadcrumb li {
    display: inline; /*横に並ぶように*/
    list-style: none;
    font-size: 13px;
  }
  .breadcrumbArea .breadcrumb li:after {
    /* >を表示*/
    content: ">";
    padding: 0 0.2em;
    color: #999;
  }
  .breadcrumbArea .breadcrumb li:last-child:after {
    content: "";
  }
  .breadcrumbArea .breadcrumb li a {
    text-decoration: none;
    color: #5C4843;
  }
}
/* -----------------------------------------------------------
（PC表示）ボックス（下層ページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .box {
    margin: 0 auto 80px;
  }
  .box a {
    text-decoration: underline;
    color: #5C4843;
    font-weight: 500;
  }
  .box p {
    font-size: 17px;
    margin: 0 0 20px;
    line-height: 1.7;
  }
  .box h3 {
    font-size: 40px;
    color: #6E81BF;
    margin: 0 0 40px;
    line-height: 1.3;
    text-align: center;
    font-weight: 500;
  }
  .box h3 span {
    font-size: 70%;
  }
  .box h4 {
    font-size: 30px;
    margin: 40px 0 10px;
    color: #5C4843;
    font-weight: 500;
    line-height: 1.5;
  }
  .box h4.h4_comment {
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 430px;
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 5px;
    background-color: #6E81BF;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
  }
  .box h4.h4_comment:before {
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 30px;
    height: 15px;
    background-color: #6E81BF;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
  }
  .box h5 {
    font-size: 22px;
    margin: 30px 0 10px;
    color: #6E81BF;
  }
  .box .h4_box {
    border: double 3px #6E81BF;
    margin: 0 0 40px;
    padding: 20px 30px 30px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box figure {
    max-width: 400px;
    width: 100%;
  }
  .box figure img {
    width: 100%;
    height: auto;
  }
  .box figure.right {
    float: right;
    margin: 0 0 40px 40px;
  }
  .box figure.left {
    float: left;
    margin: 0 40px 40px 0;
  }
  .box .box_inner {
    margin: 0 0 30px;
  }
  .box .data_table {
    width: 100%;
    border: solid 1px #999;
    margin: 30px 0 20px;
    text-align: center;
    border-collapse: collapse;
    border-radius: 10px;
  }
  .box .data_table caption {
    background: #6E81BF;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    font-weight: 500;
  }
  .box .data_table th, .box .data_table td {
    border: solid 1px #6E81BF;
    vertical-align: middle;
  }
  .box .data_table th {
    width: 200px;
    color: #333;
    background: #EEF2FA;
    font-weight: 500;
    vertical-align: middle;
    padding: 10px 0;
  }
  .box .data_table td {
    border-collapse: collapse;
    padding: 10px;
    line-height: 1.5;
    text-align: left;
  }
  .box .price_table {
    width: 100%;
    border: solid 1px #999;
    margin: 0 auto 30px;
    text-align: center;
    border-collapse: collapse;
    border-radius: 10px;
  }
  .box .price_table caption {
    background: #6E81BF;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    font-weight: 500;
  }
  .box .price_table th, .box .price_table td {
    border: solid 1px #6E81BF;
    vertical-align: middle;
    width: 50%;
    text-align: center;
  }
  .box .price_table th {
    color: #333;
    background: #EEF2FA;
    font-weight: 500;
    vertical-align: middle;
    padding: 1rem 0;
  }
  .box .price_table td {
    border-collapse: collapse;
    padding: 10px;
    line-height: 1.5;
  }
}
/* -----------------------------------------------------------
（SP表示）ボックス（下層ページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .box {
    margin: 0 0 50px;
    text-align: center;
  }
  .box h3 {
    font-size: 26px;
    color: #6E81BF;
    margin: 0 0 20px;
    line-height: 1.3;
    text-align: center;
    font-weight: 500;
  }
  .box h3 span {
    font-size: 70%;
  }
  .box h4 {
    font-size: 22px;
    margin: 30px 0 10px;
    color: #5C4843;
    line-height: 1.3;
    text-align: left;
  }
  .box h4.h4_comment {
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 430px;
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 5px;
    background-color: #6E81BF;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-size: min(5vw, 18px);
  }
  .box h4.h4_comment:before {
    position: absolute;
    bottom: -14px;
    left: 50px;
    width: 30px;
    height: 15px;
    background-color: #6E81BF;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
  }
  .box h5 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #6E81BF;
    text-align: left;
    line-height: 1.5;
  }
  .box a {
    text-decoration: underline;
    color: #5C4843;
    font-weight: 500;
  }
  .box p {
    font-size: 17px;
    margin: 0 0 10px;
    text-align: left;
  }
  .box p.okigarunigosoudan {
    border: solid 1px #5C4843;
    padding: 10px 0;
    color: #5C4843;
    text-align: center;
    font-weight: bold;
  }
  .box .h4_box {
    border: double 3px #6E81BF;
    margin: 0 0 40px;
    padding: 20px 20px 30px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box figure {
    width: 100%;
    margin: 0 auto 20px;
  }
  .box figure img {
    width: 100%;
    height: auto;
  }
  .box .box_inner {
    margin: 0 0 30px;
  }
  .box .box_inner h4 {
    font-size: 20px;
    margin: 0 0 10px;
    line-height: 150%;
  }
  .box .box_inner h4:nth-of-type(n+2) {
    margin-top: 20px;
  }
  .box .box_inner h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .box .data_table {
    width: 100%;
    border: solid 1px #999;
    margin: 30px 0 20px;
    text-align: center;
    border-collapse: collapse;
    border-radius: 10px;
  }
  .box .data_table caption {
    background: #6E81BF;
    color: #fff;
    font-size: 18px;
    padding: 10px;
  }
  .box .data_table th, .box .data_table td {
    border: solid 1px #6E81BF;
    vertical-align: middle;
  }
  .box .data_table th {
    width: 110px;
    color: #333;
    background: #EEF2FA;
    font-weight: 500;
    vertical-align: middle;
    line-height: 1.2;
    padding: 10px 0;
  }
  .box .data_table td {
    border-collapse: collapse;
    padding: 10px;
    line-height: 1.5;
    text-align: left;
  }
  .box .price_table { /*価格表*/
    width: 100%;
    border: solid 1px #999;
    margin: 0 0 20px;
    text-align: center;
    border-collapse: collapse;
    border-radius: 10px;
  }
  .box .price_table caption {
    background: #6E81BF;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    font-weight: 500;
  }
  .box .price_table th, .box .price_table td {
    border: solid 1px #6E81BF;
    vertical-align: middle;
    width: 40%;
    text-align: center;
  }
  .box .price_table th {
    color: #333;
    background: #EEF2FA;
    font-weight: 500;
    vertical-align: middle;
    padding: 1rem 0;
    line-height: 1.3;
  }
  .box .price_table td {
    border-collapse: collapse;
    padding: 10px;
    line-height: 1.5;
  }
}
/* -----------------------------------------------------------
（PC表示）アンカーリンクボタン
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .anchorLink {
    margin: 0 0 70px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    z-index: 1;
    position: relative;
  }
  .anchorLink li {
    margin: 0 0 20px;
    font-size: 18px;
  }
  .anchorLink li a {
    display: inline-block;
    color: #5C4843;
    margin: 0 30px 0 0;
    padding: 7px 5px;
    border-bottom: dashed 1px #5C4843;
    position: relative;
    font-weight: 500;
    text-decoration: none;
  }
  .anchorLink li a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    line-height: 1;
    margin: 0 0 0 10px;
    display: inline-block;
    font-weight: bold;
    color: #5C4843;
  }
  .anchorLink li a:hover:after {
    transform: rotate(90deg);
    transition: all 0.3s ease 0s;
  }
}
/* -----------------------------------------------------------
（SP表示）アンカーリンクボタン
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .anchorLink {
    position: relative;
    margin: 0 0 30px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .anchorLink li {
    list-style: none;
    font-size: 13px;
    margin: 10px 10px 0 0;
    line-height: 1.5;
  }
  .anchorLink li a {
    display: inline-block;
    color: #5C4843;
    margin: 0 0 0 0;
    padding: 5px 0;
    border-bottom: dashed 1px #5C4843;
    position: relative;
    font-weight: bold;
  }
  .anchorLink li a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f063";
    line-height: 1;
    margin: 0 0 0 10px;
  }
}
/* -----------------------------------------------------------
（PC表示）当院についてページ（clinic.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #clinic {
    /*外観・院内のご案内*/
  }
  #clinic .greetingFlex {
    display: flex;
    margin: 0 0 70px;
  }
  #clinic .greetingFlex .greetingText {
    width: calc(100% - 470px);
    order: 1;
  }
  #clinic .greetingFlex .greetingText p {
    line-height: 1.6;
    text-align: left;
    text-indent: 1em;
  }
  #clinic .greetingFlex .doctor {
    order: 2;
  }
  #clinic .greetingFlex .doctor .doctorPic {
    height: auto;
    margin: 0 0 30px 50px;
    display: block;
    width: 420px;
    height: 550px;
    background: url("../images/clinic_doctor_.jpg") top center no-repeat;
  }
  #clinic .greetingFlex .doctor .doctorName {
    text-align: right;
    margin: 0 20px 0 0;
  }
  #clinic .greetingFlex .doctor .doctorName span {
    margin-right: 10px;
  }
  #clinic .greetingFlex .doctor .doctorName rt {
    font-size: 12px;
    display: ruby-text;
    text-indent: 0px;
    line-height: normal;
    -webkit-text-emphasis: none;
            text-emphasis: none;
    margin: 0 0 3px;
  }
  #clinic .greetingFlex .doctor .doctorName rb {
    letter-spacing: 0.2em;
    padding-left: 0.2em;
    font-weight: 500;
  }
  #clinic .greetingFlex .doctor .doctorName ruby {
    font-size: 30px;
    margin: 10px 0 0;
  }
  #clinic .historyFlex {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  #clinic .historyFlex div {
    width: calc((100% - 40px) / 2);
    padding: 30px;
    border: solid 1px #ccc;
    /* eachが使える */
    border-radius: 10px;
  }
  #clinic .historyFlex div h4 {
    margin: 0;
    border-bottom: none;
  }
  #clinic .historyFlex .history dl {
    display: flex;
    margin: 0;
    padding: 15px 0;
    border-bottom: dashed 1px #ccc;
  }
  #clinic .historyFlex .history dl:last-of-type {
    margin: 0;
    border-bottom: none;
  }
  #clinic .historyFlex .history dl dt {
    width: 130px;
  }
  #clinic .historyFlex .history dl dd {
    width: calc(100% - 130px);
  }
  #clinic .historyFlex .history dl dt, #clinic .historyFlex .history dl dd {
    font-size: 17px;
  }
  #clinic .historyFlex .qualification ul li {
    width: 100%;
    margin: 0;
    padding: 15px 0;
    border-bottom: dashed 1px #ccc;
    font-weight: 400;
    font-size: 17px;
  }
  #clinic .historyFlex .qualification ul li:last-of-type {
    border-bottom: none;
  }
  #clinic #medicalPartner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #clinic #medicalPartner ul li {
    width: calc((100% - 60px) / 3);
    margin: 0 20px 20px 0;
    text-align: center;
  }
  #clinic #medicalPartner ul li a {
    display: block;
    background: #EEF2FA;
    text-decoration: none;
    padding: 10px;
    /* eachが使える */
    border-radius: 10px;
  }
  #clinic #medicalPartner ul li a img {
    width: 100%;
    height: auto;
  }
  #clinic #equipment h4 {
    margin: 0 0 10px;
  }
  #clinic #equipment dl {
    display: flex;
    align-items: center;
    margin: 40px 0 0;
  }
  #clinic #equipment dl dt {
    margin: 0 40px 0 0;
    order: 1;
  }
  #clinic #equipment dl dt img {
    width: 340px;
    height: auto;
  }
  #clinic #equipment dl dd {
    order: 2;
    width: calc(100% - 380px);
  }
  #clinic #equipment dl dd h5 {
    margin: 0 0 20px;
    display: inline-block;
    font-size: 30px;
    color: #333;
    font-weight: 500;
  }
  #clinic #equipment #equipment_rehabilitation {
    margin: 100px 0 0;
  }
  #clinic .container {
    position: relative;
    margin: 0 auto;
    max-width: 900px;
  }
  #clinic .swiper-container {
    text-align: center;
    cursor: grab;
  }
  #clinic .swiper-container:active {
    cursor: grabbing;
  }
  #clinic .swiper-container .swiper-slide {
    position: relative;
  }
  #clinic .swiper-container .swiper-slide img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  #clinic .swiper-container .swiper-slide dd {
    font-size: 26px;
    font-weight: 500;
    margin: 10px auto;
    color: #5C4843;
  }
  #clinic #thumbs {
    height: 10%;
    box-sizing: border-box;
    padding: 10px 0 0;
  }
  #clinic #thumbs .swiper-slide {
    width: 16%;
    height: auto;
    opacity: 0.3;
    cursor: grab;
  }
  #clinic #thumbs .swiper-slide:active {
    cursor: grabbing;
  }
  #clinic #thumbs .swiper-slide-active {
    opacity: 1;
  }
  #clinic .swiper-blind-left,
  #clinic .swiper-blind-right {
    position: absolute;
    width: 11.55%;
    height: 100%;
    display: block;
    top: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 2;
  }
  #clinic .swiper-blind-left {
    left: 0;
  }
  #clinic .swiper-blind-right {
    right: 0;
  }
}
@media print and (max-width: 600px), screen and (min-width: 1000px) and (max-width: 600px) {
  #clinic .swiper-blind-left, #clinic .swiper-blind-right {
    display: none;
  }
}
@media print, screen and (min-width: 1000px) {
  #clinic .back {
    width: 100%;
    text-align: center;
    margin: 60px 0;
  }
  #clinic .back a {
    color: #2B59C3;
  }
  #clinic .back a:hover {
    color: #1CCAD8;
  }
  #clinic .swiper-button-next,
  #clinic .swiper-button-prev {
    position: absolute;
    top: 38%;
    z-index: 3;
  }
  #clinic .swiper-button-next.swiper-button-disabled,
  #clinic .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  #clinic .swiper-button-prev::before {
    position: relative;
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    background: rgba(255, 255, 255, 0.5);
    padding: 7px 13px;
    opacity: 1;
    background: #6E81BF;
    color: #fff;
    font-weight: bold;
    font-size: 26px;
  }
  #clinic .swiper-button-next::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    background: rgba(255, 255, 255, 0.5);
    padding: 7px 13px;
    opacity: 1;
    background: #6E81BF;
    color: #fff;
    font-weight: bold;
    font-size: 26px;
  }
  #clinic .swiper-button-prev:hover:before {
    animation: arrow_prev 0.5s ease-out forwards;
    color: #fff;
    background-color: rgb(102.9234449761, 122.8507177033, 187.8765550239);
  }
  #clinic .swiper-button-next:hover:before {
    animation: arrow_next 0.5s ease-out forwards;
    color: #fff;
    background-color: rgb(102.9234449761, 122.8507177033, 187.8765550239);
  }
  #clinic .swiper-button-prev,
  #clinic .swiper-container-rtl .swiper-button-next {
    left: 30px;
    right: auto;
  }
  #clinic .swiper-button-next,
  #clinic .swiper-container-rtl .swiper-button-prev {
    right: 40px;
    left: auto;
  }
}
/* -----------------------------------------------------------
（SP表示）当院についてページ（clinic.html）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #clinic {
    /*画像ギャラリー*/
  }
  #clinic .greetingFlex {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  #clinic .greetingFlex .greetingText {
    width: 100%;
    order: 1;
    text-indent: 1em;
  }
  #clinic .greetingFlex .greetingText p {
    line-height: 1.6;
  }
  #clinic .greetingFlex .doctor {
    order: 2;
    margin: 20px 0 0;
  }
  #clinic .greetingFlex .doctor .doctorPic {
    height: auto;
    margin: 0 auto 20px;
    display: block;
    width: 90%;
    height: 350px;
    background: url("../images/clinic_doctor_.jpg") center center/auto 100% no-repeat;
  }
  #clinic .greetingFlex .doctor .doctorName {
    text-align: right;
    margin: 0 20px 30px 0;
  }
  #clinic .greetingFlex .doctor .doctorName span {
    margin-right: 10px;
  }
  #clinic .greetingFlex .doctor .doctorName rt {
    font-size: 12px;
    display: ruby-text;
    text-indent: 0px;
    line-height: normal;
    -webkit-text-emphasis: none;
            text-emphasis: none;
  }
  #clinic .greetingFlex .doctor .doctorName rb {
    letter-spacing: 0.2em;
    padding-left: 0.2em;
    font-weight: 500;
  }
  #clinic .greetingFlex .doctor .doctorName ruby {
    font-size: 24px;
    margin: 10px 0 0;
  }
  #clinic .greetingFlex .doctorPic {
    order: 2;
    height: auto;
    margin: 0 auto 30px;
    width: 80%;
    height: 340px;
    background: #eee url("../images/about_doctor_.jpg") top center no-repeat;
  }
  #clinic .historyFlex {
    border: solid 1px #ccc;
    padding: 0 15px 20px;
    text-align: left;
    /* eachが使える */
    border-radius: 10px;
  }
  #clinic .historyFlex h4 {
    color: #333;
    font-size: 22px;
    font-weight: 500;
    margin: 20px 0 10px;
    padding: 0;
    border: none;
    display: block;
  }
  #clinic .historyFlex div dl {
    margin: 0;
    padding: 15px 0;
    border-bottom: dashed 1px #ccc;
  }
  #clinic .historyFlex div dl:last-of-type {
    margin: 0;
    border-bottom: none;
  }
  #clinic .historyFlex div dl dt {
    width: 100%;
    color: #999;
    font-size: 15px;
    margin: 0 0 5px;
  }
  #clinic .historyFlex div dl dd {
    width: 100%;
    font-size: 17px;
  }
  #clinic .historyFlex div ul {
    margin: 0;
  }
  #clinic .historyFlex div ul li {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    border-bottom: dashed 1px #ccc;
  }
  #clinic .historyFlex div ul li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
  #clinic #first .noReservationRequired {
    text-align: center;
  }
  #clinic #first .box_inner {
    text-align: center;
  }
  #clinic #first .box_inner h4 {
    margin: 20px auto;
    padding: 5px;
    border: solid 1px #786766;
    color: #786766;
    display: inline-block;
    font-size: 16px;
  }
  #clinic #first .box_inner p {
    text-align: left;
  }
  #clinic #first .box_inner ul {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px auto 20px;
    padding: 20px 20px 0;
    justify-content: space-between;
    border: dashed 1px #6E81BF;
    background: #fff;
    /* eachが使える */
    border-radius: 10px;
  }
  #clinic #first .box_inner ul li {
    width: 100%;
    height: auto;
    text-align: left;
    padding: 0 0 0 60px;
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    color: #786766;
    transform: translateY(0);
    line-height: 1.3;
  }
  #clinic #first .box_inner ul li span {
    display: block;
    font-size: 14px;
    color: #333;
    line-height: 2;
  }
  #clinic #first .box_inner ul li:before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    width: 50px;
    height: 50px;
  }
  #clinic #first .box_inner ul li:nth-of-type(1):before {
    background-image: url("../images/clinic_first_01.png");
  }
  #clinic #first .box_inner ul li:nth-of-type(2):before {
    background-image: url("../images/clinic_first_02.png");
  }
  #clinic #first .box_inner ul li:nth-of-type(3):before {
    background-image: url("../images/clinic_first_03.png");
  }
  #clinic #first .box_inner figure.payment {
    margin: 40px 0 0;
  }
  #clinic #medicalPartner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #clinic #medicalPartner ul li {
    width: 100%;
    margin: 0 0 20px 0;
    text-align: center;
  }
  #clinic #medicalPartner ul li:last-of-type {
    margin: 0;
  }
  #clinic #medicalPartner ul li a {
    display: block;
    background: #EEF2FA;
    text-decoration: none;
    padding: 10px;
    /* eachが使える */
    border-radius: 10px;
  }
  #clinic #medicalPartner ul li a img {
    width: 100%;
    height: auto;
  }
  #clinic #equipment h4 {
    text-align: center;
    margin: 5px 0;
    padding: 5px 0 7px;
    font-weight: 500;
    color: #5C4843;
  }
  #clinic #equipment dl {
    align-items: center;
    margin: 30px 0 0;
  }
  #clinic #equipment dl dt {
    margin: 0 0 0 0;
  }
  #clinic #equipment dl dt img {
    width: 100%;
    height: auto;
  }
  #clinic #equipment dl dd {
    width: 100%;
  }
  #clinic #equipment dl dd h5 {
    margin: 10px 0;
    font-size: 24px;
    display: inline-block;
    color: #333;
    font-weight: 500;
  }
  #clinic #equipment #equipment_rehabilitation {
    margin: 40px 0 0;
  }
  #clinic .container {
    position: relative;
    margin: 0 auto 0;
    max-width: 800px;
  }
  #clinic .swiper-container {
    text-align: center;
    cursor: grab;
  }
  #clinic .swiper-container:active {
    cursor: grabbing;
  }
  #clinic .swiper-container .swiper-slide {
    position: relative;
  }
  #clinic .swiper-container .swiper-slide img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  #clinic .swiper-container .swiper-slide dd {
    display: inline;
    z-index: 1;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto 15px;
    color: #5C4843;
    width: 240px;
    font-size: 20px;
    padding: 5px;
    font-weight: 500;
  }
  #clinic #thumbs {
    height: 10%;
    box-sizing: border-box;
    padding: 10px 0 0;
  }
  #clinic #thumbs .swiper-slide {
    width: 16%;
    height: auto;
    opacity: 0.3;
    cursor: grab;
  }
  #clinic #thumbs .swiper-slide:active {
    cursor: grabbing;
  }
  #clinic #thumbs .swiper-slide-active {
    opacity: 1;
  }
  #clinic .swiper-blind-left,
  #clinic .swiper-blind-right {
    position: absolute;
    width: 11.55%;
    height: 100%;
    display: block;
    top: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
  }
  #clinic .swiper-blind-left {
    left: 0;
  }
  #clinic .swiper-blind-right {
    right: 0;
  }
}
@media screen and (max-width: 999px) and (max-width: 600px) {
  #clinic .swiper-blind-left, #clinic .swiper-blind-right {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  #clinic .swiper-button-next,
  #clinic .swiper-button-prev {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    z-index: 1;
  }
  #clinic .swiper-button-next.swiper-button-disabled,
  #clinic .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  #clinic .swiper-button-prev::before {
    position: relative;
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    opacity: 1;
    border: 1px solid #6E81BF;
    color: #6E81BF;
    font-weight: bold;
  }
  #clinic .swiper-button-next::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    opacity: 1;
    border: 1px solid #6E81BF;
    color: #6E81BF;
    font-weight: bold;
  }
  #clinic .swiper-button-prev:hover:before {
    animation: arrow_prev 0.5s ease-out forwards;
    background: rgb(255, 255, 255);
  }
  #clinic .swiper-button-next:hover:before {
    animation: arrow_next 0.5s ease-out forwards;
    background: rgb(255, 255, 255);
  }
  #clinic .swiper-button-prev,
  #clinic .swiper-container-rtl .swiper-button-next {
    left: -6px;
    right: auto;
  }
  #clinic .swiper-button-next,
  #clinic .swiper-container-rtl .swiper-button-prev {
    right: 0;
    left: auto;
  }
}
/* -----------------------------------------------------------
（PC表示）初めてご来院の方へ（guide.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #guide #noReservationRequired {
    border: dashed 1px #ccc;
    padding: 40px 40px 40px 60px;
    text-align: left;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
  }
}
@media print and (min-width: 1000px) and (max-width: 1150px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1150px) {
  #guide #noReservationRequired {
    padding: 40px 30px;
  }
}
@media print, screen and (min-width: 1000px) {
  #guide #noReservationRequired:before {
    content: "";
    display: inline-block;
    width: 300px;
    height: 300px;
    background-image: url("../images/clinic_reservation_.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -80px;
    right: 50px;
    background-repeat: no-repeat;
  }
}
@media print and (min-width: 1051px) and (max-width: 1150px), screen and (min-width: 1000px) and (min-width: 1051px) and (max-width: 1150px) {
  #guide #noReservationRequired:before {
    width: 250px;
    height: 250px;
    top: -30px;
    right: 30px;
    background-repeat: no-repeat;
  }
}
@media print and (min-width: 1000px) and (max-width: 1050px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1050px) {
  #guide #noReservationRequired:before {
    width: 220px;
    height: 220px;
    top: -50px;
    right: 30px;
    background-repeat: no-repeat;
  }
}
@media print, screen and (min-width: 1000px) {
  #guide #noReservationRequired h3 {
    text-align: left;
    font-size: 30px;
    margin: 0 0 15px;
    color: #333;
  }
  #guide #noReservationRequired h3 span.indent {
    margin: 0 -13px;
    display: inline-block;
    font-size: 30px;
  }
  #guide #noReservationRequired h3:after {
    content: none;
  }
  #guide #noReservationRequired p {
    margin: 0 0 0 5px;
  }
  #guide #noReservationRequired p span.bgPink {
    background: #fbe9dd;
    padding: 3px 5px 4px 10px;
    font-weight: bold;
  }
  #guide #noReservationRequired p small {
    margin: 10px 0 0;
  }
  #guide #pay h4 {
    text-align: center;
    margin: 50px 0 20px;
  }
  #guide #pay .payFlex {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin: 40px auto 0;
  }
  #guide #pay .payFlex dl {
    width: calc((100% - 60px) / 3);
    border: solid 1px #6E81BF;
    position: relative;
    background: rgb(245.8818181818, 248.0272727273, 252.3181818182);
  }
  #guide #pay .payFlex dl dt {
    background: #6E81BF;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
  }
  #guide #pay .payFlex dl dd {
    padding: 30px;
    text-align: center;
  }
  #guide #pay .payFlex dl dd p {
    text-align: left;
    margin: 0;
  }
  #guide #pay .payFlex dl dd img {
    width: 180px;
    margin: 0 auto 10px;
  }
  #guide #bring {
    text-align: center !important;
  }
  #guide #bring h4 {
    text-align: center;
    margin: 60px 0 0;
    font-size: 32px;
    font-weight: 500;
    color: #333;
  }
  #guide #bring p {
    text-align: center;
  }
  #guide #bring p.bring {
    width: 400px;
    font-size: 26px;
    font-weight: 500;
    margin: 70px auto 30px;
    padding: 60px 20px 30px;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
    background: rgb(245.8818181818, 248.0272727273, 252.3181818182);
    border: solid 1px #6E81BF;
  }
  #guide #bring p.bring:before {
    position: absolute;
    top: -30px;
    right: 0;
    left: 0;
    margin: auto;
    background: url("../images/guide_bring_.png") top center !important;
    content: "";
    display: inline-block;
    width: 130px;
    height: 79px;
    background-size: contain !important;
    vertical-align: middle;
    background-repeat: no-repeat !important;
  }
  #guide #bring p.bring span {
    font-weight: normal;
    font-size: 15px;
    display: block;
    line-height: 1.3;
  }
  #guide #bring .bringFlex {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 0;
  }
  #guide #bring .bringFlex li {
    width: calc((100% - 60px) / 4);
    text-align: center;
    margin: 40px 0 0;
    padding: 50px 10px 20px;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
    background: rgb(245.8818181818, 248.0272727273, 252.3181818182);
    font-weight: 500;
    color: #333;
    font-size: 20px;
    border: solid 1px #6E81BF;
  }
  #guide #bring .bringFlex li span {
    font-weight: normal;
    font-size: 15px;
    line-height: 1;
  }
  #guide #bring .bringFlex li:before {
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background-repeat: no-repeat;
  }
  #guide #bring .bringFlex li:nth-of-type(1):before {
    top: -40px;
    width: 60px;
    height: 78px;
    background-image: url(../images/guide_bringFlex_01.png);
  }
  #guide #bring .bringFlex li:nth-of-type(2):before {
    top: -40px;
    width: 60px;
    height: 78px;
    background-image: url(../images/guide_bringFlex_02.png);
  }
  #guide #bring .bringFlex li:nth-of-type(3):before {
    top: -40px;
    width: 75px;
    height: 78px;
    background-image: url(../images/guide_bringFlex_03.png);
  }
  #guide #bring .bringFlex li:nth-of-type(4):before {
    top: -40px;
    width: 60px;
    height: 76px;
    background-image: url(../images/guide_bringFlex_04.png);
  }
  #guide p .small {
    display: block;
  }
  #guide #faq .faqBox {
    margin: 0 0 30px;
    border: solid 1px #6E81BF;
    overflow: hidden;
    /* eachが使える */
    border-radius: 8px;
  }
  #guide #faq .faqBox:last-of-type {
    margin: 0;
  }
  #guide #faq .faqBox p {
    margin: 0;
  }
  #guide #faq .faqBox label {
    display: block;
    height: auto;
    margin: 0;
    cursor: pointer;
    transition: all 0.5s;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 15px 70px 15px 30px;
    color: #333;
    font-weight: 500;
    background: rgb(252.45, 252.45, 252.45);
  }
  #guide #faq .faqBox label p {
    font-size: 20px !important;
    line-height: 130%;
    margin: 0;
  }
  #guide #faq .faqBox label:hover {
    background: #fff;
  }
  #guide #faq .faqBox label:before {
    content: "Q";
    margin: -10px 30px 5px 0;
    font-size: 40px;
    font-weight: bold;
    color: #6E81BF;
  }
  #guide #faq .faqBox label:after {
    font-family: "Font Awesome 5 Free";
    content: "\f0dd";
    -webkit-font-smoothing: antialiased;
    display: block;
    font-weight: bold;
    position: absolute;
    color: #6E81BF;
    font-size: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 30px;
    height: 20px;
  }
  #guide #faq .faqBox label:hover:before, #guide #faq .faqBox label:hover:after {
    color: #6E81BF;
  }
  #guide #faq .faqBox input {
    display: none;
  }
  #guide #faq .faqBox .answer {
    height: 0;
    padding: 0;
    margin: 0 20px;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    line-height: 150%;
    vertical-align: middle;
    position: relative;
  }
  #guide #faq .faqBox .answer p {
    font-size: 17px;
    line-height: 150%;
    margin: 0;
  }
  #guide #faq .faqBox .answer p img {
    margin: 20px 0 0;
  }
  #guide #faq .faqBox .answer ul {
    margin: 10px 0;
  }
  #guide #faq .faqBox .answer ul li {
    list-style: disc;
  }
  #guide #faq .faqBox .cssacc:checked + .answer {
    height: auto;
    margin: 20px 30px 20px;
    opacity: 1;
    position: relative;
  }
}
/* -----------------------------------------------------------
（SP表示）初めてご来院の方へ（guide.html）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #guide #noReservationRequired {
    border: solid 1px #6E81BF;
    padding: 20px;
    text-align: left;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
  }
  #guide #noReservationRequired:before {
    content: "";
    display: inline-block;
    width: 90px;
    height: 90px;
    background-image: url("../images/clinic_reservation_.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -20px;
    right: -10px;
  }
  #guide #noReservationRequired h3 {
    text-align: left;
    font-size: 22px;
    margin: 0 0 15px;
    color: #000;
    line-height: 1.3;
  }
  #guide #noReservationRequired h3 span.indent {
    margin: 0 -7px;
    display: inline-block;
    font-size: 22px;
    letter-spacing: -0.005em;
  }
  #guide #noReservationRequired h3:after {
    content: none;
  }
  #guide #noReservationRequired p {
    margin: 0;
  }
  #guide #noReservationRequired p span.bgPink {
    background: #fbe9dd;
    margin: 3px 0 0 0;
    padding: 3px 5px 4px 10px;
    font-weight: bold;
    display: inline-block;
  }
  #guide #noReservationRequired p small {
    margin: 10px 0 0;
  }
  #guide #pay h4 {
    text-align: center;
    margin: 50px 0 20px;
  }
  #guide #pay .payFlex {
    margin: 20px auto 0;
  }
  #guide #pay .payFlex dl {
    border: solid 1px #6E81BF;
    position: relative;
    background: rgb(245.8818181818, 248.0272727273, 252.3181818182);
    margin: 0 0 20px;
  }
  #guide #pay .payFlex dl:last-of-type {
    margin: 0;
  }
  #guide #pay .payFlex dl dt {
    background: #6E81BF;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
  }
  #guide #pay .payFlex dl dd {
    padding: 20px;
    text-align: center;
  }
  #guide #pay .payFlex dl dd p {
    text-align: left;
    margin: 0;
  }
  #guide #pay .payFlex dl dd img {
    width: 120px;
    margin: 0 auto 10px;
  }
  #guide #bring {
    text-align: center;
  }
  #guide #bring h4 {
    text-align: center;
    margin: 30px 0 0;
    font-size: 32px;
    font-weight: 500;
  }
  #guide #bring p.bring {
    width: 100%;
    font-size: 22px;
    font-weight: 500;
    border: solid 1px #6E81BF;
    margin: 50px auto 20px;
    padding: 63px 0 20px;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
    background: #fefefe;
    text-align: center;
    color: #333;
  }
  #guide #bring p.bring:before {
    position: absolute;
    top: -30px;
    right: 0;
    left: 0;
    margin: auto;
    background: url("../images/guide_bring_.png") top center !important;
    content: "";
    display: inline-block;
    width: 130px;
    height: 79px;
    background-size: contain !important;
    vertical-align: middle;
    background-repeat: no-repeat !important;
  }
  #guide #bring p.bring span {
    font-weight: normal;
    font-size: 16px;
    display: block;
    line-height: 1.3;
  }
  #guide #bring .bringFlex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
  }
  #guide #bring .bringFlex li {
    width: calc((100% - 20px) / 2);
    text-align: center;
    border: solid 1px #6E81BF;
    margin: 40px 0 0;
    padding: 50px 10px 15px;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
    background: #fefefe;
    font-weight: 500;
  }
  #guide #bring .bringFlex li span {
    font-weight: normal;
  }
  #guide #bring .bringFlex li:before {
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background-repeat: no-repeat;
  }
  #guide #bring .bringFlex li:nth-of-type(1):before {
    top: -25px;
    width: 50px;
    height: 65px;
    background-image: url(../images/guide_bringFlex_01.png);
  }
  #guide #bring .bringFlex li:nth-of-type(2):before {
    top: -25px;
    width: 50px;
    height: 65px;
    background-image: url(../images/guide_bringFlex_02.png);
  }
  #guide #bring .bringFlex li:nth-of-type(3):before {
    top: -25px;
    width: 65px;
    height: 68px;
    background-image: url(../images/guide_bringFlex_03.png);
  }
  #guide #bring .bringFlex li:nth-of-type(4):before {
    top: -25px;
    width: 50px;
    height: 64px;
    background-image: url(../images/guide_bringFlex_04.png);
  }
  #guide #faq .faqBox {
    margin: 0 0 20px;
    border: solid 1px #6E81BF;
    overflow: hidden;
    /* eachが使える */
    border-radius: 8px;
  }
  #guide #faq .faqBox:last-of-type {
    margin: 0;
  }
  #guide #faq .faqBox p {
    margin: 0;
  }
  #guide #faq .faqBox label {
    display: block;
    height: auto;
    margin: 0;
    cursor: pointer;
    transition: all 0.5s;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 15px 40px 15px 15px;
    color: #333;
    font-weight: 500;
    background: #fff;
  }
  #guide #faq .faqBox label p {
    font-size: 17px;
    line-height: 130%;
    margin: 0;
  }
  #guide #faq .faqBox label:hover {
    background: #fcfcfc;
  }
  #guide #faq .faqBox label:before {
    content: "Q";
    margin: -5px 15px 0 0;
    font-size: 26px;
    font-weight: bold;
    color: #6E81BF;
  }
  #guide #faq .faqBox label:after {
    font-family: "Font Awesome 5 Free";
    content: "\f0dd";
    -webkit-font-smoothing: antialiased;
    display: block;
    font-weight: bold;
    position: absolute;
    color: #6E81BF;
    font-size: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 15px;
    height: 20px;
  }
  #guide #faq .faqBox label:hover:before, #guide #faq .faqBox label:hover:after {
    color: #6E81BF;
  }
  #guide #faq .faqBox input {
    display: none;
  }
  #guide #faq .faqBox .answer {
    height: 0;
    padding: 0 10px;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    line-height: 150%;
    vertical-align: middle;
    position: relative;
  }
  #guide #faq .faqBox .answer p {
    font-size: 17px;
    line-height: 150%;
    margin: 0;
  }
  #guide #faq .faqBox .answer p img {
    margin: 20px 0 0;
  }
  #guide #faq .faqBox .answer ul {
    margin: 10px 0;
  }
  #guide #faq .faqBox .answer ul li {
    list-style: disc;
  }
  #guide #faq .faqBox .cssacc:checked + .answer {
    height: auto;
    margin: 20px 10px 10px;
    padding: 0 10px 10px;
    opacity: 1;
    position: relative;
  }
}
/* -----------------------------------------------------------
（PC表示）診療案内（treatment.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #treatment .box {
    margin: 0 0 40px;
  }
  #treatment .btn a {
    color: #fff;
  }
}
/* -----------------------------------------------------------
（SP表示）診療案内（treatment.html）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #treatment .btn {
    text-align: center;
  }
  #treatment .btn a {
    color: #fff;
  }
}
/* -----------------------------------------------------------
（PC表示）疾患から探す（disease.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #disease .box .diseaseFlex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 0 30px;
    padding: 30px 30px 20px;
    /* eachが使える */
    border-radius: 10px;
    background: rgb(245.8818181818, 248.0272727273, 252.3181818182);
    border: solid 1px #6E81BF;
  }
  #disease .box .diseaseFlex li {
    margin: 0 0 20px 0;
  }
  #disease .box .diseaseFlex li:after {
    margin: 0 10px;
    content: "/";
  }
  #disease .box .btn {
    text-align: center;
  }
  #disease .box .btn a {
    color: #fff !important;
  }
}
/* -----------------------------------------------------------
（SP表示）疾患から探す（disease.html）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #disease .box .diseaseFlex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 0 30px;
    padding: 20px 20px 10px;
    /* eachが使える */
    border-radius: 10px;
    background: rgb(245.8818181818, 248.0272727273, 252.3181818182);
    border: solid 1px #6E81BF;
  }
  #disease .box .diseaseFlex li {
    margin: 0 0 20px 0;
  }
  #disease .box .diseaseFlex li:after {
    margin: 0 10px;
    content: "/";
  }
  #disease .box .btn {
    text-align: center;
  }
  #disease .box .btn a {
    color: #fff !important;
    padding: 10px 50px 10px 20px;
  }
  #disease .box .btn a:after {
    right: 20px;
  }
  #disease .box .btn a span {
    font-size: 15px;
  }
}
/* -----------------------------------------------------------
（PC表示）アクセス（access.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #access .accessFlex {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin: 0 auto;
  }
  #access .accessFlex dl {
    width: calc((100% - 40px) / 2);
  }
  #access .accessFlex dl dt {
    text-align: center;
    margin: 0 0 20px;
  }
  #access .accessFlex dl dt img {
    width: 100%;
    height: auto;
    margin: 20px 0 10px;
  }
  #access .accessFlex dl dt span.bold {
    font-size: 20px;
  }
  #access .accessFlex dl dt span.kakko {
    display: inline-block;
    border: solid 1px #5C4843;
    margin: 10px 0 10px;
    padding: 5px 10px 7px;
  }
  #access .accessFlex dl dt h3 {
    margin: 0 0 10px;
  }
  #access .accessFlex dl dt h3 span {
    display: block;
    color: #333;
    font-size: 20px;
    margin: 5px 0 0;
  }
  #access .accessFlex dl dd {
    text-align: center;
  }
  #access .accessFlex dl dd iframe {
    width: 100%;
    height: 500px;
    margin: 0 0 30px;
  }
  #access .accessFlex dl dd .btn {
    margin: 0;
  }
  #access .accessFlex dl dd .btn a {
    color: #fff;
    margin: 0;
  }
}
/* -----------------------------------------------------------
（SP表示）アクセス（access.html）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #access .accessFlex {
    margin: 0 auto;
  }
  #access .accessFlex dl {
    width: 100%;
    margin: 0 0 30px;
  }
  #access .accessFlex dl:last-of-type {
    margin: 0;
  }
  #access .accessFlex dl dt {
    text-align: center;
    margin: 0 0 20px;
  }
  #access .accessFlex dl dt span.bold {
    font-size: 20px;
  }
  #access .accessFlex dl dt img {
    width: 100%;
    height: auto;
    margin: 20px 0 0;
  }
  #access .accessFlex dl dt span.kakko {
    display: inline-block;
    border: solid 1px #5C4843;
    margin: 10px 0 0;
    padding: 5px;
  }
  #access .accessFlex dl dt h3 {
    margin: 0 0 10px;
  }
  #access .accessFlex dl dt h3 span {
    display: block;
    color: #333;
    font-size: 20px;
    margin: 5px 0 0;
  }
  #access .accessFlex dl dd {
    text-align: center;
    margin: 0 0 20px;
  }
  #access .accessFlex dl dd iframe {
    width: 100%;
    height: 300px;
    margin: 0 0 30px;
  }
  #access .accessFlex dl dd img {
    width: 100%;
    height: auto;
  }
  #access .accessFlex dl dd .btn {
    margin: 0;
    text-align: center;
  }
  #access .accessFlex dl dd .btn a {
    color: #fff;
    margin: 0;
  }
}
/* -----------------------------------------------------------
（PC表示）お知らせ記事ページ
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #information main .box {
    text-align: center;
  }
  #information main .box h4 {
    font-size: 20px;
    margin: 0 0 20px;
    padding: 0 0 10px;
    color: #6E81BF;
    display: inline-block;
    border-bottom: solid 2px #6E81BF;
    font-weight: 500;
  }
  #information main .box h4:nth-of-type(n+2) {
    margin: 20px 0 20px;
  }
  #information main .box p.date {
    font-size: 16px;
    display: inline-block;
    padding: 2px 10px;
    margin: 0 auto 30px;
    text-align: center;
    border: solid 1px #6E81BF;
    color: #6E81BF;
    font-weight: bold;
  }
  #information main .box .box_inner {
    text-align: left;
  }
  #information main .box .archive {
    margin: 30px 0 0;
  }
  #information main .box .archive a {
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 20px 60px 20px 0;
    border-top: dashed 1px #ccc;
    box-sizing: border-box;
    position: relative;
  }
  #information main .box .archive a:last-of-type {
    border-bottom: dashed 1px #ccc;
  }
  #information main .box .archive a:hover {
    background: #fafafa;
  }
  #information main .box .archive a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    -webkit-font-smoothing: antialiased;
    display: block;
    font-weight: bold;
    position: absolute;
    color: #6E81BF;
    font-size: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    height: 20px;
  }
  #information main .box .archive a:hover:after {
    right: 17px;
    transition: all 0.3s ease 0s;
  }
  #information main .box .archive a dl {
    display: flex;
    align-items: flex-start;
  }
  #information main .box .archive a dl dt {
    width: 140px;
    box-sizing: border-box;
    text-align: center;
    line-height: 180%;
    font-weight: 400;
    color: #5C4843;
  }
  #information main .box .archive a dl dd {
    width: calc(100% - 140px);
    font-size: 16px;
    line-height: 180%;
    color: #5C4843;
    text-align: left;
    font-weight: 500;
  }
  #information main .box .aligncenter {
    display: block;
    margin: 0 auto 20px;
    max-width: 1200px;
    height: auto;
  }
  #information main .box .alignright {
    max-width: 500px;
    height: auto;
    float: right;
    margin: 0 0 20px 20px;
  }
  #information main .box .alignright img {
    width: 100%;
    height: auto;
  }
  #information main .box .alignleft {
    max-width: 500px;
    height: auto;
    float: left;
    margin: 0 20px 20px 0;
  }
  #information main .box .alignleft img {
    width: 100%;
    height: auto;
  }
  #information main .box .pageNation {
    display: flex;
    justify-content: space-between;
  }
  #information main .box ul {
    margin: 0 0 20px;
    padding-left: 25px;
  }
  #information main .box ul li {
    list-style: disc;
    margin: 0 0 5px 0;
    line-height: 150%;
    font-size: 18px;
  }
  #information main .box ul li:last-of-type {
    margin: 0;
  }
  #information main .box ul li span {
    font-weight: bold;
  }
  #information main .pagenav {
    width: 1080px;
    margin: 0 auto 70px;
    padding: 0 20px;
    display: flex;
    align-items: center;
  }
  #information main .pagenav .current {
    padding: 7px 10px;
    color: #333;
  }
  #information main .pagenav a {
    text-decoration: none;
  }
  #information main .pagenav a.page-numbers {
    display: block;
    background: #fafafa;
    color: #703c0d;
    padding: 7px 10px;
    text-decoration: underline;
  }
  #information main .pagenav a.page-numbers:hover {
    color: #6E81BF;
  }
  #information main .pagenav a.next, #information main .pagenav a.prev {
    margin: 0 0 0 10px;
    background: none;
    text-decoration: none;
  }
}
/* -----------------------------------------------------------
（SP表示）お知らせ記事ページ
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #information .box {
    text-align: center;
    padding: 0 10px;
    margin: 0 0 20px;
  }
  #information .box h3 {
    margin: 20px 0 10px;
  }
  #information .box h4 {
    font-size: 20px;
    margin: 0 0 20px;
    padding: 0 0 5px;
    border: none;
    color: #6E81BF;
    display: inline-block;
    border-bottom: solid 2px #6E81BF;
    font-weight: 500;
  }
  #information .box h4:nth-of-type(n+2) {
    margin: 20px 0 10px;
  }
  #information .box p.date {
    font-size: 13px;
    display: inline-block;
    padding: 2px 10px 0;
    margin: 0 auto 20px;
    text-align: center;
    border: solid 1px #6E81BF;
    color: #6E81BF;
    font-weight: bold;
  }
  #information .box .box_inner {
    text-align: left;
  }
  #information .box .archive a {
    display: block;
    width: 100%;
    text-decoration: none;
    margin: 0 0 0;
    padding: 10px 20px 10px 0;
    border-top: dashed 1px #ccc;
    box-sizing: border-box;
    position: relative;
  }
  #information .box .archive a:last-of-type {
    border-bottom: dotted 1px #ccc;
  }
  #information .box .archive a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    -webkit-font-smoothing: antialiased;
    display: block;
    font-weight: bold;
    position: absolute;
    color: #6E81BF;
    font-size: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 10px;
    height: 20px;
  }
  #information .box .archive a:hover:after {
    right: 7px;
    transition: all 0.3s ease 0s;
  }
  #information .box .archive a dl dt {
    width: 100%;
    text-align: left;
    color: #5C4843;
    font-weight: 400;
  }
  #information .box .archive a dl dd {
    width: 98%;
    font-size: 16Rpx;
    line-height: 150%;
    color: #5C4843;
    text-align: left;
    font-weight: 500;
  }
  #information .box ul {
    margin: 0 0 20px;
    padding-left: 25px;
  }
  #information .box ul li {
    list-style: disc;
    margin: 0 0 5px 0;
    line-height: 150%;
    font-size: 18px;
  }
  #information .box ul li:last-of-type {
    margin: 0;
  }
  #information .box ul li span {
    font-weight: bold;
  }
  #information .box .aligncenter, #information .box .alignright, #information .box .alignleft {
    display: block;
    margin: 0 auto 20px;
  }
  #information .pagenav {
    width: 1080px;
    margin: 0 auto 30px;
    padding: 0 20px;
    display: flex;
    align-items: center;
  }
  #information .pagenav .current {
    padding: 7px 10px;
    color: #333;
  }
  #information .pagenav a {
    text-decoration: none;
  }
  #information .pagenav a.page-numbers {
    display: block;
    background: #fcf0ec;
    color: #703c0d;
    padding: 7px 10px;
    text-decoration: underline;
  }
  #information .pagenav a.page-numbers:hover {
    color: #6E81BF;
  }
  #information .pagenav a.next, #information .pagenav a.prev {
    margin: 0;
    background: none;
    text-decoration: none;
  }
}
/* -----------------------------------------------------------
（PC表示）電話番号をPCではリンクさせない
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .tel a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: #333;
  }
}
/* -----------------------------------------------------------
（SP表示）電話番号をSPではリンクさせる
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .tel a[href^="tel:"] {
    pointer-events: auto;
  }
}
/* -----------------------------------------------------------
（PC表示）404ERRORページ（WordPress固定ページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  /*WordPress*/
  #notice .entry-title {
    display: none;
  }
  #notice .entry-header,
  #notice .entry-footer {
    display: none;
  }
  #notice #error404 {
    margin: 100px auto 100px;
    text-align: center;
  }
  #notice #error404 .errorFrame {
    border: solid 1px #000;
    padding: 5px;
    display: inline-block;
    text-align: center;
    margin: 0 auto 10px;
  }
  #notice #error404 p {
    margin-bottom: 20px;
  }
  #notice #error404 p.center {
    font-weight: bold;
    font-size: 22px;
    color: #6E81BF;
  }
}
/* -----------------------------------------------------------
（SP表示）404ERRORページ（WordPress固定ページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  /*WordPress*/
  #notice .entry-title {
    display: none;
  }
  #notice .entry-header,
  #notice .entry-footer {
    display: none;
  }
  #notice #error404 {
    margin: 100px auto 100px;
    text-align: center;
  }
  #notice #error404 .errorFrame {
    border: solid 1px #000;
    padding: 5px;
    display: inline-block;
    text-align: center;
    margin: 0 auto 10px;
  }
  #notice #error404 p {
    margin-bottom: 30px;
  }
  #notice #error404 p.center {
    font-weight: bold;
    font-size: 22px;
    color: #6E81BF;
  }
}
/* -----------------------------------------------------------
（PC表示）準備中
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .inPreparation {
    border: solid 1px #6E81BF;
    margin: 0 10px;
    padding: 100px 50px;
    font-size: 26px;
    font-weight: 400;
    color: #6E81BF;
    text-align: center;
  }
}
/* -----------------------------------------------------------
（SP表示）準備中
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .inPreparation {
    border: solid 1px #6E81BF;
    margin: 0 0 50px;
    padding: 50px;
    font-weight: bold;
    color: #6E81BF;
    text-align: center !important;
  }
}
/*========= スクロールダウンのためのCSS ===============*/
/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/
/*スクロールダウン全体の場所*/
.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 0;
  right: 50%;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
  z-index: 2;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 0%;
  }
  50% {
    bottom: 2%;
  }
  100% {
    bottom: 0%;
  }
}
/*Scrollテキストの描写*/
.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 1px;
  height: 20px;
  background: #fff;
  transform: skewX(-31deg);
}

.scrolldown4:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 1px;
  height: 50px;
  background: #fff;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
/*==================================================
ふわっ
===================================*/
/* fadeUp */
.fade {
  animation-name: fadeUp;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.fadeUp:nth-child(1) {
  animation-delay: 0.1s;
}

.fadeUp:nth-child(2) {
  animation-delay: 0.2s;
}

.fadeUp:nth-child(3) {
  animation-delay: 0.3s;
}

.fadeUp:nth-child(4) {
  animation-delay: 0.4s;
}

.fadeUp:nth-child(5) {
  animation-delay: 0.5s;
}

.fadeUp:nth-child(6) {
  animation-delay: 0.6s;
}

.fadeUp:nth-child(7) {
  animation-delay: 0.7s;
}

.fadeUp:nth-child(8) {
  animation-delay: 0.8s;
}

.fadeUp:nth-child(9) {
  animation-delay: 0.9s;
}

.fadeUp:nth-child(10) {
  animation-delay: 1s;
}

.fadeUp:nth-child(11) {
  animation-delay: 1.1s;
}

.fadeUp:nth-child(12) {
  animation-delay: 1.2s;
}

.fadeUp:nth-child(13) {
  animation-delay: 1.3s;
}

.fadeUp:nth-child(14) {
  animation-delay: 1.4s;
}

.fadeUp:nth-child(15) {
  animation-delay: 1.5s;
}

.fadeUp:nth-child(16) {
  animation-delay: 1.6s;
}

.fadeUp:nth-child(17) {
  animation-delay: 1.7s;
}

.fadeUp:nth-child(18) {
  animation-delay: 1.8s;
}

.fadeUp:nth-child(19) {
  animation-delay: 1.9s;
}

.fadeUp:nth-child(20) {
  animation-delay: 2s;
}

.fadeUp:nth-child(21) {
  animation-delay: 2.1s;
}

.fadeUp:nth-child(22) {
  animation-delay: 2.2s;
}

.fadeUp:nth-child(23) {
  animation-delay: 2.3s;
}

.fadeUp:nth-child(24) {
  animation-delay: 2.4s;
}

.fadeUp:nth-child(25) {
  animation-delay: 2.5s;
}

.fadeUp:nth-child(26) {
  animation-delay: 2.6s;
}

.fadeUp:nth-child(27) {
  animation-delay: 2.7s;
}

.fadeUp:nth-child(28) {
  animation-delay: 2.8s;
}

.fadeUp:nth-child(29) {
  animation-delay: 2.9s;
}

.fadeUp:nth-child(30) {
  animation-delay: 3s;
}

.fadeUp:nth-child(31) {
  animation-delay: 3.1s;
}

.fadeUp:nth-child(32) {
  animation-delay: 3.2s;
}

.fadeUp:nth-child(33) {
  animation-delay: 3.3s;
}

.fadeUp:nth-child(34) {
  animation-delay: 3.4s;
}

.fadeUp:nth-child(35) {
  animation-delay: 3.5s;
}

.fadeUp:nth-child(36) {
  animation-delay: 3.6s;
}

.fadeUp:nth-child(37) {
  animation-delay: 3.7s;
}

.fadeUp:nth-child(38) {
  animation-delay: 3.8s;
}

.fadeUp:nth-child(39) {
  animation-delay: 3.9s;
}

.fadeUp:nth-child(40) {
  animation-delay: 4s;
}

.fadeUp:nth-child(41) {
  animation-delay: 5.1s;
}

.fadeUp:nth-child(42) {
  animation-delay: 5.2s;
}

.fadeUp:nth-child(43) {
  animation-delay: 5.3s;
}

.fadeUp:nth-child(44) {
  animation-delay: 5.4s;
}

.fadeUp:nth-child(45) {
  animation-delay: 5.5s;
}

.fadeUp:nth-child(46) {
  animation-delay: 5.6s;
}

.fadeUp:nth-child(47) {
  animation-delay: 5.7s;
}

.fadeUp:nth-child(48) {
  animation-delay: 5.8s;
}

.fadeUp:nth-child(49) {
  animation-delay: 5.9s;
}

.fadeUp:nth-child(50) {
  animation-delay: 6s;
}

.fadeUp:nth-child(51) {
  animation-delay: 6.1s;
}

.fadeUp:nth-child(52) {
  animation-delay: 6.2s;
}

.fadeUp:nth-child(53) {
  animation-delay: 6.3s;
}

.fadeUp:nth-child(54) {
  animation-delay: 6.4s;
}

.fadeUp:nth-child(55) {
  animation-delay: 6.5s;
}

.fadeUp:nth-child(56) {
  animation-delay: 6.6s;
}

.fadeUp:nth-child(57) {
  animation-delay: 6.7s;
}

.fadeUp:nth-child(58) {
  animation-delay: 6.8s;
}

.fadeUp:nth-child(59) {
  animation-delay: 6.9s;
}

.fadeUp:nth-child(60) {
  animation-delay: 7s;
}

/*========= 1文字ずつ出現させるためのCSS ===============*/
.eachTextAnime span {
  opacity: 0;
}

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

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* PC表示で非表示 */
@media print, screen and (min-width: 1000px) {
  .pc_none {
    display: none !important;
  }
}
/* SP表示で非表示 */
@media screen and (max-width: 999px) {
  .sp_none {
    display: none !important;
  }
}
/* -----------------------------------------------------------
（SP/PC共通定義）骨粗鬆症について：osteoporosis.html
----------------------------------------------------------- */
.mark_yellow {
  background: linear-gradient(transparent 80%, yellow 0%);
}

/* -----------------------------------------------------------
（PC表示）骨粗鬆症について：osteoporosis.html
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #osteoporosis .list_left_img {
    padding-left: 39%;
  }
  #osteoporosis .drug_therapy_wrap {
    position: relative;
  }
  #osteoporosis .drug_therapy_wrap figure {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
  }
  #osteoporosis .symptoms_wrap {
    display: flex;
  }
  #osteoporosis .symptoms_wrap figure {
    max-width: 600px;
    margin-right: 1rem;
  }
}
/* -----------------------------------------------------------
（SP表示）骨粗鬆症について：osteoporosis.html
----------------------------------------------------------- */
/* -----------------------------------------------------------
（PC表示）リハビリテーション:rehabilitation.html
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #rehabilitation h4 {
    text-align: center;
    margin: 60px 0 0;
  }
  #rehabilitation .symptoms_list {
    background: #fff;
    padding: 30px 30px 15px;
    border: 1px solid #B5BFE2;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #rehabilitation .symptoms_list li {
    width: calc((100% - 100px) / 3);
    margin: 0 0 15px;
    font-size: 17px;
  }
  #rehabilitation .symptoms_list li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    font-weight: 500;
    padding-right: 0.5rem;
    color: #6e81bf;
  }
}
@media print, screen and (min-width: 1000px) and (max-width: 1260px) {
  #rehabilitation .symptoms_list li {
    width: calc((100% - 50px) / 2);
  }
}
@media print, screen and (min-width: 1000px) {
  #rehabilitation .cancel_list, #rehabilitation .minato_equipment, #rehabilitation .sakai_equipment {
    display: flex;
  }
  #rehabilitation .cancel_list {
    justify-content: space-between;
    margin: 30px 0 0;
  }
  #rehabilitation .cancel_list h5 {
    text-align: center;
    font-size: 22px;
    margin: 0 0 1rem;
  }
  #rehabilitation .cancel_list li {
    padding: 30px 30px 14px;
    border: dashed 1px #6E81BF;
    border-radius: 10px;
    width: calc((100% - 40px) / 2);
    box-sizing: border-box;
  }
  #rehabilitation .cancel_list p:last-child {
    margin-bottom: 1rem;
  }
  #rehabilitation .minato_equipment, #rehabilitation .sakai_equipment {
    margin-top: 1.5em;
  }
  #rehabilitation .minato_equipment figcaption, #rehabilitation .sakai_equipment figcaption {
    text-align: center;
    font-size: 18px;
    margin-top: 0.7rem;
  }
  #rehabilitation .minato_equipment li, #rehabilitation .sakai_equipment li {
    margin-right: 1rem;
  }
  #rehabilitation .minato_equipment li:last-child, #rehabilitation .sakai_equipment li:last-child {
    margin-right: 0rem;
  }
}
/* -----------------------------------------------------------
（SP表示）リハビリテーション:rehabilitation.html
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #rehabilitation h4 {
    text-align: center;
  }
  #rehabilitation .symptoms_list {
    background: white;
    padding: 1rem;
    border: 1px solid #B5BFE2;
    border-radius: 10px;
    margin: 20px 0;
  }
  #rehabilitation .symptoms_list li {
    text-indent: -1.4rem;
    padding-left: 1.4rem;
    margin-bottom: 8px;
  }
  #rehabilitation .symptoms_list li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    font-weight: 500;
    padding-right: 0.5rem;
    color: #6e81bf;
  }
  #rehabilitation .symptoms_list li:last-child {
    margin-bottom: 0;
  }
  #rehabilitation .cancel_list h5 {
    text-align: center;
    margin: 0 0 0.5rem;
  }
  #rehabilitation .cancel_list li {
    padding: 1rem;
    margin: 20px 0 0;
    border: dashed 1px #6E81BF;
    border-radius: 10px;
    box-sizing: border-box;
  }
  #rehabilitation .cancel_list p:last-child {
    margin-bottom: 0.5rem;
  }
  #rehabilitation .minato_equipment, #rehabilitation .sakai_equipment {
    margin-top: 1.5em;
  }
  #rehabilitation .minato_equipment figcaption, #rehabilitation .sakai_equipment figcaption {
    text-align: center;
    font-size: 18px;
    margin-bottom: 0.5rem;
  }
}
/* -----------------------------------------------------------
（PC/SP共通定義）自費診療／予防接種:privateTreatment.html
----------------------------------------------------------- */
/* -----------------------------------------------------------
（PC表示）自費診療／予防接種:privateTreatment.html
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #privateTreatment .price_h4, #privateTreatment .price_p {
    text-align: center;
  }
  #privateTreatment .box table {
    width: 800px;
    margin: 30px auto;
  }
  #privateTreatment .anchorLink {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 0;
  }
  #privateTreatment .anchorLink li a {
    margin-bottom: 20px;
  }
  #privateTreatment .anchorLink li.gr_pearent a {
    background: #6E81BF;
    padding: 10px 20px;
    border-bottom: none;
  }
  #privateTreatment .anchorLink li.gr_pearent a, #privateTreatment .anchorLink li.gr_pearent a:after {
    color: #fff;
  }
  #privateTreatment .anchorLink li:nth-child(2) {
    width: 86%;
  }
  #privateTreatment ul.anchorLink + ul.anchorLink {
    margin-bottom: 70px;
  }
  #privateTreatment h4 + h5 {
    line-height: 1.6;
    margin: 20px 0 10px;
  }
  #privateTreatment h6 {
    font-size: 18px;
    margin: 0 0 5px;
    color: #5C4843;
  }
  #privateTreatment .symptoms_list {
    background: #fff;
    padding: 30px 30px 15px;
    border: 1px solid #B5BFE2;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #privateTreatment .symptoms_list li {
    width: calc((100% - 100px) / 2);
    margin: 0 0 15px;
    font-size: 17px;
  }
  #privateTreatment .symptoms_list li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    font-weight: 500;
    padding-right: 0.5rem;
    color: #6e81bf;
  }
  #privateTreatment .plan_list {
    margin: 40px 0;
  }
  #privateTreatment .plan_list li {
    overflow: hidden;
    border: solid 1px rgb(216.1483253589, 221.2392344498, 237.8516746411);
    border-radius: 10px;
    margin-bottom: 20px;
  }
  #privateTreatment .plan_list li h5 {
    margin: 0;
    padding: 20px;
    color: #6e81bf;
  }
  #privateTreatment .plan_list li p {
    margin-bottom: 0;
    padding: 20px;
  }
  #privateTreatment .plan_list li.standerd {
    border-color: rgb(216.1483253589, 221.2392344498, 237.8516746411);
  }
  #privateTreatment .plan_list li.standerd h5 {
    background-color: #EEF2FA;
    color: #6e81bf;
  }
  #privateTreatment .plan_list li.standerd_plus {
    border-color: rgb(164.5, 211, 226.5);
  }
  #privateTreatment .plan_list li.standerd_plus h5 {
    background-color: #EBFAFF;
    color: #3996b5;
  }
  #privateTreatment .plan_list li.premium {
    border-color: rgb(239.9145728643, 199.4221105528, 112.0854271357);
  }
  #privateTreatment .plan_list li.premium h5 {
    background-color: #fff8e9;
    color: #b48113;
  }
  #privateTreatment .plan_list li.rec_points h5 {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
/* -----------------------------------------------------------
（SP表示）自費診療／予防接種:privateTreatment.html
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #privateTreatment h4 {
    text-align: center;
  }
  #privateTreatment h6 {
    font-size: 17px;
    margin: 10px 0 5px;
    color: #5C4843;
    text-align: left;
  }
  #privateTreatment .anchorLink {
    margin-bottom: 0;
  }
  #privateTreatment ul.anchorLink {
    margin-bottom: 0px;
  }
  #privateTreatment ul.anchorLink + ul.anchorLink {
    margin-bottom: 70px;
  }
  #privateTreatment .anchorLink li.gr_pearent {
    width: 100%;
    margin-right: 0;
  }
  #privateTreatment .anchorLink li.gr_pearent a {
    display: block;
    background: #6E81BF;
    padding: 10px;
    border-bottom: none;
  }
  #privateTreatment .anchorLink li.gr_pearent a, #privateTreatment .anchorLink li.gr_pearent a:after {
    color: #fff;
  }
  #privateTreatment .anchorLink li:nth-child(2) a {
    margin: 0 10px 10px 0;
  }
  #privateTreatment .symptoms_list {
    background: white;
    padding: 1rem;
    border: 1px solid #B5BFE2;
    border-radius: 10px;
    margin: 20px 0;
  }
  #privateTreatment .symptoms_list li {
    text-indent: -1.4rem;
    padding-left: 1.4rem;
    margin-bottom: 8px;
  }
  #privateTreatment .symptoms_list li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    font-weight: 500;
    padding-right: 0.5rem;
    color: #6e81bf;
  }
  #privateTreatment .symptoms_list li:last-child {
    margin-bottom: 0;
  }
  #privateTreatment .plan_list {
    margin: 20px 0;
  }
  #privateTreatment .plan_list li {
    overflow: hidden;
    padding: 0;
    border: solid 1px rgb(216.1483253589, 221.2392344498, 237.8516746411);
    border-radius: 10px;
    margin-bottom: 20px;
  }
  #privateTreatment .plan_list li h5 {
    margin: 0;
    padding: 10px;
    color: #6e81bf;
  }
  #privateTreatment .plan_list li p {
    margin-bottom: 0;
    padding: 10px;
  }
  #privateTreatment .plan_list li.standerd {
    border-color: rgb(216.1483253589, 221.2392344498, 237.8516746411);
  }
  #privateTreatment .plan_list li.standerd h5 {
    background-color: #EEF2FA;
    color: #6e81bf;
  }
  #privateTreatment .plan_list li.standerd_plus {
    border-color: rgb(164.5, 211, 226.5);
  }
  #privateTreatment .plan_list li.standerd_plus h5 {
    background-color: #EBFAFF;
    color: #3996b5;
  }
  #privateTreatment .plan_list li.premium {
    border-color: rgb(239.9145728643, 199.4221105528, 112.0854271357);
  }
  #privateTreatment .plan_list li.premium h5 {
    background-color: #fff8e9;
    color: #b48113;
  }
  #privateTreatment .plan_list li.rec_points h5 {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
/* -----------------------------------------------------------
（PC表示）小児整形外科:pediatric.html
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #pediatric .symptoms_list {
    background: #fff;
    padding: 30px 30px 15px;
    border: 1px solid #B5BFE2;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #pediatric .symptoms_list li {
    width: calc((100% - 100px) / 3);
    display: flex;
    margin: 0 0 15px;
    font-size: 17px;
  }
  #pediatric .symptoms_list li:before {
    content: "●";
    padding-right: 0.5rem;
    color: #B5BFE2;
    font-size: 10px;
  }
}
@media print, screen and (min-width: 1000px) and (max-width: 1260px) {
  #pediatric .symptoms_list li {
    width: calc((100% - 50px) / 2);
  }
}
/* -----------------------------------------------------------
（SP表示）小児整形外科:pediatric.html
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #pediatric .symptoms_list {
    background: #fff;
    padding: 1rem;
    border: 1px solid #B5BFE2;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #pediatric .symptoms_list li {
    width: 100%;
    display: flex;
    margin: 0 0 15px;
    font-size: 17px;
  }
  #pediatric .symptoms_list li:last-child {
    margin-bottom: 0;
  }
  #pediatric .symptoms_list li:before {
    content: "●";
    padding-right: 0.5rem;
    color: #B5BFE2;
    font-size: 10px;
  }
}
/* -----------------------------------------------------------
（PC表示）スポーツ整形外科
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #sports .symptoms_list {
    background: #fff;
    padding: 20px 20px 15px;
    border: 1px solid #B5BFE2;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #sports .symptoms_list li {
    width: calc((100% - 50px) / 2);
    display: flex;
    margin: 0 0 15px;
    font-size: 17px;
  }
  #sports .symptoms_list li:first-child {
    width: 100%;
    color: #6E81BF;
    font-size: 20px;
    font-weight: bold;
  }
  #sports .symptoms_list li:first-child::before {
    display: none;
  }
  #sports .symptoms_list li:before {
    content: "●";
    padding-right: 0.5rem;
    color: #B5BFE2;
    font-size: 10px;
  }
}
@media print, screen and (min-width: 1000px) and (max-width: 1260px) {
  #sports .symptoms_list li {
    width: calc((100% - 40px) / 2);
  }
}
@media print, screen and (min-width: 1000px) {
  #sports .type_box {
    display: flex;
    justify-content: space-between;
  }
  #sports .type_box section {
    margin: 0;
    width: calc((100% - 40px) / 2);
  }
  #sports .type_box section:first-of-type .symptoms_list {
    padding: 20px 30px 41px;
  }
  #sports .type_box section:nth-child(2) {
    margin-bottom: 20px;
  }
  #sports .type_box section h4 {
    margin-top: 0;
  }
}
/* -----------------------------------------------------------
（SP表示）スポーツ整形外科
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #sports .symptoms_list {
    background: #fff;
    padding: 1rem;
    border: 1px solid #B5BFE2;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #sports .symptoms_list li {
    width: 100%;
    display: flex;
    margin: 0 0 15px;
    font-size: 17px;
  }
  #sports .symptoms_list li:first-child {
    width: 100%;
    color: #6E81BF;
    font-size: 20px;
    font-weight: bold;
  }
  #sports .symptoms_list li:first-child::before {
    display: none;
  }
  #sports .symptoms_list li:last-child {
    margin-bottom: 0;
  }
  #sports .symptoms_list li:before {
    content: "●";
    padding-right: 0.5rem;
    color: #B5BFE2;
    font-size: 10px;
  }
  #sports .type_box section:nth-child(2) {
    margin-bottom: 20px;
  }
  #sports .anchorLink li:first-child {
    width: 100%;
  }
}
/* -----------------------------------------------------------
（PC表示）
----------------------------------------------------------- */
/* -----------------------------------------------------------
（SP表示）
----------------------------------------------------------- *//*# sourceMappingURL=style.css.map */