@charset "UTF-8";
/*---------------------------------------------
 font
---------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,700|Roboto:400,700&display=swap");
@font-face {
  font-family: YuGothicM;
  src: local(Yu Gothic Medium), local(Yu Gothic);
  font-weight: 500;
}
/*----------------------------------
	common
----------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1;
  color: #333;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

@media screen and (min-width: 768px) {
  .inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.pcOnly {
  display: none;
}

.spOnly {
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .pcOnly {
    display: block;
  }

  .spOnly {
    display: none;
  }

  a[href*="tel:"] {
    pointer-events: none;
  }
}
/*----------------------------------
	header
----------------------------------*/
header {
  overflow: auto;
  /* メニュー設定 */
  /* メニューアイコン設定 */
  /* 文字を変更する場合は設定 */
  /* メニューアイコン変形設定 */
}
header .header_bar {
  position: fixed;
  top: 0;
  height: 60px;
  padding: 15px 0 0 20px;
  background-color: #fff;
  width: 100%;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 5;
  text-align: left;
}
header .header_bar img {
  width: 270px;
  height: auto;
}
header .fixed .header_bar, header .open .header-bar, header body:not(#home) .header-bar {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
header nav {
  display: none;
  position: fixed;
  width: 100%;
  background-color: rgba(0, 139, 140, 0.9);
  top: 60px;
  left: 0;
  z-index: 1;
  font-size: 1.6rem;
}
header nav.active {
  display: block;
  position: absolute;
  width: 100%;
  background-color: rgba(0, 139, 140, 0.8);
  top: 60px;
  left: 0;
  z-index: 1;
  font-size: 1.6rem;
}
header nav ul {
  display: block;
  list-style: none;
  margin: 0 auto;
  padding: 7px 10px 0;
  width: 100%;
}
header nav li {
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.3rem;
}
header nav li:not(:last-of-type) {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}
header nav a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 12px 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
header nav a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
header nav li.tel {
  padding: 15px 0;
  letter-spacing: 0.1rem;
}
header nav li.tel a {
  color: #C7522E;
  background-color: #fff;
}
header #nav-toggle {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #008b8c;
  width: 60px;
  height: 60px;
  padding: 12px 10px;
  text-align: center;
  z-index: 10;
}
header #nav-toggle:hover {
  cursor: pointer;
}
header .menu-trigger,
header .menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
header .menu-trigger {
  position: relative;
  width: 30px;
  height: 19px;
}
header .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
header .menu-trigger span:nth-of-type(1) {
  top: 0;
}
header .menu-trigger span:nth-of-type(2) {
  top: 9px;
}
header .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
header .menu-trigger::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: "MENU";
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header #nav-toggle.active .menu-trigger::after {
  content: "CLOSE";
}
header .menu-trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
header #nav-toggle.active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(9px) scale(0);
      -ms-transform: translateY(9px) scale(0);
          transform: translateY(9px) scale(0);
}
header #nav-toggle.active .menu-trigger span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header #nav-toggle.active .menu-trigger span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
header #nav-toggle.active .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) scale(0);
      -ms-transform: translateY(-9px) scale(0);
          transform: translateY(-9px) scale(0);
}

@media screen and (min-width: 768px) {
  header {
    /* メニュー設定 */
    /* メニューアイコン設定 */
  }
  header .header_bar {
    height: 75px;
    padding: 14px 0 0 20px;
    text-align: center;
  }
  header .header_bar img {
    width: 400px;
    height: auto;
  }
  header nav {
    top: 75px;
  }
  header nav.active {
    top: 75px;
  }
  header #nav-toggle {
    width: 75px;
    height: 75px;
    padding: 22px 10px 0;
  }
  header nav li.tel {
    padding: 15px 0;
  }
  header nav li.tel div {
    color: #C7522E;
    display: inline-block;
    background-color: #fff;
    padding: 15px 50px;
  }
}
/*----------------------------------
	footer
----------------------------------*/
footer {
  background-color: #ebebe8;
  padding: 50px 10px 30px;
  text-align: center;
  position: relative;
}
footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
  font-size: 1.4rem;
  /*
  li:first-of-type {
    border-right: 1px solid rgba($black-color,0.5);
  }
  */
}
footer ul li {
  padding: 0 10px;
}
footer ul a {
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
footer ul a:hover {
  opacity: 0.7;
}
footer .scrollTop {
  position: absolute;
  top: -30px;
  left: calc(50% - 30px);
  display: block;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
footer .scrollTop:before {
  position: absolute;
  top: calc(50% + 3px);
  left: 50%;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg);
  background: -o-linear-gradient(135deg, transparent 0%, transparent 50%, #008b8c 50%, #008b8c 100%);
  background: linear-gradient(-45deg, transparent 0%, transparent 50%, #008b8c 50%, #008b8c 100%);
}
footer .scrollTop:hover {
  background: #008b8c;
}
footer .scrollTop:hover:before {
  background: -o-linear-gradient(135deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%);
  background: linear-gradient(-45deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%);
}

/*----------------------------------
	.hero
----------------------------------*/
.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
  width: 100%;
  height: 400px;
  padding: 10px 0;
  overflow: hidden;
  color: #fff;
  background-image: url(../img/hero_bg.jpg);
  background-size: cover;
  background-position: center;
}
.hero .inner {
  text-align: center;
}
.hero h2 {
  font-size: 4.8vw;
  font-weight: bold;
  line-height: 1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}
.hero h2 span {
  display: block;
  font-size: 4.2666666667vw;
  font-weight: normal;
  line-height: 1.6;
  margin-top: 10px;
}
.hero video {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -10;
}

@media screen and (min-width: 768px) {
  .hero {
    height: 600px;
  }
  .hero h2 {
    font-size: 4rem;
  }
  .hero h2 span {
    display: block;
    font-size: 2.8rem;
  }
}
/*----------------------------------
	.banner
----------------------------------*/
.banner .inner {
  padding: 3vh 20px;
  text-align: center;
}
.banner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.banner li {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.banner img {
  min-height: 0%;
}

@media screen and (min-width: 768px) {
  .banner .inner {
    padding: 5vh 20px;
  }
  .banner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .banner li {
    width: 49%;
    height: auto;
    margin-bottom: 0;
  }
  .banner img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .banner img:hover {
    opacity: 0.7;
    -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  }
}
/*----------------------------------
	.info
----------------------------------*/
#home .info {
  position: relative;
  margin-bottom: 5vw;
  overflow: hidden;
}
#home .info .bg_info_anime {
  position: absolute;
  display: block;
  content: "";
  z-index: -1;
  background-color: rgba(0, 139, 140, 0.1);
  width: 80%;
  height: 60%;
}
#home .info section {
  padding: 50px 30px 0;
}
#home .info h2 {
  font-size: 2.1rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  white-space: nowrap;
}
#home .info h2:after {
  content: "Information";
  display: block;
  font-size: 1rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .info .container {
  margin-top: 40px;
  padding: 20px 15px;
  background-color: #fff;
}
#home .info .container ul {
  margin-bottom: 30px;
}
#home .info .container li {
  border-bottom: 1px solid #efefef;
}
#home .info .container .contents a {
  padding: 10px 15px;
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-decoration: none;
  color: #555;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#home .info .container .contents a:hover {
  background-color: #f9f9f9;
}
#home .info .container .contents .sub {
  white-space: nowrap;
}
#home .info .container .contents time {
  color: #cb9757;
  font-size: 1.4rem;
}
#home .info .container .contents .category {
  color: #999999;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #999999;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}
#home .info .container .contents h3 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 1.5rem 0 1rem;
}
#home .info .container .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#home .info .container .btn a {
  width: 100%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#home .info .container .btn a:after {
  content: "see all";
  display: block;
  font-size: 1rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .info .container .btn a:hover {
  background: #f9f9f9 !important;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #home .info .bg_anime {
    width: 70%;
    height: 60%;
  }
  #home .info section {
    padding: 90px 60px 0;
  }
  #home .info h2 {
    font-size: 3.6rem;
  }
  #home .info h2:after {
    font-size: 1.2rem;
  }
  #home .info .container {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 20px 30px;
  }
  #home .info .container .contents a {
    padding: 20px 25px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #home .info .container .contents a:hover {
    background-color: #f9f9f9;
  }
  #home .info .container .contents .sub {
    margin-right: 30px;
  }
  #home .info .container .contents h3 {
    font-size: 2.1rem;
    margin: 2rem 0 1rem;
  }
  #home .info .container .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
/*----------------------------------
	#home .treatment
----------------------------------*/
#home .treatment {
  position: relative;
  overflow: hidden;
  margin-bottom: 3vw;
}
#home .treatment .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/about_title.jpg);
  background-size: cover;
  opacity: 0.05;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}
#home .treatment .bg_about_anime {
  position: absolute;
  display: block;
  content: "";
  z-index: -1;
  background-color: #008b8c;
  width: 90%;
  height: 60%;
}
#home .treatment section {
  padding: 40px 30px;
}
#home .treatment .contents {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#home .treatment .contents .text {
  width: 95%;
  color: #fff;
}
#home .treatment .contents .text p.headCatch {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
#home .treatment .contents .text p.read {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
#home .treatment .contents .text .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
#home .treatment .contents .text .btn a {
  width: 90%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  background-color: #fff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#home .treatment .contents .text .btn a:after {
  content: "see detail";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .treatment .contents .text .btn a:hover {
  background: #f9f9f9 !important;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}
#home .treatment .contents .pict {
  width: 100%;
}

@media screen and (min-width: 768px) {
  #home .treatment .bg_about_anime {
    width: 55%;
    height: 100%;
  }
  #home .treatment section {
    padding: 60px 30px;
  }
  #home .treatment .contents {
    max-width: 1200px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #home .treatment .contents .text {
    width: 40%;
  }
  #home .treatment .contents .text p.headCatch {
    font-size: 3.6rem;
    margin-bottom: 30px;
  }
  #home .treatment .contents .text p.read {
    font-size: 1.8rem;
  }
  #home .treatment .contents .text .btn {
    margin-bottom: 0px;
  }
  #home .treatment .contents .text .btn a {
    max-width: 350px;
  }
  #home .treatment .contents .pict {
    width: 60%;
  }
}
/*----------------------------------
	.inside
----------------------------------*/
/*
#home .inside {
  background-image: url(../img/hero_img.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
}
@media screen and (min-width: 768px) {
  #home .inside {
    height: 500px;
  }
}
*/
/*----------------------------------
	.access
----------------------------------*/
#home .access section {
  padding: 60px 0px;
}
#home .access h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 50px;
}
#home .access h2:after {
  content: "CLINIC INFORMATION";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .access .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
#home .access table {
  font-size: 1.4rem;
  line-height: 1.6;
}
#home .access table th {
  font-weight: normal;
  text-align: right;
  vertical-align: top;
}
#home .access table th, #home .access table td {
  padding: 5px;
}
#home .access .gmap {
  width: 100%;
}
#home .access .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
#home .access .btn a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#home .access .btn a:after {
  content: "see google map";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .access .btn a:hover {
  background: #f9f9f9 !important;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #home .access section {
    padding: 90px 0px;
  }
  #home .access h2 {
    font-size: 3.6rem;
  }
  #home .access h2:after {
    font-size: 1rem;
  }
  #home .access table {
    font-size: 1.6rem;
  }
  #home .access .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #home .access .btn a:after {
    font-size: 1rem;
  }
}
/*----------------------------------
	.root
----------------------------------*/
#home .root h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.4;
  background-color: #008b8c;
  color: #fff;
  padding: 20px 0;
  margin-bottom: 30px;
}
#home .root .bl_root {
  padding: 0 20px 50px;
}
#home .root .bl_root_note {
  margin-bottom: 30px;
  border: 2px solid #008b8c;
  background-color: rgba(0, 139, 140, 0.05);
  padding: 20px 20px;
}
#home .root .bl_root_note_title {
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #999;
  margin-bottom: 10px;
}
#home .root .bl_root_note_read {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: bold;
}
#home .root .bl_root_note_list {
  font-size: 1.6rem;
  line-height: 1.6;
}
#home .root .bl_root_note_list ul {
  list-style-type: decimal;
  padding-left: 2rem;
}
#home .root .bl_root_note_list li:not(:last-child) {
  margin-bottom: 10px;
}
#home .root .bl_root_box {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, Verdana, Avenir, "游ゴシック Medium", "YuGothic M", "游ゴシック体", "YuGothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-bottom: 20px;
}
#home .root .bl_root_pict {
  margin-bottom: 5px;
}
#home .root .bl_root_txt {
  text-align: left;
}
#home .root .bl_root_txt .bl_root_txt_jp {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
#home .root .bl_root_txt .bl_root_txt_en {
  font-size: 1.6rem;
  line-height: 1.4;
}
#home .root .bl_root_txt span {
  color: #ff0000;
}
#home .root .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
#home .root .btn a {
  width: 80%;
  padding: 15px 20px;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
  background-color: #fff;
  border: 1px solid #f5dcd2;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#home .root .btn a:after {
  content: "download sheet";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .root .btn a:hover {
  background: #f9f9f9 !important;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #home .root {
    padding: 0 0 60px;
  }
  #home .root h2 {
    font-size: 3.6rem;
    padding: 30px 0;
    margin-bottom: 50px;
  }
  #home .root .bl_root_note {
    margin-bottom: 50px;
    border: 2px solid #008b8c;
    padding: 20px 30px;
  }
  #home .root .bl_root_note_title {
    font-size: 2.4rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  #home .root .bl_root_note_read {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  #home .root .bl_root_note_list {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #home .root .bl_root_note_list ul {
    padding-left: 3rem;
  }
  #home .root .bl_root_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #home .root .bl_root_pict {
    width: 49%;
  }
  #home .root .bl_root_txt {
    width: 49%;
  }
  #home .root .bl_root_txt .bl_root_txt_jp {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  #home .root .bl_root_txt .bl_root_txt_en {
    font-size: 1.8rem;
  }
  #home .root .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #home .root .btn a:after {
    font-size: 1rem;
  }
}
/*----------------------------------
	.sheet
----------------------------------*/
#home .sheet {
  background-color: rgba(0, 139, 140, 0.1);
}
#home .sheet section {
  padding: 60px 30px;
}
#home .sheet h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 50px;
}
#home .sheet h2:after {
  content: "medical interview sheet";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .sheet .txt {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
}
#home .sheet .txt .note {
  font-size: 1.6rem;
  font-weight: bold;
}
#home .sheet .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
#home .sheet .btn a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  background-color: #fff;
  border: 1px solid #f5dcd2;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#home .sheet .btn a:after {
  content: "download sheet";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .sheet .btn a:hover {
  background: #f9f9f9 !important;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #home .sheet section {
    padding: 90px 0px;
  }
  #home .sheet h2 {
    font-size: 3.6rem;
  }
  #home .sheet h2:after {
    font-size: 1rem;
  }
  #home .sheet .txt {
    font-size: 1.6rem;
  }
  #home .sheet .txt .note {
    font-size: 1.8rem;
  }
  #home .sheet .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #home .sheet .btn a:after {
    font-size: 1rem;
  }
}
/*----------------------------------
	中ページ共通
----------------------------------*/
main {
  display: block;
  /*ie11用*/
  background-color: rgba(235, 235, 232, 0.6);
}

.breadcrumb {
  background-color: #f9f9f9;
  padding: 10px 20px;
  margin-top: 60px;
}
.breadcrumb .inner {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumb ul li {
  font-size: 1.2rem;
  position: relative;
  color: #3C5E75;
}
.breadcrumb ul li:not(:last-child) {
  margin-right: 30px;
}
.breadcrumb ul li:not(:last-child):after {
  color: #999;
  position: absolute;
  right: -20px;
  top: 1px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}
.breadcrumb a {
  color: #999;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 15px 30px;
    margin-top: 75px;
  }
  .breadcrumb .inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .breadcrumb a:hover {
    color: #333;
  }
}
.title {
  background-color: #fff;
  margin-bottom: 15px;
}
.title .inner {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 70px 0;
}
.title h1 {
  font-size: 8vw;
  letter-spacing: 0.3rem;
  color: #008b8c;
  line-height: 1.8;
  text-align: center;
}
.title h1:after {
  display: block;
  font-size: 1.4rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}

@media screen and (min-width: 768px) {
  .title {
    margin-bottom: 25px;
  }
  .title .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 120px 0;
  }
  .title h1 {
    font-size: 5.5rem;
  }
  .title h1:after {
    font-size: 1.6rem;
    color: #555;
  }
}
/*----------------------------------
	#mri
----------------------------------*/
#mri h1 {
  font-size: 6.9333333333vw;
}
#mri h1:after {
  content: "silent mri";
  font-size: 1.2rem;
}
#mri .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#mri .article {
  background-color: #fff;
}
#mri .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 30px 30px;
}
#mri .article h2 {
  font-size: 2.1rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#mri .article .machine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding: 0;
}
#mri .article .machine .text {
  width: 100%;
}
#mri .article .machine .text .head {
  padding: 20px 20px;
  background-image: url(../../mri/img/bg.jpg);
  background-size: cover;
  margin-bottom: 15px;
  position: relative;
}
#mri .article .machine .catch {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}
#mri .article .machine .read {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 10px;
}
#mri .article .machine sup {
  color: #B80A1F;
}
#mri .article .machine .note {
  padding: 10px;
  background-color: #f2f2f2;
  font-size: 1.2rem;
}
#mri .article .machine .overview {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
#mri .article .machine .pict {
  width: 100%;
  height: auto;
  min-height: 0%;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #mri h1 {
    font-size: 4.8rem;
  }
  #mri h1:after {
    font-size: 1.4rem;
  }
  #mri .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
  }
  #mri .article h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  #mri .article .machine {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 20px;
  }
  #mri .article .machine .text {
    width: 65%;
  }
  #mri .article .machine .text .head {
    padding: 20px 30px;
    margin-bottom: 15px;
  }
  #mri .article .machine .catch {
    font-size: 2.4rem;
  }
  #mri .article .machine .read {
    font-size: 1.6rem;
  }
  #mri .article .machine .note {
    font-size: 1.4rem;
  }
  #mri .article .machine .overview {
    font-size: 1.4rem;
  }
  #mri .article .machine .pict {
    width: 32%;
    margin-bottom: 0;
  }
}
/*----------------------------------
	#doctor
----------------------------------*/
#doctor h1:after {
  content: "doctor profile";
  font-size: 1.2rem;
}
#doctor .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#doctor .article {
  background-color: #fff;
}
#doctor .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
}
#doctor .article .drList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#doctor .article .pict {
  width: 100%;
  text-align: center;
}
#doctor .article .pict .img {
  margin-bottom: 20px;
}
#doctor .article .profile {
  width: 100%;
  padding: 10px 10px;
}
#doctor .article .profile .career, #doctor .article .profile .licence {
  padding: 10px 10px;
  font-size: 1.6rem;
  line-height: 1.8;
  border-bottom: 1px dotted #333;
}
#doctor .article .profile .history {
  font-size: 1.4rem;
  padding: 10px 10px;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  #doctor h1 {
    font-size: 4.8rem;
  }
  #doctor h1:after {
    font-size: 1.4rem;
  }
  #doctor .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 30px;
  }
  #doctor .article .drList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #doctor .article .pict {
    width: 30%;
  }
  #doctor .article .pict .img {
    margin-bottom: 20px;
  }
  #doctor .article .profile {
    width: 70%;
    padding: 20px 0 20px 50px;
  }
  #doctor .article .profile .career, #doctor .article .profile .licence {
    padding: 15px 10px;
    font-size: 1.8rem;
    line-height: 1.8;
    border-bottom: 1px dotted #333;
  }
  #doctor .article .profile .history {
    padding: 15px 10px;
    line-height: 1.8;
  }
}
/*----------------------------------
	#about
----------------------------------*/
#about h1:after {
  content: "about clinic";
  font-size: 1.2rem;
}
#about .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#about .article {
  background-color: #fff;
}
#about .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 30px 30px;
}
#about .article h2 {
  font-size: 2.1rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#about .article.access h2 {
  padding-bottom: 0;
  border-bottom: none;
}
#about .article .messeage {
  text-align: center;
}
#about .article .messeage h3 {
  font-size: 2.1rem;
  line-height: 1.4;
  color: #008b8c;
  margin: 8vw 0 6vw;
}
#about .article .messeage p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 6vw;
}
#about .article .messeage p.strong {
  font-size: 1.7rem;
  font-style: normal;
  font-weight: bold;
  line-height: 1.6;
  color: #008b8c;
  margin-bottom: 8vw;
}
#about .article .messeage p.read {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 2vw;
}
#about .article .treatment ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#about .article .treatment ul li {
  font-size: 1.8rem;
  line-height: 2;
}
#about .article .scedule {
  overflow-x: auto;
  white-space: nowrap;
  margin: 0 auto;
}
#about .article .scedule::-webkit-scrollbar {
  height: 10px;
}
#about .article .scedule::-webkit-scrollbar-track {
  margin: 0;
  background: #ccc;
  border-radius: 5px;
}
#about .article .scedule::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #666;
}
#about .article .scedule table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.3rem;
  margin-bottom: 15px;
}
#about .article .scedule table th {
  background: #008b8c;
  border: solid 1px #ccc;
  color: #fff;
  padding: 5px 10px;
  line-height: 1.6;
  font-weight: normal;
}
#about .article .scedule table th.merge-column {
  background-color: transparent;
  border: none;
}
#about .article .scedule table td {
  color: #008b8c;
  border: solid 1px #ccc;
  padding: 15px 10px;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6;
}
#about .article .scedule table td:first-of-type {
  background: #008b8c;
  color: #fff;
  font-size: 1.4rem;
}
#about .article .scedule table td:last-of-type {
  font-weight: bold;
  font-size: 1.8rem;
}
#about .article .scedule table i.rest {
  margin-top: -10px !important;
}
#about .article .scedule + p {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
}
#about .article table.time {
  margin: 0 auto;
  font-size: 1.6rem;
}
#about .article table.time th {
  text-align: right;
  vertical-align: top;
  padding: 3px 5px;
  line-height: 1.4;
  font-weight: normal;
}
#about .article table.time td {
  padding: 3px 5px;
  line-height: 1.4;
}
#about .article .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
#about .article .txt table {
  font-size: 1.4rem;
  line-height: 1.6;
}
#about .article .txt table th {
  font-weight: normal;
  text-align: right;
  vertical-align: top;
}
#about .article .txt table th, #about .article .txt table td {
  padding: 0px 5px;
}
#about .article .gmap {
  width: 100%;
}
#about .article .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
#about .article .btn a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#about .article .btn a:after {
  content: "see google map";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#about .article .btn a:hover {
  background: #f9f9f9 !important;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}
#about .access .inner {
  max-width: 100%;
  width: 100%;
  padding: 30px 0 60px;
}

@media screen and (min-width: 768px) {
  #about h1 {
    font-size: 4.8rem;
  }
  #about h1:after {
    font-size: 1.4rem;
  }
  #about .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
  }
  #about .article h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  #about .article .messeage h3 {
    font-size: 3.6rem;
    margin: 4vw 0 2vw;
  }
  #about .article .messeage p {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 2vw;
  }
  #about .article .messeage p.strong {
    font-size: 2.4rem;
    margin-bottom: 4vw;
  }
  #about .article .messeage p.read {
    font-size: 1.8rem;
    margin-bottom: 1vw;
  }
  #about .article .treatment ul li {
    font-size: 2.8rem;
  }
  #about .article .scedule {
    width: 600px;
  }
  #about .article .scedule table {
    width: 100%;
  }
  #about .article table.time {
    font-size: 1.8rem;
  }
  #about .article .txt {
    margin-bottom: 30px;
  }
  #about .article .txt table {
    font-size: 1.6rem;
  }
  #about .article .btn {
    margin-top: 30px;
  }
  #about .article .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #about .article .btn a:after {
    font-size: 1rem;
  }
  #about .access .inner {
    max-width: 100%;
    width: 100%;
    padding: 50px 0 100px;
  }
}
/*----------------------------------
	#access
----------------------------------*/
#access h1:after {
  content: "access";
  font-size: 1.2rem;
}
#access .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#access .article {
  background-color: #fff;
}
#access .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 30px 30px;
}
#access .article h2 {
  font-size: 2.1rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#access .article.access h2 {
  padding-bottom: 0;
  border-bottom: none;
}
#access .article .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
#access .article .txt table {
  font-size: 1.4rem;
  line-height: 1.6;
}
#access .article .txt table th {
  font-weight: normal;
  text-align: right;
  vertical-align: top;
}
#access .article .txt table th, #access .article .txt table td {
  padding: 0px 5px;
}
#access .article .gmap {
  width: 100%;
}
#access .article .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
#access .article .btn a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#access .article .btn a:after {
  content: "see google map";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#access .article .btn a:hover {
  background: #f9f9f9 !important;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}
#access .access .inner {
  max-width: 100%;
  width: 100%;
  padding: 30px 0 60px;
}

@media screen and (min-width: 768px) {
  #access h1 {
    font-size: 4.8rem;
  }
  #access h1:after {
    font-size: 1.4rem;
  }
  #access .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
  }
  #access .article h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  #access .article .txt {
    margin-bottom: 30px;
  }
  #access .article .txt table {
    font-size: 1.6rem;
  }
  #access .article .btn {
    margin-top: 30px;
  }
  #access .article .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #access .article .btn a:after {
    font-size: 1rem;
  }
  #access .access .inner {
    max-width: 100%;
    width: 100%;
    padding: 50px 0 100px;
  }
}
/*----------------------------------
	#gallery
----------------------------------*/
#gallery h1:after {
  content: "gallery";
  font-size: 1.2rem;
}
#gallery .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#gallery .article {
  background-color: #fff;
}
#gallery .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 30px 30px;
}
#gallery .article .catch {
  text-align: center;
  line-height: 1.8;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  #gallery h1 {
    font-size: 4.8rem;
  }
  #gallery h1:after {
    font-size: 1.4rem;
  }
  #gallery .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
  }
  #gallery .article .catch {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}
/* .slide
---------------------------------------------*/
#gallery ul.slick {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 20px;
}
#gallery ul.thumb {
  max-width: 800px;
  margin: 0 auto;
}
#gallery ul.thumb li {
  cursor: pointer;
}
#gallery ul.thumb li:not(:last-of-type) {
  margin: 0 3px;
}

/*----------------------------------
	slide common setting
----------------------------------*/
.slick-slide li {
  margin: 0 5px;
}

.slick-next {
  right: 0px;
}
.slick-next:before {
  content: "";
  width: 12px;
  height: 12px;
  border: 0px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 6px);
  right: calc(50% - 3px);
}

.slick-prev {
  left: 0px;
}
.slick-prev:before {
  content: "";
  width: 12px;
  height: 12px;
  border: 0px;
  border-bottom: solid 1px #000;
  border-left: solid 1px #000;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 3px);
}

.slick-next, .slick-prev {
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
  width: 30px;
  height: 30px;
}
.slick-next:hover, .slick-prev:hover {
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0.7;
}

.slick, .slick-slide {
  outline: none;
}

@media screen and (min-width: 768px) {
  .slick-next:before {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    right: calc(50% - 5px);
  }

  .slick-prev:before {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: calc(50% - 5px);
  }

  .slick-next, .slick-prev {
    width: 50px;
    height: 50px;
  }
}
/*----------------------------------
	#cost
----------------------------------*/
#cost h1:after {
  content: "treatment cost";
  font-size: 1.2rem;
}
#cost .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#cost .article {
  background-color: #fff;
}
#cost .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 30px 30px;
  text-align: center;
}
#cost .article section {
  margin-bottom: 60px;
}
#cost .article h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.25rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#cost .article p.cost {
  font-weight: bold;
  font-size: 1.8rem;
}
#cost .article table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  border-spacing: 0.3rem;
}
#cost .article table th {
  background: #008b8c;
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px 10px;
  line-height: 1.6;
  font-size: 1.8rem;
  font-weight: normal;
}
#cost .article table td {
  border: solid 1px #ccc;
  border-top: none;
  padding: 10px 10px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.8;
}
#cost .article table td.separate {
  white-space: nowrap;
}
#cost .article table td:last-of-type {
  font-weight: bold;
  font-size: 1.4rem;
}
#cost .article .sep {
  background-color: rgba(0, 0, 0, 0.05);
}
#cost .article p.note {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #cost .article table td {
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  #cost h1 {
    font-size: 4.8rem;
  }
  #cost h1:after {
    font-size: 1.4rem;
  }
  #cost .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
  }
  #cost .article h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  #cost .article p.cost {
    font-size: 2.4rem;
  }
  #cost .article table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0.3rem;
  }
  #cost .article table th {
    background: #008b8c;
    border: solid 1px #ccc;
    color: #fff;
    padding: 5px 10px;
    font-size: 2rem;
    line-height: 1.6;
    font-weight: normal;
  }
  #cost .article table td {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
  #cost .article table td.separate {
    height: 110px;
    white-space: nowrap;
  }
  #cost .article table td:last-of-type {
    font-weight: bold;
    font-size: 1.8rem;
  }
  #cost .article .sep {
    background-color: transparent;
  }
  #cost .article .course .sep {
    height: 110px;
  }
  #cost .article p.note {
    font-size: 1.6rem;
    margin-bottom: 50px;
  }
}
/*----------------------------------
	#sitemap
----------------------------------*/
#sitemap h1:after {
  content: "sitemap";
  font-size: 1.2rem;
}
#sitemap .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#sitemap .article {
  background-color: #fff;
}
#sitemap .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 30px 30px;
}
#sitemap .article h2 {
  font-size: 2.1rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#sitemap .article ul.list {
  font-size: 1.3rem;
}
#sitemap .article ul.list li {
  line-height: 2;
}
#sitemap .article ul.list a {
  position: relative;
  display: block;
  color: #333;
  list-style: none;
  text-decoration: none;
  padding: 5px 10px 5px 15px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#sitemap .article ul.list a:before {
  color: #008b8c;
  position: absolute;
  left: 0px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}

@media screen and (min-width: 768px) {
  #sitemap h1 {
    font-size: 4.8rem;
  }
  #sitemap h1:after {
    font-size: 1.4rem;
  }
  #sitemap .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
  }
  #sitemap .article h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  #sitemap .article ul.list {
    font-size: 1.6rem;
  }
  #sitemap .article ul.list li {
    line-height: 2.5;
  }
  #sitemap .article ul.list a {
    padding: 5px 40px 5px 40px;
  }
  #sitemap .article ul.list a:before {
    left: 15px;
  }
  #sitemap .article ul.list a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
}
/*----------------------------------
	#reserve
----------------------------------*/
#reserve h1:after {
  content: "reservation";
  font-size: 1.2rem;
}
#reserve .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#reserve .article {
  background-color: #fff;
}
#reserve .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 30px 30px;
}
#reserve .article section {
  margin-bottom: 50px;
}
#reserve .article h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.25rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#reserve .telephone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
#reserve .telephone a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  letter-spacing: 0.2rem;
  background-color: #d92e23;
}
#reserve .telephone a:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
#reserve .telephone a:after {
  content: "reservation phone";
  display: block;
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#reserve .telephone a:hover {
  background-color: rgba(217, 46, 35, 0.8);
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #reserve h1 {
    font-size: 4.8rem;
  }
  #reserve h1:after {
    font-size: 1.4rem;
  }
  #reserve .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
  }
  #reserve .article section {
    margin-bottom: 80px;
  }
  #reserve .article h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  #reserve .telephone {
    margin-top: 0px;
  }
  #reserve .telephone a {
    width: auto;
    padding: 0;
    font-size: 5rem;
    line-height: 1.8;
    color: #3C5E75;
    background-color: transparent;
    border: none;
  }
  #reserve .telephone a:after {
    font-size: 1rem;
    color: #3C5E75;
  }
}
/*----------------------------------
	#infoList
----------------------------------*/
#infoList h1:after {
  content: "information list";
  font-size: 1.2rem;
}
#infoList .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#infoList .article {
  background-color: #fff;
}
#infoList .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
}
#infoList .article dt {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
#infoList .article dd {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
#infoList .container {
  background-color: #fff;
}
#infoList .container ul {
  margin-bottom: 30px;
}
#infoList .container li {
  border-bottom: 1px solid #efefef;
}
#infoList .container .contents a {
  padding: 10px 15px;
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-decoration: none;
  color: #555;
}
#infoList .container .contents a:hover {
  background-color: #f9f9f9;
}
#infoList .container .contents .sub {
  white-space: nowrap;
}
#infoList .container .contents time {
  color: #cb9757;
  font-size: 1.4rem;
}
#infoList .container .contents .category {
  color: #999999;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #999999;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}
#infoList .container .contents h3 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 1.5rem 0 1rem;
}
#infoList .container .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#infoList .container .btn a {
  width: 100%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#infoList .container .btn a:after {
  content: "see all";
  display: block;
  font-size: 1rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#infoList .container .btn a:hover {
  background: #f9f9f9 !important;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #infoList h1 {
    font-size: 4.8rem;
  }
  #infoList h1:after {
    font-size: 1.4rem;
  }
  #infoList .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 30px;
  }
  #infoList .article dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  #infoList .article dd {
    line-height: 1.8;
    margin-bottom: 40px;
  }
  #infoList .container {
    max-width: 1200px;
  }
  #infoList .container .contents a {
    padding: 20px 25px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #infoList .container .contents a:hover {
    background-color: #f9f9f9;
  }
  #infoList .container .contents .sub {
    margin-right: 30px;
  }
  #infoList .container .contents h3 {
    font-size: 2.1rem;
    margin: 2rem 0 1rem;
  }
  #infoList .container .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
/*----------------------------------
	#info お知らせ詳細
----------------------------------*/
#info .title .inner {
  padding: 40px 0;
}
#info h1:after {
  content: "information";
  font-size: 1.2rem;
}
#info .article {
  background-color: #fff;
}
#info .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 40px 30px;
}
#info .article h2 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.15rem;
  margin-bottom: 15px;
  padding: 0 20px 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#info .article .contents {
  padding: 0 20px;
}
#info .article .contents p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 2rem;
}
#info .article .contents p strong {
  font-weight: bold;
}
#info .article .contents figure {
  text-align: center;
}
#info .article .contents .pict {
  margin: 1rem;
  text-align: center;
}
#info .article .contents .pict img {
  margin-bottom: 1rem;
}
#info .article .contents ul {
  list-style: disc;
  padding-left: 2rem;
  line-height: 2;
  margin-bottom: 1rem;
}
#info .article .contents p a {
  color: #008b8c;
  text-decoration: none;
}
#info .article .contents p a:hover {
  color: #cb9757;
  text-decoration: underline;
}
#info .btn {
  margin-top: 30px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#info .btn a {
  width: 100%;
  padding: 10px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
  border: 1px solid #f5dcd2;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
#info .btn a:after {
  content: "see all";
  display: block;
  font-size: 1rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#info .btn a:hover {
  text-decoration: none;
  background: #f9f9f9 !important;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #info .title .inner {
    padding: 60px 0;
  }
  #info h1 {
    font-size: 4.8rem;
  }
  #info h1:after {
    font-size: 1.4rem;
  }
  #info .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 30px;
  }
  #info .article h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 30px;
  }
  #info .article .contents {
    padding: 0 30px;
  }
  #info .article .contents p {
    font-size: 1.6rem;
  }
  #info .btn {
    margin-top: 50px;
    margin-bottom: 0px;
  }
  #info .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
/* ページナビゲーション
----------------------------------*/
.pagination {
  font-size: 1.4rem;
}
.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination span, .pagination a {
  display: block;
  margin: 3px;
  padding: 7px 10px 7px 10px;
  text-decoration: none;
  width: auto;
  color: #fff;
  /* 通常の文字色 */
  background: #7e9eb4;
  /* 通常の背景色 */
  border-radius: 50%;
  /* 角を丸くして円形に */
}
.pagination a:hover {
  background: #008b8c;
  /* マウスホバー時の背景色 */
}
.pagination .current {
  background: #008b8c;
  /* 現在のページの背景色 */
}
.pagination .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

@media screen and (min-width: 768px) {
  .pagination {
    font-size: 1.6rem;
  }
  .pagination span, .pagination a {
    padding: 10px 14px 10px 14px;
  }
}
/*----------------------------------
	#privacy
----------------------------------*/
#privacy h1:after {
  content: "privacy policy";
  font-size: 1.2rem;
}
#privacy .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#privacy .article {
  background-color: #fff;
}
#privacy .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
}
#privacy .article h2 {
  font-size: 2.4rem;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 15px;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#privacy .article p {
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 10px 1rem;
  margin-bottom: 2rem;
}
#privacy .article dl {
  padding: 10px 1rem;
}
#privacy .article dt {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
#privacy .article dd {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
#privacy .article dd:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  #privacy h1 {
    font-size: 4.8rem;
  }
  #privacy h1:after {
    font-size: 1.4rem;
  }
  #privacy .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 30px;
  }
  #privacy .article h2 {
    font-size: 3rem;
  }
  #privacy .article p {
    font-size: 1.6rem;
    padding: 10px 3rem;
  }
  #privacy .article dl {
    padding: 10px 3rem;
  }
  #privacy .article dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  #privacy .article dd {
    line-height: 1.8;
    margin-bottom: 40px;
  }
}
/*# sourceMappingURL=style.css.map */