@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&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;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #595757;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*ハンバーガー用*/
  animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
}

/* メインカラー */
/* テキストカラー */
.red {
  color: #C43B40;
}

.orange {
  color: #ef801c;
}

.navy {
  color: #39436B;
}

.bold {
  font-weight: 700;
}

.mainColor {
  color: #39436B;
}

small {
  font-size: 16px;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5;
  display: inline-block;
}
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;
}

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

/* -----------------------------------------------------------
mixin
----------------------------------------------------------- */
/* flexベンダープレフィックス */
/* プレフィックス */
/* -----------------------------------------------------------
（PC表示）ボタン（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .btn a {
    display: inline-block;
    background: #595757;
    color: #fff !important;
    text-decoration: none !important;
    padding: 20px 70px 20px 60px;
    position: relative;
    font-weight: bold;
    /* eachが使える */
    border-radius: 50px;
  }
  .btn a:after {
    content: "▼";
    position: absolute;
    right: 22px;
    transform: rotate(27deg);
    font-size: 9px;
  }
  .btn a:hover {
    transition: all 0.3s ease 0s;
    background-color: #514f4f;
  }
  .btn a:hover:after {
    content: "▼";
    position: absolute;
    right: 20px;
    transform: rotate(27deg);
    font-size: 9px;
  }
}
/* -----------------------------------------------------------
（SP表示）ボタン（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .btn a {
    display: inline-block;
    background: #595757;
    color: #fff;
    text-decoration: none;
    padding: 13px 50px 13px 30px;
    position: relative;
    font-weight: normal;
    /* eachが使える */
    border-radius: 50px;
    font-size: 17px;
  }
  .btn a:after {
    content: "▼";
    position: absolute;
    top: 15px;
    right: 23px;
    transform: rotate(27deg);
    font-size: 9px;
  }
  .btn a:hover {
    transition: all 0.3s ease 0s;
    background-color: #514f4f;
  }
  .btn a:hover:after {
    content: "▼";
    position: absolute;
    right: 20px;
    transform: rotate(27deg);
    font-size: 9px;
  }
}
/* -----------------------------------------------------------
リスト
----------------------------------------------------------- */
.list_none {
  height: auto;
  margin: 0 0 20px;
}
.list_none li {
  margin: 0 0 10px;
  line-height: 22px;
  list-style: none;
  font-size: 17px;
}
.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: 17px;
}
.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: 17px;
}
.list_number li:last-of-type {
  margin: 0;
}

/* ✓（チェックマーク）リスト */
.list_check li {
  margin: 0 0 20px 0;
  padding-left: 30px;
  font-size: 17px;
}
.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: 17px;
}
.list_kome li span {
  font-weight: bold;
}
.list_kome li:before {
  content: "※";
  color: #C43B40;
  font-weight: bold;
  line-height: 1;
  margin-right: 5px;
  margin-left: -1em;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* -----------------------------------------------------------
（PC表示）ハンバーガーメニューボタン（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #overlay-button {
    position: fixed;
    right: -1380px;
    left: 0;
    margin: auto;
    width: 100px;
    height: 100px;
    top: 13px;
    padding: 47px 15px 40px 15px;
    z-index: 5;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    background: #fff;
    /* eachが使える */
    border-radius: 15px;
    /*border-radius: 0 0 0 15px;*/
  }
  /*#index #overlay #overlay_feautre { display: none;}	*/
}
@media print and (min-width: 1351px) and (max-width: 1740px), screen and (min-width: 1000px) and (min-width: 1351px) and (max-width: 1740px) {
  #overlay-button {
    right: 40px;
    left: auto;
  }
}
@media print and (min-width: 1251px) and (max-width: 1350px), screen and (min-width: 1000px) and (min-width: 1251px) and (max-width: 1350px) {
  #overlay-button {
    right: 30px;
    left: auto;
  }
}
@media print and (min-width: 1101px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1101px) and (max-width: 1250px) {
  #overlay-button {
    right: 20px;
    left: auto;
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  #overlay-button {
    right: 10px;
    left: auto;
  }
}
@media print, screen and (min-width: 1000px) {
  #overlay-button span {
    height: 4px;
    width: 70px;
    border-radius: 10px;
    background-color: #FFC42C;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
  }
  #overlay-button span:before {
    top: -22px;
    visibility: visible;
    background-color: #39436B;
  }
  #overlay-button span:after {
    top: 22px;
    background-color: #C43B40;
  }
  #overlay-button span:before, #overlay-button span:after {
    height: 4px;
    width: 70px;
    border-radius: 10px;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
  }
  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(48deg) translate(16px, 20px);
    margin-top: -3px;
    padding-left: 8px;
  }
  input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-48deg) translate(10px, -15px);
    margin-top: -3px;
    padding-left: 8px;
  }
  #overlay {
    height: 100vh;
    width: 100%;
    background: #fafafa;
    z-index: 4;
    visibility: hidden;
    position: fixed;
    padding: 0;
    box-sizing: border-box;
  }
  #overlay .overlay_head {
    display: flex;
    justify-content: space-between;
    margin: 0 0 30px;
    padding: 0;
    align-items: center;
    text-align: center;
  }
  #overlay .overlay_head .logo {
    margin: 0 auto 10px;
  }
  #overlay .overlay_head .logo img {
    width: 700px;
  }
  #overlay .overlay_head .reservationBtn a {
    display: block;
    background: #595757;
    color: #fff;
    padding: 20px 40px 20px 85px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
  }
  #overlay .overlay_head .reservationBtn a span:nth-of-type(1) {
    font-size: 16px;
    line-height: 1.5;
    display: block;
  }
  #overlay .overlay_head .reservationBtn a span:nth-of-type(2) {
    font-size: 16px;
    line-height: 1.5;
    display: block;
    margin: 2px 0 0;
  }
  #overlay .overlay_head .reservationBtn a:before {
    content: "";
    display: inline-block;
    width: 60px;
    height: 53px;
    background-image: url("../images/icon_overLay_reservationBtn.png");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: absolute;
    left: 13px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  #overlay .overlay_head .reservationBtn a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    right: 11px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 20px;
    font-weight: bold;
  }
  #overlay .overlay_head .reservationBtn a:hover {
    background-color: #f9f6f4;
  }
  #overlay .overlay_head .reservationBtn a:hover:before {
    top: -5px;
    transition: all 0.3s ease 0s;
  }
  #overlay .overlay_head .overLayBtnFlex {
    display: flex;
    flex-direction: column;
  }
  #overlay .overlay_head .overLayBtnFlex dl {
    display: flex;
    flex-direction: column;
    margin: 0 0 5px;
    transform: translateY(-3px);
    text-align: right;
  }
  #overlay .overlay_head .overLayBtnFlex dl dt {
    border: solid 1px #595757;
    text-align: center;
    letter-spacing: 0.1em;
    text-indent: 1em;
    color: #595757;
    font-weight: bold;
    margin: 0 0 3px;
    font-size: 16px;
    background: #f6f6f6;
  }
  #overlay .overlay_head .overLayBtnFlex dl dd {
    margin: 0 0 10px 0;
    color: #595757;
    font-weight: 500;
    margin: 0 0 0 0;
    font-size: 40px;
    letter-spacing: 0.01em;
    line-height: 1.1;
  }
  #overlay .overlay_head .overLayBtnFlex dl dd .telDot {
    font-size: 20px;
    margin: 0 5px 0 0;
    color: #595757;
  }
  #overlay .overlay_head .overLayBtnFlex dl dd a {
    color: #39436B !important;
    text-decoration: none !important;
  }
  #overlay .overlay_head .overLayBtnFlex dl dd a:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 32px;
    background-image: url(../images/icon_phone.png);
    background-size: contain;
    vertical-align: middle;
    margin: 0 10px 8px 0;
  }
  #overlay .overlay_head .overLayBtnFlex ul {
    display: flex;
    justify-content: space-between;
  }
  #overlay .overlay_head .overLayBtnFlex ul li {
    width: calc((100% - 20px) / 2);
  }
  #overlay .overlay_head .overLayBtnFlex ul li a {
    display: block;
    background: #f6f6f6;
    text-align: center;
    border: solid 1px #39436B;
    /* eachが使える */
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    padding: 10px;
  }
  #overlay .overlay_head .overLayBtnFlex ul li a span {
    display: block;
  }
  #overlay .overlayArea {
    position: absolute;
    top: -50px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 40px;
    height: 350px;
    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
  }
  #overlay .overlayArea .overlay_inner {
    width: 100%;
    height: auto;
    margin: 0 auto;
    vertical-align: middle;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
  }
  #overlay .overlayArea .overlay_inner .overlayBox {
    width: calc((100% - 30px) / 2);
    vertical-align: bottom;
    display: table-cell;
    margin: 0 0 20px;
    padding: 0;
    box-sizing: border-box;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt p a {
    font-size: 20px;
    text-align: left;
    margin: 0;
    padding: 20px 30px;
    color: #595757;
    display: block;
    position: relative;
    font-weight: 600;
    border: double 3px #eee;
    background: #fff;
    position: relative;
    /* eachが使える */
    border-radius: 8px;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt p a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
    color: #595757;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 20px;
    font-weight: bold;
    font-size: 20px;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt p a:hover {
    background: #fcfbf9;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt p a:hover:after {
    right: 27px;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dd {
    display: none;
  }
}
/* -----------------------------------------------------------
（SP表示）ハンバーガーメニューボタン（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #overlay-button {
    position: fixed;
    right: 7px;
    top: 5px;
    padding: 28px 10px 30px;
    z-index: 5;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    background: #fff;
    /* eachが使える */
    border-radius: 6px;
  }
  #overlay-button span {
    height: 3px;
    width: 45px;
    border-radius: 2px;
    background-color: #FFC42C;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
  }
  #overlay-button span:before {
    top: -15px;
    visibility: visible;
  }
  #overlay-button span:after {
    top: 15px;
  }
  #overlay-button span:before, #overlay-button span:after {
    height: 3px;
    width: 45px;
    border-radius: 2px;
    background-color: #39436B;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
  }
  #overlay-button span:before {
    background-color: #39436B;
  }
  #overlay-button span:after {
    background-color: #C43B40;
  }
  #overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    color: #39436B;
  }
  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 span:after {
    transform: rotate(-45deg) translate(11px, -11px);
  }
  #access #overlay #overlay_access dd {
    display: none;
  }
  #overlay {
    width: 100%;
    height: 100vh;
    background: #fafafa;
    z-index: 3;
    visibility: hidden;
    position: fixed;
    padding: 0 0 140px;
    box-sizing: border-box;
    text-align: center;
    overflow: auto;
  }
  #overlay .overlay_head {
    height: 85px;
    margin: 0 0 70px;
    padding: 7px 10px 0;
  }
  #overlay .overlay_head .logo {
    margin: 90px auto 0;
    width: 90%;
    line-height: 1;
  }
  #overlay .overlay_head .logo img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  #overlay .overlay_head .logo img {
    width: 224px;
  }
}
@media screen and (max-width: 999px) {
  #overlay .overlay_head dl {
    display: none;
  }
  #overlay .overlay_head p {
    font-size: 3vw;
    color: #39436B;
    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;
    padding: 0;
    vertical-align: middle;
    box-sizing: border-box;
    /* eachが使える */
    border-radius: 5px;
    border: double 3px #ccc;
    background: #f6f6f6;
  }
  #overlay .overlayArea .overlay_inner .overlayBox {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    background: none;
  }
  #overlay .overlayArea .overlay_inner .overlayBox:last-of-type {
    margin: 0 auto;
  }
  #overlay .overlayArea .overlay_inner .overlayBox:last-of-type dt p a {
    border-top: dashed 1px #ccc;
    border-bottom: none;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dd:first-of-type a {
    padding: 15px 15px 7px 20px;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dd:last-of-type a {
    padding: 7px 15px 15px 20px;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt p a {
    font-size: 18px;
    text-align: left;
    padding: 15px 20px;
    color: #595757;
    display: block;
    position: relative;
    font-weight: 500;
    background: #fff;
    border-bottom: dashed 1px #ccc;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt p a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
    color: #39436B;
    position: absolute;
    right: 15px;
    top: 11px;
    bottom: 0;
    margin: auto;
    height: 20px;
    font-weight: bold;
    font-size: 14px;
  }
}
@media screen and (max-width: 999px) and (min-width: 1000px) and (max-width: 1150px) {
  #overlay .overlayArea .overlay_inner .overlayBox dt p a {
    font-size: 16px;
  }
}
@media screen and (max-width: 999px) {
  #overlay .overlayArea .overlay_inner .overlayBox dd {
    text-align: left;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dd a {
    color: #595757;
    display: block;
    margin: 0 0 0 0;
    padding: 7px 15px 7px 20px;
    font-size: 16px;
    font-weight: 500;
    background: #fefefe;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dd a:before {
    content: "┗";
  }
  #overlay .overlayArea .overlay_inner .overlayBox dd a:hover {
    background: #fcfbf9;
  }
}
/* -----------------------------------------------------------
（PC表示）ヘッダー（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  header {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
  }
  header .main_nav_pc {
    text-align: right;
    width: 100%;
    padding: 0 40px 0 450px;
  }
}
@media print and (min-width: 1401px) and (max-width: 1450px), screen and (min-width: 1000px) and (min-width: 1401px) and (max-width: 1450px) {
  header .main_nav_pc {
    padding: 0 40px 0 420px;
  }
}
@media print and (min-width: 1251px) and (max-width: 1400px), screen and (min-width: 1000px) and (min-width: 1251px) and (max-width: 1400px) {
  header .main_nav_pc {
    padding: 0 40px 0 370px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  header .main_nav_pc {
    padding: 0 40px 0 280px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .main_nav_pc nav {
    text-align: right;
  }
  header .main_nav_pc #nav {
    margin: auto;
    padding: 0;
  }
  header .main_nav_pc #nav ul {
    overflow: hidden;
    display: flex;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  header .main_nav_pc #nav ul li {
    padding: 0 25px;
    overflow: visible;
  }
}
@media print and (min-width: 1501px) and (max-width: 1550px), screen and (min-width: 1000px) and (min-width: 1501px) and (max-width: 1550px) {
  header .main_nav_pc #nav ul li {
    padding: 0 23px;
  }
}
@media print and (min-width: 1451px) and (max-width: 1500px), screen and (min-width: 1000px) and (min-width: 1451px) and (max-width: 1500px) {
  header .main_nav_pc #nav ul li {
    padding: 0 20px;
  }
}
@media print and (min-width: 1151px) and (max-width: 1450px), screen and (min-width: 1000px) and (min-width: 1151px) and (max-width: 1450px) {
  header .main_nav_pc #nav ul li {
    padding: 0 15px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1150px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1150px) {
  header .main_nav_pc #nav ul li {
    padding: 0 10px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .main_nav_pc #nav ul li:last-of-type {
    background: none;
  }
  header .main_nav_pc #nav ul li a {
    position: relative;
    display: block;
    padding: 0;
    font-size: 17px;
    color: #595757;
    background-repeat: no-repeat;
    background-position: top 50px center;
    font-weight: 500;
  }
}
@media print and (min-width: 1000px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1300px) {
  header .main_nav_pc #nav ul li a {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .main_nav_pc #nav ul li a:hover {
    background-position: top 37px center;
  }
  header .main_nav_pc #nav ul li a i {
    margin: 0 0 0 10px;
    font-size: 10px;
  }
}
@media print and (min-width: 1081px) and (max-width: 1530px), screen and (min-width: 1000px) and (min-width: 1081px) and (max-width: 1530px) {
  header .main_nav_pc #nav ul li a i {
    margin: 0 0 0 5px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1080px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1080px) {
  header .main_nav_pc #nav ul li a i {
    display: none;
  }
}
@media print, screen and (min-width: 1000px) {
  header .main_nav_pc #nav ul li ul {
    display: none;
    position: absolute;
    z-index: 3;
    margin: auto;
    padding: 0;
    margin: 10px 0 0;
  }
  header .main_nav_pc #nav ul li ul li {
    background-image: none !important;
    padding: 0;
  }
  header .main_nav_pc #nav ul li ul li a {
    padding: 15px;
    font-size: 17px;
    margin: 0;
    text-align: center;
    color: #595757;
    background: #fcfcfc;
    border-bottom: dashed 1px #ccc;
  }
  header .main_nav_pc #nav ul li ul li a:after {
    content: none;
  }
  header .main_nav_pc #nav ul li ul li a:hover {
    background: #fff;
  }
  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(-67px);
    width: 240px;
  }
  header .main_nav_pc #nav ul li:nth-of-type(3) ul {
    transform: translateX(-25px);
    width: 200px;
  }
  header .main_nav_pc #nav ul li:nth-of-type(4) ul {
    transform: translateX(-90px);
    width: 250px;
  }
  header .main_nav_pc #nav ul li:nth-of-type(5) ul {
    transform: translateX(-55px);
    width: 180px;
  }
  header .main_nav_pc #nav ul li:nth-of-type(6) ul {
    transform: translateX(-35px);
    width: 150px;
  }
  .mv {
    width: 100%;
    margin: 0 auto 100px;
    padding: 0 20px;
    position: relative;
    max-width: 1640px;
    width: 100%;
    height: 736px;
  }
}
@media print and (min-width: 1251px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1251px) and (max-width: 1300px) {
  .mv {
    height: 680px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .mv {
    height: 600px;
  }
}
@media print, screen and (min-width: 1000px) {
  body:not(#index) .mv {
    height: 400px;
  }
  .mv .logo {
    margin: 0;
    padding: 0 0 0 20px;
    position: absolute;
    z-index: 2;
    display: inline-block;
    background: url("../images/header_logo_bg.png") top left no-repeat;
    border-radius: 0 0 20px 0;
    top: 0;
    left: 0;
    width: 430px;
    height: 268px;
    text-align: center;
  }
}
@media print and (min-width: 1251px) and (max-width: 1400px), screen and (min-width: 1000px) and (min-width: 1251px) and (max-width: 1400px) {
  .mv .logo {
    background: url("../images/header_logo_bg_380.png") top left no-repeat;
    width: 380px;
    height: 237px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .mv .logo {
    background: url("../images/header_logo_bg_300.png") top left no-repeat;
    width: 380px;
    height: 237px;
  }
}
@media print, screen and (min-width: 1000px) {
  .mv .logo img {
    height: auto;
    margin: -100px 0 0 -140px;
  }
}
@media print and (min-width: 1251px) and (max-width: 1400px), screen and (min-width: 1000px) and (min-width: 1251px) and (max-width: 1400px) {
  .mv .logo img {
    width: 220px;
    height: auto;
    margin: -100px 0 5px -140px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .mv .logo img {
    background: url("../images/header_logo_bg_300.png") top left no-repeat;
    width: 170px;
    height: auto;
    margin: -100px 0 5px -170px;
  }
}
@media print, screen and (min-width: 1000px) {
  .mv .logo h2 {
    color: #C43B40;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 0 -150px;
    font-weight: bold;
    line-height: 1.5;
  }
  .mv .logo h2 span {
    font-size: 14px;
    margin: 0 3px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .mv .logo h2 {
    font-size: 18px;
    margin: 0 0 5px -170px;
  }
  .mv .logo h2 span {
    font-size: 13px;
    margin: 0 3px;
  }
}
@media print, screen and (min-width: 1000px) {
  .mv .logo p {
    margin: 0 0 -3px;
  }
  .mv .openDate {
    position: absolute;
    right: 20px;
    bottom: 0;
    z-index: 2;
    font-size: 32px;
    padding: 30px 0 0 30px;
    color: #39436B;
    font-weight: 500;
    background: url("../images/openDate.png");
    width: 243px;
    height: 143px;
    text-align: right;
  }
  .mv .openDate ul {
    display: inline-block;
  }
  .mv .openDate ul li {
    text-align: center;
    margin: 0;
    line-height: 1;
  }
  .mv .openDate ul .year {
    color: #FFC42C;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
  }
  .mv .openDate ul .number {
    color: #C43B40;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
  }
  .mv .openDate ul .gappi {
    font-size: 24px;
    font-weight: 600;
    margin: 0 5px;
    line-height: 1;
  }
  .mv .openDate ul .tue {
    background: #39436B;
    color: #fff;
    /* eachが使える */
    border-radius: 50%;
    line-height: 1;
    font-size: 24px;
    width: 40px;
    height: 40px;
    padding: 7px 0 0;
    display: inline-block;
    transform: translateY(-4px);
  }
  .mv .copy {
    position: absolute;
    z-index: 2;
    color: #fff;
    bottom: 0;
    left: 0;
    color: #595757;
    background: #fff;
    padding: 20px 50px 0 0;
    border-radius: 0 15px 0 0;
    font-weight: 600;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .mv .copy {
    font-size: 22px;
  }
}
@media print, screen and (min-width: 1000px) {
  .mv .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    height: 736px;
  }
}
@media print and (min-width: 1251px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1251px) and (max-width: 1300px) {
  .mv .swiper-slide {
    height: 680px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .mv .swiper-slide {
    height: 600px;
  }
}
@media print, screen and (min-width: 1000px) {
  body:not(#index) .mv .swiper-slide {
    height: 400px;
  }
  .mv .slide-img {
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
    height: 736px;
    /* eachが使える */
    border-radius: 30px;
  }
}
@media print and (min-width: 1251px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1251px) and (max-width: 1300px) {
  .mv .slide-img {
    height: 680px;
    background-position: top center;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .mv .slide-img {
    height: 600px;
    background-position: top center;
  }
}
@media print, screen and (min-width: 1000px) {
  body:not(#index) .mv .slide-img {
    height: 400px;
  }
  section {
    height: auto;
    margin: 0 auto;
  }
}
/* -----------------------------------------------------------
（SP表示）ヘッダー（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  header {
    margin: 0;
  }
  header .logo {
    margin: 0;
    width: 270px;
    line-height: 1;
    padding: 7px 0 10px 10px;
    background: #fff;
  }
  header .logo img {
    width: 100%;
    height: auto;
    margin: 0;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  header .logo img {
    width: 230px;
  }
}
@media screen and (max-width: 999px) {
  header .logo h2 {
    color: #C43B40;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 0 5px;
    text-align: center;
  }
  .main_nav_pc {
    display: none;
  }
  .mv {
    width: 100%;
    margin: 0 auto 0;
    padding: 0 10px;
    height: auto;
    position: relative;
  }
  .mv .openDate {
    position: absolute;
    right: 0;
    top: -2px;
    z-index: 2;
    font-size: 32px;
    padding: 0 10px 10px 10px;
    color: #39436B;
    font-weight: 500;
    background: #fff;
    border-radius: 0 0 0 15px;
    display: inline-block;
    text-align: right;
  }
  .mv .openDate ul {
    display: inline-block;
  }
  .mv .openDate ul li {
    text-align: center;
    margin: 0;
    line-height: 1;
    font-size: 20px;
  }
  .mv .openDate ul li:nth-of-type(3) {
    margin: 3px 0 0;
  }
  .mv .openDate ul .year {
    color: #FFC42C;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    display: block;
    margin: 0 0 3px;
  }
  .mv .openDate ul .number {
    color: #C43B40;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
  }
  .mv .openDate ul .gappi {
    font-size: 17px;
    font-weight: 600;
    margin: 0 5px;
    line-height: 1;
  }
  .mv .openDate ul .tue {
    background: #39436B;
    color: #fff;
    /* eachが使える */
    border-radius: 50%;
    line-height: 1;
    font-size: 18px;
    width: 28px;
    height: 28px;
    padding: 5px 0 0;
    display: inline-block;
    transform: translateY(-4px);
  }
  .mv .copy {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    color: #595757;
    background: #fff;
    padding: 10px 15px 0 0;
    border-radius: 0 15px 0 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }
  .mv .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
  }
  .mv .slide-img {
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    height: 430px;
    /* eachが使える */
    border-radius: 10px;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  .mv .slide-img {
    height: 370px;
  }
}
/* -----------------------------------------------------------
（PC表示）メインエリア
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  main {
    max-width: 1240px;
    width: 100%;
    height: auto;
    margin: auto;
    padding: 0 20px;
  }
  #index main {
    max-width: 100%;
    width: 100%;
    padding: 0 0 0;
  }
  main .anchorPoint {
    margin-top: -30px !important;
    padding-top: 30px !important;
  }
}
/* -----------------------------------------------------------
（SP表示）メインエリア
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  main {
    padding: 0;
  }
  body:not(#index) main {
    padding: 0 20px;
  }
  main .anchorPoint {
    margin-top: -10px !important;
    padding-top: 10px !important;
  }
}
/* -----------------------------------------------------------
（PC表示）お知らせ（トップページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #infoArea {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 100px;
    text-align: center;
  }
  #infoArea h3 {
    color: #595757;
    font-size: 36px;
    font-weight: 500;
    position: relative;
    margin: 0 0 100px;
  }
  #infoArea h3:after {
    content: "";
    display: inline-block;
    width: 85px;
    height: 15px;
    background-image: url(../images/threeColor_.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    margin: auto;
  }
  #infoArea .infoFlex {
    display: flex;
    justify-content: space-between;
    margin: 0 0 80px;
  }
  #infoArea .infoFlex .info {
    width: calc(100% - 560px);
    height: 225px;
    overflow: auto;
    border-top: solid 1px #ccc;
  }
}
@media print and (min-width: 1061px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1061px) and (max-width: 1250px) {
  #infoArea .infoFlex .info {
    width: calc(100% - 500px);
  }
}
@media print and (min-width: 1000px) and (max-width: 1060px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1060px) {
  #infoArea .infoFlex .info {
    width: calc(100% - 430px);
  }
}
@media print, screen and (min-width: 1000px) {
  #infoArea .infoFlex .info a {
    padding: 19px 0;
    display: block;
    border-bottom: dashed 1px #ccc;
    font-size: 17px;
  }
  #infoArea .infoFlex .info a:hover {
    background: #fcfcfc;
  }
  #infoArea .infoFlex .info a dl {
    display: flex;
    justify-content: flex-start;
    color: #595757;
  }
  #infoArea .infoFlex .info a dl dt {
    width: 155px;
    text-align: center;
    color: #999;
    font-weight: bold;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  #infoArea .infoFlex .info a dl dt {
    width: 100px;
  }
}
@media print, screen and (min-width: 1000px) {
  #infoArea .infoFlex .info a dl dd {
    width: calc(100% - 155px);
    text-align: left;
    padding: 0 20px;
  }
  #infoArea .infoFlex .info a dl dd br {
    display: none;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  #infoArea .infoFlex .info a dl dd {
    width: calc(100% - 100px);
    padding: 0 15px 0 20px;
  }
}
@media print, screen and (min-width: 1000px) {
  #infoArea .infoFlex .mask {
    width: 530px;
    height: 225px;
    padding: 44px 30px 0;
    border: dashed 1px #595757;
    /* eachが使える */
    border-radius: 10px;
    background: #FAFAFA;
    text-align: left;
    box-sizing: border-box;
    color: #595757;
    position: relative;
  }
}
@media print and (min-width: 1061px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1061px) and (max-width: 1250px) {
  #infoArea .infoFlex .mask {
    width: 470px;
    padding: 40px 0 0 20px !important;
  }
}
@media print and (min-width: 1000px) and (max-width: 1060px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1060px) {
  #infoArea .infoFlex .mask {
    width: 400px;
    padding: 30px 20px 0 20px !important;
  }
}
@media print, screen and (min-width: 1000px) {
  #infoArea .infoFlex .mask:before {
    content: "";
    display: inline-block;
    width: 128px;
    height: 155px;
    background-image: url(../images/mask.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -15px;
    right: 25px;
  }
}
@media print and (min-width: 1061px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1061px) and (max-width: 1250px) {
  #infoArea .infoFlex .mask:before {
    width: 100px;
    height: 121px;
    top: -30px;
    right: 20px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1060px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1060px) {
  #infoArea .infoFlex .mask:before {
    width: 100px;
    height: 121px;
    top: -60px;
    right: 20px;
  }
}
@media print, screen and (min-width: 1000px) {
  #infoArea .infoFlex .mask h4 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 20px;
  }
  #infoArea .infoFlex .mask p {
    font-size: 17px;
    margin: 0 0 20px;
  }
  #infoArea .infoFlex .mask p:last-of-type {
    margin: 0;
  }
  #infoArea .infoBtn {
    display: flex;
    justify-content: center;
    margin: 0 0 100px;
  }
  #infoArea .infoBtn li a {
    text-align: center;
    display: block;
    position: relative;
  }
  #infoArea .infoBtn li a:after {
    content: "→";
    position: absolute;
    right: 20px;
  }
  #infoArea .infoBtn li a:hover:after {
    right: 17px;
    transition: all 0.3s ease 0s;
  }
  #infoArea .infoBtn li:nth-of-type(1) a {
    background: #FAFAFA;
    border: solid 1px #595757;
    margin-right: 40px;
    padding: 10px 60px 10px 30px;
  }
  #infoArea .infoBtn li:nth-of-type(1) a:hover {
    background: #fff;
  }
  #infoArea .infoBtn li:nth-of-type(2) a {
    background: #595757;
    color: #fff;
    border: solid 1px #595757;
    padding: 10px 60px 10px 30px;
  }
  #infoArea .infoBtn li:nth-of-type(2) a:hover {
    background: #514f4f;
  }
  #infoArea .recruitBnr {
    margin: 0 auto;
  }
  #infoArea .recruitBnr li {
    margin: 0 0 40px;
    display: inline-block;
  }
  #infoArea .recruitBnr li:last-of-type {
    margin: 0;
  }
  #infoArea .recruitBnr a:hover img {
    opacity: 0.9;
  }
  #infoArea .masudaClinic img {
    margin: 100px 0 0;
  }
}
/* スクロール
----------------------------------------*/
/*スクロールバーの横幅指定*/
.deco::-webkit-scrollbar {
  width: 5px;
}

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

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

/* -----------------------------------------------------------
（SP表示）お知らせ（トップページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #infoArea {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 15px;
    text-align: center;
  }
  #infoArea h3 {
    color: #595757;
    font-size: 24px;
    font-weight: 500;
    position: relative;
    margin: 0 0 70px;
  }
  #infoArea h3:after {
    content: "";
    display: inline-block;
    width: 85px;
    height: 15px;
    background-image: url(../images/threeColor_.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    margin: auto;
  }
  #infoArea .infoFlex .info {
    width: 100%;
    max-height: 310px;
    margin: 0 0 50px;
    overflow: auto;
    border-top: solid 1px #ccc;
  }
  #infoArea .infoFlex .info a {
    padding: 10px;
    display: block;
    border-bottom: dashed 1px #595757;
    font-size: 17px;
    background: #fafafa;
  }
  #infoArea .infoFlex .info a dl {
    color: #595757;
    text-align: left;
  }
  #infoArea .infoFlex .info a dl dt {
    width: 100%;
    text-align: left;
    color: #999;
    font-weight: bold;
    margin: 0 0 5px;
  }
  #infoArea .infoFlex .info a dl dd {
    width: 100%;
    padding: 0;
  }
  #infoArea .infoFlex .info a dl dd br {
    display: none;
  }
  #infoArea .infoFlex .mask {
    width: 100%;
    height: auto;
    margin: 0 0 30px;
    padding: 20px 20px 0;
    border: dashed 1px #595757;
    /* eachが使える */
    border-radius: 10px;
    background: #FAFAFA;
    text-align: left;
    box-sizing: border-box;
    color: #595757;
    position: relative;
  }
  #infoArea .infoFlex .mask:before {
    content: "";
    display: inline-block;
    width: 70px;
    height: 85px;
    background-image: url(../images/mask.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -30px;
    right: 22px;
  }
  #infoArea .infoFlex .mask h4 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 20px;
  }
  #infoArea .infoFlex .mask p {
    font-size: 17px;
    margin: 0 0 20px;
  }
  #infoArea .infoBtn {
    margin: 0 0 40px;
  }
  #infoArea .infoBtn li {
    width: 90%;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  #infoArea .infoBtn li {
    width: 100%;
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 999px) {
  #infoArea .infoBtn li a {
    text-align: center;
    display: block;
    position: relative;
  }
  #infoArea .infoBtn li a:after {
    content: "→";
    position: absolute;
    right: 20px;
  }
  #infoArea .infoBtn li a:hover:after {
    right: 17px;
    transition: all 0.3s ease 0s;
  }
  #infoArea .infoBtn li:nth-of-type(1) a {
    background: #FAFAFA;
    border: solid 1px #595757;
    padding: 10px 40px 10px 10px;
  }
  #infoArea .infoBtn li:nth-of-type(1) a:hover {
    background: #fff;
  }
  #infoArea .infoBtn li:nth-of-type(2) a {
    background: #595757;
    color: #fff;
    border: solid 1px #595757;
    padding: 10px 40px 10px 10px;
  }
  #infoArea .infoBtn li:nth-of-type(2) a:hover {
    background: #514f4f;
  }
  #infoArea .recruitBnr {
    margin: 0 0 30px;
  }
  #infoArea .recruitBnr img {
    width: 100%;
    height: auto;
  }
  #infoArea .recruitBnr a:hover img {
    opacity: 0.9;
  }
  #infoArea .recruitBnr {
    margin: 0 auto 20px;
  }
  #infoArea .recruitBnr li {
    margin: 0 0 20px;
    display: inline-block;
  }
  #infoArea .recruitBnr a:hover img {
    opacity: 0.9;
  }
  #infoArea .masudaClinic img {
    width: 100%;
    height: auto;
    margin: 10px 0 0;
  }
}
/* -----------------------------------------------------------
（PC表示）当院の5つの特徴（トップページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #feature {
    background: #F5F2EF;
    position: relative;
    text-align: center;
    padding: 100px 20px;
  }
  #feature:before {
    color: #FFF;
    content: "FEATURE";
    font-size: 120px;
    font-weight: 500;
    position: absolute;
    top: 100px;
    left: -920px;
    right: 0;
    margin: auto;
    width: 540px;
    z-index: 0;
  }
}
@media print and (min-width: 1000px) and (max-width: 1515px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1515px) {
  #feature:before {
    left: 20px;
    right: inherit;
  }
}
@media print, screen and (min-width: 1000px) {
  #feature:after {
    content: "";
    display: inline-block;
    width: 85px;
    height: 15px;
    background-image: url(../images/threeColor_.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 207px;
    left: 0;
    right: -30px;
    margin: auto;
  }
}
@media print and (min-width: 1000px) and (max-width: 1515px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1515px) {
  #feature:after {
    left: 700px;
    right: inherit;
  }
}
@media print, screen and (min-width: 1000px) {
  #feature h3 {
    color: #595757;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 3.2px;
    position: absolute;
    top: 180px;
    left: -400px;
    right: 0;
    margin: auto;
    width: 300px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1515px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1515px) {
  #feature h3 {
    left: 370px;
    right: inherit;
  }
}
@media print, screen and (min-width: 1000px) {
  #feature h3 span {
    font-size: 48px;
    letter-spacing: 4.8px;
  }
  #feature .featureFlex {
    display: flex;
    flex-wrap: wrap;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
  }
  #feature .featureFlex:nth-of-type(1) {
    justify-content: space-between;
    padding: 200px 0 0px;
  }
  #feature .featureFlex:nth-of-type(2) {
    justify-content: center;
    padding: 0;
  }
  #feature .featureFlex:nth-of-type(2) dl {
    margin-right: 50px;
    margin-bottom: 0;
  }
}
@media print and (min-width: 1000px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1300px) {
  #feature .featureFlex:nth-of-type(2) dl {
    margin-right: 40px;
  }
}
@media print, screen and (min-width: 1000px) {
  #feature .featureFlex dl {
    width: calc((100% - 160px) / 3);
    display: flex;
    margin-bottom: 60px;
  }
}
@media print and (min-width: 1301px) and (max-width: 1600px), screen and (min-width: 1000px) and (min-width: 1301px) and (max-width: 1600px) {
  #feature .featureFlex dl {
    width: calc((100% - 100px) / 3);
  }
}
@media print and (min-width: 1000px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1300px) {
  #feature .featureFlex dl {
    width: calc((100% - 80px) / 3);
  }
}
@media print, screen and (min-width: 1000px) {
  #feature .featureFlex dl:nth-of-type(1) {
    margin-top: 20px;
  }
  #feature .featureFlex dl:nth-of-type(2) dt h4 {
    padding-top: 40px;
  }
  #feature .featureFlex dl:nth-of-type(2) dd {
    padding-top: 85px;
  }
  #feature .featureFlex dl:nth-of-type(5) dt h4 {
    padding-top: 40px;
  }
  #feature .featureFlex dl:nth-of-type(5) dd {
    margin-top: 85px;
  }
  #feature .featureFlex dl dt {
    display: block;
    width: 100px;
  }
  #feature .featureFlex dl dt h4 {
    writing-mode: vertical-rl;
    font-size: 30px;
    font-weight: bold;
    color: #595757;
    padding: 4.8em 0 0;
    line-height: 1.2;
    position: relative;
    text-align: center;
    white-space: pre;
    letter-spacing: 0.1em;
  }
}
@media print and (min-width: 1000px) and (max-width: 1500px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1500px) {
  #feature .featureFlex dl dt h4 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media print, screen and (min-width: 1000px) {
  #feature .featureFlex dl dt h4:before {
    content: "";
    display: inline-block;
    width: 67px;
    height: 67px;
    background-size: contain;
    vertical-align: middle;
    transform: translateX(-30px);
    margin: 0 0 20px;
    background-repeat: no-repeat;
  }
}
@media print and (min-width: 1000px) and (max-width: 1500px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1500px) {
  #feature .featureFlex dl dt h4:before {
    width: 50px;
    height: 50px;
  }
}
@media print, screen and (min-width: 1000px) {
  #feature .featureFlex dl dd {
    width: calc(100% - 100px);
  }
}
@media print and (min-width: 1000px) and (max-width: 1500px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1500px) {
  #feature .featureFlex dl dd {
    width: calc(100% - 80px);
  }
}
@media print, screen and (min-width: 1000px) {
  #feature .featureFlex dl dd img {
    width: 100%;
    margin: 0 0 30px;
  }
  #feature .featureFlex dl dd p {
    margin: 0 0 10px;
    color: #595757;
    text-align: left;
    font-size: 17px;
    line-height: 1.7;
  }
  #feature .featureFlex dl dd p.btn {
    text-align: center;
    margin: 0;
  }
  #feature .featureFlex dl dd p.btn a {
    background: #595757;
    width: 260px;
    margin: 20px auto 0;
    padding: 20px 0;
    font-weight: 500;
  }
  #feature .featureFlex dl dd p.btn a:hover {
    background: #514f4f;
  }
  #feature .featureFlex dl dd p.btn a:after {
    top: 28px;
  }
}
@media print and (min-width: 1101px) and (max-width: 1300px), screen and (min-width: 1000px) and (min-width: 1101px) and (max-width: 1300px) {
  #feature .featureFlex dl dd p.btn a {
    width: 240px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  #feature .featureFlex dl dd p.btn a {
    width: 200px;
  }
  #feature .featureFlex dl dd p.btn a:after {
    content: none;
  }
}
@media print, screen and (min-width: 1000px) {
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(1) dt h4 {
    padding: 6.5em 0 0;
    text-indent: -4.8em;
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(1) dt h4:before {
    background-image: url(../images/featureNum_01.png);
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(2) dt h4 {
    padding: 3em 0 0;
    text-indent: -7em;
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(2) dt h4:before {
    background-image: url(../images/featureNum_02_.png);
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(3) dt h4 {
    padding: 6.5em 0 0;
    text-indent: -7em;
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(3) dt h4:before {
    background-image: url(../images/featureNum_03_.png);
  }
  #feature .featureFlex:nth-of-type(2) dl:nth-of-type(1) dt h4 {
    padding: 5.3em 0 0;
    text-indent: -11em;
  }
  #feature .featureFlex:nth-of-type(2) dl:nth-of-type(1) dt h4:before {
    background-image: url(../images/featureNum_04.png);
  }
  #feature .featureFlex:nth-of-type(2) dl:nth-of-type(2) dt h4 {
    padding: 9em 0 0;
    text-indent: -4.8em;
  }
  #feature .featureFlex:nth-of-type(2) dl:nth-of-type(2) dt h4:before {
    background-image: url(../images/featureNum_05_.png);
  }
}
/* -----------------------------------------------------------
（SP表示）当院の5つの特徴（トップページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #feature {
    background: #F5F2EF;
    position: relative;
    text-align: center;
    padding: 60px 20px 40px;
  }
  #feature:before {
    color: #FFF;
    content: "FEATURE";
    font-size: 60px;
    font-weight: 500;
    position: absolute;
    top: 30px;
    left: -80px;
    right: 0;
    margin: auto;
    z-index: 0;
  }
}
@media screen and (max-width: 999px) and (min-width: 1000px) and (max-width: 1515px) {
  #feature:before {
    left: 20px;
    right: inherit;
  }
}
@media screen and (max-width: 999px) {
  #feature h3 {
    color: #595757;
    font-size: 28px;
    font-weight: 500;
    position: relative;
    margin: 0 0 70px;
  }
  #feature h3 span {
    font-size: 48px;
  }
  #feature h3:before {
    content: "";
    display: inline-block;
    width: 85px;
    height: 15px;
    background-image: url(../images/threeColor_.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    margin: auto;
  }
  #feature .featureFlex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
  }
  #feature .featureFlex dl {
    width: 100%;
    display: flex;
    margin: 0 0 40px;
  }
  #feature .featureFlex dl:nth-of-type(2):last-of-type {
    margin: 0;
  }
  #feature .featureFlex dl dt h4 {
    writing-mode: vertical-rl;
    font-size: 28px;
    font-weight: bold;
    color: #595757;
    line-height: 1.2;
    position: relative;
    text-align: center;
    display: block;
  }
  #feature .featureFlex dl dt h4:before {
    content: "";
    display: inline-block;
    width: 67px;
    height: 67px;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 0;
    margin: 0 0 20px;
    background-repeat: no-repeat;
  }
  #feature .featureFlex dl dd {
    width: calc(100% - 70px);
  }
  #feature .featureFlex dl dd img {
    width: 100%;
    margin: 0 0 10px;
  }
  #feature .featureFlex dl dd p {
    margin: 0 0 10px;
    color: #595757;
    text-align: left;
    font-size: 17px;
  }
  #feature .featureFlex dl dd p.btn {
    text-align: center;
    margin: 0;
  }
  #feature .featureFlex dl dd p.btn a {
    background: #595757;
    margin: 20px auto 0;
    padding: 15px 45px 15px 25px;
    font-weight: 500;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  #feature .featureFlex dl dd p.btn a {
    margin: 10px auto 0;
    padding: 15px;
  }
}
@media screen and (max-width: 999px) {
  #feature .featureFlex dl dd p.btn a:hover {
    background: #514f4f;
  }
  #feature .featureFlex dl dd p.btn a:after {
    right: 15px;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  #feature .featureFlex dl dd p.btn a:after {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  #feature .featureFlex:nth-of-type(1) :nth-of-type(odd) dt, #feature .featureFlex:nth-of-type(2) :nth-of-type(even) dt {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
  }
  #feature .featureFlex:nth-of-type(1) :nth-of-type(odd) dt h4 span, #feature .featureFlex:nth-of-type(2) :nth-of-type(even) dt h4 span {
    transform: translateX(30px);
  }
  #feature .featureFlex:nth-of-type(1) :nth-of-type(even) dt, #feature .featureFlex:nth-of-type(2) :nth-of-type(odd) dt {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
  }
  #feature .featureFlex:nth-of-type(1) :nth-of-type(even) dt h4 span, #feature .featureFlex:nth-of-type(2) :nth-of-type(odd) dt h4 span {
    transform: translateX(30px);
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(odd) dt {
    order: 1;
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(odd) dd {
    order: 2;
    margin-left: 20px;
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(even) dt {
    order: 2;
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(even) dd {
    order: 1;
    margin-right: 20px;
  }
  #feature .featureFlex:nth-of-type(2) dl:nth-of-type(even) dt {
    order: 1;
  }
  #feature .featureFlex:nth-of-type(2) dl:nth-of-type(even) dd {
    order: 2;
    margin-left: 20px;
  }
  #feature .featureFlex:nth-of-type(2) dl:nth-of-type(odd) dt {
    order: 2;
  }
  #feature .featureFlex:nth-of-type(2) dl:nth-of-type(odd) dd {
    order: 1;
    margin-right: 20px;
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(1) dt h4 {
    text-indent: -4.8em;
    padding: 205px 0 0;
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(1) dt h4:before {
    background-image: url(../images/featureNum_01.png);
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(2) dt h4 {
    text-indent: -7em;
    padding: 125px 0 0;
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(2) dt h4:before {
    background-image: url(../images/featureNum_02_.png);
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(3) dt h4 {
    text-indent: -7em;
    padding: 170px 0 0;
  }
  #feature .featureFlex:nth-of-type(1) dl:nth-of-type(3) dt h4:before {
    background-image: url(../images/featureNum_03_.png);
  }
  #feature .featureFlex:nth-of-type(2) dl:nth-of-type(1) dt h4 {
    text-indent: -9.8em;
    padding: 140px 0 0;
  }
  #feature .featureFlex:nth-of-type(2) dl:nth-of-type(1) dt h4:before {
    background-image: url(../images/featureNum_04.png);
  }
  #feature .featureFlex:nth-of-type(2) dl:nth-of-type(2) dt h4 {
    text-indent: -4.8em;
    padding: 150px 0 0;
  }
  #feature .featureFlex:nth-of-type(2) dl:nth-of-type(2) dt h4:before {
    background-image: url(../images/featureNum_05_.png);
  }
}
/* -----------------------------------------------------------
（PC表示）診療内容（トップページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .treatment {
    position: relative;
    text-align: center;
    padding: 80px 20px 100px;
  }
  .treatment:before {
    color: #F5F2EF;
    content: "TREATMENT";
    font-size: 120px;
    font-weight: 500;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    margin: auto;
    flex-shrink: 0;
    z-index: 0;
    background: #fff;
    display: inline-block;
    width: 750px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  .treatment:before {
    font-size: 120px;
    letter-spacing: -0.02em;
  }
}
@media print, screen and (min-width: 1000px) {
  .treatment:after {
    content: "";
    display: inline-block;
    width: 85px;
    height: 15px;
    background-image: url(../images/threeColor_.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 250px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .treatment h3 {
    color: #595757;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 3.2px;
    position: absolute;
    top: 170px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .treatment h3:after {
    content: "";
    display: inline-block;
    width: 147px;
    height: 220px;
    background-image: url("../images/treatment_bear.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -120px;
    left: -920px;
    right: 0;
    margin: auto;
  }
}
@media print and (min-width: 1181px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1181px) and (max-width: 1200px) {
  .treatment h3:after {
    left: -920px;
  }
}
@media print and (min-width: 1081px) and (max-width: 1180px), screen and (min-width: 1000px) and (min-width: 1081px) and (max-width: 1180px) {
  .treatment h3:after {
    left: -850px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1080px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1080px) {
  .treatment h3:after {
    left: -800px;
  }
}
@media print, screen and (min-width: 1000px) {
  .treatment h3 span {
    font-size: 48px;
    letter-spacing: 4.8px;
  }
  .treatment .treatmentArea {
    border: solid 3px #F5F2EF;
    max-width: 1400px;
    width: 100%;
    margin: 70px auto 0;
    padding: 170px 20px 60px;
    /* eachが使える */
    border-radius: 20px;
  }
  .treatment .treatmentArea ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
  }
  .treatment .treatmentArea ul li {
    margin: 0 0 50px;
    /*&.line2 {
    	line-height: 1.2;

    	a {
    		font-size: 17px;
    		padding: 12px 0 0;

    		&:after {
    			top: 29px;
    		}

    		&:hover:after {
    			top: 29px;
    		}

    		@media (min-width: 1000px) and (max-width: 1200px)  {
    			font-size: 15px;
    		}
    	}
    }

    a {
    	display: block;
    	width: 100%;
    	background: $beige;
    	padding: 20px 0 0;
    	@include radius(50px);
    	text-align: center;
    	font-size: 18px;
    	height: 65px;
    	position: relative;

    	@media (min-width: 1000px) and (max-width: 1200px)  {
    		font-size: 16px;
    	}

    	&:after {
    		content: "▼";
    		position: absolute;
    		top: 23px;
    		right: 15px;
    		transform: rotate(27deg);
    		font-size: 9px;

    		@media (min-width: 1000px) and (max-width: 1100px)  {
    			content: none;
    		}
    	}

    	&:hover {
    		transition: all 0.3s ease 0s;
    		background-color: $beige_hover;

    		&:after {
    			content: "▼";
    			position: absolute;
    			top: 23px;
    			right: 13px;
    			transform: rotate(27deg);
    			font-size: 9px;
    		}
    	}
    }*/
  }
  .treatment .treatmentArea ul li:nth-of-type(-n+6) {
    width: calc((100% - 80px) / 3);
  }
}
@media print and (min-width: 1101px) and (max-width: 1400px), screen and (min-width: 1000px) and (min-width: 1101px) and (max-width: 1400px) {
  .treatment .treatmentArea ul li:nth-of-type(-n+6) {
    width: calc((100% - 60px) / 3);
    margin: 0 0 30px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  .treatment .treatmentArea ul li:nth-of-type(-n+6) {
    width: calc((100% - 40px) / 3);
    margin: 0 0 20px;
  }
}
@media print, screen and (min-width: 1000px) {
  .treatment .treatmentArea ul li:nth-of-type(n+7) {
    width: calc((100% - 160px) / 5);
  }
}
@media print and (min-width: 1101px) and (max-width: 1400px), screen and (min-width: 1000px) and (min-width: 1101px) and (max-width: 1400px) {
  .treatment .treatmentArea ul li:nth-of-type(n+7) {
    width: calc((100% - 120px) / 5);
    margin: 0 0 30px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  .treatment .treatmentArea ul li:nth-of-type(n+7) {
    width: calc((100% - 80px) / 5);
    margin: 0 0 20px;
  }
}
@media print, screen and (min-width: 1000px) {
  .treatment .treatmentArea ul li.line2 {
    line-height: 1.2;
    font-size: 17px;
    padding: 10px 0 0;
  }
  .treatment .treatmentArea ul li.line2:after {
    top: 29px;
  }
  .treatment .treatmentArea ul li.line2:hover:after {
    top: 29px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  .treatment .treatmentArea ul li.line2 {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 1000px) {
  .treatment .treatmentArea ul li {
    display: block;
    background: #F5F2EF;
    padding: 20px 0 0;
    /* eachが使える */
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    height: 65px;
    position: relative;
    font-weight: 500;
    /*&:after {
    	content: "▼";
    	position: absolute;
    	top: 23px;
    	right: 15px;
    	transform: rotate(27deg);
    	font-size: 9px;

    	@media (min-width: 1000px) and (max-width: 1100px)  {
    		content: none;
    	}
    }

    &:hover {
    	transition: all 0.3s ease 0s;
    	background-color: $beige_hover;

    	&:after {
    		content: "▼";
    		position: absolute;
    		top: 23px;
    		right: 13px;
    		transform: rotate(27deg);
    		font-size: 9px;
    	}
    }*/
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  .treatment .treatmentArea ul li {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1000px) {
  .treatment .btn a {
    background: #595757;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    transform: translateY(-35px);
  }
  .treatment .btn a:hover {
    background: #514f4f;
  }
}
/* -----------------------------------------------------------
（SP表示）診療内容（トップページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .treatment {
    position: relative;
    text-align: center;
    padding: 180px 10px 60px;
  }
  .treatment:before {
    color: #F5F2EF;
    content: "TREATMENT";
    font-size: 50px;
    font-weight: 500;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
    flex-shrink: 0;
    z-index: 0;
    background: #fff;
    display: inline-block;
  }
  .treatment h3 {
    color: #595757;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 3.2px;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .treatment h3:before {
    content: "";
    display: inline-block;
    width: 80px;
    height: 120px;
    background-image: url("../images/treatment_bear.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -20px;
    left: 10px;
    margin: auto;
  }
  .treatment h3:after {
    content: "";
    display: inline-block;
    width: 85px;
    height: 15px;
    background-image: url(../images/threeColor_.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .treatment h3 span {
    font-size: 48px;
    letter-spacing: 4.8px;
  }
  .treatment .treatmentArea {
    width: 100%;
    margin: 0 auto 10px;
    padding: 0;
    /* eachが使える */
    border-radius: 20px;
  }
  .treatment .treatmentArea ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
  }
  .treatment .treatmentArea ul li {
    margin: 0 0 20px;
    /*&.line2 {
    	line-height: 1.2;

    	a {
    		font-size: 17px;
    		padding: 30px 0 0;

    		&:after {
    			top: 40px;
    		}

    		&:hover:after {

    		}
    	}
    }

    a {
    	display: block;
    	width: 100%;
    	background: $beige;
    	padding: 20px 0 0;
    	@include radius(50px);
    	text-align: center;
    	font-size: 17px;
    	height: auto;
    	position: relative;

    	&:after {
    		content: "▼";
    		position: absolute;
    		transform: rotate(27deg);
    		font-size: 8px;
    	}

    	&:hover {
    		transition: all 0.3s ease 0s;
    		background-color: $beige_hover;

    		&:after {
    			content: "▼";
    			position: absolute;
    			top: 23px;
    			right: 13px;
    			transform: rotate(27deg);
    			font-size: 8px;
    		}
    	}
    }

    &:nth-of-type(-n+6) {
    	width: calc((100% - 10px) / 2);

    	&:nth-of-type(even) {

    		a {
    			padding: 30px 0 0 20px;
    			line-height: 1.4;

    			&:after {
    				top: 50px;
    			}
    		}
    	}

    	a {
    		padding: 40px 0 0 15px;
    		@include radius(10px);
    		height: 104px;
    		text-align: left;

    		&:after {
    			top: 42px;
    			right: 10px;
    		}
    	}

    	&.line2 { a { padding: 25px 0 0; } }
    }

    &:nth-of-type(n+7) {
    	width: calc((100% - 10px) / 2);

    	&.line2 {

    		a { 
    			font-size: 15px;
    			padding: 12px 0 0 15px;
    			line-height: 1.3;

    			&:after {
    				top: 28px;
    				right: 10px;
    			}
    		}
    	}

    	a {
    		padding: 20px 0 0 15px;
    		text-align: left;
    		font-size: 16px;
    		height: 65px;
    		@include radius(10px);

    		&:after {
    			top: 22px;
    			right: 10px;
    		}
    	}
    }*/
    /*&.line2 {
    	line-height: 1.2;

    	font-size: 17px;
    	padding: 30px 0 0;

    	&:after {
    		top: 40px;
    	}

    	&:hover:after {

    	}
    }

    & {
    	display: block;
    	background: $beige;
    	padding: 20px 0 0;
    	@include radius(50px);
    	text-align: center;
    	font-size: 17px;
    	height: auto;
    	position: relative;

    	/*&:after {
    		content: "▼";
    		position: absolute;
    		transform: rotate(27deg);
    		font-size: 8px;
    	}

    	&:hover {
    		transition: all 0.3s ease 0s;
    		background-color: $beige_hover;

    		&:after {
    			content: "▼";
    			position: absolute;
    			top: 23px;
    			right: 13px;
    			transform: rotate(27deg);
    			font-size: 8px;
    		}
    	}*/
    /*}

    &:nth-of-type(-n+6) {
    	width: calc((100% - 10px) / 2);

    	&:nth-of-type(even) {

    		a {
    			padding: 30px 0 0 20px;
    			line-height: 1.4;

    			&:after {
    				top: 50px;
    			}
    		}
    	}

    	a {
    		padding: 40px 0 0 15px;
    		@include radius(10px);
    		height: 104px;
    		text-align: left;

    		&:after {
    			top: 42px;
    			right: 10px;
    		}
    	}

    	&.line2 { a { padding: 25px 0 0; } }
    }

    &:nth-of-type(n+7) {
    	width: calc((100% - 10px) / 2);

    	&.line2 {

    		a { 
    			font-size: 15px;
    			padding: 12px 0 0 15px;
    			line-height: 1.3;

    			&:after {
    				top: 28px;
    				right: 10px;
    			}
    		}
    	}

    	a {
    		padding: 20px 0 0 15px;
    		text-align: left;
    		font-size: 16px;
    		height: 65px;
    		@include radius(10px);

    		&:after {
    			top: 22px;
    			right: 10px;
    		}
    	}
    }*/
  }
  .treatment .treatmentArea ul li.line2 {
    line-height: 1.2;
    font-size: 17px;
    padding: 30px 0 0;
  }
  .treatment .treatmentArea ul li.line2:after {
    top: 40px;
  }
  .treatment .treatmentArea ul li {
    display: block;
    background: #F5F2EF;
    padding: 20px 0 0;
    /* eachが使える */
    border-radius: 50px;
    text-align: center;
    font-size: 17px;
    height: auto;
    position: relative;
    font-weight: 500;
    /*&:after {
    	content: "▼";
    	position: absolute;
    	transform: rotate(27deg);
    	font-size: 8px;
    }

    &:hover {
    	transition: all 0.3s ease 0s;
    	background-color: $beige_hover;

    	&:after {
    		content: "▼";
    		position: absolute;
    		top: 23px;
    		right: 13px;
    		transform: rotate(27deg);
    		font-size: 8px;
    	}
    }*/
  }
  .treatment .treatmentArea ul li:nth-of-type(-n+6) {
    width: calc((100% - 10px) / 2);
  }
  .treatment .treatmentArea ul li:nth-of-type(-n+6):nth-of-type(even) {
    padding: 30px 0 0 20px;
    line-height: 1.4;
  }
  .treatment .treatmentArea ul li:nth-of-type(-n+6):nth-of-type(even):after {
    top: 50px;
  }
  .treatment .treatmentArea ul li:nth-of-type(-n+6) {
    padding: 40px 0 0 15px;
    /* eachが使える */
    border-radius: 10px;
    height: 104px;
    text-align: left;
  }
  .treatment .treatmentArea ul li:nth-of-type(-n+6):after {
    top: 42px;
    right: 10px;
  }
  .treatment .treatmentArea ul li:nth-of-type(-n+6).line2 {
    padding: 25px 0 0;
  }
  .treatment .treatmentArea ul li:nth-of-type(n+7) {
    width: calc((100% - 10px) / 2);
  }
  .treatment .treatmentArea ul li:nth-of-type(n+7).line2 {
    font-size: 15px;
    padding: 12px 0 0 15px;
    line-height: 1.3;
  }
  .treatment .treatmentArea ul li:nth-of-type(n+7).line2:after {
    top: 28px;
    right: 10px;
  }
  .treatment .treatmentArea ul li:nth-of-type(n+7) {
    padding: 20px 0 0 15px;
    text-align: left;
    font-size: 16px;
    height: 65px;
    /* eachが使える */
    border-radius: 10px;
  }
  .treatment .treatmentArea ul li:nth-of-type(n+7):after {
    top: 22px;
    right: 10px;
  }
  .treatment .btn a {
    background: #595757;
    color: #fff;
    font-weight: 400;
  }
  .treatment .btn a:hover {
    background: #514f4f;
  }
}
/* -----------------------------------------------------------
（PC表示）DISEASE 対象疾患（トップページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .disease {
    position: relative;
    padding: 70px 20px 0;
    overflow: hidden;
    text-align: center;
    background: #F5F2EF;
    height: auto;
    overflow: visible;
  }
  .disease:before {
    content: "DISEASES TREATED";
    font-size: 120px;
    font-weight: 500;
    margin: 0 auto;
    color: #fff;
    position: absolute;
    top: 220px;
    left: 0;
    right: 0;
    text-align: center;
  }
  .disease h3 {
    color: #595757;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 4.8px;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .disease h3:after {
    content: "";
    display: inline-block;
    width: 85px;
    height: 15px;
    background-image: url(../images/threeColor_.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: -180px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .disease .area {
    max-width: 1360px;
    width: 100%;
    margin: auto;
    padding: 0 20px 20px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
  }
  .disease .area h3 {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    z-index: 1;
    display: block;
    width: 100%;
    font-size: 36px;
    color: #001764;
    text-align: center;
    line-height: 1.3;
  }
  .disease .area h3:after {
    position: absolute;
    content: "DISEASES TREATED";
    top: 125px;
    left: 0;
    right: 0;
    display: block;
    width: 1090px;
    font-weight: 500;
    color: #595757;
    font-size: 22px;
    border: solid 1px #595757;
    background: #fff;
    margin: 0 auto;
    padding: 7px 0 10px;
  }
  .disease .area .tab_class {
    width: 180px;
    height: auto;
    background: #fafafa;
    color: #595757;
    border: solid 1px #595757;
    line-height: 45px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    display: block;
    float: left;
    order: -1;
    cursor: pointer;
    margin: 0 10px;
  }
  .disease .area .tab_class:hover {
    background: #FFF;
    color: #595757;
  }
  .disease .area input[name=tab_name] {
    display: none;
  }
  .disease .area input:checked + .tab_class {
    background: #595757;
    color: #fff;
    border: solid 1px #001764;
    opacity: 0.6;
  }
  .disease .area input:checked + .tab_class:hover {
    background: #504e4e;
  }
  .disease .area .content_class {
    display: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 160px 20px 20px;
    position: relative;
    text-align: center;
  }
  .disease .area .content_class .inPreparation {
    font-size: 18px;
  }
  .disease .area .content_class h4 {
    font-size: 24px;
    color: #595757;
    letter-spacing: 0.1em;
    margin: 0 0 50px;
  }
  .disease .area .content_class .searchByPartFlex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 885px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    background: url("../images/schema.png") top center no-repeat;
  }
  .disease .area .content_class .searchByPartFlex ul {
    width: 260px;
  }
  .disease .area .content_class .searchByPartFlex ul li {
    font-weight: 500;
    width: 100%;
  }
  .disease .area .content_class .searchByPartFlex ul li a {
    background: #595757;
    display: block;
    width: 100%;
    margin: 0 0 53px 0;
    padding: 20px 0 0;
    height: 65px;
    text-align: center;
    position: relative;
    text-indent: -1em;
    /* eachが使える */
    border-radius: 50px;
    color: #fff;
  }
  .disease .area .content_class .searchByPartFlex ul li a span {
    font-size: 23px;
  }
  .disease .area .content_class .searchByPartFlex ul li a:after {
    content: "▼";
    position: absolute;
    top: 25px;
    right: 22px;
    transform: rotate(27deg);
    font-size: 9px;
  }
  .disease .area .content_class .searchByPartFlex ul li a:hover {
    transition: all 0.3s ease 0s;
    background-color: #504e4e;
  }
  .disease .area .content_class .searchByPartFlex ul li a:hover:after {
    content: "▼";
    position: absolute;
    top: 25px;
    right: 20px;
    transform: rotate(27deg);
    font-size: 9px;
  }
  .disease .area .content_class .searchByDiseaseFlex {
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 0;
  }
  .disease .area .content_class .searchByDiseaseFlex ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1050px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1050px) {
  .disease .area .content_class .searchByDiseaseFlex ul {
    gap: 20px;
  }
}
@media print, screen and (min-width: 1000px) {
  .disease .area .content_class .searchByDiseaseFlex ul li {
    font-weight: 500;
    width: calc((100% - 90px) / 4);
  }
}
@media print and (min-width: 1000px) and (max-width: 1050px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1050px) {
  .disease .area .content_class .searchByDiseaseFlex ul li {
    width: calc((100% - 60px) / 4);
  }
}
@media print, screen and (min-width: 1000px) {
  .disease .area .content_class .searchByDiseaseFlex ul li a {
    display: block;
    width: 100%;
    margin: 0 0 0 0;
    padding: 17px 10px 0 0;
    height: 65px;
    text-align: center;
    position: relative;
    /* eachが使える */
    border-radius: 50px;
    background: #fafafa;
    color: #595757;
    border: solid 3px #EFE6DE;
  }
}
@media print and (min-width: 1000px) and (max-width: 1150px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1150px) {
  .disease .area .content_class .searchByDiseaseFlex ul li a {
    padding: 17px 0 0;
  }
}
@media print, screen and (min-width: 1000px) {
  .disease .area .content_class .searchByDiseaseFlex ul li a span {
    font-size: 14px;
  }
  .disease .area .content_class .searchByDiseaseFlex ul li a:after {
    content: "▼";
    position: absolute;
    top: 20px;
    right: 22px;
    transform: rotate(27deg);
    font-size: 9px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1150px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1150px) {
  .disease .area .content_class .searchByDiseaseFlex ul li a:after {
    display: none;
  }
}
@media print, screen and (min-width: 1000px) {
  .disease .area .content_class .searchByDiseaseFlex ul li a:hover {
    transition: all 0.3s ease 0s;
    background-color: #fff;
    color: #595757;
  }
  .disease .area .content_class .searchByDiseaseFlex ul li a:hover:after {
    content: "▼";
    position: absolute;
    top: 20px;
    right: 20px;
    transform: rotate(27deg);
    font-size: 9px;
  }
  .disease .area .content_class .searchByDiseaseFlex ul li.line2 a {
    padding: 8px 10px 0 0;
    line-height: 1.3;
  }
}
@media print and (min-width: 1000px) and (max-width: 1150px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1150px) {
  .disease .area .content_class .searchByDiseaseFlex ul li.line2 a {
    padding: 8px 0 0;
  }
}
@media print, screen and (min-width: 1000px) {
  .disease .area .content_class .searchByDiseaseFlex ul li.line2 a:after {
    top: 25px;
  }
  .disease .area input:checked + .tab_class + .content_class {
    display: block;
  }
  .disease .btn a {
    background: #595757;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    transform: translateY(30px);
  }
  .disease .btn a:hover {
    background-color: #504e4e;
  }
}
/* -----------------------------------------------------------
（SP表示）DISEASE 対象疾患（トップページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .disease {
    position: relative;
    padding: 40px 10px 10px;
    overflow: hidden;
    text-align: center;
    background: #F5F2EF;
    height: auto;
    overflow: visible;
  }
  .disease:before {
    content: "DISEASES TREATED";
    font-size: 60px;
    font-weight: 500;
    margin: 0 auto;
    color: #fff;
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    text-align: center;
  }
  .disease h3 {
    color: #595757;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 4.8px;
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .disease h3:after {
    content: "";
    display: inline-block;
    width: 85px;
    height: 15px;
    background-image: url(../images/threeColor_.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: -115px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .disease .area {
    max-width: 1360px;
    width: 100%;
    margin: auto;
    padding: 0;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
  }
  .disease .area h3 {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    z-index: 1;
    display: block;
    width: 100%;
    font-size: 36px;
    color: #001764;
    text-align: center;
    line-height: 1.3;
  }
  .disease .area h3:after {
    position: absolute;
    content: "DISEASES TREATED";
    top: 125px;
    left: 0;
    right: 0;
    display: block;
    width: 1090px;
    font-weight: 500;
    color: #595757;
    font-size: 22px;
    border: solid 1px #595757;
    background: #fff;
    margin: 0 auto;
    padding: 7px 0 10px;
  }
  .disease .area .tab_class {
    width: 130px;
    height: auto;
    background: #fafafa;
    color: #595757;
    border: solid 1px #595757;
    line-height: 45px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    display: block;
    float: left;
    order: -1;
    cursor: pointer;
    margin: 0 8px;
  }
  .disease .area .tab_class:hover {
    background: #FFF;
    color: #595757;
  }
  .disease .area input[name=tab_name] {
    display: none;
  }
  .disease .area input:checked + .tab_class {
    background: #595757;
    color: #fff;
    border: solid 1px #001764;
    opacity: 0.6;
  }
  .disease .area input:checked + .tab_class:hover {
    background: #504e4e;
  }
  .disease .area .content_class {
    display: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 115px 0 0;
    position: relative;
    text-align: center;
  }
  .disease .area .content_class .inPreparation {
    font-size: 18px;
  }
  .disease .area .content_class h4 {
    font-size: 22px;
    color: #595757;
    letter-spacing: 0.1em;
    margin: 0 0 50px;
    font-weight: 500;
  }
  .disease .area .content_class .searchByPartFlex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto 0;
    padding: 0 0 80px;
    background: url("../images/schema.png") top center no-repeat;
    background-size: auto 500px;
  }
}
@media screen and (max-width: 999px) and (max-width: 400px) {
  .disease .area .content_class .searchByPartFlex {
    padding: 0 0 80px;
  }
}
@media screen and (max-width: 999px) {
  .disease .area .content_class .searchByPartFlex ul {
    width: calc((100% - 10px) / 2);
    margin: 80px 0 0;
  }
  .disease .area .content_class .searchByPartFlex ul li {
    font-weight: 500;
    width: 100%;
  }
  .disease .area .content_class .searchByPartFlex ul li a {
    background: #fafafa;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 16px 0;
    height: auto;
    text-align: center;
    position: relative;
    /* eachが使える */
    border-radius: 50px;
    color: #595757;
    font-size: 16px;
    border: solid 3px #EFE6DE;
    text-indent: -1.5em;
  }
  .disease .area .content_class .searchByPartFlex ul li a span {
    font-size: 18px;
    margin: 0 -5px 0 0;
  }
  .disease .area .content_class .searchByPartFlex ul li a:after {
    content: "▼";
    position: absolute;
    top: 23px;
    right: 7px;
    transform: rotate(27deg);
    font-size: 9px;
  }
  .disease .area .content_class .searchByPartFlex ul li a:hover {
    transition: all 0.3s ease 0s;
    background: #fff;
  }
  .disease .area .content_class .searchByPartFlex ul li a:hover:after {
    content: "▼";
    position: absolute;
    top: 23px;
    right: 5px;
    transform: rotate(27deg);
    font-size: 9px;
  }
  .disease .area .content_class .searchByDiseaseFlex {
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 0;
  }
  .disease .area .content_class .searchByDiseaseFlex ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .disease .area .content_class .searchByDiseaseFlex ul li {
    font-weight: 500;
    width: calc((100% - 10px) / 2);
  }
  .disease .area .content_class .searchByDiseaseFlex ul li a {
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 20px 0 0;
    height: 65px;
    text-align: center;
    position: relative;
    /* eachが使える */
    border-radius: 50px;
    background: #fafafa;
    color: #595757;
    /*border: solid 1px $txtcolor;*/
  }
  .disease .area .content_class .searchByDiseaseFlex ul li a span {
    font-size: 13px;
  }
  .disease .area .content_class .searchByDiseaseFlex ul li a:hover {
    transition: all 0.3s ease 0s;
    background-color: #fff;
    color: #595757;
  }
  .disease .area .content_class .searchByDiseaseFlex ul li.line2 {
    font-size: 15px;
  }
  .disease .area .content_class .searchByDiseaseFlex ul li.line2 a {
    padding: 13px 0 0 0;
    line-height: 1.3;
  }
  .disease .area .content_class .searchByDiseaseFlex ul li.line2 a:after {
    top: 25px;
  }
  .disease .area input:checked + .tab_class + .content_class {
    display: block;
  }
  .disease .btn a {
    background: #595757;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    transform: translateY(35px);
  }
  .disease .btn a:hover {
    background-color: #504e4e;
  }
}
/* -----------------------------------------------------------
（PC表示）フッター（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  footer {
    padding: 0 0 100px;
    /*body:not(#index) & {
    	padding: 50px 0 180px;
    }*/
    /*最下部固定ボタン*/
  }
  footer .footer_inner {
    max-width: 1240px;
    width: 100%;
    padding: 100px 20px 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  footer .footer_inner h3 {
    width: 460px;
  }
  footer .footer_inner h3 img {
    width: 100%;
    margin: 0 auto 30px;
  }
  footer .footer_inner .clinicSummary {
    width: calc((100% - 40px) / 2);
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  footer .footer_inner .clinicSummary {
    width: calc((100% - 20px) / 2);
  }
}
@media print, screen and (min-width: 1000px) {
  footer .footer_inner .clinicSummary a {
    color: #595757;
  }
  footer .footer_inner .clinicSummary a dl {
    display: flex;
    flex-direction: column;
    border-top: none;
    padding: 0 0 15px 15px;
  }
  footer .footer_inner .clinicSummary a dl:last-of-type {
    border-bottom: none;
    margin: 0 0 15px;
  }
  footer .footer_inner .clinicSummary a dl dt {
    font-size: 16px;
    width: 100%;
    color: #595757;
    font-weight: normal;
    margin: 0 0 10px;
  }
  footer .footer_inner .clinicSummary a dl dd h3 {
    font-size: 26px;
  }
  footer .footer_inner .clinicSummary dl {
    padding: 20px 0 23px 15px;
    display: flex;
    letter-spacing: 0.1em;
    border-top: dashed 1px #ccc;
    font-size: 17px;
  }
  footer .footer_inner .clinicSummary dl:nth-of-type(3) a {
    font-weight: bold;
    font-size: 21px;
  }
  footer .footer_inner .clinicSummary dl:last-of-type {
    margin: 0 0 10px;
  }
  footer .footer_inner .clinicSummary dl dt {
    width: 110px;
    box-sizing: border-box;
    font-weight: bold;
    margin: 0;
    color: #39436B;
  }
  footer .footer_inner .clinicSummary dl dd {
    width: calc(100% - 110px);
  }
  footer .footer_inner .clinicSummary dl dd .footer_accessLink:before {
    font-family: "Font Awesome 5 Free";
    content: "\f3c5";
    line-height: 1;
    margin: 0 5px 0 0;
    font-weight: bold;
    text-decoration: none;
    color: #C43B40;
  }
  footer .footer_inner .clinicSummary dl dd .footer_accessLink a {
    color: #111;
    text-decoration: underline;
  }
  footer .footer_inner .exterior {
    width: calc((100% - 40px) / 2);
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  footer .footer_inner .exterior {
    width: calc((100% - 20px) / 2);
  }
}
@media print, screen and (min-width: 1000px) {
  footer .footer_inner .exterior .googleMap {
    width: 100%;
    margin: 0 0 20px;
  }
  footer .footer_inner .exterior .googleMap iframe {
    width: 100%;
    height: 770px;
    /* eachが使える */
    border-radius: 10px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  footer .footer_inner .exterior .googleMap iframe {
    height: 700px;
  }
}
@media print, screen and (min-width: 1000px) {
  footer .footer_inner .exterior ul {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  footer .footer_inner .exterior ul li {
    width: calc((100% - 20px) / 2);
    font-size: 16px;
    margin: 0 15px;
  }
  footer .footer_inner .exterior ul li a {
    display: block;
    background: #595757;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    /* eachが使える */
    border-radius: 60px;
    font-weight: 500;
    position: relative;
  }
  footer .footer_inner .exterior ul li a:hover {
    background: #514f4f;
  }
  footer .footer_inner .exterior ul li:nth-of-type(1) a {
    background: #595757;
  }
  footer .footer_inner .exterior ul li:nth-of-type(1) a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    position: absolute;
    right: 23px;
    font-weight: bold;
    top: 25px;
  }
  footer .footer_inner .exterior ul li:nth-of-type(1) a:hover {
    background: #514f4f;
  }
  footer .footer_inner .exterior ul li:nth-of-type(1) a:hover:after {
    top: 22px;
  }
  footer .footer_inner .exterior ul li:nth-of-type(2) a {
    background: #514f4f;
  }
  footer .footer_inner .exterior ul li:nth-of-type(2) a:after {
    content: "▼";
    position: absolute;
    right: 23px;
    transform: rotate(27deg);
    font-size: 12px;
  }
  footer .footer_inner .exterior ul li:nth-of-type(2) a:hover {
    transition: all 0.3s ease 0s;
    background: #514f4f;
  }
  footer .footer_inner .exterior ul li:nth-of-type(2) a:hover:after {
    content: "▼";
    position: absolute;
    right: 20px;
    transform: rotate(27deg);
    font-size: 12px;
  }
  footer .grandeur {
    text-align: center;
    margin: 0 auto;
  }
  footer .grandeur dt {
    font-weight: 600;
    font-size: 12px;
    margin: 0 0 5px;
    color: #595757;
  }
  footer .grandeur dd a {
    border: none;
    outline: none;
  }
  footer .grandeur dd a img {
    width: 160px;
    height: auto;
  }
  footer .copyright {
    color: #595757;
    text-align: center;
    padding: 80px 0 70px;
    font-weight: 400;
    font-size: 17px;
  }
  footer .copyright a {
    color: #595757;
    font-weight: 500;
  }
  footer .footerFix_sp_supli,
  footer .footerFix_sp {
    display: none !important;
  }
  footer .footerFix_pc {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 390px;
    height: 100px;
    display: flex;
    /* eachが使える */
    border-radius: 10px;
    z-index: 2;
  }
  footer .footerFix_pc li {
    display: table;
  }
  footer .footerFix_pc li:nth-child(n+2) a {
    border-left: dashed 1px #DFD7C7;
  }
  footer .footerFix_pc li a {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    font-weight: 500;
    color: #595757;
    background: #FAFAFA;
  }
  footer .footerFix_pc li a:hover {
    background-color: #fcfcfc;
  }
  footer .footerFix_pc li:nth-of-type(1) a {
    width: 150px;
    font-size: 17px;
    height: 100px;
    position: relative;
    padding: 40px 0 0;
    font-weight: 500;
    border-radius: 20px 0 0 0;
  }
  footer .footerFix_pc li:nth-of-type(1) a:before {
    width: 40px;
    height: 28px;
    background-image: url("../images/footerFix_first.png");
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
  }
  footer .footerFix_pc li:nth-of-type(1) a span {
    font-size: 14px;
    display: block;
    font-weight: bold;
    color: #ed9930;
  }
  footer .footerFix_pc li:nth-of-type(2) a {
    width: 120px;
    font-size: 17px;
    height: 100px;
    position: relative;
    padding: 40px 0 0;
    font-weight: 500;
  }
  footer .footerFix_pc li:nth-of-type(2) a:before {
    width: 33px;
    height: 33px;
    background-image: url("../images/footerFix_timetable.png");
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
  }
  footer .footerFix_pc li:nth-of-type(2) a span {
    font-size: 14px;
    display: block;
    font-weight: bold;
    color: #ed9930;
  }
  footer .footerFix_pc li:nth-of-type(3) a {
    width: 120px;
    height: 100px;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    padding: 45px 0 0;
    line-height: 1.3;
  }
  footer .footerFix_pc li:nth-of-type(3) a:before {
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 41px;
    height: 41px;
    background-image: url("../images/footerFix_access.png");
    top: 16px;
  }
  #pageTop_sp {
    display: none !important;
  }
}
/* -----------------------------------------------------------
（SP表示）フッター（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  footer {
    padding: 60px 0 50px;
    /*最下部固定ボタン*/
  }
  footer .footer_inner {
    width: 100%;
    padding: 0 20px;
    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 30px;
  }
  footer .footer_inner h4 {
    border: solid 1px #001764;
    display: inline-block;
    margin: 0 0 20px;
    padding: 10px 20px;
    color: #001764;
    font-size: 17px;
  }
  footer .footer_inner a dl {
    border: none !important;
    margin: 0 0 10px !important;
  }
  footer .footer_inner a dl dt {
    color: #595757 !important;
    font-size: 14px !important;
    font-weight: normal !important;
    margin: 0 0 8px;
  }
  footer .footer_inner .clinicSummary {
    width: 100%;
    order: 1;
    margin: 0 0 20px;
  }
  footer .footer_inner .clinicSummary dl {
    padding: 10px 0 15px;
    display: flex;
    flex-direction: column;
    border-top: dashed 1px #ADADAD;
    color: #595757;
    font-size: 17px;
  }
  footer .footer_inner .clinicSummary dl:nth-of-type(3) a {
    font-weight: bold;
    font-size: 21px;
  }
  footer .footer_inner .clinicSummary dl:last-of-type {
    margin: 0 0 10px;
  }
  footer .footer_inner .clinicSummary dl dt {
    width: 100%;
    box-sizing: border-box;
    font-weight: 400;
    color: #39436B;
    font-weight: 600;
  }
  footer .footer_inner .clinicSummary dl dd {
    width: 100%;
  }
  footer .footer_inner .clinicSummary dl dd .footer_accessLink:before {
    font-family: "Font Awesome 5 Free";
    content: "\f3c5";
    line-height: 1;
    margin: 0 5px 0 0;
    font-weight: bold;
    text-decoration: none;
    color: #C43B40;
  }
  footer .footer_inner .clinicSummary dl dd .footer_accessLink a {
    color: #111;
    text-decoration: underline;
  }
  footer .footer_inner .exterior {
    width: 100%;
    order: 2;
  }
  footer .footer_inner .exterior .googleMap {
    width: 100%;
    margin: 0 0 20px;
  }
  footer .footer_inner .exterior .googleMap iframe {
    height: 500px;
    /* eachが使える */
    border-radius: 10px;
  }
  footer .footer_inner .exterior ul {
    display: flex;
    justify-content: space-between;
  }
  footer .footer_inner .exterior ul li {
    width: calc((100% - 10px) / 2);
  }
  footer .footer_inner .exterior ul li a {
    width: 100% !important;
    display: block;
    background: #595757;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    padding: 13px 10px;
    text-align: center;
    /* eachが使える */
    border-radius: 40px;
    position: relative;
    text-indent: -0.5em;
  }
  footer .footer_inner .exterior ul li a:hover {
    background-color: #504e4e;
  }
  footer .footer_inner .exterior ul li.outLink a:after {
    margin-right: 0;
  }
  footer .footer_inner .exterior ul li:nth-of-type(1) a {
    background: #595757;
  }
  footer .footer_inner .exterior ul li:nth-of-type(1) a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    position: absolute;
    right: 13px;
    font-weight: bold;
    top: 18px;
  }
  footer .footer_inner .exterior ul li:nth-of-type(1) a:hover {
    background: #514f4f;
  }
  footer .footer_inner .exterior ul li:nth-of-type(1) a:hover:after {
    right: 10px;
  }
  footer .footer_inner .exterior ul li:nth-of-type(2) a {
    background: #514f4f;
  }
  footer .footer_inner .exterior ul li:nth-of-type(2) a:after {
    content: "▼";
    position: absolute;
    right: 13px;
    transform: rotate(27deg);
    font-size: 10px;
  }
  footer .footer_inner .exterior ul li:nth-of-type(2) a:hover {
    transition: all 0.3s ease 0s;
    background: #514f4f;
  }
  footer .footer_inner .exterior ul li:nth-of-type(2) a:hover:after {
    content: "▼";
    position: absolute;
    right: 10px;
    transform: rotate(27deg);
    font-size: 12px;
  }
  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 .footerFix_pc {
    display: none !important;
  }
  footer .footerFix_sp_supli {
    position: fixed;
    bottom: 90px;
    right: 0;
    left: 0;
    margin: auto;
    background: #fefbf8;
    display: inline-block;
    text-align: center;
    padding: 10px 0 10px 15px;
    font-size: clamp(13px, 4vw, 16px);
    color: #595757;
    font-weight: 600;
    width: 90%;
    /* eachが使える */
    border-radius: 90px;
  }
  footer .footerFix_sp {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    display: flex;
    z-index: 2;
  }
  footer .footerFix_sp li {
    text-align: center;
    width: 33.333%;
  }
  footer .footerFix_sp li a {
    display: block;
    font-weight: bold;
    font-size: clamp(10px, 4.5vw, 15px);
    width: 100%;
    height: 70px;
    position: relative;
    padding: 40px 0 0;
    box-sizing: border-box;
    background: #FAFAFA;
    color: #595757;
  }
  footer .footerFix_sp li:nth-of-type(1) {
    text-align: center;
  }
  footer .footerFix_sp li:nth-of-type(1) a:before {
    width: 31px;
    height: 22px;
    background-image: url("../images/footerFix_first.png");
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    margin: auto;
  }
  footer .footerFix_sp li:nth-of-type(2) a {
    border-left: dashed 1px #DFD7C7;
  }
  footer .footerFix_sp li:nth-of-type(2) a:before {
    width: 28px;
    height: 28px;
    background-image: url("../images/footerFix_timetable.png");
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 11px;
    left: 0;
    right: 0;
    margin: auto;
  }
  footer .footerFix_sp li:nth-of-type(3) a {
    border-left: dashed 1px #DFD7C7;
  }
  footer .footerFix_sp li:nth-of-type(3) a:before {
    width: 35px;
    height: 35px;
    background-image: url("../images/footerFix_access.png");
    top: 7px;
    left: 0;
    right: 0;
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    margin: auto;
  }
  footer .footerFix_sp li:nth-of-type(4) a {
    border-left: dashed 1px #DFD7C7;
  }
  footer .footerFix_sp li:nth-of-type(4) a:before {
    width: 31px;
    height: 31px;
    background-image: url("../images/footerFix_pagetop.png");
    top: 10px;
    left: 0;
    right: 0;
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    margin: auto;
  }
  footer .googleMap {
    margin: 30px 0;
  }
  footer .googleMap iframe {
    width: 100%;
    height: 400px;
  }
  footer .copyright {
    color: #595757;
    text-align: center;
    padding: 40px 0 40px;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.8px;
  }
  footer .copyright a {
    color: #595757;
  }
}
/* -----------------------------------------------------------
   -----------------------------------------------------------
●●●●●●●● 下層ページ ●●●●●●●●
-----------------------------------------------------------
----------------------------------------------------------- */
/* -----------------------------------------------------------
（PC表示）ページタイトル（下層ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .pageTitle {
    width: 100%;
    margin: 0 auto 60px;
    padding: 0;
    position: relative;
    max-width: 1640px;
    width: 100%;
    height: 400px;
    /* eachが使える */
    border-radius: 30px;
    background: #eee;
    text-align: center;
    background-position: center center !important;
  }
  #base .pageTitle {
    background: #eee;
  }
  #clinic .pageTitle {
    background: url("../images/pageTitle_clinic_.jpg");
    background-position: center right -170px !important;
  }
  #guide .pageTitle {
    background: url("../images/pageTitle_guide_.jpg");
  }
  #disease .pageTitle {
    background: url("../images/pageTitle_disease__.jpg");
  }
  #elbowsAndHands .pageTitle {
    background: url("../images/pageTitle_elbowsAndHands.jpg");
  }
  #hipJoint .pageTitle {
    background: url("../images/pageTitle_hipJoint.jpg");
  }
  #kneeJoint .pageTitle {
    background: url("../images/pageTitle_kneeJoint.jpg");
  }
  #leg .pageTitle {
    background: url("../images/pageTitle_leg.jpg");
  }
  #lumbarVertebrae .pageTitle {
    background: url("../images/pageTitle_lumbarVertebrae.jpg");
  }
  #neck .pageTitle {
    background: url("../images/pageTitle_neck.jpg");
    background-position: center left !important;
  }
  #shoulder .pageTitle {
    background: url("../images/pageTitle_shoulder.jpg");
  }
  #etc .pageTitle {
    background: url("../images/pageTitle_etc.jpg");
  }
  #access .pageTitle {
    background: url("../images/pageTitle_access_.jpg");
  }
  #treatment .pageTitle {
    background: url("../images/pageTitle_treatment_.jpg");
  }
  #information .pageTitle {
    background: url("../images/pageTitle_information.jpg");
  }
  .pageTitle h1 {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    font-size: 40px;
    display: inline-block;
    height: auto;
    text-align: center;
    padding: 30px 60px;
    margin: 140px auto 0;
    color: #595757;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  #neck .pageTitle h1, #shoulder .pageTitle h1, #lumbarVertebrae .pageTitle h1, #elbowsAndHands .pageTitle h1, #hipJoint .pageTitle h1, #kneeJoint .pageTitle h1, #leg .pageTitle h1, #etc .pageTitle h1 {
    text-indent: -0.5em;
  }
  #neck .pageTitle h1:after, #shoulder .pageTitle h1:after, #lumbarVertebrae .pageTitle h1:after, #elbowsAndHands .pageTitle h1:after, #hipJoint .pageTitle h1:after, #kneeJoint .pageTitle h1:after, #leg .pageTitle h1:after, #etc .pageTitle h1:after {
    text-indent: 0;
  }
  .pageTitle h1:after {
    color: #C43B40;
    display: block;
    font-size: 16px;
    margin: 20px 0 0;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
  #base .pageTitle h1:after {
    content: "BASE";
  }
  #clinic .pageTitle h1:after {
    content: "CLINIC";
  }
  #treatment .pageTitle h1:after {
    content: "TREATMENT";
  }
  #guide .pageTitle h1:after {
    content: "GUIDE";
  }
  #access .pageTitle h1:after {
    content: "ACCESS";
  }
  #disease .pageTitle h1:after {
    content: "DISEASE";
  }
  #elbowsAndHands .pageTitle h1:after {
    content: "ELBOWS AND HANDS";
  }
  #hipJoint .pageTitle h1:after {
    content: "HIP JOINT";
  }
  #kneeJoint .pageTitle h1:after {
    content: "KNEE JOINT";
  }
  #leg .pageTitle h1:after {
    content: "LEG";
  }
  #lumbarVertebrae .pageTitle h1:after {
    content: "LUMBAR VERTEBRAE";
  }
  #neck .pageTitle h1:after {
    content: "NECK";
  }
  #shoulder .pageTitle h1:after {
    content: "SHOULDER";
  }
  #etc .pageTitle h1:after {
    content: "etc";
  }
  #access .pageTitle h1:after {
    content: "ACCESS";
  }
  #treatment .pageTitle h1:after {
    content: "TREATMENT";
  }
  #information .pageTitle h1:after {
    content: "INFORMATION";
  }
  .pageTitle h1.line2 {
    margin: 120px auto 0;
  }
  .pageTitle h1 span {
    font-size: 20px;
    margin: 15px 0 0;
    display: block;
  }
}
/* -----------------------------------------------------------
（SP表示）ページタイトル（下層ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .pageTitle {
    width: 100%;
    margin: 10px auto 20px;
    padding: 40px 0;
    height: auto;
    text-align: center;
    background-repeat: no-repeat !important;
    background-size: auto 100% !important;
    position: relative;
    /* eachが使える */
    border-radius: 10px;
    background-position: center center;
  }
  #base .pageTitle {
    background: #eee;
  }
  #clinic .pageTitle {
    background: url("../images/pageTitle_clinic_.jpg");
    background-position: top right -200px;
  }
  #guide .pageTitle {
    background: url("../images/pageTitle_guide_.jpg");
    background-position: top right -150px;
  }
  #disease .pageTitle {
    background: url("../images/pageTitle_disease__.jpg");
    background-position: center right -100px;
  }
  #elbowsAndHands .pageTitle {
    background: url("../images/pageTitle_elbowsAndHands.jpg");
  }
  #hipJoint .pageTitle {
    background: url("../images/pageTitle_hipJoint.jpg");
  }
  #kneeJoint .pageTitle {
    background: url("../images/pageTitle_kneeJoint.jpg");
  }
  #leg .pageTitle {
    background: url("../images/pageTitle_leg.jpg");
  }
  #lumbarVertebrae .pageTitle {
    background: url("../images/pageTitle_lumbarVertebrae.jpg");
  }
  #neck .pageTitle {
    background: url("../images/pageTitle_neck.jpg");
  }
  #shoulder .pageTitle {
    background: url("../images/pageTitle_shoulder.jpg");
  }
  #etc .pageTitle {
    background: url("../images/pageTitle_etc.jpg");
  }
  #access .pageTitle {
    background: url("../images/pageTitle_access_.jpg");
    background-position: center center;
  }
  #treatment .pageTitle {
    background: url("../images/pageTitle_treatment_.jpg");
    background-position: center center;
  }
  #information .pageTitle {
    background: url("../images/pageTitle_information.jpg");
  }
  .pageTitle h1 {
    background: rgba(255, 255, 255, 0.9);
    /* eachが使える */
    border-radius: 15px;
    font-size: 24px;
    display: inline-block;
    height: auto;
    width: 250px;
    padding: 15px 0;
    color: #595757;
    font-weight: 500;
  }
  .pageTitle h1:after {
    color: #C43B40;
    display: block;
    font-size: 13px;
    margin: 10px 0 0;
  }
  #neck .pageTitle h1, #shoulder .pageTitle h1, #lumbarVertebrae .pageTitle h1, #elbowsAndHands .pageTitle h1, #hipJoint .pageTitle h1, #kneeJoint .pageTitle h1, #leg .pageTitle h1, #etc .pageTitle h1 {
    text-indent: -0.5em;
  }
  #neck .pageTitle h1:after, #shoulder .pageTitle h1:after, #lumbarVertebrae .pageTitle h1:after, #elbowsAndHands .pageTitle h1:after, #hipJoint .pageTitle h1:after, #kneeJoint .pageTitle h1:after, #leg .pageTitle h1:after, #etc .pageTitle h1:after {
    text-indent: 0;
  }
  #base .pageTitle h1:after {
    content: "BASE";
  }
  #clinic .pageTitle h1:after {
    content: "CLINIC";
  }
  #treatment .pageTitle h1:after {
    content: "TREATMENT";
  }
  #guide .pageTitle h1:after {
    content: "GUIDE";
  }
  #disease .pageTitle h1:after {
    content: "DISEASE";
  }
  #elbowsAndHands .pageTitle h1:after {
    content: "ELBOWS AND HANDS";
  }
  #hipJoint .pageTitle h1:after {
    content: "HIP JOINT";
  }
  #kneeJoint .pageTitle h1:after {
    content: "KNEE JOINT";
  }
  #leg .pageTitle h1:after {
    content: "LEG";
  }
  #lumbarVertebrae .pageTitle h1:after {
    content: "LUMBAR VERTEBRAE";
  }
  #neck .pageTitle h1:after {
    content: "NECK";
  }
  #shoulder .pageTitle h1:after {
    content: "SHOULDER";
  }
  #etc .pageTitle h1:after {
    content: "etc";
  }
  #access .pageTitle h1:after {
    content: "ACCESS";
  }
  #treatment .pageTitle h1:after {
    content: "TREATMENT";
  }
  #information .pageTitle h1:after {
    content: "INFORMATION";
  }
  .pageTitle h1 span {
    font-size: 16px;
    margin: 8px 0 0;
    display: block;
  }
  .pageTitle .logo {
    margin: 0;
    width: 100%;
    line-height: 1;
    padding: 7px 0 10px 10px;
    /*background: #fff;*/
    text-align: left;
  }
  .pageTitle .logo img {
    width: 280px;
    height: auto;
    margin: 0 0 6px;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  .pageTitle .logo img {
    width: 230px;
  }
}
@media screen and (max-width: 999px) {
  .pageTitle .logo h2 {
    color: #595757;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 0 5px;
  }
}
/* -----------------------------------------------------------
（PC表示）診療時間表（トップページ待ち人数の下・フッターのクリニック概要内）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #timeTable table {
    border-collapse: collapse;
    border-top: solid 1px #111;
    border-bottom: solid 1px #111;
    width: 100%;
    margin: 0 0 20px;
    color: #111;
  }
  #timeTable table tr {
    border-bottom: solid 1px #111;
    text-align: center;
  }
  #timeTable table th br {
    display: none;
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  #timeTable table th br {
    display: block;
  }
}
@media print, screen and (min-width: 1000px) {
  #timeTable table th, #timeTable table td {
    vertical-align: middle;
    padding: 15px;
    position: relative;
    font-size: 17px;
    font-weight: 400;
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  #timeTable table th, #timeTable table td {
    padding: 10px;
  }
}
@media print, screen and (min-width: 1000px) {
  #timeTable table th sup, #timeTable table td sup {
    position: absolute;
    top: 8px;
  }
  #timeTable table th span, #timeTable table td span {
    font-size: 14px;
    display: block;
    color: #111;
    margin: 7px 0 0;
  }
  #timeTable table tr:nth-child(1) {
    font-weight: bold;
    color: #595757;
  }
  #timeTable table tr:nth-child(1) th {
    font-weight: bold !important;
    width: 170px;
    padding: 10px;
    color: #39436B;
  }
}
@media print and (min-width: 1000px) and (max-width: 1200px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1200px) {
  #timeTable table tr:nth-child(1) th {
    width: 120px;
  }
}
@media print, screen and (min-width: 1000px) {
  #timeTable table tr:nth-child(1) th span {
    font-size: 12px;
    display: inline-block;
    line-height: 1.7;
    border: solid 1px #111;
    margin: 7px 0 0;
    padding: 1px 5px;
    background: #f6f6f6;
  }
  #timeTable table tr:nth-child(2) th {
    text-indent: 0.5em;
  }
  #timeTable table tr:nth-child(2) th, #timeTable table tr:nth-child(3) th {
    line-height: 1.5;
    color: #595757;
    font-weight: normal;
  }
  #timeTable table tr:nth-child(2) td, #timeTable table tr:nth-child(3) td {
    color: #595757;
  }
  #timeTable table td.sun {
    padding: 0;
  }
  #timeTable table td.sun sup {
    right: 13px;
  }
  #timeTable table td.close {
    color: #111 !important;
  }
  #timeTable li {
    color: #595757;
    line-height: 1.5;
    margin: 0 0 10px 20px;
    font-size: 17px;
  }
}
/* -----------------------------------------------------------
（SP表示）診療時間表（トップページ待ち人数の下・フッターのクリニック概要内）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #timeTable table {
    border-collapse: collapse;
    border-top: solid 1px #595757;
    border-bottom: solid 1px #595757;
    width: 100%;
    margin: 0 0 10px;
    color: #595757;
  }
  #timeTable table tr {
    border-bottom: solid 1px #595757;
    text-align: center;
  }
  #timeTable table th, #timeTable table td {
    vertical-align: middle;
    position: relative;
    font-size: 17px;
  }
  #timeTable table th sup, #timeTable table td sup {
    position: absolute;
    top: 8px;
  }
  #timeTable table th span, #timeTable table td span {
    font-size: 12px;
    display: block;
    color: #595757;
    margin: 0;
    white-space: nowrap;
  }
  #timeTable table tr:nth-child(1) {
    font-weight: bold;
  }
  #timeTable table tr:nth-child(1) th {
    width: 100px;
    padding: 10px 0;
    color: #39436B;
  }
  #timeTable table tr:nth-child(1) td {
    font-weight: normal;
  }
  #timeTable table tr:nth-child(2) th {
    padding: 10px 0;
    line-height: 1.2;
  }
  #timeTable table tr:nth-child(2) th, #timeTable table tr:nth-child(3) th {
    padding: 10px 0;
    line-height: 1.2;
    font-weight: 400;
  }
  #timeTable table td {
    padding: 10px 5px;
    line-height: 1.2;
  }
  #timeTable table td.sun {
    padding: 0 0;
  }
  #timeTable table td.sun sup {
    right: 7px;
  }
  #timeTable table td.close {
    color: #595757 !important;
  }
  #timeTable li {
    color: #595757;
    line-height: 1.5;
    margin: 0 0 5px;
  }
  #timeTable li a {
    font-weight: bold;
    color: #595757;
    text-decoration: underline;
  }
}
/* -----------------------------------------------------------
（PC表示）パンくずリスト（下層ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 961px) {
  .breadcrumbArea {
    width: 100%;
    margin: 100px auto 0;
  }
  .breadcrumbArea .breadcrumb {
    border: dashed 1px #ccc;
    padding: 10px 20px;
    list-style: none;
  }
  .breadcrumbArea .breadcrumb li {
    display: inline; /*横に並ぶように*/
    list-style: none;
    font-size: 15px;
  }
  .breadcrumbArea .breadcrumb li:after {
    /* >を表示*/
    content: ">";
    padding: 0 0.5em;
    color: #595757;
  }
  .breadcrumbArea .breadcrumb li:last-child:after {
    content: "";
  }
  .breadcrumbArea .breadcrumb li a {
    color: #595757;
    font-weight: 400;
  }
  .breadcrumbArea .breadcrumb li a br {
    display: none;
  }
  .breadcrumbArea .breadcrumb li a:hover {
    color: #333;
  }
}
/* -----------------------------------------------------------
（SP表示）パンくずリスト（下層ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 960px) {
  .breadcrumbArea {
    border: dashed 1px #ccc;
    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: #595757;
  }
  .breadcrumbArea .breadcrumb li:last-child:after {
    content: "";
  }
  .breadcrumbArea .breadcrumb li a {
    text-decoration: none;
    color: #595757;
    font-weight: 400;
  }
  .breadcrumbArea .breadcrumb li a br {
    display: none;
  }
  .breadcrumbArea .breadcrumb li a:hover {
    color: #333;
  }
}
/* -----------------------------------------------------------
（PC表示）ボックス（下層ページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .box {
    margin: 0 auto 100px;
    /*料金表*/
  }
  .box a {
    text-decoration: underline;
    color: #595757;
    font-weight: 500;
  }
  .box p {
    font-size: 17px;
    margin: 0 0 20px;
    text-align: left;
  }
  .box p.center {
    margin: 30px 0 0;
  }
  .box h3 {
    font-size: 44px;
    color: #595757;
    margin: 0 0 100px;
    /*letter-spacing: .05em;
    text-indent: .1em;*/
    line-height: 1.3;
    text-align: center;
    font-weight: 500;
    position: relative;
  }
  .box h3 span {
    font-size: 24px;
    display: block;
  }
  .box h3:after {
    content: "";
    display: inline-block;
    width: 85px;
    height: 15px;
    background-image: url(../images/threeColor_.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .box h4 {
    font-size: 30px;
    margin: 40px 0 20px;
    padding: 0 0 10px;
    border-bottom: solid 1px #999;
    color: #595757;
    font-weight: 500;
    line-height: 1.5;
  }
  .box h4.noBorder {
    border-bottom: none;
    padding: 0;
  }
  #neck .box .box h4, #shoulder .box .box h4, #lumbarVertebrae .box .box h4, #elbowsAndHands .box .box h4, #hipJoint .box .box h4, #kneeJoint .box .box h4, #leg .box .box h4, #etc .box .box h4 {
    letter-spacing: 0.3em;
    margin: 0 0 40px;
  }
  .box h5 {
    font-size: 20px;
    margin: 30px 0;
    color: #001764;
  }
  .box .h4_box {
    border: double 3px #001764;
    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 .dotFrame {
    border: dashed 1px #001764;
    margin: 0 0 30px;
    padding: 40px 40px 20px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .flow dl {
    margin: 0 0 70px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .box .flow dl dt {
    margin: 0 40px 0 0;
    width: 180px;
    height: auto;
  }
  .box .flow dl dt img {
    width: 100%;
    height: auto;
  }
  .box .flow dl:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f063";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
    color: #001764;
    left: 0;
    right: 0;
    bottom: -50px;
    font-size: 30px;
    text-align: center;
    margin: auto;
  }
  .box .flow dl:last-of-type:after {
    content: none;
  }
  .box .flow dl dd {
    width: calc(100% - 220px);
    border: dashed 1px #001764;
    padding: 20px 30px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .flow dl dd h4 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 400;
  }
  .box .flow dl dd p {
    margin: 0 0 10px;
  }
  .box .flow dl dd p:last-of-type {
    margin: 0;
  }
  .box .flow dl dd h5 {
    margin: 30px 0 10px;
    font-size: 20px;
    font-weight: 400;
  }
  .box .btnFlex {
    display: flex;
    margin: 50px 0 0;
  }
  .box .btnFlex p {
    margin-right: 20px;
  }
  .box .border_dashed_box {
    border: dashed 1px #001764;
    margin: 20px 0 30px;
    padding: 30px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .border_dashed_box h4, .box .border_dashed_box h5 {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 500;
  }
  .box .border_dashed_box p {
    margin: 0;
  }
  .box .border_dashed_box ul {
    margin: 0;
  }
  .box .border_dashed_box ul li {
    font-size: 17px;
  }
  .box .priceList {
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
  }
  .box .priceList h4 {
    text-align: center;
    margin: 0 0 20px;
  }
  .box .priceList table {
    width: 100%;
    text-align: center;
    margin: 0 auto 20px;
  }
  .box .priceList table th, .box .priceList table td {
    border: solid 1px #879d79;
    padding: 15px;
    vertical-align: middle;
    font-size: 17px;
  }
  .box .priceList table th {
    background: #5C744C;
    color: #fff;
    font-weight: 500;
    width: 40%;
  }
  .box .priceList table td {
    line-height: 1.3;
    width: 60%;
  }
  .box .priceList table td span {
    display: inline-block;
    font-size: 17px;
    line-height: 1;
  }
  .box .priceList table td.td2line {
    width: 30%;
  }
}
/* -----------------------------------------------------------
（SP表示）ボックス（下層ページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .box {
    margin: 0 0 50px;
    text-align: center;
    /*料金表*/
  }
  .box h3 {
    color: #595757;
    font-size: 28px;
    font-weight: 500;
    position: relative;
    margin: auto;
    line-height: 1.2;
  }
  .box h3:after {
    content: "";
    display: block;
    width: 57px;
    height: 10px;
    background-image: url(../images/threeColor_.png);
    background-size: contain;
    vertical-align: middle;
    margin: 20px auto 20px;
  }
  .box h3 span {
    font-size: 18px;
    display: block;
    margin: 10px 0 0;
  }
  .box h4 {
    font-size: 22px;
    margin: 0 0 10px;
    color: #595757;
    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: #001764;
    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: #001764;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
  }
  .box h5 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #001764;
    text-align: left;
    line-height: 1.5;
  }
  .box a {
    text-decoration: underline;
    color: #595757;
    font-weight: 500;
  }
  .box p {
    font-size: 17px;
    margin: 0 0 20px;
    text-align: left;
  }
  .box p.okigarunigosoudan {
    border: solid 1px #595757;
    padding: 10px 0;
    color: #595757;
    text-align: center;
    font-weight: bold;
  }
  .box .h4_box {
    border: double 3px #001764;
    margin: 0 0 40px;
    padding: 20px 20px 30px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .btnFlex p {
    text-align: center;
  }
  .box .btnFlex p a {
    width: 100%;
  }
  .box .dotFrame {
    border: dashed 1px #001764;
    margin: 0 0 30px;
    padding: 20px 20px 10px;
    /* 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 .flow dl {
    margin: 0 0 70px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .box .flow dl dt {
    margin: 0 auto;
    width: 110px;
    height: auto;
    position: absolute;
    top: -60px;
    right: 10px;
    z-index: 1;
  }
  .box .flow dl dt img {
    width: 100%;
    height: auto;
  }
  .box .flow dl:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f063";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
    color: #001764;
    left: 40px;
    bottom: -55px;
    font-size: 40px;
    text-align: center;
    margin: auto;
  }
  .box .flow dl:last-of-type:after {
    content: none;
  }
  .box .flow dl dd {
    width: 100%;
    border: dashed 1px #001764;
    padding: 60px 20px 40px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .flow dl dd h4 {
    margin: 0 0 10px;
    border: none;
  }
  .box .flow dl dd p {
    margin: 0 0 10px;
  }
  .box .flow dl dd p:last-of-type {
    margin: 0;
  }
  .box .flow dl dd h5 {
    margin: 30px 0 10px;
    font-size: 20px;
    font-weight: 400;
  }
  .box .border_dashed_box {
    border: dashed 1px #001764;
    margin: 0 0 30px;
    padding: 20px 10px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .border_dashed_box ul {
    margin: 0;
  }
  .box .border_dashed_box li {
    text-align: left;
  }
  .box .priceList {
    margin: 0 auto;
    width: 100%;
  }
  .box .priceList h4 {
    text-align: center;
    margin: 0 0 20px;
  }
  .box .priceList table {
    width: 100%;
    text-align: center;
    margin: 0 auto 10px;
  }
  .box .priceList table th, .box .priceList table td {
    border: solid 1px #708661;
    padding: 10px 5px;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.5;
  }
  .box .priceList table th {
    width: 40%;
    background: #5C744C;
    color: #fff;
    font-weight: 500;
  }
  .box .priceList table td {
    width: 60%;
  }
  .box .priceList table td.td2line {
    width: 30%;
  }
  .box .priceList table td span {
    display: inline-block;
    font-size: 17px;
    line-height: 1;
  }
  .box .priceList table td .atena {
    font-size: 15px;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  .box .priceList table td .atena {
    font-size: 13px;
  }
}
/* -----------------------------------------------------------
（PC表示）アンカーリンクボタン
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .anchorLink {
    margin: 0 0 70px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .anchorLink li {
    margin: 0 0 20px;
    font-size: 17px;
  }
  #neck .anchorLink li:first-of-type a, #shoulder .anchorLink li:first-of-type a, #lumbarVertebrae .anchorLink li:first-of-type a, #elbowsAndHands .anchorLink li:first-of-type a, #hipJoint .anchorLink li:first-of-type a, #kneeJoint .anchorLink li:first-of-type a, #leg .anchorLink li:first-of-type a, #etc .anchorLink li:first-of-type a {
    background: #595757;
    color: #fff;
  }
  #neck .anchorLink li:first-of-type a:before, #shoulder .anchorLink li:first-of-type a:before, #lumbarVertebrae .anchorLink li:first-of-type a:before, #elbowsAndHands .anchorLink li:first-of-type a:before, #hipJoint .anchorLink li:first-of-type a:before, #kneeJoint .anchorLink li:first-of-type a:before, #leg .anchorLink li:first-of-type a:before, #etc .anchorLink li:first-of-type a:before {
    content: "↵";
    transform: rotate(90deg) !important;
    display: inline-block;
    margin: 0 10px 0 0;
    color: #fff;
  }
  #neck .anchorLink li:first-of-type a:hover, #shoulder .anchorLink li:first-of-type a:hover, #lumbarVertebrae .anchorLink li:first-of-type a:hover, #elbowsAndHands .anchorLink li:first-of-type a:hover, #hipJoint .anchorLink li:first-of-type a:hover, #kneeJoint .anchorLink li:first-of-type a:hover, #leg .anchorLink li:first-of-type a:hover, #etc .anchorLink li:first-of-type a:hover {
    background: #514f4f;
  }
  #neck .anchorLink li:first-of-type a:hover:before, #shoulder .anchorLink li:first-of-type a:hover:before, #lumbarVertebrae .anchorLink li:first-of-type a:hover:before, #elbowsAndHands .anchorLink li:first-of-type a:hover:before, #hipJoint .anchorLink li:first-of-type a:hover:before, #kneeJoint .anchorLink li:first-of-type a:hover:before, #leg .anchorLink li:first-of-type a:hover:before, #etc .anchorLink li:first-of-type a:hover:before {
    transform: translateY(-5px);
    margin: -5px 10px 0 0;
    display: inline-block;
  }
  #neck .anchorLink li:first-of-type a:after, #shoulder .anchorLink li:first-of-type a:after, #lumbarVertebrae .anchorLink li:first-of-type a:after, #elbowsAndHands .anchorLink li:first-of-type a:after, #hipJoint .anchorLink li:first-of-type a:after, #kneeJoint .anchorLink li:first-of-type a:after, #leg .anchorLink li:first-of-type a:after, #etc .anchorLink li:first-of-type a:after {
    content: none;
  }
  .anchorLink li:last-of-type a {
    margin: 0;
  }
  .anchorLink li a {
    display: inline-block;
    color: #595757;
    margin: 0 20px 0 0;
    padding: 7px 20px 9px;
    border: solid 1px #595757;
    position: relative;
    font-weight: 500;
    text-decoration: none;
    /* eachが使える */
    border-radius: 30px;
    background: #FAFAFA;
  }
  .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;
    font-size: 16px;
    transform: translate(-4px);
  }
  .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: 14px;
    margin: 10px 15px 0 0;
    line-height: 1.5;
  }
  #neck .anchorLink li:first-of-type a, #shoulder .anchorLink li:first-of-type a, #lumbarVertebrae .anchorLink li:first-of-type a, #elbowsAndHands .anchorLink li:first-of-type a, #hipJoint .anchorLink li:first-of-type a, #kneeJoint .anchorLink li:first-of-type a, #leg .anchorLink li:first-of-type a, #etc .anchorLink li:first-of-type a {
    background: #595757;
    color: #fff;
    padding: 5px 7px;
    border-bottom: none;
    /* eachが使える */
    border-radius: 7px;
  }
  #neck .anchorLink li:first-of-type a:before, #shoulder .anchorLink li:first-of-type a:before, #lumbarVertebrae .anchorLink li:first-of-type a:before, #elbowsAndHands .anchorLink li:first-of-type a:before, #hipJoint .anchorLink li:first-of-type a:before, #kneeJoint .anchorLink li:first-of-type a:before, #leg .anchorLink li:first-of-type a:before, #etc .anchorLink li:first-of-type a:before {
    content: "↵";
    transform: rotate(90deg) !important;
    display: inline-block;
    margin: 0 10px;
    color: #fff;
  }
  #neck .anchorLink li:first-of-type a:after, #shoulder .anchorLink li:first-of-type a:after, #lumbarVertebrae .anchorLink li:first-of-type a:after, #elbowsAndHands .anchorLink li:first-of-type a:after, #hipJoint .anchorLink li:first-of-type a:after, #kneeJoint .anchorLink li:first-of-type a:after, #leg .anchorLink li:first-of-type a:after, #etc .anchorLink li:first-of-type a:after {
    content: none;
  }
  #neck .anchorLink li:first-of-type, #shoulder .anchorLink li:first-of-type, #lumbarVertebrae .anchorLink li:first-of-type, #elbowsAndHands .anchorLink li:first-of-type, #hipJoint .anchorLink li:first-of-type, #kneeJoint .anchorLink li:first-of-type, #leg .anchorLink li:first-of-type, #etc .anchorLink li:first-of-type {
    width: 100%;
    transform: translateX(-10px);
    margin: 0 0 5px;
  }
  .anchorLink li a {
    display: inline-block;
    color: #595757;
    margin: 0 0 0 0;
    padding: 0 0 5px;
    border-bottom: solid 1px #595757;
    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;
  }
}
/* -----------------------------------------------------------
（PC表示）下層ページ（base.html）
----------------------------------------------------------- */
/* -----------------------------------------------------------
（SP表示）下層ページ（base.html）
----------------------------------------------------------- */
/* -----------------------------------------------------------
（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 #aaa;
    /* 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 #policy .policyFlex {
    display: flex;
    justify-content: space-between;
    margin: 60px 0 0;
  }
  #clinic #policy .policyFlex dl {
    width: calc((100% - 80px) / 3);
    /* eachが使える */
    border-radius: 10px;
    padding: 26px;
    border: solid 1px #aaa;
    position: relative;
  }
  #clinic #policy .policyFlex dl dt h4 {
    font-size: 22px;
    margin: 0 0 10px;
    line-height: 1.3;
    color: #595757;
    text-align: center;
  }
  #clinic #policy .policyFlex dl dt h4:before {
    position: absolute;
    top: -30px;
    left: 18px;
    font-size: 40px;
    display: block;
    text-align: center;
    z-index: 2;
  }
  #clinic #policy .policyFlex dl:nth-of-type(1) dt h4:before {
    color: #39436B;
  }
  #clinic #policy .policyFlex dl:nth-of-type(2) dt h4:before {
    color: #FFC42C;
  }
  #clinic #policy .policyFlex dl:nth-of-type(3) dt h4:before {
    color: #C43B40;
  }
  #clinic #policy .policyFlex dl dt h4:after {
    position: absolute;
    top: -20px;
    left: 22px;
    content: "■";
    font-size: 30px;
    display: block;
    color: #fff;
    z-index: 1;
  }
  #clinic #policy .policyFlex dl:nth-of-type(1) dt h4:before {
    content: "❶";
  }
  #clinic #policy .policyFlex dl:nth-of-type(2) dt h4:before {
    content: "❷";
  }
  #clinic #policy .policyFlex dl:nth-of-type(3) dt h4:before {
    content: "❸";
  }
  #clinic #medicalPartner ul {
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #clinic #medicalPartner ul li {
    margin: 0 0 20px;
    font-size: 18px;
    width: calc((100% - 80px) / 3);
  }
}
@media print and (min-width: 1000px) and (max-width: 1120px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1120px) {
  #clinic #medicalPartner ul li {
    width: calc((100% - 40px) / 3);
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1000px) {
  #clinic #medicalPartner ul li a {
    display: block;
    /* eachが使える */
    border-radius: 10px;
    padding: 15px 20px 15px 30px;
    text-decoration: none;
    background: #FAFAFA;
    border: solid 1px #999;
    text-align: center;
  }
  #clinic #medicalPartner ul li a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
    display: inline-block;
  }
}
@media print and (min-width: 1000px) and (max-width: 1120px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1120px) {
  #clinic #medicalPartner ul li a:after {
    font-size: 14px;
    transform: translateY(0);
  }
}
@media print, screen and (min-width: 1000px) {
  #clinic #equipment h4 {
    border: solid 1px #999;
    text-align: center;
    padding: 5px 0 7px;
    background: #FAFAFA;
  }
  #clinic #equipment #equipment_inspection dt {
    order: 1;
  }
  #clinic #equipment #equipment_inspection dd {
    order: 2;
  }
  #clinic #equipment #equipment_rehabilitation dt {
    order: 2;
  }
  #clinic #equipment #equipment_rehabilitation dd {
    order: 1;
    padding-right: 40px;
  }
  #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: #595757;
    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: #595757;
  }
  #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: #39436B;
    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: #39436B;
    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: #2e385d;
  }
  #clinic .swiper-button-next:hover:before {
    animation: arrow_next 0.5s ease-out forwards;
    color: #fff;
    background-color: #2e385d;
  }
  #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: #595757;
    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 #policy .policyFlex {
    margin: 30px 0 0;
  }
  #clinic #policy .policyFlex dl {
    width: 100%;
    /* eachが使える */
    border-radius: 10px;
    margin: 0 0 40px;
    padding: 20px 15px;
    border: solid 1px #aaa;
    position: relative;
  }
  #clinic #policy .policyFlex dl dt h4 {
    font-size: 22px;
    margin: 0 0 10px;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    color: #001764;
  }
  #clinic #policy .policyFlex dl dt h4:before {
    position: absolute;
    top: -25px;
    left: 15px;
    font-size: 36px;
    display: block;
    text-align: center;
    color: #001764;
    z-index: 2;
  }
  #clinic #policy .policyFlex dl dt h4:after {
    position: absolute;
    color: #fff;
    top: -25px;
    left: 15px;
    content: "■";
    font-size: 36px;
    display: block;
    z-index: 1;
  }
  #clinic #policy .policyFlex dl:nth-of-type(1) dt h4:before {
    color: #39436B;
  }
  #clinic #policy .policyFlex dl:nth-of-type(2) dt h4:before {
    color: #FFC42C;
  }
  #clinic #policy .policyFlex dl:nth-of-type(3) dt h4:before {
    color: #C43B40;
  }
  #clinic #policy .policyFlex dl:nth-of-type(1) dt h4:before {
    content: "❶";
  }
  #clinic #policy .policyFlex dl:nth-of-type(2) dt h4:before {
    content: "❷";
  }
  #clinic #policy .policyFlex dl:nth-of-type(3) dt h4:before {
    content: "❸";
  }
  #clinic #policy .policyFlex dl dd {
    text-align: left;
  }
  #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 #001764;
    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: #595757;
    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 #equipment h4 {
    border: solid 1px #999;
    text-align: center;
    margin: 30px 0 0;
    padding: 5px 0 7px;
    font-weight: 500;
    background: #FAFAFA;
  }
  #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: #595757;
    font-weight: 500;
  }
  #clinic #equipment #equipment_rehabilitation {
    margin: 40px 0 0;
  }
  #clinic #medicalPartner ul {
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #clinic #medicalPartner ul li {
    margin: 0 0 20px;
    width: 100%;
  }
  #clinic #medicalPartner ul li a {
    display: block;
    /* eachが使える */
    border-radius: 10px;
    padding: 10px;
    text-decoration: none;
    background: #FAFAFA;
    border: solid 1px #aaa;
    text-align: center;
    font-size: 17px;
  }
  #clinic #medicalPartner ul li a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
    display: inline-block;
  }
  #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: #595757;
    width: 240px;
    font-size: 18px;
    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 #001764;
    color: #001764;
    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 #001764;
    color: #001764;
    font-weight: bold;
  }
  #clinic .swiper-button-prev:hover:before {
    animation: arrow_prev 0.5s ease-out forwards;
    background: #fdf3ee;
  }
  #clinic .swiper-button-next:hover:before {
    animation: arrow_next 0.5s ease-out forwards;
    background: #fdf3ee;
  }
  #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 p {
    text-align: center;
  }
  #guide #pay .cardFlex {
    display: flex;
    justify-content: center;
  }
  #guide #pay .cardFlex dl {
    margin: 20px 30px 0;
  }
  #guide #pay .cardFlex dl dt {
    border: double 3px #ccc;
    margin: 0 0 30px;
    padding: 10px;
    background: #fcfcfc;
    font-weight: bold;
    text-align: center;
    color: #333;
    font-size: 20px;
    font-weight: 500;
    /* eachが使える */
    border-radius: 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;
    border: double 3px #ccc;
    margin: 70px auto 30px;
    padding: 60px 20px 15px;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
    background: #fcfcfc;
  }
  #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;
    margin: 5px 0;
  }
  #guide #bring .bringFlex {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 0;
  }
  #guide #bring .bringFlex dl {
    width: calc((100% - 100px) / 4);
    text-align: center;
    border: double 3px #ccc;
    margin: 40px 0 0;
    padding: 50px 15px 20px;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
    background: #fcfcfc;
  }
  #guide #bring .bringFlex dl: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 dl:nth-of-type(1):before {
    top: -40px;
    width: 60px;
    height: 78px;
    background-image: url(../images/guide_bringFlex_01.png);
  }
  #guide #bring .bringFlex dl:nth-of-type(2):before {
    top: -40px;
    width: 60px;
    height: 78px;
    background-image: url(../images/guide_bringFlex_02.png);
  }
  #guide #bring .bringFlex dl:nth-of-type(3):before {
    top: -40px;
    width: 75px;
    height: 78px;
    background-image: url(../images/guide_bringFlex_03.png);
  }
  #guide #bring .bringFlex dl:nth-of-type(4):before {
    top: -40px;
    width: 60px;
    height: 76px;
    background-image: url(../images/guide_bringFlex_04.png);
  }
  #guide #bring .bringFlex dl dt {
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 10px;
    color: #333;
  }
}
@media print and (min-width: 1000px) and (max-width: 1180px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1180px) {
  #guide #bring .bringFlex dl dt br.pc_none {
    display: block !important;
  }
}
@media print, screen and (min-width: 1000px) {
  #guide #bring .bringFlex dl dd {
    text-align: left;
  }
  #guide p .small {
    display: block;
  }
  #guide #faq .faqBox {
    margin: 0 0 30px;
    border: solid 1px #ccc;
    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: #595757;
    font-weight: 500;
    background: #fff;
  }
  #guide #faq .faqBox label p {
    font-size: 20px !important;
    line-height: 130%;
    margin: 0;
  }
  #guide #faq .faqBox label:hover {
    background: #FCFCFC;
  }
  #guide #faq .faqBox label:before {
    content: "Q";
    margin: -10px 30px 5px 0;
    font-size: 40px;
    font-weight: bold;
    color: #001764;
  }
  #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: #001764;
    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: #001764;
  }
  #guide #faq .faqBox input {
    display: none;
  }
  #guide #faq .faqBox .answer {
    height: 0;
    padding: 0;
    margin: 0 30px 0;
    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;
    padding: 0 10px 10px;
    opacity: 1;
    position: relative;
  }
}
/* -----------------------------------------------------------
（SP表示）初めてご来院の方へ（guide.html）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #guide #noReservationRequired {
    border: dashed 1px #ccc;
    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 p {
    text-align: center;
  }
  #guide #pay .cardFlex dl {
    margin: 20px 20px 0;
  }
  #guide #pay .cardFlex dl dt {
    border: double 3px #ccc;
    margin: 0 0 30px;
    padding: 10px;
    background: #fcfcfc;
    font-weight: bold;
    text-align: center;
    color: #333;
    /* eachが使える */
    border-radius: 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: 26px;
    font-weight: 500;
    border: double 3px #ccc;
    margin: 50px auto 20px;
    padding: 63px 20px 15px;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
    background: #fcfcfc;
    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;
    margin: 5px 0;
  }
  #guide #bring .bringFlex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
  }
  #guide #bring .bringFlex dl {
    width: calc((100% - 20px) / 2);
    text-align: center;
    border: double 3px #ccc;
    margin: 40px 0 0;
    padding: 50px 10px 15px;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
    background: #fcfcfc;
  }
  #guide #bring .bringFlex dl: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 dl:nth-of-type(1):before {
    top: -25px;
    width: 50px;
    height: 65px;
    background-image: url(../images/guide_bringFlex_01.png);
  }
  #guide #bring .bringFlex dl:nth-of-type(2):before {
    top: -25px;
    width: 50px;
    height: 65px;
    background-image: url(../images/guide_bringFlex_02.png);
  }
  #guide #bring .bringFlex dl:nth-of-type(3):before {
    top: -25px;
    width: 65px;
    height: 68px;
    background-image: url(../images/guide_bringFlex_03.png);
  }
  #guide #bring .bringFlex dl:nth-of-type(4):before {
    top: -25px;
    width: 50px;
    height: 64px;
    background-image: url(../images/guide_bringFlex_04.png);
  }
  #guide #bring .bringFlex dl dt {
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 10px;
    color: #333;
    line-height: 1.3;
  }
  #guide #bring .bringFlex dl dd {
    text-align: left;
  }
  #guide #faq .faqBox {
    margin: 0 0 20px;
    border: solid 1px #ccc;
    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 30px 15px 15px;
    color: #595757;
    font-weight: 500;
    background: #fff;
  }
  #guide #faq .faqBox label p {
    font-size: 16px !important;
    line-height: 130%;
    margin: 0;
  }
  #guide #faq .faqBox label:hover {
    background: #FFFCF8;
  }
  #guide #faq .faqBox label:before {
    content: "Q";
    margin: -5px 15px 0 0;
    font-size: 26px;
    font-weight: bold;
    color: #001764;
  }
  #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: #001764;
    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: #001764;
  }
  #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 30px 20px;
    padding: 0 10px 10px;
    opacity: 1;
    position: relative;
  }
}
/* -----------------------------------------------------------
（PC表示）診療案内（treatment.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #treatment .box_inner {
    margin: 0 0 50px;
  }
  #treatment .btn {
    text-align: center;
  }
  #treatment .btn a {
    color: #fff;
    text-decoration: none;
  }
}
/* -----------------------------------------------------------
（SP表示）診療案内（treatment.html）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #treatment .btn {
    text-align: center;
  }
  #treatment .btn a {
    color: #fff;
    text-decoration: none;
  }
}
/* -----------------------------------------------------------
（PC表示）【部位別】対象疾患ページ（disease.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #disease .box ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    border: double 3px #ccc;
    margin: 0 0 50px;
    padding: 30px 50px 10px;
    /* eachが使える */
    border-radius: 10px;
  }
  #disease .box ul li {
    margin: 0 0 20px 0;
    display: flex;
  }
  #disease .box ul li:after {
    content: "／";
    margin: 0 10px;
    color: #999;
  }
  #disease .box ul li:last-of-type:after {
    content: none;
  }
  #disease .box ul li a {
    display: block;
    text-decoration: underline;
  }
  #disease .box ul li a:hover {
    color: #333;
  }
  #disease .box .btn {
    margin: 0 auto;
    text-align: center;
  }
}
/* -----------------------------------------------------------
（SP表示）【部位別】対象疾患ページ（disease.html）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #disease .box ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    border: double 3px #ccc;
    margin: 0 0 30px;
    padding: 20px;
    /* eachが使える */
    border-radius: 10px;
  }
  #disease .box ul li {
    margin: 0 0 10px 0;
    display: flex;
  }
  #disease .box ul li:after {
    content: "/";
    margin: 0 5px;
  }
  #disease .box ul li a {
    display: block;
    text-decoration: underline;
  }
  #disease .box ul li a:hover {
    color: #333;
  }
  #disease .box .btn {
    margin: 0 auto;
    text-align: center;
  }
  #disease .box .btn a {
    color: #fff;
    text-decoration: none;
  }
}
/* -----------------------------------------------------------
（PC表示）アクセスページ
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #access #train {
    text-align: center;
  }
  #access #train h3 {
    margin: 0 0 90px;
  }
  #access #train h4 {
    border: solid 1px #595757;
    margin: 0 0 30px;
    padding: 10px 10px 10px 20px;
    font-size: 18px;
    display: inline-block;
    text-indent: 0.3em;
  }
  #access #train p.access_scroll {
    margin: 0 0 50px;
    text-align: center;
  }
  #access #train p.access_scroll:before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 46px;
    background-image: url(../images/scroll.png);
    background-size: contain;
    vertical-align: middle;
    margin: 0 10px 0 0;
  }
  #access #train p.slide-title {
    margin: 0 !important;
    padding: 10px 0 0;
    font-weight: 400;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    text-align: left;
  }
  #access #train p.slide-title span {
    font-size: 28px;
    color: #001764;
    padding: 0 10px 0 0;
    display: inline-block;
    transform: translateY(2px);
  }
}
/* -----------------------------------------------------------
（SP表示）アクセスページ
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #access #train {
    text-align: center;
  }
  #access #train h4 {
    border: solid 1px #595757;
    margin: 0;
    padding: 10px 10px 10px 20px;
    font-size: 18px;
    display: inline-block;
    text-align: center;
    text-indent: 0.3em;
  }
  #access #train p.access_scroll {
    margin: 20px auto;
    text-align: center;
  }
  #access #train p.access_scroll:before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 46px;
    background-image: url(../images/scroll.png);
    background-size: contain;
    vertical-align: middle;
    margin: 0 10px 0 0;
  }
  #access #train p.slide-title {
    margin: 0 !important;
    padding: 10px 0 0;
    font-weight: 400;
    font-size: 17px;
    display: flex;
    align-items: flex-start;
    text-align: left;
  }
  #access #train p.slide-title span {
    font-size: 28px;
    color: #001764;
    padding: 0 10px 0 0;
    display: inline-block;
    transform: translateY(2px);
  }
}
/* -----------------------------------------------------------
（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: #001764;
    display: inline-block;
    border-bottom: solid 2px #001764;
    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 #001764;
    color: #001764;
    font-weight: bold;
  }
  #information main .box p {
    font-size: 17px;
  }
  #information main .box .box_inner {
    text-align: left;
  }
  #information main .box .box_inner img.centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #information main .box .box_inner img.alignright {
    padding: 4px;
    margin: 0 0 2px 10px;
    display: inline;
  }
  #information main .box .box_inner img.alignleft {
    padding: 4px;
    margin: 0 10px 2px 0;
    display: inline;
  }
  #information main .box .box_inner .alignright {
    float: right;
  }
  #information main .box .box_inner .alignleft {
    float: 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: "\f054";
    -webkit-font-smoothing: antialiased;
    display: block;
    font-weight: bold;
    position: absolute;
    color: #001764;
    font-size: 16px;
    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: 160px;
    box-sizing: border-box;
    text-align: center;
    line-height: 180%;
    font-weight: 400;
    color: #595757;
  }
  #information main .box .archive a dl dd {
    width: calc(100% - 160px);
    font-size: 17px;
    line-height: 180%;
    color: #595757;
    text-align: left;
    font-weight: 500;
  }
  #information main .box .archive a dl dd br {
    display: none;
  }
  #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: 100%;
    margin: 30px auto 70px;
    padding: 0;
    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: #f9f9f9;
    color: #595757;
    padding: 7px 10px;
    text-decoration: underline;
  }
  #information main .pagenav a.page-numbers:hover {
    color: #595757;
  }
  #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;
    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: #001764;
    display: inline-block;
    border-bottom: solid 2px #001764;
    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 #001764;
    color: #001764;
    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: 15px 20px 15px 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: "\f054";
    -webkit-font-smoothing: antialiased;
    display: block;
    font-weight: bold;
    position: absolute;
    color: #ccc;
    font-size: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 3px;
    height: 20px;
  }
  #information .box .archive a:hover:after {
    right: 0;
    transition: all 0.3s ease 0s;
  }
  #information .box .archive a dl dt {
    width: 100%;
    text-align: left;
    color: #999;
    font-weight: 400;
    margin: 0 0 5px;
  }
  #information .box .archive a dl dd {
    width: 98%;
    font-size: 16Rpx;
    line-height: 150%;
    color: #595757;
    text-align: left;
    font-weight: 500;
  }
  #information .box .archive a dl dd br {
    display: none;
  }
  #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 {
    margin: 20px auto 30px;
    padding: 0;
    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: #f9f9f9;
    color: #595757;
    padding: 7px 10px;
    text-decoration: underline;
  }
  #information .pagenav a.page-numbers:hover {
    color: #595757;
  }
  #information .pagenav a.next, #information .pagenav a.prev {
    margin: 0;
    background: none;
    text-decoration: none;
  }
}
/* -----------------------------------------------------------
（PC表示）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  /*内覧会のご案内*/
  .preOpen {
    margin: 0 auto 50px;
    border: dashed 1px #595757;
    padding: 30px 0;
    /* eachが使える */
    border-radius: 10px;
    text-align: center;
  }
  .preOpen h3 {
    padding-bottom: 15px;
    font-weight: 500;
    position: relative;
    width: 340px;
    text-align: center;
    margin: 0 auto 10px !important;
    font-size: 30px !important;
    color: #001764;
  }
  .preOpen h3:after {
    display: none !important;
  }
  .preOpen h4.date {
    text-align: center;
    margin: 0 0 20px;
    font-size: 1.8vw;
  }
  .preOpen h4.date span.when {
    font-size: 60%;
  }
  .preOpen h4.date span.number {
    font-size: 30px;
    margin: 0 5px;
    color: #001764;
  }
  .preOpen h4.date span.week {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    display: inline-block;
    background: #001764;
    text-align: center;
    line-height: 40px;
    margin: 0 0 0 10px;
    transform: translateY(-7px);
  }
  .preOpen h4.date .time {
    font-size: 20px;
  }
  .preOpen p {
    font-size: 18px;
  }
  .preOpen ul {
    display: flex;
    justify-content: center;
    margin: 0 0 15px;
  }
  .preOpen ul li {
    display: inline-block;
    background: #fff;
    padding: 0 10px;
    border: solid 1px #001764;
    font-weight: 700;
    margin-right: 10px;
    color: #001764;
  }
  .preOpen ul li:last-child {
    margin-right: 0;
  }
}
/* -----------------------------------------------------------
（SP表示）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  /*内覧会のご案内*/
  .preOpen {
    margin: 0 auto 30px;
    border: dashed 1px #595757;
    padding: 20px 0;
    /* eachが使える */
    border-radius: 10px;
    text-align: center;
  }
  .preOpen h3 {
    font-weight: 500;
    position: relative;
    text-align: center;
    margin: 0 auto 10px !important;
    padding: 0 0 10px 5px;
    font-size: 24px;
    display: inline-block;
  }
  .preOpen h3:after {
    display: none !important;
  }
  .preOpen h4.date {
    text-align: center;
    margin: 0 0 10px;
    font-size: 1.8vw;
  }
  .preOpen h4.date span.when {
    font-size: 14px;
    color: #001764;
  }
  .preOpen h4.date span.number {
    font-size: 22px;
    margin: 0 5px;
    font-weight: 500;
    color: #001764;
  }
  .preOpen h4.date span.week {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    background: #001764;
    text-align: center;
    line-height: 24px;
    margin: 0 0 0 10px;
    transform: translateY(-2px);
  }
  .preOpen h4.date .time {
    font-size: 20px;
    margin: 2px 0 0;
    display: block;
    color: #333;
    font-weight: 400;
    line-height: 2;
  }
  .preOpen p {
    font-size: 17px;
  }
  .preOpen ul {
    display: flex;
    justify-content: center;
    margin: 0 0 15px;
  }
  .preOpen ul li {
    display: inline-block;
    background: #fff;
    padding: 0 10px;
    border: solid 1px #001764;
    font-weight: 700;
    margin-right: 10px;
    color: #001764;
  }
  .preOpen ul li:last-child {
    margin-right: 0;
  }
}
/* -----------------------------------------------------------
（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: #001764;
  }
}
/* -----------------------------------------------------------
（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: #001764;
  }
}
/* -----------------------------------------------------------
（PC表示）準備中
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .inPreparation {
    border: solid 1px #001764;
    margin: 0 auto;
    padding: 200px 50px;
    font-size: 26px;
    font-weight: 400;
    color: #001764;
    text-align: center;
  }
}
/* -----------------------------------------------------------
（SP表示）準備中
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .inPreparation {
    border: solid 1px #001764;
    margin: 0 0 50px;
    padding: 200px 50px;
    font-weight: 500;
    color: #001764;
    text-align: center !important;
  }
}
/*==================================================
スタート時は要素自体を透過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;
  }
}
/* -----------------------------------------------------------
（PC表示）
----------------------------------------------------------- */
/* -----------------------------------------------------------
（SP表示）
----------------------------------------------------------- *//*# sourceMappingURL=style.css.map */